@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-latin-var.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url("fonts/karla-latin-var.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* dark grounds: the slate of her window walls */
  --ink:      #1D2A33;
  --ink-2:    #24343E;   /* second dark, so adjacent dark bands separate */
  --ink-deep: #141E25;   /* the footer, the deepest ground */

  /* light grounds: the cream of her balloons */
  --sand:  #F5EFE5;
  --shell: #EBE2D4;
  --white: #FFFFFF;

  /* accents, all measured (see _work/contrast) */
  --coral:      #9C4823;  /* the starfish, on light grounds (5.46:1 on sand) */
  --coral-lite: #E4926A;  /* the same note, on ink grounds (6.02:1) */
  --sage:       #4F6050;  /* on light grounds (5.88:1) */
  --sage-lite:  #A8BAA4;  /* on ink grounds (7.14:1) */
  --honey:      #C08A3E;  /* rattan, on ink (4.85:1) */
  --honey-ink:  #8A5F1E;  /* rattan, on sand (4.91:1) */

  /* text */
  --muted:      #55605C;  /* secondary on light (5.71:1) */
  --muted-dark: #AFBFC8;  /* secondary on dark (7.76:1) */
  --dim:        #636D69;  /* disabled inputs (4.68:1 on sand) */
  --dim-strong: #59625E;  /* off-state prose that still has to read (4.91:1 on shell) */
  --rule:       #DCD2C2;
  --rule-dark:  #33454F;

  --ff-d: "Playfair Display", "Times New Roman", Georgia, serif;
  --ff-b: "Karla", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  --shell-w: 1220px;
  --pad: 28px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--ff-b);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--coral-lite); color: var(--ink); }

.shell { width: 100%; max-width: var(--shell-w); margin: 0 auto; padding: 0 var(--pad); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--ink); color: var(--sand); padding: 12px 20px;
  font-weight: 700; border-radius: 0 0 6px 0;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible, .foot :focus-visible, .hero-copy :focus-visible { outline-color: var(--coral-lite); }

/* ============================================================ TYPOGRAPHY */

h1, h2, h3, h4 { font-family: var(--ff-d); font-weight: 600; margin: 0; line-height: 1.12; }

.h-xl { font-size: 68px; letter-spacing: -0.015em; }
.h-lg { font-size: 50px; letter-spacing: -0.01em; }
.h-md { font-size: 32px; }
.h-sm { font-size: 22px; line-height: 1.28; }

.lede { font-size: 20px; line-height: 1.68; color: var(--muted); }
.on-dark .lede, .hero-copy .lede { color: var(--muted-dark); }

/* the editorial section label: a 30px accent rule, then the word */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-b); font-size: 13px; font-weight: 700;
  letter-spacing: 0.19em; text-transform: uppercase;
  color: var(--coral); margin: 0 0 20px;
}
.eyebrow::before {
  content: ""; width: 30px; height: 2px; background: currentColor; flex: none;
}
.on-dark .eyebrow, .hero-copy .eyebrow { color: var(--coral-lite); }

/* ============================================================== SECTIONS */

section { padding: 96px 0; }
.sec-ink      { background: var(--ink);      color: var(--sand); }
.sec-ink-2    { background: var(--ink-2);    color: var(--sand); }
.sec-ink-deep { background: var(--ink-deep); color: var(--sand); }
.sec-shell    { background: var(--shell); }

/* the dot-grid texture that separates dark bands from flat colour */
.sec-ink, .sec-ink-2, .sec-ink-deep {
  position: relative;
  background-image: radial-gradient(rgba(245, 239, 229, .055) 1px, transparent 1px);
  background-size: 22px 22px;
}
.sec-ink   { background-color: var(--ink); }
.sec-ink-2 { background-color: var(--ink-2); }

.sec-head { max-width: 720px; margin-bottom: 54px; }
.sec-head .lede { margin: 18px 0 0; }
.sec-head-wide { max-width: 900px; }

