/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #0d2210;
  --ink-mid:    #163019;
  --ink-light:  #1f4224;
  --gold:       #d4a017;
  --gold-light: #e8c04a;
  --gold-dim:   rgba(212,160,23,0.12);
  --white:      #ffffff;
  --off-white:  #f5f6f1;
  --text:       #14201a;
  --text-muted: #5c6b60;
  --border:     #e1e6e0;
  --radius:     16px;
  --tr:         0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Mobile-first: comfortable edge padding by default, opens up on larger screens */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 680px) {
  .container { padding: 0 32px; }
}

@media (min-width: 1100px) {
  .container { padding: 0 48px; }
}

.section { padding: 80px 0; }

@media (min-width: 680px) {
  .section { padding: 120px 0; }
}

a { text-decoration: none; color: inherit; }

/* ============================
   TYPOGRAPHY
   ============================ */
.section__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 28px;
  text-wrap: balance;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--tr);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,160,23,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(13,34,16,0.22);
}
.btn--ghost:hover {
  border-color: rgba(13,34,16,0.5);
  background: rgba(13,34,16,0.04);
}

.btn--nav {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  padding: 10px 22px;
  font-size: 0.85rem;
}
.btn--nav:hover { background: var(--gold-light); }

.btn--full { width: 100%; text-align: center; }

/* ============================
   NAV
   Mobile-first: hamburger + off-canvas menu by default,
   full inline nav restored from tablet width up.
   ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 680px) {
  .nav__inner { height: 72px; }
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@media (min-width: 680px) {
  .nav__logo { font-size: 1.3rem; }
}

.nav__logo-by {
  display: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-left: 4px;
}

@media (min-width: 680px) {
  .nav__logo-by { display: inline; }
}

.nav__links {
  display: none;
  list-style: none;
}

.nav__links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--white);
  padding: 28px 20px;
  gap: 24px;
  border-top: 1px solid var(--border);
  box-shadow: 0 16px 32px rgba(13,34,16,0.08);
  z-index: 99;
}

@media (min-width: 680px) {
  .nav__links,
  .nav__links.open {
    display: flex;
    flex-direction: row;
    position: static;
    align-items: center;
    gap: 40px;
    padding: 0;
    background: none;
    border-top: none;
    box-shadow: none;
  }
}

.nav__links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--tr);
}
.nav__links a:hover { color: var(--gold); }

.nav__hamburger {
  display: block;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
}

@media (min-width: 680px) {
  .nav__hamburger { display: none; }
}

/* ============================
   HERO
   Mobile-first: single column, decorative ring visual
   only earns its space once the viewport is wide enough.
   ============================ */
.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  background: var(--white);
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 900px) {
  .hero {
    min-height: 100vh;
    grid-template-columns: 1fr 1fr;
    padding-top: 72px;
    padding-bottom: 0;
  }
}

/* soft, sparing glow instead of a full-bleed dark block */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 15%, rgba(212,160,23,0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--off-white) 0%, var(--white) 45%);
  pointer-events: none;
}

.hero__overlay { display: none; }

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 56px 20px 40px;
}

@media (min-width: 680px) {
  .hero__inner { padding: 64px 32px 48px; }
}

@media (min-width: 900px) {
  .hero__inner { padding: 80px 0 80px 96px; }
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 9vw, 6rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 32px;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}

@media (min-width: 680px) {
  .hero__sub { font-size: 1.15rem; margin-bottom: 48px; line-height: 1.8; }
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__ctas .btn { text-align: center; }

@media (min-width: 500px) {
  .hero__ctas { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .hero__ctas .btn { text-align: left; }
}

/* Right side decorative panel - desktop only, needs real room to breathe */
.hero__visual {
  display: none;
}

@media (min-width: 900px) {
  .hero__visual {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* A route from "home" to a cluster of EU destinations, one emphasized
   and pulsing - the founder's journey, not a generic decorative ring. */
.hero__map-frame {
  position: relative;
  width: 480px;
  height: 480px;
  flex-shrink: 0;
}

.hero__map {
  width: 100%;
  height: 100%;
}

.hero__map-route {
  animation: routedash 3.5s linear infinite;
}

@keyframes routedash {
  to { stroke-dashoffset: -33; }
}

.hero__map-pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: mappulse 2.4s ease-out infinite;
}

@keyframes mappulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}

.hero__map-stat {
  position: absolute;
  right: 0;
  bottom: 12%;
  text-align: right;
}

.hero__map-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 800;
  line-height: 1;
}

.hero__map-stat span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.hero__scroll-hint {
  display: none;
}

@media (min-width: 900px) {
  .hero__scroll-hint {
    display: flex;
    position: absolute;
    bottom: 40px;
    left: 48px;
    align-items: center;
    gap: 12px;
    z-index: 2;
  }
}

.hero__scroll-hint span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(13,34,16,0.35);
}

