/* ==========================================================================
   Taj Mahal Photoshoot — Design System
   Editorial, warm, restrained. Serif display + clean sans body.
   ========================================================================== */

:root {
  /* Color — warm cream ground, near-black ink, single green accent throughout */
  --color-bg: #F3EDDA;
  --color-bg-alt: #EAE2C8;
  --color-surface: #FFFDF6;
  --color-ink: #1C1B1A;
  --color-ink-soft: #4A4640;
  --color-ink-faint: #655D4E;
  --color-line: #DED4B4;
  --color-line-strong: #C9BC94;
  --color-accent: #3F7A54;       /* button fills, icon glyphs, whatsapp green */
  --color-accent-text: #356B44;  /* green used as small text on cream (AA-safe) */
  --color-accent-deep: #2F5E40;  /* hover states */
  --color-accent-soft: #DCEBDD;  /* light green tint for pills/tags */
  --color-accent-on-dark: #8ED1A6; /* green text/labels on dark ink sections */
  --color-orange: #B6521F;       /* collage accent tile; carries white label text, so AA-checked */
  --color-whatsapp: #3F7A54;
  --color-whatsapp-deep: #2F5E40;

  /* Type */
  --font-display: 'Anton', 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.3125rem;
  --text-xl: clamp(1.6rem, 1.4rem + 1vw, 2.1rem);
  --text-2xl: clamp(2rem, 1.6rem + 2vw, 2.9rem);
  --text-3xl: clamp(1.9rem, 1.3rem + 3.5vw, 4rem);
  --text-4xl: clamp(3rem, 2.2rem + 4.5vw, 5.6rem);

  /* Spacing scale (4/8 based) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.5rem;
  --sp-8: 3rem;
  --sp-9: 4rem;
  --sp-10: 5rem;
  --sp-11: 6.5rem;
  --sp-12: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  --container: 1240px;
  --container-narrow: 760px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; }

body {
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--color-accent-soft); color: var(--color-accent-deep); }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ---- Typography ------------------------------------------------------- */
main { counter-reset: section; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-ink);
  line-height: 0.98;
  letter-spacing: 0.002em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
h3, h4 {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--color-ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); font-weight: 700; }

p { color: var(--color-ink-soft); }

.lede {
  font-size: var(--text-lg);
  color: var(--color-ink-soft);
  max-width: 46ch;
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-text);
}
/* Package/tour card kickers reuse .eyebrow's look but aren't numbered
   sections, so they're excluded from the counter. */
.eyebrow:not(.package-name)::before {
  counter-increment: section;
  content: "(0" counter(section) ")";
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--color-ink-faint);
}
.section--ink .eyebrow { color: var(--color-accent-on-dark); }
.section--ink .eyebrow::before { color: #9C927D; }

.accent-word { font-weight: 400; color: var(--color-accent-text); }
.section--ink .accent-word { color: var(--color-accent-on-dark); }

/* ---- Layout helpers ---------------------------------------------------- */
.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
@media (max-width: 640px) {
  .wrap { padding-inline: var(--sp-5); }
}

.section { padding-block: var(--sp-11); }
.section--tight { padding-block: var(--sp-9); }
.section--alt { background: var(--color-bg-alt); }
.section--ink { background: var(--color-ink); color: var(--color-bg); }
.section--ink p { color: #C9C0AE; }
.section--ink h2, .section--ink h3 { color: var(--color-bg); }

@media (max-width: 768px) {
  .section { padding-block: var(--sp-9); }
  .section--tight { padding-block: var(--sp-7); }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; gap: var(--sp-6); }
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}
@media (max-width: 640px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
  min-height: 44px;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }

.btn-primary {
  background: var(--color-ink);
  color: var(--color-bg);
}
.btn-primary:hover { background: var(--color-accent-deep); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: var(--color-line-strong);
  color: var(--color-ink);
}
.btn-outline:hover { border-color: var(--color-ink); background: var(--color-surface); }

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--color-whatsapp-deep); transform: translateY(-1px); }

.btn-block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-line-strong);
  padding-bottom: 2px;
  transition: border-color 200ms var(--ease), color 200ms var(--ease), gap 200ms var(--ease);
}
.text-link:hover { border-color: var(--color-accent); color: var(--color-accent-deep); gap: 0.6em; }
.text-link svg { width: 1em; height: 1em; }

