/* ================================================================
   DOVETAIL & GRAIN — Styles
   Palette: espresso · walnut · brass · cream · charcoal
   ================================================================ */

:root {
  --espresso:  #2c1a0a;
  --walnut:    #4a2e14;
  --oak:       #8a6540;
  --cream:     #f5ede0;
  --parchment: #e8d8c2;
  --brass:     #b8943e;
  --brass-lt:  #d4af60;
  --charcoal:  #181210;
  --graphite:  #1e1710;
  --graphite2: #231d16;
  --border:    rgba(184,148,62,0.16);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --section-pad: clamp(4rem, 9vw, 7rem);
  --inner-max:   1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scrollbar-width: none; scroll-behavior: smooth; }
html::-webkit-scrollbar { display: none; }
body {
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; }

/* === NAV ======================================================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.site-nav.scrolled {
  background: rgba(24,18,16,0.92);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 clamp(1rem,4vw,2rem);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 30px; height: 30px; color: var(--cream); flex-shrink: 0; }
.logo-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-sub { font-weight: 400; font-size: 0.62rem; letter-spacing: 0.28em; opacity: 0.5; }
.nav-links {
  display: flex; align-items: center;
  gap: 2rem; margin-left: auto; list-style: none;
}
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.65; transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--brass); }
.nav-cta {
  display: inline-flex; align-items: center;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brass); padding: 10px 22px;
  border: 1px solid var(--brass); border-radius: 2px;
  transition: background 0.2s, color 0.2s; white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--brass); color: var(--espresso); }
.nav-burger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 36px; height: 36px; margin-left: auto;
}
.nav-burger span { display: block; height: 1.5px; background: var(--cream); transition: transform 0.25s, opacity 0.25s; }

/* === MOBILE MENU ================================================ */
.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; z-index: 99;
  background: rgba(24,18,16,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 1rem 0 1.5rem;
  opacity: 0; transform: translateY(-8px);
  pointer-events: none; transition: opacity 0.25s, transform 0.25s;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-link {
  display: block; padding: 14px clamp(1.25rem,4vw,2rem);
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.8; border-bottom: 1px solid var(--border); transition: opacity 0.2s, color 0.2s;
}
.mobile-link:hover { opacity: 1; color: var(--brass); }
.mobile-cta {
  display: block; margin: 1rem clamp(1.25rem,4vw,2rem) 0;
  padding: 14px 24px; text-align: center;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--brass); color: var(--espresso); border-radius: 2px;
}

/* === CINEMATIC ================================================== */
.cinematic { position: relative; height: 500vh; }
.sticky {
  position: sticky; top: 0;
  height: 100vh; width: 100%;
  overflow: hidden; display: grid; place-items: center;
}
.sticky canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(20,12,6,0.72) 100%),
    linear-gradient(to bottom, rgba(20,12,6,0.55) 0%, transparent 28%, transparent 72%, rgba(20,12,6,0.60) 100%);
}
.vignette-warm {
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(28,14,4,0.66) 100%),
    linear-gradient(to bottom, rgba(28,14,4,0.42) 0%, transparent 25%, transparent 72%, rgba(28,14,4,0.52) 100%);
}

/* === HERO OVERLAY (centered) ==================================== */
.overlay { position: absolute; inset: 0; z-index: 10; text-align: center; padding: 0 28px; }
.reveal-line {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: max-content; max-width: min(90vw, 900px);
  text-align: center; opacity: 0;
}
.hero-eyebrow {
  font-family: var(--font-body); font-size: clamp(11px,1.8vw,13px);
  font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--brass); top: calc(50% - 165px);
}
.hero-title {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(3rem, 7.5vw, 6.5rem); line-height: 1.0;
  top: 38%; max-width: min(88vw, 900px);
}
.hero-sub {
  font-size: clamp(0.9rem,1.7vw,1.05rem); font-weight: 300; line-height: 1.65;
  max-width: min(82vw, 540px); color: rgba(245,237,224,0.8);
  top: calc(50% + 90px);
}
.hero-cta {
  position: absolute; left: 50%; top: calc(50% + 162px);
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brass); color: var(--espresso);
  font-family: var(--font-body); font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 36px; border-radius: 2px; white-space: nowrap;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--brass-lt); }
.hero-mid {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.1;
  max-width: min(86vw, 820px); top: calc(50% - 75px);
}
.hero-mid-sub {
  font-size: clamp(0.88rem,1.6vw,1rem); font-weight: 300;
  max-width: min(80vw, 500px); color: rgba(245,237,224,0.75);
  top: calc(50% + 80px);
}
.brass-text { color: var(--brass); }