/* ============================================================== BUTTONS */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-b); font-size: 15px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 17px 30px; border: 0; border-radius: 3px;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.btn-coral { background: var(--coral); color: var(--sand); }
.btn-coral:hover { background: #863A19; transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--sand);
  box-shadow: inset 0 0 0 1.5px rgba(245, 239, 229, .42);
}
.btn-ghost:hover { background: rgba(245, 239, 229, .09); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--sand); }
.btn-ink:hover { background: #0F171D; transform: translateY(-2px); }

.vh {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ======================================================= PREVIEW BANNER */

.pbar { background: var(--ink-deep); color: var(--sand); font-size: 14.5px; }
.pbar-in {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px;
}
.pbar-txt { margin: 0; color: #D7DFE4; line-height: 1.5; }
.pbar-acts { margin: 0; display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; }
.pbar-btn {
  display: inline-block; background: var(--coral-lite); color: var(--ink-deep);
  font-weight: 700; text-decoration: none; padding: 8px 16px; border-radius: 3px;
  font-size: 13.5px; letter-spacing: .04em;
}
.pbar-btn:hover { background: #F0AD86; }
.pbar-mail { color: #D7DFE4; font-size: 13.5px; }

/* ============================================================= MASTHEAD */

.mast {
  position: sticky; top: 0; z-index: 40;
  background: rgba(245, 239, 229, .94);
  backdrop-filter: saturate(150%) blur(9px);
  border-bottom: 1px solid var(--rule);
}
.mast-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 84px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark { width: 50px; height: 50px; flex: none; border-radius: 10px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.08; }
.brand-name { font-family: var(--ff-d); font-size: 23px; font-weight: 600; letter-spacing: -0.01em; }
.brand-sub {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin-top: 4px;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  text-decoration: none; font-size: 15px; font-weight: 600;
  color: var(--ink); padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav a:hover { border-bottom-color: var(--coral); }
.nav a.btn-coral { color: var(--sand); border-bottom: 0; }
.nav a.btn-coral:hover { border-bottom: 0; }
.nav .btn { padding: 13px 22px; font-size: 13px; }

/* ================================================================= HERO */

.hero { background: var(--ink); color: var(--sand); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.06fr 0.94fr; align-items: stretch;
  max-width: 1400px; margin: 0 auto; min-height: 640px;
}
.hero-copy {
  padding: 84px clamp(30px, 5vw, 76px) 84px max(28px, calc((100vw - 1400px) / 2 + 30px));
  display: flex; flex-direction: column; justify-content: center;
  background-image: radial-gradient(rgba(245, 239, 229, .055) 1px, transparent 1px);
  background-size: 22px 22px;
}
.hero h1 { max-width: 12ch; }
.hero h1 .accent { color: var(--coral-lite); font-style: italic; }
.hero .lede { margin: 26px 0 0; max-width: 46ch; }
.hero-acts { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-where {
  margin: 34px 0 0; padding-top: 22px; border-top: 1px solid var(--rule-dark);
  font-size: 15px; color: var(--muted-dark); max-width: 46ch;
}
.hero-where b { color: var(--sand); font-weight: 700; }

.hero-shot { position: relative; min-height: 420px; }
.hero-shot img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 50%; }
.hero-shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, rgba(29, 42, 51, .58) 0%, rgba(29, 42, 51, .12) 34%, rgba(29, 42, 51, 0) 62%);
}
.hero-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  margin: 0; padding: 46px 22px 15px;
  font-size: 12.5px; letter-spacing: .04em; color: #E6EDF1; text-align: right;
  background: linear-gradient(to top, rgba(20, 30, 37, .78), rgba(20, 30, 37, 0));
}

/* the word-by-word hero reveal */
.w { display: inline-block; opacity: 0; transform: translateY(16px); animation: wordin .82s cubic-bezier(.2, .7, .3, 1) forwards; }
.w:nth-child(1) { animation-delay: .06s; }
.w:nth-child(2) { animation-delay: .16s; }
.w:nth-child(3) { animation-delay: .26s; }
.w:nth-child(4) { animation-delay: .36s; }
.w:nth-child(5) { animation-delay: .46s; }
.w:nth-child(6) { animation-delay: .56s; }
@keyframes wordin { to { opacity: 1; transform: none; } }

/* ====================================================== INVENTORY STRIP */

.strip { background: var(--shell); border-block: 1px solid var(--rule); padding: 0; overflow: hidden; }
.strip-track {
  display: flex; width: max-content;
  animation: slide 46s linear infinite;
}
.strip-set { display: flex; }
.strip-item {
  display: inline-flex; align-items: center; gap: 15px;
  padding: 21px 0; margin-right: 42px; white-space: nowrap;
  font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage);
}
.strip-item::after {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral); opacity: .6; margin-left: 42px;
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================= SERVICES */

.svc-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 22px; }
.svc {
  background: rgba(245, 239, 229, .055);
  border: 1px solid rgba(245, 239, 229, .13);
  border-radius: 5px; padding: 34px 30px 32px;
  display: flex; flex-direction: column;
}
.svc-hero { grid-row: span 2; padding: 44px 40px 40px; background: rgba(245, 239, 229, .085); }
/* the closer: runs the full width so the grid never ends on an orphan cell */
.svc-close {
  grid-column: 1 / -1;
  flex-direction: row; align-items: center; gap: 28px; padding: 28px 34px;
}
.svc-close .svc-ico { margin-bottom: 0; }
.svc-close h3 { margin-bottom: 6px; }
.svc-close p { max-width: 74ch; }
.svc-ico {
  width: 54px; height: 54px; border-radius: 13px; flex: none;
  background: rgba(228, 146, 106, .16); border: 1px solid rgba(228, 146, 106, .3);
  display: grid; place-items: center; margin-bottom: 22px;
}
.svc-ico svg { width: 27px; height: 27px; }
.svc h3 { margin-bottom: 12px; color: var(--sand); }
.svc-hero h3 { font-size: 30px; }
.svc p { margin: 0; font-size: 16.5px; line-height: 1.66; color: var(--muted-dark); }
.svc-hero p { font-size: 18px; }
.svc-list { margin: 20px 0 0; padding: 0; list-style: none; }
.svc-list li {
  position: relative; padding-left: 22px; font-size: 16px;
  color: var(--muted-dark); margin-bottom: 7px;
}
.svc-list li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--sage-lite);
}
.svc-tag {
  align-self: flex-start; margin-bottom: 16px;
  font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase;
  color: var(--ink); background: var(--coral-lite); padding: 5px 11px; border-radius: 2px;
}

