@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,600&display=swap');

/* ════════════════════════════════════════════════════
   BUSHVELD WEB CO — PUBLIC STYLES
   Sections: Variables · Reset · Base · Layout ·
   Header · Hero · Intro Strip · Services ·
   Why Us · Testimonials · FAQ · CTA Band · Footer ·
   Components · Shared · Responsive
   ════════════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────────────── */
:root {
  --charcoal:   #171713;
  --charcoal-2: #1d1c17;
  --beige-bg:   #F3E8D2;
  --beige-card: #FFF8EA;
  --beige-mid:  #E8D9BC;
  --olive:      #2F3A24;
  --olive-soft: #4a5a38;
  --copper:     #B46A3C;
  --copper-dk:  #8f4e24;
  --soft-white: #FAF6EE;
  --ink:        #171713;
  --ink-muted:  #5c5648;
  --line:       rgba(23, 23, 19, 0.11);
  --max:        1160px;
  --ease:       0.18s ease;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--beige-bg);
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

button, input, textarea, select { font: inherit; }

/* ── BASE TYPOGRAPHY ────────────────────────────────── */
h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 900;
}

h1, h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 800;
  letter-spacing: -0.015em;
}

p { margin: 0; line-height: 1.7; }

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.06; }
h2 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); max-width: 780px; line-height: 1.08; }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }

.eyebrow {
  display: block;
  margin: 0;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* WCAG AA fix: copper #B46A3C on beige is only 3.2:1 — swap to copper-dk (4.84:1) on light sections */
.services-section .eyebrow,
.services-section-bg .eyebrow,
.why-section .eyebrow,
.faq-section .eyebrow,
.contact-section .eyebrow,
.service-intro-section .eyebrow,
.packages-section .eyebrow,
.about-process .eyebrow,
.inclusions-section .eyebrow,
.detail-process-section .eyebrow,
.service-faq-section .eyebrow,
.features-section .eyebrow,
.not-found-section .eyebrow,
.testimonial-section .eyebrow {
  color: var(--copper-dk);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── LAYOUT CONTAINERS ──────────────────────────────── */
.hero-inner,
.intro-strip-inner,
.section-inner,
.footer-inner,
.footer-base {
  width: min(100%, var(--max));
  margin-inline: auto;
}

/* containers that own their own horizontal padding */
.hero-inner,
.intro-strip-inner,
.footer-inner,
.footer-base {
  padding-inline: clamp(20px, 4vw, 52px);
}

/* section provides inline padding — inner pages that skip .section-inner get it here */
.section {
  padding-block: clamp(68px, 9vw, 116px);
  padding-inline: clamp(20px, 4vw, 52px);
}

.hidden-section {
  display: none;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn,
.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 3px;
  padding: 13px 24px;
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  transform: scale(1);
  will-change: transform;
}

.btn:hover,
.button:hover,
button.button:hover {
  transform: scale(1.04);
}

.btn-primary,
.button {
  background: var(--copper);
  color: var(--charcoal);
  border-color: var(--copper);
}

.btn-primary:hover,
.button:hover {
  background: var(--copper);
  color: var(--charcoal);
  border-color: var(--copper);
}

.hero-rfq-button {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--charcoal);
}

.hero-rfq-button:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--charcoal);
}

.btn-ghost {
  background: transparent;
  color: rgba(250, 246, 238, 0.85);
  border-color: rgba(250, 246, 238, 0.26);
}

.btn-ghost:hover {
  border-color: rgba(250, 246, 238, 0.7);
  color: var(--soft-white);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23, 23, 19, 0.22);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--soft-white);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1EAA53;
  border-color: #1EAA53;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: transparent;
  color: #25D366;
  text-decoration: none;
  filter: drop-shadow(0 8px 18px rgba(23, 23, 19, 0.24));
  transition: transform var(--ease), color var(--ease), filter var(--ease);
}

.floating-whatsapp svg {
  width: 58px;
  height: 58px;
}

.whatsapp-outline {
  fill: none;
  stroke: currentColor;
  stroke-width: 6.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-phone {
  fill: currentColor;
}

.floating-whatsapp:hover {
  color: #1EAA53;
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 24px rgba(23, 23, 19, 0.3));
}

@media (max-width: 640px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp svg {
    width: 52px;
    height: 52px;
  }
}

.modal-open {
  overflow: hidden;
}

.lead-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(23, 23, 19, 0.72);
  backdrop-filter: blur(3px);
}

.lead-modal-overlay[hidden] {
  display: none;
}

.lead-modal {
  position: relative;
  width: min(100%, 680px);
  max-height: min(92vh, 820px);
  overflow-y: auto;
  padding: clamp(28px, 5vw, 40px);
  background: var(--beige-card);
  border: 1px solid rgba(180, 106, 60, 0.18);
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(23, 23, 19, 0.34);
  scrollbar-width: none;
}

.lead-modal::-webkit-scrollbar {
  display: none;
}

.lead-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--copper);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lead-modal h2 {
  margin-top: 8px;
  max-width: none;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 1.55rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-modal-subtitle {
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.lead-modal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 16px;
  margin-top: 28px;
}

.lead-field {
  display: grid;
  gap: 9px;
}

.lead-field--full,
.lead-modal-submit,
.lead-modal-note,
#lead-modal-status {
  grid-column: 1 / -1;
}

.lead-field span {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.lead-field em {
  color: var(--ink-muted);
  font-style: normal;
  font-weight: 500;
}

.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft-white);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.lead-field input,
.lead-field select {
  min-height: 52px;
}

.lead-field textarea {
  min-height: 118px;
  resize: vertical;
}

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  border-color: rgba(180, 106, 60, 0.72);
  box-shadow: 0 0 0 4px rgba(180, 106, 60, 0.12);
}

.lead-modal-submit {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--copper);
  color: var(--charcoal);
  font-weight: 900;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}

