/* Trophies Unlimited — trophiesunlimited.net
   Brand tokens measured from the live Divi site (WP Rocket bypassed).
   See the migration capture's design-tokens.md.

   Layout, scale and rhythm are a deliberate improvement on the Divi original:
   same sections, same copy, same brand — better execution. */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Hedvig Letters Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/hedvig-letters-serif-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Hedvig Letters Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/hedvig-letters-serif-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --navy: #1d3557;
  --navy-deep: #16294380;
  --navy-soft: #2a4670;
  --gold: #d4af37;
  --gold-dark: #b8952c;
  /* Brand gold is 2.1:1 on white — fails WCAG AA. This deeper gold carries the
     eyebrow labels on light backgrounds: 5.21:1 on white and 4.86:1 on the
     tinted band, so it clears 4.5:1 on both (the eyebrow is small bold text,
     which does not qualify for the 3:1 large-text allowance). On navy the real
     brand gold is 5.88:1, so dark sections use --gold and keep the full punch. */
  --gold-text: #826a1c;

  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --muted: #333333;   /* the original's body/heading grey */
  --field: #eef0f2;
  --white: #fff;
  --tint: #f6f7f9;
  --line: #e4e7eb;

  --serif: 'Hedvig Letters Serif', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', Helvetica, Arial, sans-serif;

  /* Every content row on the original is 66% of the viewport — 1267px at 1920.
     Capping the intro copy at a 64ch measure (~700px) was making the section
     copy far narrower than the original on both the home and About pages. */
  --row: 1280px;
  --row-narrow: 980px;
  --intro: 1020px;   /* the original's intro modules run 976-1014px */

  --section-y: clamp(52px, 6vw, 104px);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(29, 53, 87, .10);
  --shadow-lift: 0 18px 44px rgba(29, 53, 87, .16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(16.5px, .38vw + 15.3px, 19px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.hero :focus-visible { outline-color: var(--gold); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: var(--white);
  padding: 12px 20px; font-weight: 600;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.row {
  width: min(66%, var(--row));
  margin: 0 auto;
}
/* 66% only makes sense once there is room for it; below that the original
   widens to near-full-bleed too. */
@media (max-width: 1100px) { .row { width: 88%; } }
.row.narrow { width: min(90%, var(--row-narrow)); }
/* The About story row on the original is 66% of the viewport (1267px at 1920),
   wider than the standard row. Capped so it doesn't sprawl on ultra-wide. */
.row.wide { width: min(66%, 1280px); }
section { padding: var(--section-y) 0; }

/* The original alternates white with the diamond-pattern band. Both the
   "Awards for Every Occasion" and "What Our Customers Are Saying" sections
   carry the pattern; everything else is white. */
.tint { background: var(--tint); }
.pattern { background: var(--white) url('/assets/photos/pattern.webp') center / cover no-repeat; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: clamp(13px, .3vw + 12px, 15px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0 0 14px;
}
/* White over the photographic hero, matching the original. Gold would not
   clear 4.5:1 against the lighter parts of the trophy image at this size. */
.hero .eyebrow { color: var(--white); }

.section-title {
  font-size: clamp(31px, 2.4vw + 16px, 50px);
  line-height: 1.16;
  letter-spacing: -.01em;
  color: var(--navy);
  margin: 0 0 18px;
  text-wrap: balance;
}

/* The intermediate step the original never had: 48px headings dropped
   straight to 18px body with nothing between. */
.lede {
  font-size: clamp(17.5px, .5vw + 16px, 21px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
}

.section-intro { max-width: var(--intro); }
.section-head { max-width: none; margin: 0 auto clamp(38px, 4vw, 60px); text-align: center; }
.section-head .section-intro { margin-inline: auto; }
/* The About story block on the original is a 66%-width row of centred 19px
   copy, not a narrow measure — matched, capped so it doesn't sprawl on
   ultra-wide displays. */
.section-head.wide { max-width: none; }
.section-head.wide .section-intro { max-width: none; text-align: center; }
.section-head.wide .section-intro p { font-size: 19px; line-height: 1.5; color: #000; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: clamp(15px, .3vw + 14px, 17px);
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  text-decoration: none;
  padding: 15px 26px;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(212, 175, 55, .28);
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.btn::after { content: '\2192'; font-size: 1.05em; line-height: 1; transition: transform .18s ease; }
.btn:hover { background: var(--gold-dark); box-shadow: 0 10px 22px rgba(212, 175, 55, .36); }
.btn:hover::after { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--navy); color: var(--white); box-shadow: none; }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.stuck { box-shadow: 0 2px 16px rgba(29, 53, 87, .10); border-bottom-color: var(--line); }
.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}
.site-logo img { width: 159px; height: 52px; }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: 10px;
  cursor: pointer; color: var(--navy);
}
.nav-toggle svg { display: block; }

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0; padding: 0;
}
.site-nav a {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
}
/* Scoped to :not(.btn) — otherwise these rules out-specify .btn and .btn::after,
   which turned the header CTA into a squashed 97x32 link with no arrow while
   every other button on the site was 48px tall with one. */
.site-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav a:not(.btn):hover::after { transform: scaleX(1); }
.site-nav a:not(.btn)[aria-current='page']::after { transform: scaleX(1); }
.site-nav .btn { position: static; padding: 13px 22px; font-size: 16px; font-weight: 600; }

/* ---------- Home hero ---------- */
.hero {
  position: relative;
  background: var(--navy) url('/assets/photos/hero.webp') center / cover no-repeat;
  color: var(--white);
  text-align: center;
  /* The original section is 699px tall at 1920 (54px section + 148px row
     padding each side). Matched. */
  padding: clamp(70px, 10vw, 191px) 0;
}
/* The original carries NO overlay — the photo's navy tint is baked in. Without
   any scrim the lightest pixel behind the text is 3.93:1, just short of AA, so
   this is the minimum that clears it: 15% navy takes the worst case to 4.79:1
   while leaving the image visually as bright as the original. */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(19, 36, 60, .15);
}
/* The original's hero row is 90% of the viewport (1728px at 1920), not the
   66% the content rows use. Caught by the geometry diff. */
.hero .row { position: relative; width: min(90%, 1728px); max-width: none; }
.hero h1 {
  font-size: clamp(34px, 3.4vw + 16px, 64px);
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--white);
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero-lede {
  font-size: clamp(17px, .7vw + 15px, 23px);
  font-weight: 300;
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto 32px;
  color: #e8edf3;
}

/* ---------- Inner page hero ---------- */
/* The source band graphic is only 1280x120. Scaling it to `cover` at 1920 blew
   the trophy up ~2.2x into a blurry slab. The gold is now a CSS gradient
   sampled from that source, with the artwork layered on the right at its own
   height and faded into the gradient — crisp at any width. */
.page-hero {
  background:
    linear-gradient(90deg, #a99847 0%, #b3a54f 48%, rgba(184, 172, 87, 0) 82%),
    url('/assets/photos/hero-band.webp') right center / auto 100% no-repeat,
    linear-gradient(100deg, #a99847 0%, #bdaf59 52%, #b2a24b 100%);
  padding: clamp(46px, 5vw, 78px) 0;
}
.page-hero h1 {
  text-wrap: balance;
  font-size: clamp(31px, 2.6vw + 16px, 52px);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--navy);
  margin: 0 0 6px;
}
.page-hero p {
  font-family: var(--sans);
  font-size: clamp(15.5px, .35vw + 14px, 18px);
  font-weight: 500;
  color: var(--navy);
  margin: 0;
  opacity: .85;
}

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 30px);
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 6px; }
.card h3 {
  font-size: clamp(23px, .9vw + 19px, 29px);
  line-height: 1.18;
  color: var(--navy);
  margin: 0;
}
.card h3 { text-wrap: balance; }
/* Reserve two lines so a one-line and a two-line description don't leave the
   row looking ragged. */
