/* Platinum Kitchens & Bedrooms — site styles */

:root {
  --ink: #0E0E0E;
  --ink-soft: #1c1c1c;
  --bone: #F5F1EC;
  --bone-2: #ECE7DF;
  --platinum: #C9C4BC;
  --platinum-light: #E5E0D6;
  --champagne: #A88B5C;
  --champagne-light: #C9A875;
  --reed: #4A5D4F;
  --hairline: rgba(14, 14, 14, 0.10);
  --hairline-light: rgba(245, 241, 236, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Keyboard focus — visible without affecting mouse users */
:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; border-radius: 2px; }
.btn:focus-visible, .nav-cta:focus-visible { outline-offset: 4px; }

/* Skip link for screen-reader / keyboard users */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--ink); color: var(--bone);
  padding: 0.7rem 1rem; z-index: 100; text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.skip-link:focus { top: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 400; line-height: 1.08; margin: 0; letter-spacing: -0.012em; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* ---------- Nav ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.4rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
  color: #fff;
}
.site-nav .nav-logo { height: 84px; display: block; color: inherit; flex-shrink: 0; }
.site-nav .nav-logo svg { height: 100%; width: auto; display: block; }
.site-nav .nav-links { display: flex; gap: 2.4rem; align-items: center; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.site-nav .nav-links a { color: inherit; text-decoration: none; opacity: 0.9; transition: opacity 0.2s; position: relative; padding: 0.4rem 0; }
.site-nav .nav-links a:hover { opacity: 1; }
.site-nav .nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.site-nav .nav-links a:hover::after { transform: scaleX(1); }

.site-nav .nav-cta {
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.site-nav .nav-cta:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.45); transform: translateY(-1px); }

.site-nav.scrolled {
  background: rgba(245, 241, 236, 1);
  color: var(--ink);
  padding: 0.9rem 2.5rem;
  box-shadow: 0 1px 0 var(--hairline);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.site-nav.scrolled .nav-logo { height: 64px; }
.site-nav.scrolled .nav-cta { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.site-nav.scrolled .nav-cta:hover { background: var(--champagne); border-color: var(--champagne); }

.nav-toggle { display: none; background: none; border: 0; color: inherit; cursor: pointer; padding: 0.4rem; }
.nav-toggle svg { width: 28px; height: 28px; }

/* Tablet — 1024 down to 720 */
@media (max-width: 1024px) {
  .site-nav { padding: 1.1rem 1.8rem; }
  .site-nav .nav-logo { height: 72px; }
  .site-nav.scrolled .nav-logo { height: 56px; }
  .site-nav .nav-links { gap: 1.6rem; font-size: 0.74rem; }
}

/* Mobile — collapse to hamburger */
@media (max-width: 760px) {
  .site-nav { padding: 0.9rem 1.1rem; }
  .site-nav .nav-logo { height: 56px; }
  .site-nav.scrolled .nav-logo { height: 48px; }
  .nav-toggle { display: block; }
  .nav-toggle svg { width: 26px; height: 26px; }
  .site-nav .nav-links {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    background: var(--ink); color: var(--bone);
    flex-direction: column; justify-content: center; align-items: center; gap: 1.8rem;
    font-size: 1rem; padding: 2rem;
    z-index: 60;
    visibility: hidden; pointer-events: none;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(.7,0,.2,1), visibility 0s linear 0.45s;
  }
  .site-nav .nav-links.open {
    visibility: visible; pointer-events: auto;
    transform: translateY(0);
    transition: transform 0.45s cubic-bezier(.7,0,.2,1), visibility 0s linear 0s;
  }
  .site-nav .nav-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh; min-height: 720px;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.0); } to { transform: scale(1.06); } }
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,14,14,0.45) 0%, rgba(14,14,14,0.0) 35%, rgba(14,14,14,0.0) 60%, rgba(14,14,14,0.55) 100%),
    linear-gradient(90deg, rgba(14,14,14,0.35) 0%, rgba(14,14,14,0.0) 50%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 0 2.5rem;
  max-width: 1320px; margin: 0 auto; width: 100%;
  display: flex; align-items: center;
}