.lead-modal-submit:hover {
  background: var(--beige-bg);
  transform: translateY(-1px);
}

.lead-modal-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.lead-modal-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: -6px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  text-align: center;
}

.lead-modal-note::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 8px;
  border-radius: 2px;
  background: var(--copper);
  box-shadow: 0 -5px 0 -2px var(--copper);
}

#lead-modal-status {
  min-height: 1.2em;
  text-align: center;
}

@media (max-width: 640px) {
  .lead-modal-overlay {
    padding: 12px;
    align-items: end;
  }

  .lead-modal {
    max-height: 94vh;
    border-radius: 14px 14px 0 0;
  }

  .lead-modal-form {
    grid-template-columns: 1fr;
  }
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}

.text-link {
  font-weight: 800;
  text-decoration: none;
  color: var(--copper);
  border-bottom: 1.5px solid var(--copper);
  padding-bottom: 1px;
  transition: color var(--ease), border-color var(--ease);
}

.text-link:hover { color: var(--copper-dk); border-bottom-color: var(--copper-dk); }

.text-link-light {
  color: rgba(250, 246, 238, 0.65);
  border-bottom-color: rgba(250, 246, 238, 0.28);
}

.text-link-light:hover {
  color: var(--soft-white);
  border-bottom-color: rgba(250, 246, 238, 0.8);
}

/* ── HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px clamp(20px, 4vw, 52px);
  background: rgba(23, 23, 19, 0.97);
  backdrop-filter: blur(16px);
  transform: translateZ(0);
  will-change: transform;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--beige-bg);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand img[hidden] {
  display: none;
}

.brand span {
  line-height: 1;
}

.site-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 14px clamp(20px, 4vw, 52px) 22px;
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 2px;
}

.site-nav.is-open { display: flex; }

.site-nav a {
  padding: 11px 0;
  color: rgba(250, 246, 238, 0.62);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--ease);
}

/* Mobile: link + arrow sit in one row inside the dropdown wrapper */
.nav-item-dropdown {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.nav-services-link {
  display: block;
  width: 100%;
  padding: 11px 40px 11px 0;
  color: rgba(250, 246, 238, 0.62);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: none !important;
  transition: color var(--ease);
}

.nav-dropdown-arrow {
  position: absolute;
  right: 0;
  top: 14px;
  padding: 8px;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  color: rgba(250, 246, 238, 0.62);
  font-size: 0.72rem;
  opacity: 1;
  cursor: pointer;
  line-height: 1;
  transition: transform var(--ease), color var(--ease);
}

.nav-item-dropdown.is-open .nav-dropdown-arrow {
  transform: rotate(180deg);
  top: 14px;
}

/* When panel is open on mobile it expands below the row */
.nav-item-dropdown.is-open .nav-dropdown-panel {
  flex-basis: 100%;
}

.site-nav a:last-child { border-bottom: none; }

.site-nav a:hover,
.site-nav a.is-active,
.nav-services-link:hover,
.nav-dropdown-arrow:hover { color: var(--beige-bg); }

.nav-cta {
  margin-top: 8px !important;
  padding: 10px 22px !important;
  background: var(--copper) !important;
  border: 1.5px solid var(--copper) !important;
  border-bottom: 1.5px solid var(--copper) !important;
  border-radius: 50px;
  color: #fff !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 2px 14px rgba(180, 106, 60, 0.32);
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease) !important;
}

.nav-cta:hover {
  background: var(--copper-dk) !important;
  border-color: var(--copper-dk) !important;
  border-bottom-color: var(--copper-dk) !important;
  color: #fff !important;
  box-shadow: 0 4px 22px rgba(180, 106, 60, 0.48);
  transform: translateY(-1px);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 34px;
  border: 1px solid rgba(250, 246, 238, 0.18);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.burger-icon {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--beige-bg);
  position: relative;
}

.burger-icon::before,
.burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--beige-bg);
}

.burger-icon::before { top: -5px; }
.burger-icon::after  { top: 5px; }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  background: var(--charcoal);
  padding-block: clamp(92px, 13vw, 150px);
  overflow: hidden;
  isolation: isolate;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 18, 16, 0.92), rgba(18, 18, 16, 0.68) 48%, rgba(18, 18, 16, 0.38)),
    linear-gradient(180deg, rgba(18, 18, 16, 0.38), rgba(18, 18, 16, 0.82));
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(100vh - 68px);
  }
}


.hero-inner {
  position: relative;
  display: grid;
  gap: clamp(48px, 6vw, 72px);
  align-items: center;
}

.hero-copy { display: grid; gap: 26px; }

.hero-copy h1 {
  color: var(--soft-white);
  line-height: 1.06;
}

.hero-sub {
  color: rgba(243, 232, 210, 0.86);
  font-size: clamp(0.97rem, 1.7vw, 1.15rem);
  max-width: 520px;
  line-height: 1.74;
}

/* CSS browser mockup */
.browser-mock {
  border-radius: 8px;
  overflow: hidden;
  background: var(--charcoal-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.28);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.dot:nth-child(1) { background: rgba(239, 68, 68, 0.5); }
.dot:nth-child(2) { background: rgba(234, 179, 8, 0.5); }
.dot:nth-child(3) { background: rgba(34, 197, 94, 0.5); }

.address-bar {
  flex: 1;
  height: 20px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.07);
  margin-left: 8px;
}

.browser-body {
  padding: 14px;
  display: grid;
  gap: 12px;
}

.mock-nav {
  height: 28px;
  background: rgba(47, 58, 36, 0.65);
  border-radius: 3px;
}

.mock-hero-block {
  background: rgba(180, 106, 60, 0.09);
  border: 1px solid rgba(180, 106, 60, 0.16);
  border-radius: 4px;
  padding: 18px 14px;
  display: grid;
  gap: 8px;
}

.mock-h {
  height: 13px;
  background: rgba(250, 246, 238, 0.26);
  border-radius: 2px;
  width: 66%;
}