.hero__scroll-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, rgba(212,160,23,0.6), transparent);
  animation: scrollpulse 2.5s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%, 100% { opacity: 0.4; width: 48px; }
  50% { opacity: 1; width: 64px; }
}

/* ============================
   TRUST BAR
   Mobile-first: 2-up grid, expands to 4-up on desktop.
   ============================ */
.trustbar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

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

@media (min-width: 1100px) {
  .trustbar__inner { grid-template-columns: repeat(4, 1fr); }
}

.trustbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  gap: 6px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--tr);
}

.trustbar__item:nth-child(2) { border-right: none; }

@media (min-width: 1100px) {
  .trustbar__item {
    padding: 36px 24px;
    border-bottom: none;
  }
  .trustbar__item:nth-child(2) { border-right: 1px solid var(--border); }
  .trustbar__item:last-child { border-right: none; }
}

.trustbar__item:hover { background: rgba(212,160,23,0.08); }

.trustbar__item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 800;
  line-height: 1;
}

@media (min-width: 680px) {
  .trustbar__item strong { font-size: 1.8rem; }
}

.trustbar__item span {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}

.trustbar__divider { display: none; }

/* ============================
   PAIN SECTION
   ============================ */
.pain { background: var(--off-white); }

.pain__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 900px) {
  .pain__top {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 56px;
  }
}

.pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 680px) {
  .pain__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.pain__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 24px rgba(0,0,0,0.05);
  transition: transform var(--tr), box-shadow var(--tr);
}

@media (min-width: 680px) {
  .pain__card { padding: 36px 32px; }
}

.pain__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.09);
}

.pain__icon {
  display: block;
  color: var(--gold);
  margin-bottom: 16px;
}

.pain__icon svg { width: 26px; height: 26px; }

.pain__card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
}

/* The one deliberate dark moment on the page - everything else stays light */
.pain__answer {
  margin-top: 32px;
  padding: 32px 24px;
  background: var(--ink);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (min-width: 900px) {
  .pain__answer {
    margin-top: 48px;
    padding: 52px 64px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }
}

.pain__answer p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 600px;
  font-family: 'Playfair Display', serif;
}

@media (min-width: 680px) {
  .pain__answer p { font-size: 1.4rem; }
}

.pain__answer strong { color: var(--gold); font-style: italic; }

.pain__answer a {
  flex-shrink: 0;
}

/* ============================
   WHY EUROPE
   ============================ */
.why { background: var(--white); }

.why__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 900px) {
  .why__header {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
  }
}

.why__intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (min-width: 900px) {
  .why__intro {
    font-size: 1.1rem;
    line-height: 1.8;
    align-self: end;
    padding-bottom: 4px;
  }
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 680px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .why__grid { grid-template-columns: repeat(4, 1fr); }
}

.why__card {
  padding: 36px 28px;
  background: var(--off-white);
  transition: background var(--tr);
}

@media (min-width: 680px) {
  .why__card { padding: 48px 36px; }
}

.why__card:hover { background: var(--white); }

.why__number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 20px;
  line-height: 1;
}

.why__card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.why__card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }

.country-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.country-chips li {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
}

/* ============================
   SERVICES
   ============================ */
.services { background: var(--white); }

.services__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 900px) {
  .services__header {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
  }
}

.services__intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (min-width: 900px) {
  .services__intro {
    font-size: 1.05rem;
    line-height: 1.8;
    align-self: end;
  }
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 680px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--off-white);
  padding: 36px 28px;
  border: none;
  border-radius: 0;
  transition: background var(--tr);
}

@media (min-width: 680px) {
  .card { padding: 48px 36px; }
}

.card:hover { background: var(--white); }

.card__icon { color: var(--gold); margin-bottom: 22px; display: block; }
.card__icon svg { width: 30px; height: 30px; }

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }

/* ============================
   ABOUT
   ============================ */
.about { background: var(--white); }

.about__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .about__header {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.about__text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__text p:last-child { margin-bottom: 0; }

/* ============================
   HOW IT WORKS
   ============================ */
.hiw { background: var(--off-white); }

.hiw__header {
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 900px) {
  .hiw__header { margin-bottom: 72px; }
}

.hiw__header .section__label { justify-content: center; display: block; }

.hiw__steps {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 32px;
}

@media (min-width: 900px) {
  .hiw__steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
  }
}

.step {
  text-align: center;
  padding: 0 12px;
}

@media (min-width: 900px) {
  .step { padding: 0 24px; }
}

.step__number {
  width: 64px;
  height: 64px;
  background: var(--ink);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 28px rgba(13,34,16,0.2);
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 700;
}

.step p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }

.step__connector {
  width: 2px;
  height: 40px;
  margin: 0 auto;
  background: linear-gradient(to bottom, rgba(212,160,23,0.6), rgba(212,160,23,0.1));
}