.card p { font-size: .96em; color: var(--ink-soft); margin: 0; min-height: 3.2em; }
@supports (min-height: 2lh) { .card p { min-height: 2lh; } }

/* ---------- Split (text + media) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 68px);
  align-items: center;
}
.split .section-title { margin-bottom: 16px; }
.split-copy { max-width: 566px; }   /* the original's column */
.split-media img { border-radius: var(--radius); width: 100%; box-shadow: var(--shadow); }
.split-actions { margin-top: 26px; }

/* Two equal photos side by side (About) */
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2vw, 28px);
}
.photo-pair img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Inspiration collage — composed rather than three mismatched images */
.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(12px, 1.3vw, 18px);
  aspect-ratio: 5 / 4;
}
.collage img {
  border-radius: var(--radius-sm);
  width: 100%; height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.collage .tall { grid-row: 1 / span 2; grid-column: 2; }

/* ---------- Testimonials ----------
   A slider carrying all five 5-star Google reviews, as the original Trustindex
   widget does (3 up, arrows, dots, 6s autoplay). Tile styling matched to that
   widget: #f4f4f4, 12px radius, no shadow, 20px padding, 40px circular avatar,
   name 15px/600, date 13px, body 15px/1.45, Google mark top right.

   The track is a CSS scroll-snap carousel, so with JavaScript off it is still
   a horizontally scrollable list of every review — nothing is ever hidden. */
.reviews-slider { position: relative; }

.reviews {
  /* Flex, not grid: a percentage `grid-auto-columns` resolves unreliably
     inside a scroll container — below 1100px the long-text tiles collapsed to
     40px while the short ones rendered full width. A flex basis resolves
     against the scrollport, and flex-shrink:0 stops content forcing a resize. */
  display: flex;
  gap: 20px;
  margin: 0 0 22px;
  padding: 4px 0;
  list-style: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.reviews::-webkit-scrollbar { display: none; }
.reviews:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; border-radius: 4px; }

.review {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  scroll-snap-align: start;
  background: #f4f4f4;
  color: #000;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.review-head { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 11px; }
.review-head img.avatar {
  width: 40px; height: 40px; flex: 0 0 40px;
  border-radius: 30px; object-fit: cover; object-position: top;
}
.review-who { min-width: 0; flex: 1 1 auto; }
.review cite {
  display: block; font-style: normal;
  font-family: var(--sans);
  font-weight: 600; font-size: 15px; line-height: 1.3; color: #000;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
/* Trustindex ships #767676 here, which is 4.13:1 on its own #f4f4f4 tile and
   fails WCAG AA. #6f6f6f is 4.57:1 — seven steps darker out of 255, which is
   not perceptible, and keeps the tile otherwise verbatim. */
.review .review-date { font-size: 13px; color: #6f6f6f; margin: 2px 0 0; }
.review .gmark { flex: 0 0 20px; width: 20px; height: 20px; margin-left: auto; }
.stars { margin: 0 0 11px; line-height: 0; white-space: nowrap; }
.stars svg { width: 17px; height: 17px; margin-right: 1px; display: inline-block; vertical-align: top; }
.review blockquote {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Arrows are revealed only once the script has wired them up. */
.rv-arrow {
  display: none;
  position: absolute;
  top: calc(50% - 33px);
  transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(29, 53, 87, .16);
  transition: background-color .16s ease, transform .16s ease;
}
.js-slider .rv-arrow { display: flex; }
.rv-arrow:hover { background: var(--navy); color: var(--white); }
.rv-arrow[disabled] { opacity: .35; cursor: default; }
.rv-arrow[disabled]:hover { background: var(--white); color: var(--navy); }
.rv-prev { left: -22px; }
.rv-next { right: -22px; }
.rv-arrow svg { width: 18px; height: 18px; }

.rv-dots { display: none; justify-content: center; gap: 2px; margin-bottom: 22px; }
.js-slider .rv-dots { display: flex; }
/* 24x24 hit area with a 9px dot drawn inside it — a bare 9px button is well
   under the minimum touch target. */
.rv-dot {
  width: 24px; height: 24px; padding: 0;
  border: 0; background: none;
  display: grid; place-items: center;
  cursor: pointer;
}
.rv-dot::before {
  content: '';
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #c3c8d0;
  transition: background-color .16s ease, transform .16s ease;
}
.rv-dot[aria-current='true']::before { background: var(--gold-text); transform: scale(1.25); }
.rv-dot:hover::before { background: var(--navy); }

.reviews-cta { text-align: center; margin: 0; }
.reviews-cta a {
  font-weight: 600; font-size: .95em; color: var(--navy);
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px; text-underline-offset: 5px;
}
.reviews-cta a:hover { color: var(--gold-text); }

@media (max-width: 1100px) {
  .review { flex-basis: calc((100% - 20px) / 2); }
  /* No room to sit the arrows outside the track without overlapping a tile —
     swipe and the dots carry it from here. */
  .rv-arrow { display: none !important; }
}
@media (max-width: 760px) {
  .review { flex-basis: 100%; }
  .review blockquote { -webkit-line-clamp: 8; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 3.5vw, 56px);
  align-items: stretch;
}
.contact-panel {
  background: var(--navy);
  border-radius: 20px;
  padding: clamp(24px, 2.6vw, 38px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field { margin: 0; }
.field input, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: var(--field);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  transition: border-color .16s ease, background-color .16s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #5f6570; opacity: 1; }
.field input:focus, .field textarea:focus { background: var(--white); }
.field input:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.field.invalid input, .field.invalid textarea { border-color: #ff8a8a; }
.field-error { display: none; color: #ffd2d2; font-size: 14px; margin-top: 6px; }
.field.invalid .field-error { display: block; }

.form-actions { display: flex; justify-content: flex-end; margin-top: 22px; }
.form-status { margin-top: 14px; color: var(--white); font-size: 15px; }
.form-status[data-state='error'] { color: #ffd2d2; }
.hp { position: absolute; left: -9999px; }

/* Plain centred content, exactly as the original — no card, no border, no
   shadow. The right-hand column on the live site is transparent with 0 padding. */
.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.contact-phone {
  font-family: var(--sans);
  font-size: clamp(26px, 1.4vw + 18px, 36px);
  font-weight: 700;
  line-height: 1;
  color: var(--muted);
  text-decoration: none;
  display: block;
}
.contact-phone:hover { color: var(--gold-dark); }
.contact-label {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0 0 6px;
}
.contact-hours { font-size: .96em; color: var(--ink-soft); margin: 0 0 17px; }
.contact-address { font-size: .96em; color: var(--ink-soft); font-style: normal; line-height: 1.55; margin: 0; }
.contact-address a { color: inherit; text-decoration: none; }
.contact-address a:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 4px; }
.google-rating { margin: 0 auto 9px; width: 241px; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.gallery a {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.gallery a:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.gallery a:hover img { transform: scale(1.05); }

/* ---------- Thank you ---------- */
.thanks { background: var(--tint); text-align: center; padding: clamp(72px, 9vw, 148px) 0; }
.thanks .row { max-width: 760px; }
.thanks img { margin: 0 auto 24px; width: 47px; height: 50px; }
/* The original's confirmation icon was a pale blue envelope that clashed with
   the navy/gold palette; this is the same "sent" idea in brand colours, crisp
   at any size and with no extra request. */
.thanks-mark { display: block; margin: 0 auto 26px; width: 64px; height: 64px; }
.thanks h1 {
  font-size: clamp(28px, 1.9vw + 18px, 44px);
  line-height: 1.18;
  color: var(--navy);
  margin: 0 0 18px;
}
.thanks .lede { margin-bottom: 30px; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: clamp(72px, 9vw, 130px) 0; }
.notfound .row { max-width: 700px; }
.notfound h1 { font-size: clamp(30px, 2.2vw + 18px, 48px); color: var(--navy); margin: 0 0 16px; }
.notfound-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---------- Footer ----------
   The original was a 110px sliver holding a logo and a copyright line, which
   read as unfinished. Built out using content that already exists on the site
   (nav links, the home H1 line, and the NAP) — nothing new written. */
.site-footer { background: var(--navy); color: var(--white); padding: clamp(36px, 4vw, 56px) 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
  padding-bottom: clamp(28px, 3vw, 44px);
}
.site-footer img { width: 164px; height: 53px; }
.footer-brand p { margin: 14px 0 0; font-size: .9em; color: #b9c5d6; }

.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-nav a {
  font-size: .93em;
  color: #dbe3ee;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.footer-nav a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.footer-contact p, .footer-contact address {
  margin: 8px 0 0; font-size: .9em; font-style: normal; color: #b9c5d6; line-height: 1.55;
}
.footer-phone {
  font-size: 1.24em;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
}
.footer-phone:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 18px 0 22px;
}
.footer-bottom p { margin: 0; font-size: .84em; color: #93a3ba; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split-copy { max-width: none; }
  .split.media-right .split-media { order: -1; }
  .card-grid, .reviews, .gallery { grid-template-columns: repeat(2, 1fr); }
  .collage { aspect-ratio: 3 / 2; }
}

@media (max-width: 760px) {
  .row { width: 88%; }

  .nav-toggle { display: block; }
  .site-header .row { min-height: 76px; }
  .site-logo img { width: 138px; height: 45px; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    box-shadow: 0 14px 26px rgba(0, 0, 0, .14);
    border-top: 1px solid var(--line);
    padding: 10px 6% 20px;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav a { display: block; padding: 15px 4px; font-size: 17px; border-bottom: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .site-nav a[aria-current='page'] { color: var(--gold-text); font-weight: 700; }
  .site-nav li:last-child { margin-top: 14px; }
  .site-nav li:last-child a { border-bottom: 0; }
  .site-nav .btn { justify-content: center; }

  .section-head { text-align: left; }
  .section-head .section-intro { margin-inline: 0; }
  .card-grid, .reviews, .gallery, .photo-pair { grid-template-columns: 1fr; }
  .collage { aspect-ratio: 4 / 3; }
  .review blockquote { -webkit-line-clamp: 10; }

  .form-grid { grid-template-columns: 1fr; }
  .form-actions { justify-content: stretch; }
  .form-actions .btn { width: 100%; justify-content: center; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .footer-nav ul { gap: 4px; }
  .footer-nav a { display: inline-block; padding: 7px 0; }
  .footer-bottom { text-align: center; }

  /* 24px+ touch targets on inline text links */
  .reviews-cta a, .notfound p a, .contact-address a, .form-status a {
    display: inline-block;
    padding: 4px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