.mock-p {
  height: 7px;
  background: rgba(250, 246, 238, 0.13);
  border-radius: 2px;
  width: 88%;
}

.mock-p--short { width: 60%; }

.mock-btn {
  height: 24px;
  width: 88px;
  background: rgba(47, 58, 36, 0.75);
  border-radius: 3px;
  margin-top: 4px;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mock-card {
  height: 52px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 3px;
}

/* ── INTRO STRIP ────────────────────────────────────── */
.intro-strip {
  background: var(--olive);
  padding-block: clamp(24px, 4vw, 40px);
}

.intro-strip-inner { display: grid; gap: 10px; }

.intro-strip p {
  color: rgba(243, 232, 210, 0.82);
  font-size: clamp(0.95rem, 1.8vw, 1.22rem);
  max-width: 660px;
}

/* ── SECTION HEADER ─────────────────────────────────── */
.section-header {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(36px, 6vw, 68px);
}

.section-header h2 { line-height: 1.06; }

/* ── SERVICES ───────────────────────────────────────── */
.services-section { background: var(--beige-card); }
.services-section-bg { background: var(--beige-bg); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.card-grid.wide {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* New service card grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* New service card */
.service-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--beige-card);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  align-content: start;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(23, 23, 19, 0.09);
  border-color: rgba(180, 106, 60, 0.34);
}

.service-card--home {
  min-height: 315px;
  isolation: isolate;
}

.service-card--home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(180, 106, 60, 0.12), transparent 46%);
  opacity: 0;
  transition: opacity var(--ease);
}

.service-card--home:hover::before,
.service-card--home:focus-within::before {
  opacity: 1;
}

.service-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.service-card--featured {
  border-color: var(--olive);
  border-width: 2px;
}

.recommended-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--olive);
  color: var(--soft-white);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(180, 106, 60, 0.12);
  border-radius: 9px;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform var(--ease), background var(--ease);
}

.service-card--home:hover .service-icon {
  transform: scale(1.06) rotate(-3deg);
  background: rgba(180, 106, 60, 0.18);
}

.service-card-labels { display: grid; gap: 2px; }

.service-category {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0;
}

.service-desc {
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.service-card-action {
  align-self: end;
  width: fit-content;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid currentColor;
  transition: color var(--ease), transform var(--ease);
}

.service-card--home:hover .service-card-action {
  color: var(--olive);
  transform: translateX(4px);
}

.service-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--ink-muted);
  line-height: 1.5;
}

.service-features li::before {
  content: "✓";
  color: var(--copper);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-details summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
  padding: 9px 18px;
  background: rgba(23, 23, 19, 0.06);
  border-radius: 30px;
  list-style: none;
  user-select: none;
  transition: background var(--ease);
  width: fit-content;
}

.service-details summary::-webkit-details-marker { display: none; }

.service-details summary::after { content: " →"; }

.service-details[open] summary::after { content: " ↑"; }

.service-details summary:hover { background: rgba(23, 23, 19, 0.11); }

.service-details > p {
  margin-top: 14px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.68;
  white-space: pre-line;
}

.price {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--copper);
}

/* ── FEATURES / WHAT WE BUILD GRID ──────────────────── */
.features-section { background: var(--beige-bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: clamp(36px, 5vw, 52px);
}

.feature-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: var(--beige-card);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  align-content: start;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(180, 106, 60, 0.12);
  border-radius: 10px;
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0;
}