@media (min-width: 900px) {
  .step__connector {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, rgba(212,160,23,0.6), rgba(212,160,23,0.15));
    align-self: center;
    margin-top: -64px;
  }
}

/* ============================
   PRICING
   ============================ */
.pricing { background: var(--white); }

.pricing__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 900px) {
  .pricing__header {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
  }
}

.pricing__intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (min-width: 900px) {
  .pricing__intro {
    font-size: 1.05rem;
    line-height: 1.8;
    align-self: end;
  }
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 680px) {
  .pricing__grid--four {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
  }
}

@media (min-width: 1100px) {
  .pricing__grid--four {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: none;
  }
}

.pricing__card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: left;
  position: relative;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  display: flex;
  flex-direction: column;
}

@media (min-width: 680px) {
  .pricing__card { padding: 52px 44px; }
}

.pricing__card:hover {
  border-color: rgba(212,160,23,0.4);
  box-shadow: 0 16px 40px rgba(13,34,16,0.08);
  transform: translateY(-4px);
}

.pricing__card--featured {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(212,160,23,0.16);
}

.pricing__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  align-self: flex-start;
}

.pricing__duration {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pricing__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing__price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.1;
}

@media (min-width: 680px) {
  .pricing__price { font-size: 2.6rem; }
}

.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
  flex: 1;
}

.pricing__features li {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.pricing__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold);
}

.pricing__desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 36px;
  flex: 1;
}

.pricing__addon {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing__note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 40px;
}

.pricing__note a {
  color: var(--gold);
  text-decoration: underline;
}

/* ============================
   PULL QUOTE
   ============================ */
.quote {
  background: var(--off-white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 680px) {
  .quote { padding: 100px 0; }
}

.quote::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  color: rgba(212,160,23,0.35);
  line-height: 1;
  pointer-events: none;
  font-weight: 800;
}

@media (min-width: 680px) {
  .quote::before { font-size: 9rem; top: 24px; }
}

.quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  font-style: italic;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  max-width: 900px;
  margin: 64px auto 24px;
  position: relative;
  z-index: 1;
}

@media (min-width: 680px) {
  .quote blockquote { margin-top: 84px; }
}

.quote__attr {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

/* ============================
   FAQ
   ============================ */
.faq { background: var(--off-white); }

.faq__header {
  text-align: center;
  margin-bottom: 40px;
}

.faq__header .section__label { justify-content: center; display: block; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 24px;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq__item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--tr);
}

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

.faq__item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  padding-bottom: 20px;
  margin-top: -4px;
}

/* ============================
   CONTACT
   ============================ */
.contact { background: var(--white); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
  }
}

.contact__text .section__title { margin-bottom: 20px; }

.contact__text p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.75;
}

@media (min-width: 680px) {
  .contact__text p { font-size: 1.05rem; line-height: 1.8; }
}

.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.contact__list li {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact__or {
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--text-muted) !important;
  margin-bottom: 12px !important;
}

.contact__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

/* ============================
   FORM
   ============================ */
.form {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 20px;
  border: 1px solid var(--border);
}

@media (min-width: 680px) {
  .form { padding: 52px 48px; }
}

.form__group { margin-bottom: 24px; }

.form__group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
  appearance: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,160,23,0.1);
}

.form__group textarea { resize: vertical; }

.form__note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 48px;
  padding-bottom: 40px;
  gap: 24px;
}

@media (min-width: 680px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding-top: 60px;
    padding-bottom: 48px;
    flex-wrap: wrap;
  }
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.footer__logo-by {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-left: 4px;
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer__address {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.footer__whatsapp {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  transition: color var(--tr);
}

.footer__whatsapp:hover { color: var(--gold); }

.footer__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

@media (min-width: 680px) {
  .footer__links { justify-content: flex-start; gap: 36px; }
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--tr);
}
.footer__links a:hover { color: var(--gold); }

.footer__legal {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer__legal p {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
}

.footer__legal-links {
  margin-top: 8px !important;
}

.footer__legal-links a {
  color: var(--text-muted);
  transition: color var(--tr);
}

.footer__legal-links a:hover { color: var(--gold); }

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__map-route,
  .hero__map-pulse,
  .hero__scroll-line {
    animation: none;
  }
}

/* ============================
   LEGAL PAGES
   ============================ */
.legal {
  padding-top: 128px;
  padding-bottom: 80px;
}

.legal .container {
  max-width: 760px;
}

.legal h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.legal__updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal ul {
  margin: 0 0 16px 20px;
}

.legal li {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal a:not(.btn) { color: var(--gold); text-decoration: underline; }

.notfound {
  text-align: center;
  padding-top: 180px;
  padding-bottom: 140px;
}

.notfound .section__label { justify-content: center; display: block; }

.notfound h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.notfound p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