/* ============================================================== GALLERY */

/* Every source frame is portrait, so every tile is portrait: no photograph is
   cropped to a band. The asymmetry comes from an editorial vertical stagger. */
.gal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.gal figure {
  position: relative; margin: 0; overflow: hidden; border-radius: 5px;
  background: var(--ink-2); aspect-ratio: 3 / 4;
}
.gal figure:nth-child(even) { margin-top: 52px; }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2, .7, .3, 1); }
.gal figure:hover img { transform: scale(1.045); }
.gal figcaption {
  position: absolute; inset: auto 0 0 0; margin: 0; padding: 52px 22px 18px;
  color: var(--sand); font-size: 15px; line-height: 1.45;
  background: linear-gradient(to top,
    rgba(20, 30, 37, .96) 0%, rgba(20, 30, 37, .95) 68%,
    rgba(20, 30, 37, .70) 86%, rgba(20, 30, 37, 0) 100%);
}
.g-tag {
  display: block; font-size: 11px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--coral-lite); margin-bottom: 6px;
}

.cap-note {
  margin: 34px 0 0; font-size: 15px; line-height: 1.62; color: var(--muted);
  max-width: 78ch; border-left: 2px solid var(--rule); padding-left: 18px;
}
.on-dark .cap-note { color: var(--muted-dark); border-left-color: var(--rule-dark); }

/* ============================================================ THE STEPS */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; position: relative; }
.step { position: relative; padding-top: 8px; }
.step-n {
  font-family: var(--ff-d); font-size: 62px; font-weight: 600; line-height: 1;
  color: var(--coral); opacity: .9; margin-bottom: 16px;
}
.step h3 { margin-bottom: 11px; }
.step p { margin: 0; color: var(--muted); font-size: 16.5px; line-height: 1.66; }
.step::after {
  content: ""; position: absolute; top: 32px; left: calc(100% + 6px); right: -28px;
  border-top: 2px dashed var(--rule);
}
.step:last-child::after { display: none; }

/* ============================================================== REVIEWS */

.pull {
  max-width: 900px; margin: 0 auto 56px; text-align: center;
}
.pull-q {
  font-family: var(--ff-b); font-size: 27px; font-weight: 400; line-height: 1.55;
  color: var(--sand); margin: 0 0 22px; font-style: italic;
}
.pull-by { margin: 0; font-size: 15px; letter-spacing: .05em; color: var(--coral-lite); font-weight: 700; }
.pull-src { margin: 5px 0 0; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-dark); }

