/* ============================================
   BFK — Bucks Furniture and Kitchens
   Shared Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

:root {
  --navy: #1a2238;
  --navy-deep: #0d1423;
  --navy-soft: #232a45;
  --gold: #c9a961;
  --gold-light: #d8be7d;
  --gold-dark: #a88941;
  --cream: #f6f2ea;
  --cream-deep: #ede6d6;
  --warm-white: #fafaf6;
  --charcoal: #2a2d3a;
  --text: #2a2d3a;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --line: #e5dfd1;
  --line-soft: #efeae0;

  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Manrope', 'Helvetica Neue', system-ui, sans-serif;

  --max-w: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 10vw, 8rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: light;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--navy-deep);
}

h1 { font-size: clamp(2.5rem, 6.5vw, 5.5rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); font-weight: 300; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

.eyebrow.center::after {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

.italic-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}

p { color: var(--text); }
p.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  color: var(--text);
  font-weight: 300;
}

.muted { color: var(--text-muted); }

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

.section-pad { padding: var(--section-y) 0; }
.section-pad-sm { padding: clamp(3rem, 6vw, 5rem) 0; }

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--warm-white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--navy-deep);
}
.btn-outline-dark:hover {
  background: var(--navy-deep);
  color: var(--warm-white);
}

.btn-arrow::after {
  content: '→';
  font-family: var(--sans);
  font-size: 1rem;
  transition: transform 0.4s ease;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-deep);
  position: relative;
  padding-bottom: 0.4rem;
}
.text-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform-origin: right;
  transform: scaleX(0.4);
  transition: transform 0.4s ease;
}
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: rgba(13, 20, 35, 0.0);
}

.nav.scrolled {
  background: rgba(13, 20, 35, 0.96);
  backdrop-filter: blur(8px);
  padding: 0.85rem var(--gutter);
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}

.nav.solid {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--warm-white);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-logo .mark {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.nav-logo .sub {
  display: none;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  border-left: 1px solid rgba(201, 169, 97, 0.4);
  padding-left: 0.65rem;
  margin-left: 0.3rem;
}
@media (min-width: 720px) { .nav-logo .sub { display: inline; } }

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 250, 246, 0.85);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  display: none;
}
@media (min-width: 720px) { .nav-cta { display: inline-flex; } }

.nav-cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.7rem 1.4rem;
  transition: all 0.4s ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 960px) { .nav-burger { display: none; } }

.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--warm-white);
  transition: all 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--warm-white);
  letter-spacing: 0.02em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.mobile-menu .mobile-contact {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 1rem;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  color: var(--warm-white);
  background: var(--navy-deep);
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13, 20, 35, 0.55) 0%,
    rgba(13, 20, 35, 0.35) 40%,
    rgba(13, 20, 35, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.2s ease forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--warm-white);
  font-weight: 300;
  max-width: 16ch;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.2s 0.4s ease forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  max-width: 48ch;
  color: rgba(250, 250, 246, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1.2s 0.6s ease forwards;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1.2s 0.8s ease forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  right: var(--gutter);
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 250, 246, 0.6);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: none;
}
@media (min-width: 1100px) {
  .hero-scroll { display: flex; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Smaller hero for inner pages */
.hero-inner {
  min-height: 70vh;
}

/* ============================================
   Promo Strip
   ============================================ */

.promo-strip {
  background: var(--navy-deep);
  color: var(--gold);
  padding: 1rem var(--gutter);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-top: 1px solid rgba(201, 169, 97, 0.18);
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
}
.promo-strip .gold-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.2rem 0.7rem;
  margin: 0 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* ============================================
   Section Headers
   ============================================ */

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head.center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head h2 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 60ch;
  font-weight: 300;
  line-height: 1.7;
}
.section-head.center p { margin: 0 auto; }

/* ============================================
   Editorial / Two-Column
   ============================================ */

.editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .editorial { grid-template-columns: 1fr 1fr; }
  .editorial.right-img { direction: rtl; }
  .editorial.right-img > * { direction: ltr; }
}

.editorial-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
  position: relative;
}
.editorial-img.tall { aspect-ratio: 3 / 4; }
.editorial-img.wide { aspect-ratio: 4 / 3; }