/* Frosted glass plate sitting over the hero image */
.hero-plate {
  background: rgba(14, 14, 14, 0.32);
  -webkit-backdrop-filter: blur(22px) saturate(120%);
  backdrop-filter: blur(22px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 3rem 3.2rem 3.2rem;
  max-width: 640px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.hero-plate .eyebrow { color: var(--champagne-light); margin-bottom: 1.4rem; }
.hero-plate h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  font-weight: 400;
  margin-bottom: 1.4rem;
  color: #fff;
}
.hero-plate p.lede {
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.65;
  opacity: 0.92;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.7rem; padding: 1rem 1.7rem; border-radius: 999px; text-decoration: none; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; transition: transform 0.2s ease, background 0.2s, border-color 0.2s, color 0.2s; cursor: pointer; border: 1px solid transparent; }
.btn-primary { background: var(--bone); color: var(--ink); }
.btn-primary:hover { transform: translateY(-1px); background: var(--champagne); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-dark { background: var(--ink); color: var(--bone); }
.btn-dark:hover { background: var(--champagne); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bone); }
.btn svg { width: 16px; height: 16px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 2.4rem; z-index: 3;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.65rem;
  letter-spacing: 0.4em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform: translate(-50%,0);} 50%{transform: translate(-50%,8px);} }