.revs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev {
  background: rgba(245, 239, 229, .055); border: 1px solid rgba(245, 239, 229, .13);
  border-radius: 5px; padding: 28px 26px; display: flex; flex-direction: column;
}
.rev-mark {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-size: 11.5px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--sage-lite); margin-bottom: 16px;
}
.rev-mark svg { width: 15px; height: 15px; }
.rev p { margin: 0 0 18px; font-size: 16.5px; line-height: 1.65; color: var(--sand); }
.rev-by { margin: auto 0 0; font-size: 14.5px; font-weight: 700; color: var(--coral-lite); }
.rev-src { font-size: 12.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--muted-dark); display: block; margin-top: 3px; font-weight: 400; }

/* ================================================================= FORM */

.req-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }

.form-wrap {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 6px; padding: 38px 36px 34px;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.f-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.field { margin-bottom: 20px; }
.field label, .fs-legend {
  display: block; font-size: 13px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.field .hint { display: block; font-size: 13.5px; letter-spacing: 0; text-transform: none; font-weight: 400; color: var(--dim); margin-top: 6px; line-height: 1.5; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-b); font-size: 16.5px; color: var(--ink);
  background: var(--sand); border: 1px solid var(--rule); border-radius: 3px;
  padding: 13px 14px;
}
.field textarea { min-height: 118px; resize: vertical; line-height: 1.6; }
.field input:disabled, .field select:disabled, .field textarea:disabled {
  background: var(--shell); color: var(--dim); border-style: dashed; cursor: not-allowed; opacity: 1;
}

fieldset { border: 1px dashed var(--rule); border-radius: 4px; padding: 18px 18px 6px; margin: 0 0 20px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; }
.check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.check input { width: 17px; height: 17px; margin: 4px 0 0; flex: none; accent-color: var(--coral); }
.check span { font-size: 15.5px; line-height: 1.45; color: var(--ink); }
.check input:disabled + span { color: var(--dim); }

.form-note {
  margin: 4px 0 22px; font-size: 15px; line-height: 1.6; color: var(--muted);
  border-left: 2px solid var(--coral); padding-left: 16px;
}
.form-off {
  margin: 20px 0 0; padding: 15px 17px; border: 1px dashed var(--rule);
  border-radius: 4px; background: var(--shell);
  font-size: 14.5px; line-height: 1.55; color: var(--dim-strong);
}
.btn-off { background: var(--shell); color: var(--dim-strong); box-shadow: inset 0 0 0 1.5px var(--rule); cursor: not-allowed; }
.btn-off:hover { transform: none; background: var(--shell); }

/* the contact column */
.side-card {
  background: var(--ink); color: var(--sand); border-radius: 6px; padding: 34px 32px;
  background-image: radial-gradient(rgba(245, 239, 229, .055) 1px, transparent 1px);
  background-size: 22px 22px;
}
.side-card h3 { color: var(--sand); margin-bottom: 20px; }
.cx { display: block; padding: 15px 0; border-top: 1px solid var(--rule-dark); text-decoration: none; }
.cx:first-of-type { border-top: 0; padding-top: 0; }
.cx-k { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; color: var(--sage-lite); margin-bottom: 5px; }
.cx-v { display: block; font-size: 19px; font-weight: 700; color: var(--sand); line-height: 1.35; }
a.cx:hover .cx-v { color: var(--coral-lite); }
.cx-n { display: block; font-size: 14px; color: var(--muted-dark); margin-top: 4px; line-height: 1.5; }
.cx-v small { font-size: 15px; font-weight: 400; }

.slot {
  margin-top: 22px; border: 1px dashed rgba(245, 239, 229, .34); border-radius: 5px;
  padding: 20px 20px 18px; background: rgba(245, 239, 229, .035);
}
.slot-k {
  display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .17em;
  text-transform: uppercase; color: var(--coral-lite); margin-bottom: 9px;
}
.slot p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted-dark); }

/* ================================================================== CTA */