.feature-card p {
  color: var(--ink-muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

/* ── NAV DROPDOWN ───────────────────────────────────── */
.nav-item-dropdown { position: relative; }

.nav-dropdown-panel {
  display: grid;
  max-height: 0;
  overflow: hidden;
  padding-left: 14px;
  opacity: 0;
  transition: max-height var(--ease), opacity var(--ease), padding-block var(--ease);
}

.nav-item-dropdown.is-open .nav-dropdown-panel {
  max-height: 560px;
  padding-block: 6px 10px;
  opacity: 1;
}

.nav-dropdown-panel a {
  padding: 9px 0 !important;
  font-size: 0.84rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  color: rgba(250, 246, 238, 0.58) !important;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible {
  color: var(--beige-bg) !important;
}

/* ── WHY CHOOSE US ──────────────────────────────────── */
.why-section { background: var(--beige-bg); }

.why-layout {
  display: grid;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.why-intro {
  display: grid;
  gap: 22px;
  align-content: start;
}

.why-intro h2 { line-height: 1.06; }

.why-intro > p {
  color: var(--ink-muted);
  font-size: 1rem;
  max-width: 400px;
}

.why-proof {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.why-proof li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.proof-num {
  color: var(--copper);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding-top: 3px;
}

.why-proof strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 800;
  margin-bottom: 7px;
}

.why-proof p {
  font-size: 0.87rem;
  color: var(--ink-muted);
  line-height: 1.62;
}

/* ── TESTIMONIALS ───────────────────────────────────── */
.testimonial-section { background: var(--beige-mid); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2.5vw, 26px);
}

.quote-card {
  display: grid;
  gap: 16px;
  padding: 28px 24px;
  background: var(--beige-card);
  border-left: 3px solid var(--copper);
}

.quote-card blockquote {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-style: italic;
}

.quote-card h3 {
  font-size: 0.93rem;
  letter-spacing: 0;
  font-weight: 800;
}

.quote-card p { color: var(--ink-muted); font-size: 0.82rem; }

/* ── FAQ ────────────────────────────────────────────── */
.faq-section { background: var(--beige-card); }

.faq-layout {
  display: grid;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.faq-intro {
  display: grid;
  gap: 18px;
  align-content: start;
}

.faq-intro h2 { line-height: 1.06; }

.faq-intro > p { color: var(--ink-muted); font-size: 0.95rem; }

.faq-list { display: grid; gap: 0; }

.faq-item { border-top: 1px solid var(--line); }

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--copper);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding-bottom: 18px;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

/* ── SPLIT LAYOUT (about, contact pages) ────────────── */
.split {
  display: grid;
  gap: clamp(36px, 6vw, 72px);
}

.split article  {
  display: grid;
  gap: 24px;
}

.about-intro-section {
  display: block;
}

.about-intro-copy {
  width: min(100%, var(--max));
  margin-inline: auto;
  grid-template-columns: minmax(280px, 0.55fr) minmax(380px, 0.45fr);
  align-items: center;
  column-gap: clamp(64px, 10vw, 160px);
}

.about-intro-copy > div {
  display: grid;
  gap: 24px;
}

.about-logo-slot,
.about-logo {
  display: grid;
  place-items: center;
  justify-self: end;
  transform: none;
  width: min(520px, 100%);
  min-height: 240px;
  margin: 0 0 10px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-logo-slot img,
.about-logo img {
  width: min(420px, 100%);
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(23, 23, 19, 0.14));
}

.about-logo-slot figcaption,
.about-logo figcaption {
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.about-logo-slot img:not([hidden]) + figcaption,
.about-logo img:not([hidden]) + figcaption {
  display: none;
}

/* ── CTA SECTION (about page legacy) ───────────────── */
.cta-section {
  position: relative;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(72px, 10vw, 124px) clamp(20px, 4vw, 52px);
  background:
    linear-gradient(90deg, rgba(23, 23, 19, 0.18), transparent 56%),
    var(--olive);
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-section > div {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.cta-section .eyebrow {
  color: var(--copper);
  background: rgba(180, 106, 60, 0.14);
  border-color: rgba(180, 106, 60, 0.28);
}

.cta-section h2 {
  color: var(--soft-white);
  max-width: 760px;
  line-height: 1.02;
}

.cta-section p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: rgba(250, 246, 238, 0.68);
}

.cta-section .button {
  width: max-content;
  min-width: 190px;
  padding: 16px 28px;
  background: var(--copper);
  border-color: var(--copper);
  color: var(--charcoal);
}

.cta-section .button:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--charcoal);
}

/* ── 404 PAGE ───────────────────────────────────────── */
.not-found-section {
  min-height: 60vh;
  display: grid;
  align-items: center;
  padding: clamp(64px, 10vw, 120px) clamp(20px, 4vw, 52px);
}

.not-found-inner {
  max-width: 620px;
  display: grid;
  gap: 20px;
}

.not-found-inner h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.not-found-inner > p {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ── BACK LINK (service detail) ─────────────────────── */
.back-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(243, 232, 210, 0.6);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--ease);
  margin-bottom: 6px;
}

.back-link:hover { color: var(--beige-bg); }

/* ── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: var(--beige-bg);
}

/* Simple footer on inner pages (no .footer-inner wrapper) */
.site-footer > p {
  color: rgba(243, 232, 210, 0.55);
  font-size: 0.9rem;
  margin: 0 0 4px;
  padding-inline: clamp(20px, 4vw, 52px);
  width: min(100%, var(--max));
  box-sizing: content-box;
}

.site-footer:not(:has(.footer-inner)) {
  padding-block: clamp(28px, 5vw, 52px);
}

.footer-inner {
  padding-block: clamp(52px, 8vw, 88px);
  display: grid;
  gap: clamp(36px, 5vw, 60px);
}

.footer-brand .brand {
  display: inline-block;
  margin-bottom: 8px;
}

.footer-tagline {
  color: rgba(243, 232, 210, 0.72) !important;
  font-weight: 700;
  font-size: 0.9rem !important;
  margin-bottom: 12px;
}

.footer-about {
  color: rgba(243, 232, 210, 0.42) !important;
  font-size: 0.84rem !important;
  max-width: 300px;
  line-height: 1.64;
}

.footer-nav,
.footer-contact,
.footer-legal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-content: start;
}

.footer-nav strong,
.footer-contact strong,
.footer-legal strong {
  display: block;
  color: rgba(243, 232, 210, 0.46);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-nav a,
.footer-contact a,
.footer-legal a {
  display: block;
  color: rgba(243, 232, 210, 0.52);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--ease);
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-legal a:hover { color: var(--beige-bg); }

.footer-base {
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}

.footer-base p {
  color: rgba(243, 232, 210, 0.32);
  font-size: 0.78rem;
}

/* ── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  position: relative;
  padding: clamp(72px, 11vw, 120px) clamp(20px, 4vw, 52px) clamp(48px, 7vw, 80px);
  color: var(--soft-white);
  background: var(--charcoal);
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(340px, 48vw, 520px);
  display: grid;
  align-content: end;
}

.page-hero h1 {
  position: relative;
  max-width: 780px;
}

.page-hero > p {
  position: relative;
  max-width: 600px;
  color: rgba(243, 232, 210, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  margin-top: 18px;
  line-height: 1.7;
}

.page-hero .eyebrow {
  position: relative;
  max-width: max-content;
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--muted-copper);
  font-size: 0.72rem;
}

/* ── STATES ─────────────────────────────────────────── */
.empty-state,
.error-state,
.loading-state {
  grid-column: 1 / -1;
  padding: 28px 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.error-state { color: #8d3c2f; }

/* ── DETAIL PANEL ───────────────────────────────────── */
.detail-panel {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.detail-panel:empty { display: none; }
.detail-panel p { white-space: pre-line; }

label {
  display: grid;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
}

input,
textarea,
select {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid var(--line);
  border-radius: 0;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  transition: border-color var(--ease);
}

input:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-bottom-color: var(--copper);
}

textarea { min-height: 140px; resize: vertical; }

.form-message { margin: 0; font-weight: 800; font-size: 0.88rem; }
.form-message.is-error { color: #8d3c2f; }
.form-message.is-success { color: var(--olive); }


/* ── ABOUT PROCESS / VALUES ─────────────────────────── */
.about-process,
.about-values {
  padding: clamp(72px, 10vw, 124px) clamp(20px, 4vw, 52px);
  overflow: hidden;
}

.about-process {
  background:
    linear-gradient(135deg, rgba(47, 58, 36, 0.08), transparent 42%),
    var(--beige-card);
}

.about-values {
  background: var(--charcoal);
  color: var(--soft-white);
}

.about-section-intro,
.process-steps,
.values-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.about-section-intro {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(36px, 6vw, 68px);
}

.about-section-intro h2 {
  max-width: 780px;
  line-height: 1.02;
}

.about-section-intro > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.about-values .about-section-intro > p:not(.eyebrow) {
  color: rgba(250, 246, 238, 0.66);
}

.process-steps {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-block: 0;
  padding: 0;
  align-items: stretch;
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 14px;
  min-width: 0;
  height: 100%;
  padding: clamp(22px, 4vw, 30px);
  background: rgba(255, 248, 234, 0.84);
  border: 1px solid rgba(23, 23, 19, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 23, 19, 0.08);
}

.process-steps li:nth-child(even) {
  background: rgba(243, 232, 210, 0.78);
}

.process-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--beige-bg);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(47, 58, 36, 0.22);
}

.process-steps h3,
.value-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.18;
}

.process-steps p,
.value-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.values-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.value-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  min-width: 0;
  height: 100%;
  padding: clamp(22px, 4vw, 30px);
  background: rgba(250, 246, 238, 0.055);
  border: 1px solid rgba(250, 246, 238, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 106, 60, 0.34);
  background: rgba(250, 246, 238, 0.075);
}

.value-card-warm {
  background: rgba(180, 106, 60, 0.08);
}

.value-card-raised {
  background: rgba(47, 58, 36, 0.3);
}

.value-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  padding: 8px;
  color: var(--copper);
  background: rgba(180, 106, 60, 0.12);
  border-radius: 50%;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.about-values .value-card h3 {
  color: var(--beige-bg);
}

.about-values .value-card p {
  color: rgba(250, 246, 238, 0.62);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (min-width: 760px) {
  .nav-toggle { display: none; }

  .site-nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: none;
  }

  .site-nav a {
    padding: 8px 10px;
    border-bottom: none;
    font-size: 0.85rem;
  }

  .nav-cta {
    margin-top: 0 !important;
    padding: 10px 22px !important;
    align-self: flex-start;
  }

  /* Desktop dropdown */
  .nav-item-dropdown {
    display: block;
    position: relative;
  }

  .nav-dropdown-panel {
    display: none !important;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 210px;
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 6px 0;
    z-index: 200;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  }

  .nav-item-dropdown:hover .nav-dropdown-panel.has-items,
  .nav-item-dropdown:focus-within .nav-dropdown-panel.has-items {
    display: grid !important;
    padding-left: 0;
  }

  .nav-dropdown-panel a {
    padding: 9px 16px !important;
    font-size: 0.83rem !important;
    border-bottom: none !important;
    color: rgba(250,246,238,0.6) !important;
    transition: color var(--ease), background var(--ease);
  }

  .nav-dropdown-panel a:hover {
    color: var(--beige-bg) !important;
    background: rgba(255,255,255,0.05);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  }

  .intro-strip-inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
  }

  .split {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }

  .process-steps,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .faq-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  }

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

  .cta-section {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .browser-mock {
    transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
  }
}

