/* ============== TOKENS ============== */
:root {
  --cream: #FAF6EE;
  --cream-deep: #F2EBDC;
  --navy: #0E1F3A;
  --navy-2: #1A3050;
  --navy-soft: #2C4A6B;
  --gold: #B89968;
  --gold-light: #D4B98A;
  --ink: #1A1F2E;
  --ink-soft: #4A5568;
  --muted: #8B8270;
  --line: #E5DCC9;
  --white: #FFFFFF;
  --shadow-soft: 0 1px 2px rgba(14,31,58,0.04), 0 8px 24px rgba(14,31,58,0.06);
  --shadow-deep: 0 4px 16px rgba(14,31,58,0.08), 0 24px 60px rgba(14,31,58,0.12);
  --radius: 4px;
  --radius-lg: 12px;
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============== RESET ============== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 500; line-height: 1.2; }
h4 { font-size: 1.15rem; font-weight: 500; line-height: 1.25; }
.italic { font-style: italic; font-variation-settings: "opsz" 144; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2.5rem;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.eyebrow.light { color: var(--gold-light); }
.eyebrow.light::before { background: var(--gold-light); }

.muted { color: var(--ink-soft); }
.small { font-size: 0.875rem; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn.large { padding: 1.1rem 2.2rem; font-size: 1rem; }
.btn.full { width: 100%; }

/* ============== NAV ============== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 246, 238, 0.95);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.brand-mark {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.04em;
}
.brand-word {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  font-size: 0.92rem;
  font-weight: 400;
}
.nav-links a {
  position: relative;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}
.nav-burger span {
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: 0.3s;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 10rem 2rem 6rem;
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  font-weight: 500;
  animation: fadeUp 0.8s 0.1s both;
}
.hero-eyebrow::before {
  content: "● ";
  color: var(--gold);
  margin-right: 0.4rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 2rem;
  max-width: 14ch;
}
.hero-line {
  display: block;
  animation: fadeUp 0.9s both;
}
.hero-line:nth-child(1) { animation-delay: 0.2s; }
.hero-line:nth-child(2) {
  animation-delay: 0.4s;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  color: var(--gold);
  padding-left: 0.5em;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s 0.55s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  animation: fadeUp 0.9s 0.7s both;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  animation: fadeUp 0.9s 0.85s both;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.trust-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
.trust-item span:last-child {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* Hero decoration */
.hero-decor {
  position: absolute;
  top: 8rem;
  right: -8rem;
  width: 600px;
  height: 600px;
  pointer-events: none;
  opacity: 0.5;
}
.hero-circle {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
.hero-circle::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed var(--gold);
  border-radius: 50%;
}
.hero-line-decor {
  position: absolute;
  top: 50%;
  left: -10%;
  right: -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--navy);
  color: var(--cream);
  padding: 1.4rem 0;
  overflow: hidden;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
.marquee-track span:nth-child(odd) { color: var(--gold-light); }

/* ============== SECTION HEAD ============== */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-head.light h2,
.section-head.light p { color: var(--cream); }
.section-head.light h2.light { color: var(--cream); }
.section-head p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-top: 1.25rem;
  line-height: 1.6;
}
.section-head.light p { color: rgba(250, 246, 238, 0.75); }

/* ============== BOOKING ============== */
.booking {
  padding: 6rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
}
.booking-shell {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}
.step-bar {
  display: flex;
  list-style: none;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.step-bar .step {
  flex: 1;
  min-width: max-content;
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-right: 1px solid var(--line);
  position: relative;
  transition: all 0.3s;
}
.step-bar .step:last-child { border-right: none; }
.step-bar .step span {
  font-family: var(--serif);
  font-style: italic;
  margin-right: 0.5rem;
  color: var(--gold);
}
.step-bar .step.active {
  background: var(--navy);
  color: var(--cream);
}
.step-bar .step.active span { color: var(--gold-light); }
.step-bar .step.done {
  color: var(--ink);
  background: var(--cream);
}

.step-panel {
  display: none;
  padding: 2.5rem 2.5rem 2rem;
}
.step-panel.active { display: block; animation: fadeIn 0.4s; }
.step-panel h3 {
  margin-bottom: 0.5rem;
  font-family: var(--serif);
}
.step-panel > p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.step-nav {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.step-nav .step-back { margin-right: auto; }

/* Postcode input */
.postcode-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
#postcodeInput {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--sans);
  background: var(--cream);
}
#postcodeInput:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.postcode-result {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  display: none;
  font-size: 0.95rem;
}
.postcode-result.success {
  display: block;
  background: rgba(184, 153, 104, 0.12);
  color: var(--navy);
  border-left: 3px solid var(--gold);
}
.postcode-result.error {
  display: block;
  background: rgba(180, 50, 50, 0.08);
  color: #8B2020;
  border-left: 3px solid #B43232;
}

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.service-card {
  text-align: left;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.25s;
  position: relative;
}
.service-card:hover,
.service-card.selected {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.service-card.selected {
  border-width: 2px;
  padding: calc(1.5rem - 1px);
}
.service-card h4 { margin-bottom: 0.5rem; color: var(--navy); }
.service-card p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.5; }
.service-price {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold);
}
.service-tag {
  position: absolute;
  top: -0.6rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
}