.cta { position: relative; overflow: hidden; text-align: center; }
.cta-in { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.cta h2 { margin-bottom: 18px; }
.cta .lede { margin: 0 auto 34px; }
.cta-acts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
.cta-phone {
  display: block; font-family: var(--ff-d); font-size: 42px; font-weight: 600;
  color: var(--ink); text-decoration: none; margin-top: 30px;
}
.cta-phone:hover { color: var(--coral); }

/* ============================================================= FURNITURE */

.preview { background: var(--ink-deep); color: var(--muted-dark); padding: 66px 0; font-size: 16px; }
.about-preview { max-width: 800px; }
.ap-h { font-size: 27px; color: var(--sand); margin-bottom: 20px; }
.about-preview p { margin: 0 0 17px; line-height: 1.72; }
.about-preview p:last-child { margin-bottom: 0; }

/* =============================================================== FOOTER */

.foot { background: var(--ink-deep); color: var(--muted-dark); border-top: 3px solid var(--coral); padding: 62px 0 0; }
.foot-in { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-brand .brand-mark { margin-bottom: 16px; }
.foot-name { font-family: var(--ff-d); font-size: 25px; color: var(--sand); margin: 0 0 10px; font-weight: 600; }
.foot p { margin: 0 0 8px; font-size: 15.5px; line-height: 1.6; }
.foot h4 { font-family: var(--ff-b); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-lite); margin-bottom: 16px; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 9px; font-size: 15.5px; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--coral-lite); }
.foot-bar {
  margin-top: 52px; border-top: 1px solid var(--rule-dark); padding: 22px 0 26px;
  font-size: 14px; color: #8A9AA4;
}

/* ============================================================== REVEALS */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .78s ease, transform .78s cubic-bezier(.2, .7, .3, 1); }
.reveal.in-view { opacity: 1; transform: none; }
.stagger > .reveal:nth-child(2) { transition-delay: .08s; }
.stagger > .reveal:nth-child(3) { transition-delay: .16s; }
.stagger > .reveal:nth-child(4) { transition-delay: .24s; }
.stagger > .reveal:nth-child(5) { transition-delay: .32s; }
.stagger > .reveal:nth-child(6) { transition-delay: .40s; }

/* ============================================================ RESPONSIVE */

@media (max-width: 1080px) {
  .h-xl { font-size: 54px; }
  .h-lg { font-size: 42px; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 62px var(--pad) 58px; }
  .hero-shot { min-height: 460px; max-height: 62vh; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-hero { grid-row: auto; grid-column: span 2; }
  .gal { grid-template-columns: 1fr 1fr; }
  .revs { grid-template-columns: 1fr 1fr; }
  .req-grid { grid-template-columns: 1fr; gap: 38px; }
  .foot-in { grid-template-columns: 1fr 1fr; }
  .nav a:not(.btn) { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  section { padding: 66px 0; }
  .h-xl { font-size: 40px; }
  .h-lg { font-size: 32px; }
  .h-md { font-size: 25px; }
  .lede { font-size: 18px; }
  .sec-head { margin-bottom: 38px; }
  .mast-in { height: 72px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 19px; }
  .brand-sub { font-size: 9.5px; letter-spacing: .16em; }
  .nav .btn { padding: 11px 16px; font-size: 12px; }
  .hero-copy { padding: 46px var(--pad) 46px; }
  .hero h1 { max-width: none; }
  .hero-acts .btn { width: 100%; }
  .hero-shot { min-height: 380px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-hero { grid-column: auto; }
  .svc-close { grid-column: auto; flex-direction: column; align-items: flex-start; gap: 0; padding: 34px 30px 32px; }
  .svc-close .svc-ico { margin-bottom: 22px; }
  .gal { grid-template-columns: 1fr; }
  .gal figure:nth-child(even) { margin-top: 0; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .step::after { display: none; }
  .revs { grid-template-columns: 1fr; }
  .pull-q { font-size: 21px; }
  .form-wrap { padding: 26px 20px 24px; }
  .f-row, .f-row-3, .checks { grid-template-columns: 1fr; }
  .cta-phone { font-size: 30px; }
  .cta-acts .btn { width: 100%; }
  .foot-in { grid-template-columns: 1fr; gap: 32px; }
  .pbar-in { padding-top: 14px; padding-bottom: 14px; }
}

@media (max-width: 430px) {
  .brand-sub { display: none; }
  .brand-name { font-size: 17.5px; }
  .btn-more { display: none; }
  .nav .btn { padding: 11px 15px; }
}

@media (max-width: 380px) {
  :root { --pad: 20px; }
  .h-xl { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .w { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .strip-track { animation: none; }
}