@media (min-width: 980px) {
  .process-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
  }

  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  }
}

@media (max-width: 759px) {
  .browser-mock { max-width: 100%; transform: none; }
  .rfq-row { grid-template-columns: 1fr; }

  .about-intro-copy {
    grid-template-columns: 1fr;
  }

  .about-logo-slot,
  .about-logo {
    justify-self: start;
    width: min(300px, 100%);
    min-height: 140px;
    transform: none;
  }

  .about-logo-slot img,
  .about-logo img {
    width: min(280px, 100%);
    max-height: 170px;
  }
}

/* ── RFQ FORM SECTION ───────────────────────────────── */

.rfq-section {
  background: var(--charcoal);
  padding-block: clamp(68px, 9vw, 116px);
}

.rfq-section--light {
  background: var(--beige-bg);
}

.rfq-layout {
  display: grid;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.rfq-pitch {
  display: grid;
  gap: 20px;
  align-content: start;
}

.rfq-pitch h2 {
  color: var(--soft-white);
  line-height: 1.06;
}

.rfq-section--light .rfq-pitch h2 { color: var(--ink); }

.rfq-pitch > p {
  color: rgba(243, 232, 210, 0.68);
  font-size: 1rem;
  max-width: 380px;
  line-height: 1.7;
}

.rfq-section--light .rfq-pitch > p { color: var(--ink-muted); }

.rfq-trust {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.rfq-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(243, 232, 210, 0.62);
  font-size: 0.88rem;
}

.rfq-section--light .rfq-trust li { color: var(--ink-muted); }

.rfq-trust li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

/* Form card container */
.rfq-card {
  background: var(--beige-card);
  padding: clamp(26px, 4vw, 40px);
}

.rfq-section--light .rfq-card {
  border: 1px solid var(--line);
}

/* Form layout */
.rfq-form {
  display: grid;
  gap: 0;
}

.rfq-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
}

/* Field wrapper */
.field {
  display: grid;
  gap: 6px;
  padding-bottom: 20px;
}

.field label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.req {
  color: var(--copper);
  font-weight: 900;
  margin-left: 2px;
}

/* Field inputs override global styles for scoped styling */
.field > input,
.field > textarea,
.field > select {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid rgba(23, 23, 19, 0.14);
  border-radius: 0;
  padding: 10px 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.95rem;
  transition: border-color var(--ease);
}

.field > input:focus,
.field > textarea:focus,
.field > select:focus {
  outline: 0;
  border-bottom-color: var(--copper);
}