/* ---- Site header --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-ink);
  letter-spacing: 0.01em;
}
.logo .mark { width: 34px; height: 34px; color: var(--color-accent); flex-shrink: 0; }
.logo .word small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-ink-faint);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-7);
}
.main-nav ul { display: flex; gap: var(--sp-6); }
.main-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-ink-soft);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a:hover { color: var(--color-ink); }
.main-nav a.is-active { color: var(--color-ink); }
.main-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: var(--sp-4); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn-outline { display: none; }
}

@media (max-width: 560px) {
  .header-cta .btn-whatsapp { display: none; }
  .logo .word small { display: none; }
  .logo { font-size: 1rem; gap: var(--sp-2); }
  .logo .mark { width: 28px; height: 28px; }
}

.mobile-nav {
  /* display:none is the real guard against this ever showing inline in the
     page — position:fixed + transform alone depend on browser support that
     isn't universal, and if either silently fails this element must still
     never take up document flow. JS toggles display before/after the
     transform transition (see js/main.js openNav/closeNav). */
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  background: var(--color-bg);
  flex-direction: column;
  padding: var(--sp-6);
  transform: translateY(-100%);
  transition: transform 320ms var(--ease);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; height: 52px; }
.mobile-nav-close { background: none; border: none; width: 44px; height: 44px; color: var(--color-ink); }
.mobile-nav-close svg { width: 26px; height: 26px; }
.mobile-nav ul { display: flex; flex-direction: column; margin-top: var(--sp-7); gap: var(--sp-2); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  text-transform: uppercase;
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--color-line);
  display: block;
}
.mobile-nav-foot { margin-top: auto; display: flex; flex-direction: column; gap: var(--sp-4); }
.mobile-nav-foot .btn { width: 100%; }
.mobile-nav-foot .phone { text-align: center; color: var(--color-ink-soft); font-size: var(--text-sm); }

/* ---- Hero ----------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: var(--sp-11);
  padding-bottom: var(--sp-11);
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-9);
  align-items: center;
}
.hero-copy, .hero-visual { min-width: 0; }
.hero-copy .eyebrow { margin-bottom: var(--sp-5); }
.hero-copy h1 { margin-bottom: var(--sp-5); }
.hero-copy .lede { margin-bottom: var(--sp-7); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; }

.hero-stats {
  display: flex;
  gap: var(--sp-7);
  margin-top: var(--sp-9);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--color-line);
}
.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-ink);
}
.hero-stat span {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-faint);
}

.hero-visual { position: relative; }

.hero-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp-4);
  aspect-ratio: 4 / 3.4;
}
.hero-collage .tile-main { grid-row: 1 / 3; height: 100%; }
.hero-collage .tile-orange,
.hero-collage .tile-ink {
  border-radius: var(--radius-lg);
}
.hero-collage .tile-orange {
  background: var(--color-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.tile-orange-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.04em; opacity: 0.9; }
.tile-orange-price { font-family: var(--font-display); font-size: var(--text-xl); line-height: 1; }
.hero-collage .tile-ink {
  background: var(--color-ink);
  color: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  text-align: center;
  padding: var(--sp-3);
}
.hero-collage .tile-ink svg { width: 26px; height: 26px; color: var(--color-accent-on-dark); }
.hero-collage .tile-ink span {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-motif {
  aspect-ratio: auto;
  border-radius: var(--radius-lg);
  background: var(--color-ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-motif img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-motif::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(28,27,26,0) 55%, rgba(28,27,26,0.6) 100%);
}
.hero-motif-caption {
  position: absolute;
  z-index: 2;
  left: var(--sp-5);
  bottom: var(--sp-5);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin-inline: auto; width: 100%; }
  .hero-stats { gap: var(--sp-6); flex-wrap: wrap; }
}

/* ---- Photo placeholder block (stands in for real photography) --------- */
.photo-block {
  position: relative;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.photo-block::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(140% 100% at 20% 0%, rgba(255,255,255,0.14), transparent 55%);
}
.photo-block .motif-icon {
  position: absolute;
  top: 50%; left: 50%;
  width: 34%;
  color: rgba(255,255,255,0.32);
  transform: translate(-50%, -50%);
}
.photo-block img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-block .cap {
  position: relative;
  z-index: 1;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-ink);
  background: var(--color-bg);
  margin: var(--sp-3);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.photo-block .cap::after { content: '\2197'; font-weight: 700; }
.photo-block.ratio-square { aspect-ratio: 1 / 1; }
.photo-block.ratio-portrait { aspect-ratio: 3 / 4; }
.photo-block.ratio-tall { aspect-ratio: 4 / 5.4; }
.photo-block.ratio-wide { aspect-ratio: 16 / 10; }
.photo-block.tone-b { background: var(--color-ink); }
.photo-block.tone-b .cap { background: var(--color-accent); color: #fff; }
.photo-block.tone-c { background: var(--color-bg-alt); }
.photo-block.tone-c .motif-icon { color: rgba(28,27,26,0.18); }
.photo-block.tone-c .cap { background: var(--color-ink); color: var(--color-bg); }
.photo-block.tone-orange { background: var(--color-orange); }

/* ---- Marquee strip ----------------------------------------------------- */
.strip {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding-block: var(--sp-5);
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: var(--sp-9);
  width: max-content;
  animation: marquee 28s linear infinite;
}
.strip-track span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: var(--text-md);
  color: var(--color-ink-faint);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; }
}