.editorial-img.framed::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 169, 97, 0.5);
  pointer-events: none;
}

.editorial-text h2 { margin-top: 1.25rem; margin-bottom: 1.5rem; }
.editorial-text p { margin-bottom: 1.2rem; }
.editorial-text .text-link { margin-top: 1rem; }

/* ============================================
   Service Cards (Kitchens / Wardrobes)
   ============================================ */

.services {
  background: var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 760px) {
  .service-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

.service-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy);
  color: var(--warm-white);
}

.service-card .card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-card:hover .card-img { transform: scale(1.06); }

.service-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13, 20, 35, 0.1) 0%,
    rgba(13, 20, 35, 0.7) 70%,
    rgba(13, 20, 35, 0.95) 100%);
}

.service-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.service-card .card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.service-card h3 {
  color: var(--warm-white);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
  font-weight: 300;
}
.service-card h3 em { color: var(--gold-light); font-style: italic; }

.service-card p {
  color: rgba(250, 250, 246, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 50ch;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
  padding-bottom: 0.4rem;
  transition: all 0.3s ease;
}
.service-card:hover .card-link {
  border-color: var(--gold);
  letter-spacing: 0.26em;
}

/* ============================================
   Features Grid
   ============================================ */

.features {
  background: var(--warm-white);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
@media (min-width: 600px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-cell {
  background: var(--warm-white);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: background 0.4s ease;
  position: relative;
}
.feature-cell:hover { background: var(--cream); }

.feature-cell .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}

.feature-cell h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--navy-deep);
  margin-bottom: 0.2rem;
}

.feature-cell p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================
   Process / Steps
   ============================================ */

.process {
  background: var(--navy-deep);
  color: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.process .section-head h2 { color: var(--warm-white); }
.process .section-head p { color: rgba(250, 250, 246, 0.7); }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(201, 169, 97, 0.18);
}
@media (min-width: 700px) {
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(201, 169, 97, 0.18);
  }
}

.process-step {
  padding: 2rem 1.5rem 2rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
  position: relative;
}
@media (min-width: 700px) {
  .process-step {
    padding: 2.5rem 1.25rem 0;
    border-bottom: none;
    border-right: 1px solid rgba(201, 169, 97, 0.12);
  }
  .process-step:last-child { border-right: none; }
}

.process-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}

.process-step h4 {
  color: var(--warm-white);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.process-step p {
  color: rgba(250, 250, 246, 0.7);
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================
   Quote / Testimonial Block
   ============================================ */

.quote-block {
  background: var(--cream);
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
}

.quote-block .quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1.5rem;
}

.quote-block blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--navy-deep);
  max-width: 32ch;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.005em;
}

.quote-block .quote-cite {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.quote-block .quote-cite::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

/* ============================================
   CTA Block
   ============================================ */

.cta-block {
  background: var(--navy-deep);
  color: var(--warm-white);
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: 'BFK';
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15rem, 30vw, 28rem);
  color: rgba(201, 169, 97, 0.05);
  bottom: -8vw;
  right: -3vw;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 { color: var(--warm-white); margin: 1.25rem 0; }
.cta-inner h2 em { font-style: italic; color: var(--gold-light); }

.cta-inner p {
  color: rgba(250, 250, 246, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.25rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--navy-deep);
  color: var(--warm-white);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
}

.footer h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-brand .footer-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.footer-brand .footer-logo em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(250, 250, 246, 0.65);
  font-weight: 300;
  max-width: 38ch;
  margin-bottom: 1.5rem;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer ul a {
  font-size: 0.9rem;
  color: rgba(250, 250, 246, 0.7);
  font-weight: 300;
  transition: color 0.3s ease;
}
.footer ul a:hover { color: var(--gold); }

.footer-contact a {
  display: block;
  color: rgba(250, 250, 246, 0.7);
  font-weight: 300;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact .label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 169, 97, 0.7);
  margin-bottom: 0.3rem;
  margin-top: 0.5rem;
  font-weight: 600;
}
.footer-contact .label:first-child { margin-top: 0; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(250, 250, 246, 0.5);
  font-weight: 300;
}