.field > input::placeholder,
.field > textarea::placeholder {
  color: rgba(23, 23, 19, 0.28);
}

.field > textarea {
  min-height: 96px;
  resize: vertical;
}

.field > select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%235c5648' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 22px;
}

.field-full {
  grid-column: 1 / -1;
}

/* Validation states */
.field-invalid {
  border-bottom-color: #9f3525 !important;
}

.field-error {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: #9f3525;
  margin-top: 3px;
}

/* Form footer row */
.rfq-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding-top: 6px;
}

.rfq-footer .form-message {
  flex: 1;
  min-width: 0;
  font-size: 0.86rem;
}

/* Star rating */
.star-rating {
  color: var(--copper);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ── CONTACT PAGE ───────────────────────────────────── */

.contact-section { background: var(--beige-card); }

.contact-layout {
  display: grid;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-intro {
  display: grid;
  gap: 20px;
  align-content: start;
}

.contact-intro h2 { line-height: 1.06; }

.contact-intro > p { color: var(--ink-muted); font-size: 1rem; }

.contact-ways {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.contact-ways li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 4px;
}

.contact-ways strong {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}

.contact-ways a {
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  transition: color var(--ease);
}

.contact-ways a:hover { color: var(--copper); }

@media (min-width: 760px) {
  .rfq-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  }
}

/* Services dropdown overrides */
@media (min-width: 760px) {
  .nav-item-dropdown {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: auto;
    position: relative;
    border-bottom: none;
  }

  .nav-services-link {
    padding: 8px 2px 8px 10px;
    border-bottom: none !important;
    font-size: 0.85rem;
  }

  .nav-dropdown-arrow {
    position: static;
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 4px 6px;
    font-size: 0.55rem;
    opacity: 0.7;
    cursor: pointer;
    line-height: 1;
    transition: transform var(--ease), color var(--ease), opacity var(--ease);
  }

  .nav-item-dropdown:hover .nav-dropdown-arrow,
  .nav-item-dropdown:focus-within .nav-dropdown-arrow,
  .nav-item-dropdown.is-open .nav-dropdown-arrow {
    color: var(--beige-bg);
    opacity: 1;
    transform: rotate(180deg);
  }

  .nav-dropdown-panel {
    display: grid !important;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 270px;
    max-height: none;
    overflow: visible;
    padding: 10px !important;
    background: var(--charcoal);
    border: 1px solid rgba(243, 232, 210, 0.12);
    border-radius: 12px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  }

  .nav-dropdown-panel::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 12px;
  }

  .nav-item-dropdown:hover .nav-dropdown-panel,
  .nav-item-dropdown:focus-within .nav-dropdown-panel,
  .nav-item-dropdown.is-open .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-dropdown-panel a {
    padding: 10px 12px !important;
    border-radius: 8px;
    border-bottom: none !important;
    color: rgba(243, 232, 210, 0.78) !important;
    transition: color var(--ease), background var(--ease), transform var(--ease);
  }

  .nav-dropdown-panel a:hover,
  .nav-dropdown-panel a:focus-visible {
    color: var(--beige-bg) !important;
    background: rgba(180, 106, 60, 0.16);
    transform: translateX(2px);
  }

}


/* ── MAIN SERVICES LIST (services.html) ─────────────── */
.main-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
  margin-top: clamp(36px, 5vw, 56px);
}

.main-services-list .main-service-card {
  min-height: 327px;
  height: 327px;
  grid-template-rows: auto 1fr auto;
}

.main-services-list .main-service-card:has(.main-service-expand.is-open) {
  height: auto;
}

@media (max-width: 980px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 640px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

.main-service-summary {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.service-row-button {
  width: 136px;
  min-height: 44px;
  padding: 10px 14px;
  font-size: 0.78rem;
  text-align: center;
  white-space: nowrap;
}

.main-service-expand {
  display: grid;
  gap: 14px;
  align-self: end;
  min-width: 0;
}

.main-service-expand-toggle {
  justify-self: start;
}

.main-service-expand-body {
  display: none;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  min-width: 0;
}

.main-service-expand.is-open .main-service-expand-body {
  display: grid;
}

.main-service-primary-link,
.main-service-package-links a {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.35;
  transition: color var(--ease), transform var(--ease);
}

.main-service-primary-link {
  color: var(--copper);
}

.main-service-package-links {
  display: grid;
  gap: 8px;
}

.main-service-package-links a {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--ink-muted);
}

.main-service-package-links a::before {
  content: "✓";
  color: var(--copper);
  font-weight: 900;
  flex-shrink: 0;
}

.main-service-primary-link:hover,
.main-service-package-links a:hover {
  color: var(--copper);
  transform: translateX(2px);
}

.main-service-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: clamp(26px, 4vw, 40px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.main-service-index {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--copper);
  padding-top: 6px;
}

.main-service-body {
  display: grid;
  gap: 12px;
}

.main-service-body h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
}

.main-service-body > p {
  color: var(--ink-muted);
  font-size: 0.93rem;
  max-width: 560px;
  line-height: 1.65;
  margin: 0;
}

.main-service-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* ── SERVICE DETAIL PAGE ────────────────────────────── */
.service-intro-section { background: var(--beige-card); }

.service-intro-layout {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.service-intro-copy {
  display: grid;
  gap: 20px;
}

.service-intro-copy h2 { line-height: 1.04; }

.service-intro-copy p {
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.rich-text {
  display: grid;
  gap: 14px;
}

.rich-text p {
  margin: 0;
}

.service-stat-panel {
  display: grid;
  gap: 0;
  background: var(--charcoal);
  border-radius: 10px;
  overflow: hidden;
  align-content: start;
}

.service-stat {
  display: grid;
  gap: 4px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(243, 232, 210, 0.07);
}

.service-stat:last-child { border-bottom: none; }

.service-stat-num {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--copper);
  line-height: 1;
}

.service-stat-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(243, 232, 210, 0.46);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── PACKAGE CARDS ──────────────────────────────────── */
.packages-section { background: var(--beige-bg); }

.packages-section .section-inner {
  width: min(100%, 1360px);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(340px, 1fr));
  align-items: start;
  gap: clamp(22px, 2.6vw, 34px);
  margin-top: clamp(40px, 6vw, 64px);
}