/* === DETAIL OVERLAY (left-aligned) ============================== */
.detail-overlay { text-align: left; }
.detail-overlay .reveal-line {
  left: clamp(32px,8vw,120px); transform: translateY(-50%);
  text-align: left; max-width: min(85vw, 640px);
}
.detail-tag {
  font-family: var(--font-body); font-size: clamp(10px,1.6vw,12px);
  font-weight: 500; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--brass); top: calc(50% - 100px);
}
.detail-title {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.8rem, 7.5vw, 6.5rem); line-height: 1.0; top: 50%;
}
.detail-sub {
  font-size: clamp(0.9rem,1.6vw,1.05rem); font-weight: 300; line-height: 1.65;
  color: rgba(245,237,224,0.78); max-width: min(82vw, 500px);
  top: calc(50% + 90px);
}
.detail-cta {
  position: absolute; left: clamp(32px,8vw,120px);
  top: calc(50% + 220px);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brass); border-bottom: 1px solid var(--brass);
  padding-bottom: 3px; transition: color 0.2s;
}
.detail-cta::after { content: ' →'; }
.detail-cta:hover { color: var(--brass-lt); }

/* === SCROLL HINT ================================================ */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 20; font-size: 10px; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(245,237,224,0.4);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: opacity 0.4s;
}
.scroll-hint::before {
  content: ''; display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(245,237,224,0.32));
}

/* === SECTION SHARED ============================================= */
.section-inner {
  max-width: var(--inner-max); margin: 0 auto;
  padding: var(--section-pad) clamp(1.25rem,4vw,2rem);
}
.section-header { margin-bottom: clamp(2.5rem,5vw,4rem); }
.section-tag {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.2rem,5vw,3.8rem); line-height: 1.05; margin-bottom: 1rem;
}
.section-lead {
  font-size: clamp(0.95rem,1.7vw,1.1rem); font-weight: 300;
  max-width: 600px; color: rgba(245,237,224,0.68); line-height: 1.7;
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* === SERVICES =================================================== */
.services-section { background: var(--graphite); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.service-card { background: var(--graphite); padding: clamp(1.75rem,3.5vw,2.5rem); transition: background 0.2s; }
.service-card:hover { background: var(--graphite2); }
.service-icon { width: 38px; height: 38px; margin-bottom: 1.25rem; color: var(--brass); }
.service-icon svg { width: 100%; height: 100%; }
.service-name {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--parchment); margin-bottom: 0.75rem;
}
.service-desc {
  font-size: clamp(0.86rem,1.5vw,0.93rem); font-weight: 300;
  line-height: 1.65; color: rgba(245,237,224,0.58);
}
.btn-book {
  display: inline-block; margin-top: 1.25rem;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brass); border-bottom: 1px solid currentColor;
  padding-bottom: 2px; transition: color 0.2s;
}
.btn-book:hover { color: var(--brass-lt); }

/* === CRAFT STORY ================================================ */
.craft-story-section { background: var(--charcoal); }
.craft-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,7vw,6rem); align-items: center;
}
.craft-text .section-lead { max-width: none; }
.craft-p { font-size: clamp(0.95rem,1.7vw,1.05rem); font-weight: 300; line-height: 1.75; color: rgba(245,237,224,0.68); margin-bottom: 1.25rem; }
.craft-quote {
  display: block; font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem,2.8vw,1.9rem); line-height: 1.3;
  color: var(--brass-lt); margin-top: 2rem;
  padding-left: 1.5rem; border-left: 2px solid var(--brass);
}
.craft-visual {
  border-radius: 2px; overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  background: linear-gradient(135deg, rgba(90,58,28,0.4) 0%, rgba(35,29,22,0.85) 55%, rgba(24,18,16,0.97) 100%),
    repeating-linear-gradient(85deg, transparent 0px, transparent 18px, rgba(184,148,62,0.04) 18px, rgba(184,148,62,0.04) 20px);
  display: flex; align-items: flex-end; padding: 1.75rem;
}
.craft-caption {
  font-size: 10px; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(184,148,62,0.45);
}

/* === PROCESS ==================================================== */
.process-section { background: var(--graphite); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-header { text-align: center; margin-bottom: clamp(3rem,6vw,5rem); }
.process-header .section-lead { margin: 0 auto; }
.process-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border);
}
.process-step { padding: clamp(2rem,4vw,3rem); border-right: 1px solid var(--border); }
.process-step:last-child { border-right: none; }
.process-num {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(3.5rem,6vw,5rem); line-height: 1;
  color: var(--brass); opacity: 0.2; margin-bottom: 1.25rem;
}
.process-name {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--parchment); margin-bottom: 0.75rem;
}
.process-desc {
  font-size: clamp(0.88rem,1.5vw,0.95rem); font-weight: 300;
  line-height: 1.7; color: rgba(245,237,224,0.58);
}