/* ============================================
   Kitchens Page Specific
   ============================================ */

.style-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 720px) { .style-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .style-grid { grid-template-columns: repeat(4, 1fr); } }

.style-card {
  position: relative;
}

.style-card .style-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease;
}
.style-card .style-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 20, 35, 0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.style-card:hover .style-img::after { opacity: 1; }

.style-card .style-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.style-card h3 {
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.style-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* Materials list */
.materials {
  background: var(--cream);
}

.materials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 800px) {
  .materials-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.material-block h4 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.material-block h4 .num {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-dark);
}

.material-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.material-block li {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.material-block li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6rem;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* Door style category cards (replaces old CSS-only tile grid) */
.door-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 760px) { .door-categories { grid-template-columns: 1fr 1fr; } }

.door-category {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--warm-white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.4s ease;
}
.door-category:hover { border-color: var(--gold); }

.door-category .dc-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.door-category .dc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,20,35,0.35));
}
.door-category .dc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.door-category:hover .dc-img img { transform: scale(1.05); }

.door-category .dc-body {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.door-category .dc-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.door-category h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 400;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.door-category h3 .count {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.door-category .dc-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.door-category .dc-names {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 400;
}
.door-category .dc-names strong {
  font-weight: 500;
  color: var(--navy-deep);
}

/* ==== Door Panels (brochure-accurate door reference imagery) ==== */
.door-panels {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.door-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: var(--warm-white);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: border-color 0.4s ease;
}
.door-panel:hover { border-color: var(--gold); }

@media (min-width: 760px) {
  .door-panel { grid-template-columns: 320px 1fr; gap: 2.5rem; align-items: center; }
}

.door-panel-head .dc-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.6rem;
}

.door-panel-head h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 400;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.door-panel-head h3 .count {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.door-panel-head .dc-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1rem;
}
.door-panel-head .dc-names {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.door-panel-head .dc-names strong {
  font-weight: 500;
  color: var(--navy-deep);
}

.door-panel-img {
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}
.door-panel-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
/* For wardrobe section: Multi-Panel uses a real photo (different aspect) */
.door-panel-img.feature {
  padding: 0;
  aspect-ratio: 4 / 3;
}
.door-panel-img.feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Color swatches */
.colors {
  background: var(--warm-white);
}

.color-section {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.color-section h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.finish-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 0.75rem;
}
@media (min-width: 600px) { .color-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .color-grid { grid-template-columns: repeat(6, 1fr); } }
@media (min-width: 1100px) { .color-grid { grid-template-columns: repeat(8, 1fr); } }

.color-grid .swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  cursor: default;
}

.swatch-circle {
  display: block;
  width: min(100%, 72px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(13,20,35,0.12);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  /* Force browser to honour explicit background-color in dark mode */
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}
.color-grid .swatch:hover .swatch-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}

.swatch-circle.bordered {
  border: 1px solid rgba(13,20,35,0.2);
  box-shadow: 0 0 0 1px rgba(13,20,35,0.06) inset, 0 2px 8px rgba(0,0,0,0.06);
}

.swatch-name {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
  text-align: center;
  line-height: 1.35;
}

/* Stats / inline counter row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  padding: 2rem 0;
  margin: clamp(2.5rem, 5vw, 4rem) 0;
}
@media (min-width: 760px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }

.stat {
  text-align: center;
  padding: 0.75rem;
  border-right: 1px solid rgba(201, 169, 97, 0.15);
}
.stat:last-child { border-right: none; }
@media (max-width: 760px) {
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(201, 169, 97, 0.15); padding-bottom: 1.25rem; margin-bottom: 0.5rem; }
}

.stat-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   Wardrobes page specific
   ============================================ */

.wardrobe-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--warm-white);
}
@media (min-width: 760px) { .wardrobe-feature-list { grid-template-columns: 1fr 1fr; } }