/* ---- Cards: packages ----------------------------------------------------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 980px) {
  .package-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .package-grid { grid-template-columns: 1fr; }
}

.package-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.package-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(36,31,25,0.08); border-color: var(--color-line-strong); }

.package-card.is-featured {
  border-color: var(--color-accent);
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-accent-soft) 100%);
}
.package-card .badge {
  position: absolute;
  top: -13px;
  left: var(--sp-6);
  z-index: 2;
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.package-card .price-row {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  margin: var(--sp-4) 0 var(--sp-2);
}
.package-card .price { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--color-ink); }
.package-card .price-unit { font-size: var(--text-sm); color: var(--color-ink-faint); }
.package-card .package-desc { font-size: var(--text-sm); margin-bottom: var(--sp-5); }
.package-card .package-name { font-size: var(--text-lg); }

.feature-list { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-6); flex: 1; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--color-ink-soft);
}
.feature-list svg {
  width: 18px; height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list li.sub { padding-left: 30px; color: var(--color-ink-faint); }

.package-card .btn { margin-top: auto; }

.package-card-media {
  margin: calc(var(--sp-6) * -1) calc(var(--sp-6) * -1) var(--sp-5);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}
.package-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ---- Tour cards ---------------------------------------------------------- */
.tour-list { display: flex; flex-direction: column; gap: var(--sp-6); }
.tour-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--sp-7);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  align-items: center;
}
.tour-card > * { min-width: 0; }
/* width (not height) must be the definite dimension here — .photo-block's
   aspect-ratio computes the other axis from whichever is definite, and
   height:100% previously matched it to the (tall, variable) text column's
   height, forcing the photo far wider than its 320px grid track. */
.tour-card .photo-block { border-radius: var(--radius-md); width: 100%; max-width: 100%; min-height: 200px; }
.tour-card .tour-meta {
  display: flex;
  gap: var(--sp-5);
  margin: var(--sp-4) 0 var(--sp-5);
  flex-wrap: wrap;
}
.tour-meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--color-ink-soft);
}
.tour-meta-item svg { width: 17px; height: 17px; color: var(--color-accent); }
.tour-card .tour-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.tour-highlights { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.tour-highlights li {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-accent-deep);
  background: var(--color-accent-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

@media (max-width: 820px) {
  .tour-card { grid-template-columns: 1fr; }
  .tour-card .photo-block { aspect-ratio: 16/9; min-height: unset; }
}

/* ---- Gallery -------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: var(--sp-4);
}
.gallery-grid .photo-block { height: 100%; border-radius: var(--radius-md); }
.gallery-grid .g-tall { grid-row: span 2; }
.gallery-grid .g-wide { grid-column: span 2; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-grid .g-wide { grid-column: span 1; }
}

/* ---- Steps / process ---------------------------------------------------- */
.step-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.step {
  padding-top: var(--sp-5);
  border-top: 1px solid var(--color-line-strong);
}
.step .num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--sp-3);
}
.step h4 { margin-bottom: var(--sp-2); font-size: var(--text-md); }
.step p { font-size: var(--text-sm); }
.section--ink .step { border-top-color: rgba(247,241,230,0.18); }
.section--ink .step h4 { color: var(--color-bg); }
.section--ink .step .num { color: var(--color-accent-on-dark); }
@media (max-width: 860px) {
  .step-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .step-list { grid-template-columns: 1fr; }
}

/* ---- FAQ --------------------------------------------------------------- */
.faq-list { border-top: 1px solid var(--color-line); }
.faq-item { border-bottom: 1px solid var(--color-line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  background: none;
  border: none;
  text-align: left;
  padding: var(--sp-5) 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--color-ink);
  transition: color 200ms var(--ease);
}
.faq-q:hover { color: var(--color-accent-deep); }
.faq-q svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; transition: transform 240ms var(--ease); }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms var(--ease);
}
.faq-a p { padding-bottom: var(--sp-5); max-width: 62ch; font-size: var(--text-sm); }
.faq-item.is-open .faq-a { max-height: 240px; }