.package-card {
  display: grid;
  align-self: start;
  grid-template-rows: auto auto auto minmax(150px, auto) 1fr auto auto;
  gap: 18px;
  padding: clamp(26px, 3.4vw, 38px);
  background: var(--beige-card);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.package-card:hover {
  box-shadow: 0 10px 36px rgba(23, 23, 19, 0.09);
  border-color: rgba(180, 106, 60, 0.3);
}

.package-card--featured {
  background: var(--charcoal);
  border-color: var(--copper);
  border-width: 2px;
  color: var(--soft-white);
}

.package-card--featured:hover { border-color: var(--copper); }

.package-eyebrow {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.package-name {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
  color: var(--ink);
}

.package-card--featured .package-name { color: var(--soft-white); }

.package-price {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--copper);
  margin: 0;
  line-height: 1;
}

.package-price small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-left: 4px;
}

.package-card--featured .package-price small { color: rgba(243, 232, 210, 0.44); }

.package-summary {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  min-height: 8.25em;
}

.package-card--featured .package-summary {
  color: rgba(243, 232, 210, 0.68);
}

.package-details {
  align-self: end;
}

.package-details summary {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(23, 23, 19, 0.08);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.package-details summary::-webkit-details-marker { display: none; }

.package-details summary::after {
  content: "+";
  margin-left: 8px;
  color: var(--copper);
}

.package-details[open] summary::after { content: "-"; }

.package-details[open] > summary {
  display: none;
}


.package-details-body {
  display: grid;
  gap: 16px;
}

.package-info-block {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-left: 3px solid var(--copper);
  background: rgba(180, 106, 60, 0.08);
  border-radius: 6px;
}

.package-info-block > span {
  color: var(--copper);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-details-close {
  display: none;
  width: fit-content;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--olive);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.package-details-close::after {
  content: "⌃";
  margin-left: 8px;
  color: var(--copper);
}

.package-details[open] .package-details-close {
  display: inline-flex;
  align-items: center;
}

.package-details .rich-text p {
  color: var(--ink-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.package-details .rich-text {
  gap: 10px;
}

.package-card--featured .package-details summary {
  background: rgba(243, 232, 210, 0.1);
  color: var(--soft-white);
}

.package-card--featured .package-details > p {
  color: rgba(243, 232, 210, 0.68);
}

.package-cta {
  width: 100%;
  min-height: 46px;
  margin-top: 2px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.package-card--featured .package-features { border-top-color: rgba(243, 232, 210, 0.1); }

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.package-card--featured .package-features li { color: rgba(243, 232, 210, 0.68); }

.package-features li::before {
  content: "✓";
  color: var(--copper);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.package-best {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-muted);
  padding-top: 10px;
  border-top: 1px solid var(--line);
  line-height: 1.55;
  margin: 0;
}

.package-card--featured .package-best {
  color: rgba(243, 232, 210, 0.44);
  border-top-color: rgba(243, 232, 210, 0.1);
}

.package-card:has(.package-expand.is-open) > .package-features--visible {
  display: none;
}

.packages-grid .package-card {
  position: relative;
  align-self: start;
  min-height: 620px;
  grid-template-rows: minmax(58px, auto) minmax(82px, auto) auto minmax(170px, auto) 1fr auto auto;
  gap: 18px;
  padding: clamp(30px, 3.6vw, 44px);
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(23, 23, 19, 0.06);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.packages-grid .package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(23, 23, 19, 0.11);
}

.packages-grid .package-card--featured {
  background: var(--beige-card);
  border-color: var(--olive);
  color: var(--ink);
  box-shadow: 0 20px 52px rgba(23, 23, 19, 0.13);
}

.package-popular {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(47, 58, 36, 0.1);
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 900;
}

.package-popular::before {
  content: "★";
  color: var(--copper);
}

.packages-grid .package-name {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  color: var(--ink);
  display: grid;
  align-items: center;
}

.packages-grid .package-price {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  text-align: center;
}

.packages-grid .package-summary {
  min-height: 5.4em;
  text-align: center;
  color: var(--ink-muted);
  display: grid;
  align-items: center;
}

.packages-grid .package-features--visible {
  align-self: start;
  min-height: 170px;
}

.packages-grid .package-features {
  border-top: none;
  gap: 11px;
}

.packages-grid .package-features li {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.packages-grid .package-features li::before {
  content: "✓";
}

.packages-grid .package-expand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.packages-grid .package-expand-body {
  display: none;
  width: 100%;
  gap: 16px;
}

.packages-grid .package-expand.is-open .package-expand-body {
  display: grid;
}

.packages-grid .package-expand.is-open .package-expand-toggle {
  order: 2;
}

.packages-grid .package-expand.is-open .package-expand-body {
  order: 1;
}

.packages-grid .package-expand-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: var(--olive);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.packages-grid .package-expand-toggle::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-right: 2.5px solid var(--copper);
  border-bottom: 2.5px solid var(--copper);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.22s ease;
}

.packages-grid .package-expand.is-open .package-expand-toggle::after {
  transform: rotate(-135deg) translateY(-3px);
}

.packages-grid .package-cta {
  align-self: end;
  min-height: 52px;
  border-radius: 8px;
  background: var(--copper);
  border-color: var(--copper);
  color: var(--charcoal);
}

.packages-grid .package-cta:hover {
  background: var(--beige-bg);
  border-color: var(--beige-bg);
  color: var(--charcoal);
}

.main-services-list .main-service-card {
  min-height: 327px;
  height: 327px;
  grid-template-rows: auto 1fr auto;
}

.main-services-list .main-service-card:has(.main-service-expand.is-open) {
  height: auto;
}

/* ── INCLUSIONS SECTION ─────────────────────────────── */
.inclusions-section { background: var(--beige-card); }

.inclusions-grid {
  display: grid;
  gap: 12px;
  margin-top: clamp(36px, 5vw, 52px);
}

.inclusion-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  background: var(--beige-bg);
  border-radius: 8px;
  border: 1px solid var(--line);
}

.inclusion-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(47, 58, 36, 0.1);
  display: grid;
  place-items: center;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
}

.inclusion-item h4 {
  font-size: 0.87rem;
  font-weight: 800;
  margin: 0 0 3px;
  color: var(--ink);
}

.inclusion-item p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── AUDIENCE SECTION ───────────────────────────────── */
.audience-section {
  background: var(--olive);
  padding-block: clamp(68px, 9vw, 116px);
  padding-inline: clamp(20px, 4vw, 52px);
}

.audience-section .about-section-intro h2 { color: var(--soft-white); }
.audience-section .about-section-intro p  { color: rgba(243, 232, 210, 0.66); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: clamp(32px, 5vw, 48px);
}

.audience-card {
  display: grid;
  gap: 10px;
  padding: 22px 18px;
  background: rgba(250, 246, 238, 0.07);
  border: 1px solid rgba(250, 246, 238, 0.11);
  border-radius: 8px;
  transition: background var(--ease), border-color var(--ease);
}

.audience-card:hover {
  background: rgba(250, 246, 238, 0.11);
  border-color: rgba(180, 106, 60, 0.4);
}

.audience-card-icon { font-size: 1.5rem; }

.audience-card span {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(243, 232, 210, 0.8);
}

/* ── DETAIL PROCESS ─────────────────────────────────── */
.detail-process-section { background: var(--beige-bg); }

.detail-process-steps {
  display: grid;
  border-top: 1px solid var(--line);
  margin-top: clamp(36px, 5vw, 52px);
}

.detail-process-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: clamp(22px, 3.5vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.detail-process-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--beige-bg);
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.detail-process-body {
  display: grid;
  gap: 8px;
  padding-top: 8px;
}

.detail-process-body h3 {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 900;
  color: var(--ink);
}

.detail-process-body p {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 540px;
  margin: 0;
}

/* ── SERVICE DETAIL FAQ ─────────────────────────────── */
.service-faq-section { background: var(--beige-card); }

.service-faq-layout {
  display: grid;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.service-faq-intro {
  display: grid;
  gap: 18px;
  align-content: start;
}

.service-faq-intro h2 { line-height: 1.06; }

.service-faq-intro > p { color: var(--ink-muted); font-size: 0.95rem; }

/* ── RESPONSIVE: SERVICE DETAIL ─────────────────────── */
@media (min-width: 760px) {
  .service-intro-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  }

  .inclusions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-faq-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  }
}

@media (min-width: 980px) {
  .packages-grid {
    grid-template-columns: repeat(3, minmax(340px, 1fr));
  }

  .detail-process-steps {
    grid-template-columns: repeat(4, 1fr);
    border-top: none;
  }

  .detail-process-item {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
    border-bottom: none;
    border-left: 1px solid var(--line);
    padding: clamp(22px, 3vw, 32px);
  }

  .detail-process-item:first-child { border-left: none; }
}

/* ── PROSE (privacy policy) ─────────────────────────── */
.prose h2 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 10px;
  color: var(--ink);
}

.prose p,
.prose ul,
.prose li {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.prose ul {
  padding-left: 20px;
}

/* ── GLOBAL OVERFLOW FIX (issue 5) ─────────────────── */
html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  max-width: 100%;
}

footer {
  width: 100%;
}

/* ── PACKAGES GRID HORIZONTAL SCROLL (issue 4) ──────── */
.packages-scroll-wrapper {
  width: 100%;
}

@media (max-width: 640px) {
  .packages-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .package-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* ── MOBILE PADDING (issue 2) ───────────────────────── */
@media (max-width: 600px) {
  .rfq-section,
  .rfq-section .rfq-layout {
    padding-inline: 16px;
  }

  .page-hero {
    padding-inline: 16px;
  }

  .about-intro-section,
  .about-process,
  .about-values {
    padding-left: 16px;
    padding-right: 16px;
  }

  .process-steps li {
    padding-inline: 16px;
  }
}

/* ── ABOUT LOGO CENTERING ON MOBILE (issue 3) ───────── */
@media (max-width: 760px) {
  .about-logo-slot,
  .about-logo {
    justify-self: center;
    margin-inline: auto;
  }
}

.prose li { margin-bottom: 6px; }

/* ── SCROLL REVEAL ───────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.62s ease, transform 0.62s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="left"]  { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* Hero copy — CSS entrance (plays on load, no IO needed) */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.hero-copy > * {
  animation: hero-fade-up 0.7s ease both;
}
.hero-copy > *:nth-child(1) { animation-delay: 0.08s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.22s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.36s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.50s; }

/* Page-hero (inner pages) entrance */
.page-hero .eyebrow { animation: hero-fade-up 0.6s ease both 0.05s; }
.page-hero h1       { animation: hero-fade-up 0.6s ease both 0.15s; }
.page-hero > p      { animation: hero-fade-up 0.6s ease both 0.28s; }

/* FAQ answer fade on open */
.faq-item[open] p {
  animation: hero-fade-up 0.28s ease both;
}

/* ── FOCUS STATES (keyboard navigation) ─────────────── */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}

.site-nav a:focus-visible,
.nav-cta:focus-visible {
  outline-color: var(--copper);
  outline-offset: 4px;
}

.btn:focus-visible,
.button:focus-visible,
button.button:focus-visible,
.package-cta:focus-visible,
.lead-modal-submit:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(180, 106, 60, 0.22);
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