.wardrobe-feature-list .item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.wardrobe-feature-list .item .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 0.9rem;
  flex-shrink: 0;
  padding-top: 0.15rem;
  min-width: 2.5ch;
}
.wardrobe-feature-list .item h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.wardrobe-feature-list .item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}
@media (min-width: 760px) {
  .wardrobe-feature-list .item {
    padding: 1.5rem 1.5rem;
  }
  .wardrobe-feature-list .item:nth-child(odd) { border-right: 1px solid var(--line); padding-left: 0; }
  .wardrobe-feature-list .item:nth-child(even) { padding-right: 0; }
  .wardrobe-feature-list .item:nth-last-child(-n+2) { border-bottom: none; }
}

/* Gallery */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 800px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease;
}
.gallery-item:hover { transform: scale(0.98); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
@media (max-width: 800px) { .gallery-item.tall { grid-row: span 1; aspect-ratio: 1/1; } }

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

/* Utility */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.75rem; }
.mt-lg { margin-top: 2.5rem; }

@media (max-width: 760px) {
  .hide-mobile { display: none; }
}

/* ====================================================================
   WORKTOPS PAGE & 3-UP SERVICES
   ==================================================================== */

/* 3-up services grid for homepage */
@media (min-width: 980px) {
  .service-grid.three-up { grid-template-columns: 1fr 1fr 1fr; }
}

/* Hero variant — slightly taller for content-heavy pages */
.hero.hero-tall { min-height: 78vh; }

/* Stat row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 760px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }

.stat {
  background: var(--warm-white);
  padding: clamp(1.5rem, 3vw, 2.25rem) 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--gold-dark);
  line-height: 1;
}
.stat-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Stone cards: alternating image/body layout */
.stone-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  background: var(--warm-white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.4s ease;
}
.stone-card:hover { border-color: var(--gold); }
.stone-card:last-child { margin-bottom: 0; }

@media (min-width: 980px) {
  .stone-card { grid-template-columns: 0.85fr 1.15fr; }
  .stone-card.reverse { grid-template-columns: 1.15fr 0.85fr; }
  .stone-card.reverse .stone-img { order: 2; }
  .stone-card.reverse .stone-body { order: 1; }
}

.stone-img {
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
  min-height: 320px;
  aspect-ratio: 4 / 3;
}
@media (min-width: 980px) {
  .stone-img { aspect-ratio: auto; min-height: 0; }
}

.stone-body {
  padding: clamp(1.75rem, 4vw, 3rem);
}

.stone-num {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
  display: block;
}

.stone-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 0.85rem;
  line-height: 1.15;
  color: var(--navy-deep);
}
.stone-sub {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.stone-lede {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.stone-section-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.85rem;
}

/* Swatch row */
.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.85rem;
}

.swatch-row .swatch {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: calc(50% - 0.35rem);
  aspect-ratio: 1.6 / 1;
  border: 1px solid rgba(13,20,35,0.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
}
@media (min-width: 540px) { .swatch-row .swatch { width: calc(33.333% - 0.5rem); } }
@media (min-width: 760px) { .swatch-row .swatch { width: calc(25% - 0.5rem); } }
@media (min-width: 980px) { .swatch-row .swatch { width: calc(33.333% - 0.5rem); } }
@media (min-width: 1180px) { .swatch-row .swatch { width: calc(25% - 0.5rem); } }

.swatch-row .swatch span {
  display: block;
  width: 100%;
  background: rgba(13,20,35,0.78);
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.4rem 0.5rem;
  backdrop-filter: blur(4px);
}

/* Pros/Cons grid */
.proscons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding-top: 0.5rem;
}
@media (min-width: 760px) {
  .proscons { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.pro-label, .con-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}
.pro-label { color: var(--gold-dark); }
.con-label { color: var(--navy); }

.pro-list, .con-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pro-list li, .con-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 300;
}
.pro-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: -1px;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--gold);
  font-size: 1.05rem;
}
.con-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  top: -1px;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
}

/* ====================================================================
   CONTACT PAGE
   ==================================================================== */