/* Items */
.items-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
.item-group h4 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-weight: 500;
}
.item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--line);
  gap: 1rem;
}
.item-row:last-child { border-bottom: none; }
.item-info {
  flex: 1;
  min-width: 0;
}
.item-name {
  font-size: 0.98rem;
  color: var(--ink);
  display: block;
}
.item-price {
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--navy);
  background: var(--white);
  transition: all 0.2s;
}
.qty-btn:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.qty-display {
  width: 28px;
  text-align: center;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* Order summary */
.order-summary {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.95rem;
}
.summary-row.muted-row {
  font-size: 0.82rem;
  color: var(--muted);
}
.summary-divider {
  height: 1px;
  background: var(--line);
  margin: 0.5rem 0;
}
.summary-row.total-row {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
}
.min-warn {
  font-size: 0.85rem;
  color: #B43232;
  margin-top: 0.5rem;
}

/* Method cards */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.method-card {
  text-align: left;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.25s;
}
.method-card:hover,
.method-card.selected {
  border-color: var(--gold);
  background: var(--white);
}
.method-card.selected {
  border-width: 2px;
  padding: calc(1.5rem - 1px);
}
.method-card h4 { margin-bottom: 0.5rem; color: var(--navy); }
.method-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }

.pickup-slot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.pickup-slot label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.pickup-slot input,
.pickup-slot select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 1rem;
}
.pickup-slot input:focus,
.pickup-slot select:focus {
  outline: none;
  border-color: var(--gold);
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.contact-grid label.full { grid-column: 1 / -1; }
.contact-grid input,
.contact-grid textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  font-size: 0.98rem;
  font-family: var(--sans);
  resize: vertical;
}
.contact-grid input:focus,
.contact-grid textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.final-summary {
  background: var(--cream-deep);
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.fineprint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
  text-align: center;
}

/* Confirmation */
.confirmation {
  text-align: center;
  padding: 4rem 2.5rem;
}
.check-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  animation: pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.confirmation h3 { margin-bottom: 0.5rem; }
.confirmation .btn { margin-top: 1.5rem; }

/* ============== SERVICES ============== */
.services {
  padding: 6rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc-card {
  background: var(--cream);
  padding: 2.5rem 2rem 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  background: var(--white);
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-num {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.svc-card h3 { margin-bottom: 0.75rem; font-size: 1.45rem; }
.svc-card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }

/* ============== PROCESS ============== */
.process {
  background: var(--navy);
  color: var(--cream);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.15;
}
.process::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border: 1px dashed var(--gold);
  border-radius: 50%;
  opacity: 0.12;
}
.process .section-head { position: relative; z-index: 1; }
.process h2.light { color: var(--cream); }
.process-list {
  list-style: none;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}
.process-list li {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(212, 185, 138, 0.2);
  align-items: flex-start;
}
.process-list li:last-child { border-bottom: none; }
.proc-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
  font-variation-settings: "opsz" 144;
}
.process-list h3 { color: var(--cream); margin-bottom: 0.5rem; }
.process-list p { color: rgba(250, 246, 238, 0.75); }

/* ============== COMMERCIAL ============== */
.commercial {
  padding: 6rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
}
.commercial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.commercial-copy h2 { margin-bottom: 1.5rem; }
.commercial-copy > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.commercial-list {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.commercial-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}
.commercial-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.commercial-note {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.commercial-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 100px;
}
.commercial-form h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.commercial-form > p { margin-bottom: 1.5rem; }
.commercial-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 1rem;
}
.commercial-form input,
.commercial-form select,
.commercial-form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  font-size: 0.98rem;
  font-family: var(--sans);
  resize: vertical;
}
.commercial-form input:focus,
.commercial-form select:focus,
.commercial-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row label { margin-bottom: 0; }
.form-row + label { margin-top: 1rem; }
.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.5em;
}
.form-status.success { color: var(--navy); }
.form-status.error { color: #B43232; }

/* ============== TESTIMONIALS ============== */
.testimonials {
  padding: 6rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.quote-grid blockquote {
  padding: 2rem;
  background: var(--cream-deep);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}
.quote-grid blockquote::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}
.quote-grid blockquote p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 144;
}
.quote-grid blockquote footer {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}

/* ============== FAQ ============== */
.faq {
  padding: 6rem 2rem;
  max-width: 880px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq-list details[open] summary { color: var(--gold); }
.faq-list summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
  transition: color 0.2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
  font-family: var(--sans);
  line-height: 1;
}
.faq-list details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}
.faq-list details p {
  padding-top: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ============== CTA BAND ============== */
.cta-band {
  background: var(--cream-deep);
  padding: 6rem 2rem;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band h2 {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  margin-bottom: 2rem;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-call {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.cta-call strong { color: var(--navy); }

/* ============== FOOTER ============== */
.footer {
  background: var(--navy);
  color: var(--cream);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 185, 138, 0.2);
}
.footer-brand .brand-mark {
  color: var(--gold);
  font-size: 2.2rem;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(250, 246, 238, 0.7);
  max-width: 30ch;
  font-size: 0.95rem;
}
.footer h4 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer p, .footer a {
  color: rgba(250, 246, 238, 0.75);
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(250, 246, 238, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============== ANIMATIONS ============== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--line);
    gap: 1.25rem;
  }

  .hero { padding: 8rem 1.5rem 4rem; }
  .hero-decor { display: none; }
  .hero-trust {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .booking, .services, .commercial, .testimonials, .faq, .cta-band, .process { padding: 4rem 1.25rem; }

  .step-panel { padding: 1.75rem 1.5rem; }
  .step-bar .step { padding: 0.85rem 1rem; font-size: 0.75rem; }

  .commercial-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .commercial-form { position: static; padding: 2rem 1.5rem; }
  .commercial-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .pickup-slot { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .process-list li { gap: 1.25rem; padding: 1.5rem 0; }
  .proc-num { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .step-nav { flex-direction: column-reverse; }
  .step-nav .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