/* === STATS BAR ================================================== */
.stats-section {
  background: var(--espresso);
  border-top: 1px solid rgba(184,148,62,0.12);
  border-bottom: 1px solid rgba(184,148,62,0.12);
}
.stats-inner {
  max-width: var(--inner-max); margin: 0 auto;
  padding: clamp(2.5rem,5vw,4rem) clamp(1.25rem,4vw,2rem);
  display: flex; align-items: center;
  justify-content: space-evenly; flex-wrap: wrap;
}
.stat { text-align: center; padding: 1.5rem 2.5rem; }
.stat-num {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.5rem,5vw,3.8rem); color: var(--brass);
  line-height: 1; display: block; margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(245,237,224,0.45); display: block;
}
.stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* === PROJECTS =================================================== */
.projects-section { background: var(--charcoal); }
.projects-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: clamp(2.5rem,5vw,4rem);
}
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,340px),1fr)); gap: 24px; }
.project-card { background: var(--graphite2); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; transition: border-color 0.2s; }
.project-card:hover { border-color: rgba(184,148,62,0.4); }
.project-visual { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.project-visual-bg { width: 100%; height: 100%; transition: transform 0.6s ease; }
.project-card:hover .project-visual-bg { transform: scale(1.04); }
.bg-walnut {
  background: linear-gradient(135deg, #3a2010 0%, #1e1208 40%, #0e0b07 100%),
    repeating-linear-gradient(88deg, transparent 0, transparent 22px, rgba(90,55,20,0.06) 22px, rgba(90,55,20,0.06) 24px);
}
.bg-oak {
  background: linear-gradient(135deg, #6b4a22 0%, #3d2a12 45%, #1a1208 100%),
    repeating-linear-gradient(92deg, transparent 0, transparent 18px, rgba(138,101,64,0.07) 18px, rgba(138,101,64,0.07) 20px);
}
.bg-maple {
  background: linear-gradient(135deg, #8a6540 0%, #4a2e14 45%, #1e1710 100%),
    repeating-linear-gradient(86deg, transparent 0, transparent 16px, rgba(184,148,62,0.07) 16px, rgba(184,148,62,0.07) 18px);
}
.project-label {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(184,148,62,0.65); background: rgba(24,18,16,0.72);
  padding: 4px 10px; border-radius: 1px;
}
.project-body { padding: 1.5rem 1.75rem 1.75rem; }
.project-location {
  font-size: 10px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 0.5rem;
}
.project-name {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.2rem,2.2vw,1.55rem); line-height: 1.15; margin-bottom: 0.65rem;
}
.project-desc {
  font-size: 0.88rem; font-weight: 300; line-height: 1.65;
  color: rgba(245,237,224,0.55); margin-bottom: 1.1rem;
}
.project-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.project-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245,237,224,0.32); background: rgba(184,148,62,0.07);
  padding: 4px 10px; border: 1px solid rgba(184,148,62,0.12); border-radius: 1px;
}

/* === TESTIMONIALS =============================================== */
.testimonials-section { background: var(--graphite); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,280px),1fr)); gap: 24px; }
.testimonial-card {
  background: var(--graphite2); border: 1px solid var(--border);
  border-radius: 2px; padding: clamp(1.75rem,3vw,2.25rem);
}
.testimonial-mark {
  font-family: var(--font-display); font-size: clamp(2.5rem,5vw,3.5rem);
  line-height: 0.8; color: var(--brass); opacity: 0.3; margin-bottom: 0.75rem;
}
.testimonial-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(0.97rem,1.8vw,1.15rem); line-height: 1.6;
  color: var(--parchment); margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(245,237,224,0.4);
}

/* === AREA ======================================================= */
.area-section { background: var(--charcoal); }
.area-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,5rem); align-items: center; }
.area-text .section-lead { max-width: none; }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.75rem; }
.area-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,237,224,0.58); background: rgba(184,148,62,0.07);
  border: 1px solid rgba(184,148,62,0.14); padding: 6px 12px; border-radius: 1px;
}
.area-visual {
  aspect-ratio: 1;
  background: radial-gradient(ellipse at 60% 40%, rgba(90,58,28,0.22) 0%, transparent 65%), var(--graphite2);
  border: 1px solid var(--border); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.area-badge { text-align: center; }
.area-badge-main {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.2rem,2.5vw,1.8rem); color: var(--brass-lt); display: block; margin-bottom: 0.3rem;
}
.area-badge-sub {
  font-size: 11px; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(245,237,224,0.32);
}

/* === CONTACT ==================================================== */
.contact-section { background: var(--graphite); border-top: 1px solid var(--border); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(3rem,6vw,5rem); align-items: start; }
.contact-intro .section-lead { max-width: none; margin-top: 1rem; }
.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; }
.detail-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--brass); min-width: 72px; padding-top: 3px;
}
.detail-val { font-size: 0.9rem; font-weight: 400; color: rgba(245,237,224,0.65); line-height: 1.55; }

