/* ============== TOKENS ============== */
:root {
  --cream: #F8F5F0;
  --cream-deep: #EDE9E2;
  --navy: #111111;
  --navy-2: #1C1C1C;
  --navy-soft: #383838;
  --gold: #C4963A;
  --gold-light: #D4A84D;
  --ink: #1A1A1A;
  --ink-soft: #5A5650;
  --muted: #8A8580;
  --line: #E0DBD3;
  --white: #FFFFFF;
  --shadow-soft: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-deep: 0 4px 16px rgba(0,0,0,0.08), 0 24px 60px rgba(0,0,0,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: #111111;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.site-nav.scrolled {
  border-bottom-color: rgba(196,150,58,0.25);
  background: #111111;
}
.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);
}
.brand-sub {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Dark nav overrides */
.site-nav .brand {
  flex-direction: column;
  align-items: center;
  gap: 1px;
  text-decoration: none;
}
.site-nav .brand-mark {
  color: var(--gold);
  font-size: 1.35rem;
}
.site-nav .brand-word {
  color: rgba(196,150,58,0.78);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.site-nav .brand-word::before,
.site-nav .brand-word::after {
  content: '';
  display: block;
  width: 14px;
  height: 0.5px;
  background: rgba(196,150,58,0.45);
  flex-shrink: 0;
}
.site-nav .brand-sub {
  color: rgba(196,150,58,0.5);
  font-size: 0.54rem;
  letter-spacing: 0.2em;
}
.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: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-burger span {
  width: 22px;
  height: 1.5px;
  background: rgba(248,245,240,0.82);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

/* ============== NAV OVERLAY ============== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem 3rem 10vw;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.nav-overlay.open {
  transform: translateX(0);
  pointer-events: auto;
}
.nav-overlay-brand {
  position: absolute;
  top: 1.75rem;
  left: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.nav-overlay-brand .brand-mark {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.nav-overlay-brand .brand-word {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.5);
}
.nav-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-overlay-close span {
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: background 0.2s;
}
.nav-overlay-close span:first-child { transform: rotate(45deg); }
.nav-overlay-close span:last-child  { transform: rotate(-45deg); }
.nav-overlay-close:hover span { background: var(--gold-light); }
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-overlay-link {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300;
  color: rgba(248,245,240,0.9);
  line-height: 1.15;
  padding: 0.5rem 0;
  display: inline-block;
  position: relative;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-overlay-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0.3rem;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width 0.3s ease;
}
.nav-overlay-link:hover { color: var(--gold-light); }
.nav-overlay-link:hover::after { width: 100%; }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 5rem max(2rem, calc(50vw - 660px)) 7rem;
  overflow: hidden;
  isolation: isolate;
  background-color: #0e0b08;
  background-image:
    linear-gradient(to top, rgba(14,11,8,0.65) 0%, transparent 28%),
    linear-gradient(to bottom, rgba(14,11,8,0.60) 0%, transparent 18%),
    linear-gradient(100deg, rgba(14,11,8,0.93) 0%, rgba(14,11,8,0.82) 28%, rgba(14,11,8,0.52) 52%, rgba(14,11,8,0.10) 72%, rgba(14,11,8,0.04) 100%),
    url('/aureco-tag.jpg');
  background-size: cover;
  background-position: 55% center;
  background-repeat: no-repeat;
}

.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: #f5f0e8;
  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-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  padding-left: 0.5em;
  min-height: 0.95em;
}
.hero-cursor {
  display: inline-block;
  width: 2px;
  height: 0.72em;
  background: var(--gold);
  margin-left: 0.06em;
  vertical-align: middle;
  animation: heroCursorBlink 0.53s step-end infinite;
}
@keyframes heroCursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-cursor { display: none; }
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.65);
  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-booking {
  margin-bottom: 4rem;
  animation: fadeUp 0.9s 0.7s both;
}
.hero-postcode-wrap {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 580px;
}
.hero-postcode-input {
  flex: 1;
  min-width: 210px;
  padding: 1.05rem 1.35rem;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--sans);
  background: rgba(245,240,232,0.96);
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 40px rgba(0,0,0,0.40);
}
.hero-postcode-input:focus {
  outline: none;
  background: #ffffff;
  box-shadow: 0 8px 40px rgba(0,0,0,0.40), 0 0 0 2px rgba(201,146,42,0.45);
}
.hero-postcode-input::placeholder { text-transform: none; color: var(--muted); letter-spacing: 0; }
.hero-book-btn { white-space: nowrap; }
.hero-booking-sub {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.03em;
}
.hero-trust {
  display: none;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.trust-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: #f5f0e8;
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
.trust-item span:last-child {
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(245,240,232,0.50);
}

/* Google Reviews badge */
.google-reviews-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.4rem;
  background: rgba(14,11,8,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  z-index: 10;
}
.google-reviews-badge:hover {
  background: rgba(14,11,8,0.75);
  border-color: rgba(201,146,42,0.35);
}
.grb-g {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.grb-middle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.grb-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5f0e8;
}
.grb-stars {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: #c9922a;
  line-height: 1;
}
.grb-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(245,240,232,0.15);
}
.grb-count {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(245,240,232,0.60);
  letter-spacing: 0.03em;
}
.grb-brand {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: #f5f0e8;
  letter-spacing: 0.06em;
}

/* Hero fabric tag photo */
.hero-tag-photo {
  position: absolute;
  bottom: 0;
  right: max(-10px, calc(50vw - 670px));
  width: 42%;
  max-width: 300px;
  height: 380px;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
  user-select: none;
  z-index: -1;
  display: block;
  animation: fadeUp 1.1s 0.9s both;
}
@media (max-width: 880px) {
  .hero-tag-photo {
    width: 58%;
    max-width: 250px;
    height: 310px;
    right: -4px;
  }
}
@media (max-width: 480px) {
  .hero-tag-photo {
    width: 68%;
    max-width: 220px;
    height: 280px;
  }
}

/* Hero decoration — replaced by fabric photo */
.hero-decor {
  display: none;
}
.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);
}