.page-header {
  background: var(--navy-deep);
  color: var(--warm-white);
  padding: clamp(7rem, 14vh, 10rem) 0 clamp(3.5rem, 7vw, 5rem);
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.page-header .container {
  max-width: 760px;
  text-align: center;
}
.page-header h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-header h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.page-header .hero-sub {
  color: rgba(250,250,246,0.78);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto;
}

/* Contact two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 980px) {
  .contact-layout { grid-template-columns: 1.5fr 1fr; }
}

.contact-form-wrap > h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin: 0.6rem 0 1rem;
}
.form-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 540px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }

.form-row label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy-deep);
}
.req {
  color: var(--gold-dark);
  font-weight: 600;
}

.form-row input:not([type="checkbox"]),
.form-row select,
.form-row textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-row textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}
.form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a961' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-row input:not([type="checkbox"]):focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.12);
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(13,20,35,0.4);
  font-weight: 300;
}

/* Honeypot - hidden from users, only bots will fill it */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold-dark);
  cursor: pointer;
  flex-shrink: 0;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Contact info sidebar */
.contact-info {
  background: var(--cream);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  align-self: start;
}
@media (min-width: 980px) { .contact-info { position: sticky; top: 110px; } }

.contact-info > h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}
.contact-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.contact-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  align-self: flex-start;
}
a.contact-value:hover { border-bottom-color: var(--gold); }
.contact-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.4;
}
.contact-text {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
  margin: 0.4rem 0 0;
}
.contact-divider {
  height: 1px;
  background: var(--line);
  margin: 1.75rem 0;
}

/* Thank-you page */
.thank-you-section {
  background: var(--warm-white);
  padding: clamp(8rem, 18vh, 12rem) 0 clamp(5rem, 10vw, 8rem);
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.thank-you-inner {
  max-width: 720px;
}
.thank-you-section h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 1rem 0;
}
.thank-you-section h1 em {
  font-style: italic;
  color: var(--gold-dark);
}
.thank-you-detail {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 1.25rem;
}
.thank-you-detail a {
  color: var(--navy-deep);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
}

/* ====================================================================
   FORCE LIGHT MODE — prevent browser dark mode from inverting colours.
   The site uses its own dark navy / warm cream palette intentionally.
   ==================================================================== */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
  }
  body {
    background: var(--warm-white) !important;
    color: var(--text) !important;
  }
  /* Keep section backgrounds exactly as designed */
  section, .colors, .color-section, .color-grid {
    background-color: inherit;
  }
  /* Ensure swatch circles always show their specified colour */
  .swatch-circle {
    background-color: inherit;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  /* Keep the nav and footer dark as designed */
  .nav, .footer, .hero, .page-header, .cta-block {
    background-color: inherit !important;
  }
}

/* ====================================================================
   CONTACT FORM — SUCCESS STATE
   ==================================================================== */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(2rem, 5vw, 3rem) 0;
  animation: fadeSlideIn 0.55s ease forwards;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.form-success h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--navy-deep);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.form-success p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 0.85rem;
  max-width: 500px;
}
.form-success .success-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.form-success .success-phone:hover { color: var(--gold-dark); }

/* Loading spinner on submit button */
.btn-loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}
.btn-loading::after {
  content: '';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

/* Checkbox — explicit sizing so it renders on all browsers */
.form-checkbox {
  padding: 0.25rem 0;
}
.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  user-select: none;
}
.form-checkbox input[type="checkbox"] {
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 1px 0 0 0;
  accent-color: var(--navy-deep);
  cursor: pointer;
  flex-shrink: 0;
  border: none;
  padding: 0;
  background: initial;
}

/* Field-level validation error messages */
.field-error {
  display: none;
  font-size: 0.78rem;
  color: #c0392b;
  font-family: var(--sans);
  font-weight: 500;
  margin-top: 0.25rem;
  line-height: 1.35;
}

/* Error banner (network failure fallback) */
.form-error-banner {
  background: #fff0ef;
  border: 1px solid #f5c6c2;
  border-left: 4px solid #c0392b;
  color: #8b1e1e;
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  border-radius: 2px;
}
.form-error-banner a {
  color: #8b1e1e;
  font-weight: 600;
  text-decoration: underline;
}

/* Highlight invalid fields */
.form-row input[aria-invalid="true"],
.form-row select[aria-invalid="true"],
.form-row textarea[aria-invalid="true"] {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.10);
}