/* ---- Forms --------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field.full { grid-column: 1 / -1; }
.field label { font-size: var(--text-sm); font-weight: 600; color: var(--color-ink); }
.field input, .field select, .field textarea {
  width: 100%;
  max-width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-sm);
  padding: 0.8em 1em;
  color: var(--color-ink);
  min-height: 44px;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A75A2A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 18px;
  padding-right: 2.75em;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
  border-color: var(--color-accent);
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ---- Testimonial-free trust row ------------------------------------------ */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.trust-card {
  padding: var(--sp-6);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}
.trust-card svg { width: 28px; height: 28px; color: var(--color-accent); margin-bottom: var(--sp-4); }
.trust-card h4 { margin-bottom: var(--sp-2); }
.trust-card p { font-size: var(--text-sm); }
@media (max-width: 860px) {
  .trust-row { grid-template-columns: 1fr; }
}

/* ---- CTA band ---------------------------------------------------------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: var(--color-accent);
  color: #fff;
  padding: var(--sp-9) var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: var(--text-2xl); max-width: 16ch; }
.cta-band p { color: rgba(255,255,255,0.88); margin-top: var(--sp-3); max-width: 42ch; }
.cta-band .mark { position: absolute; right: 0; bottom: -10px; width: 180px; max-width: 45%; opacity: 0.16; color: #fff; }
.cta-band .btn-whatsapp { background: var(--color-ink); }
.cta-band .btn-whatsapp:hover { background: #000; }
@media (max-width: 780px) {
  .cta-band { flex-direction: column; align-items: flex-start; padding: var(--sp-7) var(--sp-6); }
}

/* ---- Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--color-ink);
  color: #C9C0AE;
  padding-top: var(--sp-10);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-9);
  border-bottom: 1px solid rgba(247,241,230,0.14);
}
.footer-brand .logo { color: var(--color-bg); }
.footer-brand .logo .word small { color: #9C927D; }
.footer-brand p { margin-top: var(--sp-4); max-width: 32ch; font-size: var(--text-sm); }
.footer-col h5 {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9C927D;
  margin-bottom: var(--sp-4);
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a { font-size: var(--text-sm); }
.footer-col a:hover { color: var(--color-bg); }
.footer-contact li { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--text-sm); }
.footer-contact svg { width: 17px; height: 17px; color: var(--color-accent); flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--sp-5);
  font-size: var(--text-xs);
  color: #9C927D;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- WhatsApp floating button --------------------------------------------- */
.wa-float {
  position: fixed;
  right: var(--sp-5);
  bottom: var(--sp-5);
  z-index: 150;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--color-whatsapp);
  color: #fff;
  padding: var(--sp-3);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 28px rgba(47, 94, 64, 0.35);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: transform 200ms var(--ease), background 200ms var(--ease), padding 200ms var(--ease);
}
.wa-float:hover { transform: translateY(-2px); background: var(--color-whatsapp-deep); }
.wa-float .icon-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-float svg { width: 22px; height: 22px; }
.wa-float > span:not(.icon-circle) {
  white-space: nowrap;
  display: block;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 200ms var(--ease), opacity 150ms var(--ease);
}
/* Full "Chat on WhatsApp" label only appears on hover/focus on devices with a
   precise pointer — kept compact by default so it doesn't sit over page
   content (it previously covered card CTAs at its fixed bottom-right spot). */
@media (hover: hover) and (pointer: fine) {
  .wa-float:hover, .wa-float:focus-visible {
    padding: var(--sp-3) var(--sp-5) var(--sp-3) var(--sp-3);
  }
  .wa-float:hover > span:not(.icon-circle), .wa-float:focus-visible > span:not(.icon-circle) {
    width: auto;
    opacity: 1;
  }
}

/* ---- Page header (interior pages) ----------------------------------------- */
.page-header {
  padding-top: var(--sp-9);
  padding-bottom: var(--sp-8);
}
.page-header .eyebrow { margin-bottom: var(--sp-4); }
.page-header h1 { font-size: var(--text-3xl); max-width: 18ch; overflow-wrap: break-word; }
@media (max-width: 520px) {
  .page-header h1 { max-width: none; }
}
.page-header .lede { margin-top: var(--sp-4); }
.breadcrumb {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--color-ink-faint);
  margin-bottom: var(--sp-5);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---- Reveal-on-scroll ------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Misc ---------------------------------------------------------------- */
.divider { height: 1px; background: var(--color-line); border: none; margin-block: var(--sp-9); }
.center { text-align: center; }
.max-narrow { max-width: var(--container-narrow); margin-inline: auto; }
.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;
}
.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -60px;
  background: var(--color-ink);
  color: var(--color-bg);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-sm);
  z-index: 300;
  transition: top 200ms var(--ease);
}
.skip-link:focus { top: var(--sp-4); }