/* ============== HOW IT WORKS ============== */
.how-it-works {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.hiw-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 5.5rem 2rem 4rem;
  text-align: center;
}
.hiw-head {
  margin-bottom: 3.5rem;
}
.hiw-head h2 {
  margin-top: 0.25rem;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hiw-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.hiw-icon svg {
  width: 64px;
  height: 64px;
}
.hiw-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
}
.hiw-step h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0.1rem 0 0.4rem;
  font-family: var(--sans);
  letter-spacing: -0.01em;
}
.hiw-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 24ch;
  margin: 0 auto;
}
.hiw-cta {
  padding: 0.5rem 0 0.25rem;
}
.hiw-trust {
  background: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 2.25rem 2rem;
  flex-wrap: wrap;
}
.hiw-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hiw-trust-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--gold-light);
  opacity: 0.9;
}
.hiw-trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hiw-trust-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}
.hiw-trust-sub {
  font-size: 0.76rem;
  color: rgba(248,245,240,0.55);
  line-height: 1.3;
}

/* ============== 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(248, 245, 240, 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(196, 150, 58, 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-divider {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.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(196, 150, 58, 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(248, 245, 240, 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(196, 150, 58, 0.2);
}
.footer-brand .brand-mark {
  color: var(--gold);
  font-size: 2.2rem;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(248, 245, 240, 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(248, 245, 240, 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(248, 245, 240, 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) {
  .hiw-steps { grid-template-columns: 1fr; gap: 3rem; }
  .hiw-step p { max-width: none; }
  .hiw-trust { gap: 2rem; flex-direction: column; align-items: flex-start; padding: 2rem 1.75rem; }
  .hero {
    padding: 4rem max(1.5rem, calc(50vw - 660px)) 5rem;
    /* Fix 1: much stronger overlay so photo recedes to atmospheric backdrop */
    background-image:
      linear-gradient(to bottom, rgba(14,11,8,0.92) 0%, rgba(14,11,8,0.78) 40%, rgba(14,11,8,0.90) 100%),
      url('/aureco-tag.jpg');
    /* Fix 2: crop to calmer fabric area — pushes busy embossed logo lower */
    background-position: 60% 15%;
  }
  /* Fix 3: more breathing room between hero elements */
  .hero-title  { margin-bottom: 2.5rem; }
  .hero-sub    { margin-bottom: 3rem; }
  .hero-booking{ margin-bottom: 3rem; }
  .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-postcode-wrap { flex-direction: column; }
  .hero-postcode-wrap .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%; }
  /* Fix 4: announcement bar — stop scroll, wrap to 2 lines, nothing cut off */
  #a1-banner { height: auto !important; }
  #a1-banner .a1-ticker {
    animation: none !important;
    white-space: normal !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    padding: 5px 1rem !important;
  }
  #a1-banner .a1-btxt {
    white-space: normal !important;
    font-size: 10px !important;
    padding: 0 0.25rem !important;
    text-align: center !important;
    line-height: 1.45 !important;
    flex-shrink: 1 !important;
  }
  #a1-banner .a1-btxt:last-child { display: none !important; }
}

/* ============== GOOGLE PLACES AUTOCOMPLETE ============== */
.pac-container {
  background: #1c1713;
  border: 1px solid rgba(196,150,58,0.28);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
  font-family: var(--sans);
  margin-top: 0;
  z-index: 9999;
}
.pac-item {
  padding: 0.6rem 1rem;
  border-top: 1px solid rgba(196,150,58,0.08);
  color: rgba(245,240,232,0.72);
  font-size: 0.875rem;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.15s;
}
.pac-item:first-child { border-top: none; }
.pac-item:hover,
.pac-item-selected {
  background: rgba(196,150,58,0.1);
  color: #f5f0e8;
}
.pac-item-query {
  font-size: 0.875rem;
  color: #f5f0e8;
  padding-right: 0.25rem;
}
.pac-matched { color: var(--gold); font-weight: 600; }
.pac-icon { display: none; }

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