.booking-form {
  background: var(--graphite2); border: 1px solid var(--border);
  border-radius: 2px; padding: clamp(2rem,4vw,3rem);
}
.form-title {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.4rem,2.5vw,2rem); margin-bottom: 1.75rem; color: var(--parchment);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.1rem; }
.form-group label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(245,237,224,0.45);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(24,18,16,0.6); border: 1px solid rgba(184,148,62,0.18);
  border-radius: 2px; padding: 12px 14px;
  color: var(--cream); font-family: var(--font-body); font-size: 0.93rem;
  outline: none; transition: border-color 0.2s; appearance: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brass); }
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23b8943e' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 10px;
  padding-right: 32px;
}
.form-group select option { background: #1e1710; }
.form-submit {
  margin-top: 0.5rem; width: 100%; padding: 16px;
  background: var(--brass); color: var(--espresso);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; border: none;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--brass-lt); transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success.show { display: block; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 1rem; color: var(--brass); }
.form-success-title {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.8rem; color: var(--parchment); margin-bottom: 0.75rem;
}
.form-success-msg { font-size: 0.95rem; font-weight: 300; color: rgba(245,237,224,0.6); line-height: 1.65; }
.demo-notice {
  margin-top: 1rem; font-size: 0.75rem; font-weight: 400;
  color: rgba(245,237,224,0.3); line-height: 1.55; text-align: center;
}
.demo-notice a { color: rgba(184,148,62,0.55); text-decoration: none; transition: color 0.2s; }
.demo-notice a:hover { color: var(--brass); }

/* === FOOTER ===================================================== */
.site-footer {
  background: var(--espresso); border-top: 1px solid rgba(184,148,62,0.1);
  padding: clamp(3rem,6vw,5rem) clamp(1.25rem,4vw,2rem) clamp(1.5rem,3vw,2.5rem);
}
.footer-inner {
  max-width: var(--inner-max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(184,148,62,0.08); margin-bottom: 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.88rem; font-weight: 300; line-height: 1.65; color: rgba(245,237,224,0.42); max-width: 280px; }
.footer-heading {
  font-size: 10px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.88rem; font-weight: 300; color: rgba(245,237,224,0.48); transition: color 0.2s; }
.footer-links a:hover { color: var(--brass); }
.footer-bar {
  max-width: var(--inner-max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; font-weight: 300; color: rgba(245,237,224,0.25); }
.footer-pageify { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,237,224,0.2); }
.footer-pageify a { color: rgba(245,237,224,0.32); text-decoration: none; transition: color 0.2s; }
.footer-pageify a:hover { color: rgba(245,237,224,0.7); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; font-weight: 300; color: rgba(245,237,224,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(245,237,224,0.55); }

/* === RESPONSIVE ================================================= */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }
  .craft-layout { grid-template-columns: 1fr; }
  .craft-visual { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .area-layout { grid-template-columns: 1fr; }
  .area-visual { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .projects-header { flex-direction: column; align-items: flex-start; }
  .hero-overlay .reveal-line { width: min(88vw, 680px); }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; }
  .stat-divider { display: none; }
  .hero-eyebrow { top: calc(50% - 130px); }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.8rem); }
  .hero-sub { top: calc(50% + 72px); max-width: 88vw; }
  .hero-cta { top: calc(50% + 138px); padding: 13px 28px; }
  .hero-mid { font-size: clamp(1.5rem, 6.5vw, 2.4rem); top: calc(50% - 60px); }
  .hero-mid-sub { top: calc(50% + 65px); }
  .detail-title { font-size: clamp(2.2rem, 9vw, 3.8rem); }
  .detail-tag { top: calc(50% - 80px); }
  .detail-sub { top: calc(50% + 72px); }
  .detail-cta { top: calc(50% + 190px); }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; min-height: 44px; }
  .form-group textarea { min-height: 110px; }
  .hero-cta, .mobile-cta, .form-submit { min-height: 44px; }
  .mobile-link { min-height: 44px; display: flex; align-items: center; }
  .nav-cta { min-height: 44px; display: inline-flex; align-items: center; }
}
@media (max-width: 900px) and (orientation: landscape) {
  .cinematic { height: 400vh; }
  .hero-title { font-size: clamp(2rem, 5vw, 3.5rem); }
}
@media (hover: none) and (pointer: coarse) {
  .hero-cta:hover { background: var(--brass); }
  .service-card:hover { background: var(--graphite); }
  .project-card:hover .project-visual-bg { transform: none; }
  .nav-links a, .footer-links a { min-height: 44px; display: flex; align-items: center; }
  .btn-primary:hover, .form-submit:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