/* ---------- Layout ---------- */
.section { padding: 8rem 2.5rem; }
.container { max-width: 1320px; margin: 0 auto; }
.section-head { text-align: center; max-width: 56ch; margin: 0 auto 5rem; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 3.4rem); margin: 1rem 0 1.2rem; }
.section-head p { color: #555; font-size: 1.05rem; line-height: 1.7; }
.section-dark { background: var(--ink); color: var(--bone); }
.section-dark .section-head p { color: rgba(245,241,236,0.7); }
.section-bone-2 { background: var(--bone-2); }

/* Trust strip */
.trust-strip {
  background: var(--ink); color: var(--bone);
  padding: 1.8rem 2rem;
  display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500;
  border-top: 1px solid rgba(245,241,236,0.08);
  border-bottom: 1px solid rgba(245,241,236,0.08);
}
.trust-strip span { display: inline-flex; align-items: center; gap: 0.7rem; opacity: 0.9; }
.trust-strip .star { color: var(--champagne-light); font-size: 1rem; letter-spacing: 0; }
.trust-strip .divider { width: 1px; height: 18px; background: rgba(245,241,236,0.2); display: inline-block; }

/* What we do — service tiles */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 880px) { .service-grid { grid-template-columns: 1fr; } }
.service-tile {
  position: relative; aspect-ratio: 4/5;
  overflow: hidden; border-radius: 4px;
  text-decoration: none; color: #fff;
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.service-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); z-index: 0; }
.service-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.78)); z-index: 1; }
.service-tile:hover img { transform: scale(1.06); }
.service-tile .service-label { position: relative; z-index: 2; padding: 2rem; width: 100%; display: flex; align-items: end; justify-content: space-between; gap: 1rem; }
.service-tile h3 { font-size: 1.9rem; font-weight: 400; }
.service-tile .meta { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.75; margin-top: 0.4rem; display: block; }
.service-tile .arrow { width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.6); display: grid; place-items: center; transition: background 0.2s, border-color 0.2s; flex-shrink: 0; }
.service-tile:hover .arrow { background: rgba(255,255,255,0.15); border-color: #fff; }

/* Featured asymmetric grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.feature-grid figure { margin: 0; overflow: hidden; border-radius: 3px; position: relative; }
.feature-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.feature-grid figure:hover img { transform: scale(1.05); }
.fg-a { grid-column: span 4; grid-row: span 2; }
.fg-b { grid-column: span 2; grid-row: span 1; }
.fg-c { grid-column: span 2; grid-row: span 1; }
.fg-d { grid-column: span 2; grid-row: span 2; }
.fg-e { grid-column: span 2; grid-row: span 1; }
.fg-f { grid-column: span 2; grid-row: span 1; }
@media (max-width: 880px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .fg-a, .fg-b, .fg-c, .fg-d, .fg-e, .fg-f { grid-column: span 1; grid-row: span 1; }
}

/* Editorial split (about / pull quote) */
.editorial { display: grid; grid-template-columns: 1.05fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 880px) { .editorial { grid-template-columns: 1fr; gap: 3rem; } }
.editorial img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; max-height: 600px; }
.editorial h2 { font-size: clamp(2rem, 3.2vw, 3rem); margin-bottom: 1.6rem; }
.editorial p { font-size: 1.05rem; color: #444; margin-bottom: 1rem; line-height: 1.75; font-weight: 300; }
.editorial .pull {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; line-height: 1.5;
  font-style: italic; font-weight: 400;
  border-left: 1px solid var(--champagne); padding: 0.5rem 0 0.5rem 1.6rem; margin: 2.5rem 0; color: var(--ink);
}

/* Process steps */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
@media (max-width: 880px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
.process-step { text-align: left; padding: 0; border-top: 1px solid rgba(245,241,236,0.18); padding-top: 1.6rem; }
.process-step .num { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.7rem; letter-spacing: 0.28em; color: var(--champagne-light); display: block; margin-bottom: 1rem; }
.process-step h3 { font-size: 1.4rem; font-weight: 400; margin-bottom: 0.8rem; color: var(--bone); }
.process-step p { color: rgba(245,241,236,0.7); font-size: 0.95rem; line-height: 1.7; font-weight: 300; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }
.review {
  background: #fff; padding: 2.4rem;
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column;
}
.review .stars { color: var(--champagne-light); letter-spacing: 0.15em; margin-bottom: 1.2rem; font-size: 1rem; }
.review p { color: #2a2a2a; font-size: 1rem; flex-grow: 1; line-height: 1.7; font-style: italic; font-family: 'Playfair Display', serif; font-weight: 400; }
.review .who { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--hairline); display: flex; align-items: center; gap: 0.9rem; }
.review .avatar { width: 40px; height: 40px; border-radius: 999px; background: var(--platinum-light); display: grid; place-items: center; font-weight: 500; font-family: 'Playfair Display', serif; color: var(--ink); }
.review .name { font-weight: 600; font-size: 0.92rem; letter-spacing: 0.04em; }
.review .meta { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--champagne); margin-top: 2px; }

/* CTA band */
.cta-band {
  text-align: center;
  padding: 7rem 2.5rem;
  background: var(--ink); color: var(--bone);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(168,139,92,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 1.2rem; max-width: 22ch; margin-inline: auto; font-weight: 400; }
.cta-band p { opacity: 0.7; margin-bottom: 2.5rem; max-width: 50ch; margin-inline: auto; font-weight: 300; line-height: 1.7; }

/* Footer */
.site-footer { background: #080808; color: var(--bone); padding: 5rem 2.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; max-width: 1320px; margin: 0 auto; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 1.4rem; color: var(--champagne-light); }
.site-footer a { color: rgba(245,241,236,0.85); text-decoration: none; display: block; padding: 0.3rem 0; transition: color 0.2s; font-size: 0.96rem; }
.site-footer a:hover { color: var(--champagne-light); }
.site-footer p { color: rgba(245,241,236,0.6); margin: 0; font-size: 0.95rem; line-height: 1.7; font-weight: 300; }
.footer-logo { height: 70px; margin-bottom: 1.4rem; color: var(--bone); display: block; }
.footer-logo svg { height: 100%; width: auto; }
.footer-socials { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid rgba(245,241,236,0.22);
  display: grid; place-items: center; padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.footer-socials a:hover { background: rgba(168,139,92,0.15); border-color: var(--champagne-light); }
.footer-socials svg { width: 16px; height: 16px; }
.footer-bottom {
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid rgba(245,241,236,0.08);
  max-width: 1320px; margin-inline: auto;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(245,241,236,0.45); letter-spacing: 0.04em;
}
.footer-bottom .credit {
  display: inline-flex; align-items: baseline; gap: 0.5em;
  color: rgba(245,241,236,0.55); text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom .credit:hover { color: var(--champagne-light); }
.footer-bottom .credit .wm {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.74rem; letter-spacing: 0.34em; padding-left: 0.34em;
  white-space: nowrap;
}
.footer-bottom .credit .wm .mona { font-weight: 700; }
.footer-bottom .credit .wm .thist { font-weight: 300; opacity: 0.85; }

/* Service-page intro */
.page-intro { padding: 8rem 2rem 4rem; text-align: center; max-width: 70ch; margin: 0 auto; }
.page-intro h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin: 1rem 0; }
.page-intro p { color: #555; font-size: 1.1rem; }

/* Style explorer (service page) */
.style-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 880px) { .style-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .style-grid { grid-template-columns: 1fr; } }
.style-card { background: #fff; overflow: hidden; border: 1px solid var(--hairline); }
.style-card .img { aspect-ratio: 4/3; overflow: hidden; }
.style-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.style-card:hover .img img { transform: scale(1.04); }
.style-card .body { padding: 1.8rem; }
.style-card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; font-weight: 400; }
.style-card p { font-size: 0.95rem; color: #555; margin: 0; line-height: 1.7; font-weight: 300; }

/* Masonry-ish gallery */
.gallery { columns: 3 280px; column-gap: 1rem; }
.gallery figure { break-inside: avoid; margin: 0 0 1rem; overflow: hidden; cursor: zoom-in; }
.gallery figure img { width: 100%; display: block; transition: transform 0.6s ease, opacity 0.3s; }
.gallery figure:hover img { transform: scale(1.04); opacity: 0.95; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(8,8,8,0.94); display: none; z-index: 100; align-items: center; justify-content: center; padding: 2rem; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox button { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.1); border: 0; color: #fff; width: 44px; height: 44px; border-radius: 999px; font-size: 1.4rem; cursor: pointer; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Utilities */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.muted { color: #777; }

/* ---------- Brochure band ---------- */
.brochure-band { background: var(--bone-2); padding: 4rem 2.5rem; text-align: center; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.brochure-band .eyebrow { display: block; margin-bottom: 0.7rem; }
.brochure-band h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin-bottom: 0.7rem; font-weight: 400; }
.brochure-band p { color: #555; margin: 0 auto 1.6rem; max-width: 52ch; font-weight: 300; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: 1100px; margin: 0 auto 5rem; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: #fff; border: 1px solid var(--hairline); padding: 2.4rem 1.6rem; text-align: center; text-decoration: none; color: var(--ink); transition: transform .25s ease, border-color .2s, box-shadow .25s; display: block; }
.contact-card:hover { transform: translateY(-3px); border-color: var(--champagne); box-shadow: 0 16px 40px rgba(14,14,14,0.06); }
.contact-card .icon { width: 48px; height: 48px; border-radius: 999px; background: var(--bone-2); color: var(--champagne); display: grid; place-items: center; margin: 0 auto 1.2rem; transition: background .2s, color .2s; }
.contact-card:hover .icon { background: var(--champagne); color: #fff; }
.contact-card .icon svg { width: 18px; height: 18px; }
.contact-card .label { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--champagne); display: block; margin-bottom: 0.5rem; font-weight: 500; }
.contact-card .value { font-family: 'Playfair Display', serif; font-size: 1.25rem; line-height: 1.3; }
.contact-card .sub { display: block; font-family: 'Inter', sans-serif; font-size: 0.78rem; color: #777; margin-top: 0.5rem; letter-spacing: 0.04em; }

/* Form */
.contact-form { display: grid; gap: 1rem; }
.contact-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .contact-form .row-2 { grid-template-columns: 1fr; } }
.contact-form label { display: block; font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: #555; margin-bottom: 0.4rem; font-weight: 500; }
.contact-form input,
.contact-form select,
.contact-form textarea { font: inherit; padding: .9rem 1rem; border: 1px solid var(--hairline); background: #fff; border-radius: 2px; width: 100%; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: 0; border-color: var(--champagne); box-shadow: 0 0 0 3px rgba(168,139,92,0.15); }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form .botcheck { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.contact-form .form-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.contact-form .privacy { font-size: 0.78rem; color: #777; line-height: 1.5; max-width: 32ch; }
.contact-form button { font: inherit; cursor: pointer; }

/* Map + hours */
.map-wrap { position: relative; padding-top: 62%; border: 1px solid var(--hairline); margin-bottom: 2rem; overflow: hidden; }
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(1.02); }
.hours-block { background: var(--bone-2); padding: 2rem; border: 1px solid var(--hairline); }
.hours-block h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 1.2rem; color: var(--champagne); }
.hours { display: grid; grid-template-columns: auto 1fr; gap: .55rem 1.6rem; font-size: .96rem; margin: 0; }
.hours dt { font-weight: 500; color: var(--ink); }
.hours dd { margin: 0; color: #555; text-align: right; }
.hours-note { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--hairline); font-size: 0.85rem; color: #666; line-height: 1.6; }

/* Contact two-column override (left form, right map/hours) */
.contact-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: start; }
@media (max-width: 880px) { .contact-split { grid-template-columns: 1fr; gap: 3rem; } }
.contact-split h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 400; margin-bottom: 1.4rem; }

/* ===========================================================
   RESPONSIVE — tablet & mobile sweep
   =========================================================== */

/* Tablet — 1024 down to 760 */
@media (max-width: 1024px) {
  .section { padding: 6.5rem 2rem; }
  .section-head { margin-bottom: 4rem; }
  .editorial { gap: 3.5rem; }
  .hero-inner { padding: 0 2rem; }
  .hero-plate { padding: 2.4rem 2.4rem 2.6rem; max-width: 540px; }
  .trust-strip { gap: 2.4rem; padding: 1.5rem 1.4rem; font-size: 0.68rem; }
  .footer-grid { gap: 2.4rem; }
}

/* Small tablet / large phone — 760 down to 561 */
@media (max-width: 760px) {
  .section { padding: 4.5rem 1.4rem; }
  .section-head { margin-bottom: 2.6rem; }
  .section-head p { font-size: 1rem; }
  .hero { min-height: 620px; }
  .hero-inner { padding: 0 1.2rem; }
  .hero-plate { padding: 1.8rem 1.4rem 2rem; }
  .hero-plate .lede { margin-bottom: 1.4rem; }
  .hero-actions { gap: 0.6rem; }
  .scroll-cue { display: none; }
  .trust-strip { gap: 1.2rem; padding: 1.2rem 1rem; font-size: 0.62rem; letter-spacing: 0.18em; }
  .trust-strip .divider { display: none; }
  .editorial { gap: 2.2rem; }
  .editorial img { max-height: 420px; }
  .review { padding: 1.8rem; }
  .gallery { columns: 2 200px; column-gap: 0.6rem; }
  .gallery figure { margin-bottom: 0.6rem; }
  .feature-grid { gap: 0.6rem; grid-auto-rows: 160px; }
  .service-tile { aspect-ratio: 5/6; }
  .service-tile .service-label { padding: 1.4rem; }
  .service-tile h3 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .site-footer { padding: 4rem 1.4rem 1.6rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; margin-top: 2.6rem; }
  .cta-band { padding: 5rem 1.4rem; }
  .brochure-band { padding: 3rem 1.4rem; }
  .contact-grid { gap: 0.8rem; margin-bottom: 3rem; }
  .contact-form .row-2 { grid-template-columns: 1fr; gap: 0.6rem; }
  .contact-form .form-foot { flex-direction: column; align-items: stretch; }
  .contact-form .form-foot .btn { width: 100%; justify-content: center; }
  .map-wrap { padding-top: 75%; }
  .page-intro { padding: 7rem 1.4rem 2.5rem; }

  /* Touch targets — meet 44px minimum */
  .btn { padding: 0.95rem 1.4rem; }
  .nav-toggle { padding: 0.6rem; }
  .footer-socials a { width: 44px; height: 44px; }
}

/* Phone — 480 down */
@media (max-width: 480px) {
  .hero-plate h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero-plate p.lede { font-size: 0.95rem; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .gallery { columns: 1; }
  .feature-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-nav .nav-logo { height: 50px; }
  .site-nav.scrolled .nav-logo { height: 44px; }
  .style-card .body { padding: 1.4rem; }
  .review { padding: 1.6rem; }
  .review p { font-size: 0.95rem; }
  .container { padding: 0; }
}

/* Reduced motion — respect OS preference */
@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .hero-media video { animation: none; }
  .scroll-cue { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
