/* ==========================================================================
   AMATRA TRAVEL & LEISURE — Editorial Luxury Design System
   Warm paper · deep pine green · terracotta · Fraunces serif
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Paper & ink — light & clean so the colourful logo leads */
  --paper: #fbf8f6;
  --paper-2: #f6eef2;
  --card: #ffffff;
  --ink: #2a2530;
  --ink-soft: #5f5763;
  --ink-dim: #9a8f9c;

  /* Brand — sampled directly from the Amatra logo pinwheel */
  --magenta: #cf3f8f;
  --magenta-deep: #b3327a;
  --orange: #e0700f;
  --yellow: #f3c400;
  --lime: #9fb50f;
  --blue: #2070b0;
  --plum-deep: #2a1426;
  --brand-grad: linear-gradient(90deg, #cf3f8f 0%, #e0700f 27%, #f3c400 50%, #9fb50f 73%, #2070b0 100%);

  /* Semantic aliases mapped to brand colours */
  --pine: var(--magenta);          /* primary accent: buttons, icons, eyebrow */
  --pine-deep: var(--plum-deep);   /* dark surfaces: footer, CTA, hover */
  --pine-soft: #d95fa3;
  --terra: var(--orange);          /* warm secondary accent */
  --terra-deep: #c25f0c;
  --gold: var(--yellow);
  --sand: #f0e2d6;

  /* Lines */
  --line: rgba(32, 32, 28, 0.14);
  --line-soft: rgba(32, 32, 28, 0.08);
  --line-strong: rgba(32, 32, 28, 0.26);

  /* Back-compat aliases (referenced by inline styles in HTML) */
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --text-dim: var(--ink-dim);
  --border: var(--line);
  --border-strong: var(--line-strong);
  --cyan: var(--pine);
  --cyan-bright: var(--terra);
  --violet: var(--pine);
  --gold-accent: var(--gold);

  --shadow-sm: 0 2px 8px rgba(32, 30, 22, 0.06);
  --shadow-md: 0 18px 40px -20px rgba(32, 30, 22, 0.28);
  --shadow-lg: 0 40px 90px -40px rgba(20, 24, 18, 0.4);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --maxw: 1200px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* Brand signature bar — echoes the logo pinwheel */
body::before { content: ""; position: fixed; top: 0; left: 0; right: 0; height: 3px; background: var(--brand-grad); z-index: 200; }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink-soft);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle warm backdrop + faint grain */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(70% 50% at 100% 0%, rgba(191, 90, 60, 0.06), transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(31, 58, 51, 0.06), transparent 60%),
    var(--paper);
}
.bg-grid { display: none; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--terra); color: #fff; }

/* Layout */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 120px 0; position: relative; }
.section-sm { padding: 76px 0; }

/* Headings — Fraunces serif */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); font-weight: 500; line-height: 1.08; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.8rem, 6.2vw, 5rem); font-weight: 460; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }

/* Editorial emphasis (was gradient-text) — italic serif in terracotta */
.gradient-text {
  font-style: italic;
  font-weight: 460;
  color: var(--magenta);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pine);
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  border-radius: 2px;
  background: var(--brand-grad);
}

.lead { color: var(--ink-soft); font-size: 1.12rem; max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.btn-primary { background: var(--pine); color: #f7f1e6; }
.btn-primary:hover { background: var(--pine-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247, 241, 230, 0.86);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.brand { display: inline-flex; align-items: center; }
.brand .logo { height: 38px; width: auto; display: block; }
.footer .brand .logo { height: 40px; }
.brand small { display: none; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 9px 16px; font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); border-radius: var(--radius-pill); transition: color 0.25s; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 1px; background: var(--terra); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; gap: 2px; padding: 4px; border: 1px solid var(--line); border-radius: var(--radius-pill); }
.lang-switch a { padding: 5px 12px; font-size: 0.76rem; font-weight: 600; border-radius: var(--radius-pill); color: var(--ink-dim); }
.lang-switch a.active { background: var(--pine); color: var(--paper); }
.nav-toggle { display: none; background: transparent; border: 1px solid var(--line-strong); border-radius: 10px; width: 46px; height: 46px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 1.5px; background: var(--ink); transition: 0.3s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 180px 0 100px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 64px; align-items: center; }
.hero h1 { margin: 24px 0; letter-spacing: -0.02em; }
.hero .lead { margin-bottom: 38px; font-size: 1.18rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 54px; flex-wrap: wrap; padding-top: 34px; border-top: 1px solid var(--line); }
.hero-stats .stat .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 500; color: var(--pine); line-height: 1; }
.hero-stats .stat .label { font-size: 0.82rem; color: var(--ink-dim); margin-top: 8px; letter-spacing: 0.02em; }

/* Hero visual — framed editorial photo */
.hero-visual { position: relative; }
.hero-photo {
  border-radius: 200px 200px 16px 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::before {
  content: "";
  position: absolute; inset: -16px -16px 24px;
  border: 1px solid var(--gold);
  border-radius: 210px 210px 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}
.float-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.float-card .ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--pine); color: var(--paper); }
.float-card .ic svg { width: 20px; height: 20px; }
.float-card strong { display: block; font-size: 0.92rem; color: var(--ink); font-weight: 600; }
.float-card span { font-size: 0.76rem; color: var(--ink-dim); }
.float-card.fc-1 { top: 40px; left: -34px; }
.float-card.fc-2 { bottom: 110px; right: -38px; }
.float-card.fc-3 { bottom: 26px; left: -20px; }

/* Marquee */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; background: var(--paper-2); mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scrollx 34s linear infinite; }
.marquee-track span { color: var(--ink-soft); font-family: var(--font-display); font-style: italic; font-size: 1.15rem; white-space: nowrap; display: flex; align-items: center; gap: 14px; }
.marquee-track span::before { content: "✦"; color: var(--terra); font-style: normal; font-size: 0.8rem; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* Section header */
.sec-head { max-width: 720px; margin-bottom: 60px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin: 20px 0 18px; }

/* Grid */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card .ic-lg {
  width: 58px; height: 58px; border-radius: 14px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--magenta) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--magenta) 22%, #fff);
  margin-bottom: 24px;
}
.card .ic-lg svg { width: 27px; height: 27px; color: var(--magenta); }
/* Pinwheel: icons cycle through the logo's brand colours */
.grid .card:nth-child(6n+2) .ic-lg { background: color-mix(in srgb, var(--orange) 12%, #fff); border-color: color-mix(in srgb, var(--orange) 24%, #fff); }
.grid .card:nth-child(6n+2) .ic-lg svg { color: var(--orange); }
.grid .card:nth-child(6n+3) .ic-lg { background: color-mix(in srgb, var(--blue) 12%, #fff); border-color: color-mix(in srgb, var(--blue) 24%, #fff); }
.grid .card:nth-child(6n+3) .ic-lg svg { color: var(--blue); }
.grid .card:nth-child(6n+4) .ic-lg { background: color-mix(in srgb, var(--lime) 16%, #fff); border-color: color-mix(in srgb, var(--lime) 30%, #fff); }
.grid .card:nth-child(6n+4) .ic-lg svg { color: #7e9009; }
.grid .card:nth-child(6n+5) .ic-lg { background: color-mix(in srgb, var(--gold) 16%, #fff); border-color: color-mix(in srgb, var(--gold) 30%, #fff); }
.grid .card:nth-child(6n+5) .ic-lg svg { color: #c79a00; }
.grid .card:nth-child(6n+6) .ic-lg { background: color-mix(in srgb, var(--magenta-deep) 12%, #fff); border-color: color-mix(in srgb, var(--magenta-deep) 24%, #fff); }
.grid .card:nth-child(6n+6) .ic-lg svg { color: var(--magenta-deep); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; color: var(--terra); font-weight: 600; font-size: 0.88rem; }
.card .card-link svg { width: 15px; height: 15px; transition: transform 0.3s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* Featured card */
.card-feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  padding: 0;
  overflow: hidden;
  min-height: 360px;
  background: var(--plum-deep);
  border-color: var(--plum-deep);
}
.card-feature:hover { transform: none; }
.card-feature .cf-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.card-feature .cf-body h2, .card-feature .cf-body .eyebrow { color: #f3ead8; }
.card-feature .cf-body .eyebrow::before { background: var(--gold); }
.card-feature .cf-body .gradient-text { color: #e9a987; }
.card-feature .cf-body .lead { color: rgba(243, 234, 216, 0.82); }
.card-feature .cf-photo { position: relative; overflow: hidden; }
.card-feature .cf-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Stats band */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--card); }
.stat-box { text-align: center; padding: 40px 22px; border-right: 1px solid var(--line); }
.stat-box:last-child { border-right: none; }
.stat-box .num { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 500; color: var(--pine); line-height: 1; }
.stat-box .label { color: var(--ink-dim); margin-top: 10px; font-size: 0.88rem; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; position: relative; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: grid; gap: 16px; margin: 28px 0; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-soft); }
.check-list li .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--pine); display: grid; place-items: center; color: var(--paper); margin-top: 3px; }
.check-list li .tick svg { width: 13px; height: 13px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { padding: 0 26px 0 0; position: relative; }
.step + .step::before { content: ""; }
.step .step-no { font-family: var(--font-display); font-size: 2.8rem; font-weight: 400; color: var(--terra); line-height: 1; display: block; }
.step h3 { font-size: 1.2rem; margin: 14px 0 10px; }
.step p { color: var(--ink-soft); font-size: 0.94rem; }
.step::after { content: ""; position: absolute; top: 18px; left: 64px; right: -14px; height: 1px; background: var(--line); }
.steps .step:last-child::after { display: none; }

/* Testimonials */
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; }
.quote p { font-family: var(--font-display); font-size: 1.18rem; font-weight: 400; color: var(--ink); line-height: 1.5; }
.quote .who { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.quote .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--pine); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: var(--paper); }
.quote .who strong { display: block; color: var(--ink); }
.quote .who span { font-size: 0.84rem; color: var(--ink-dim); }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; font-size: 0.9rem; }

/* CTA band */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 84px 50px;
  text-align: center;
  overflow: hidden;
  background: var(--pine-deep);
  color: #f3ead8;
}
.cta-band h2 { color: #f7f1e6; margin-bottom: 18px; }
.cta-band .eyebrow { color: var(--gold); }
.cta-band .eyebrow::before { background: var(--gold); }
.cta-band .gradient-text { color: #e9a987; }
.cta-band .lead { color: rgba(243, 234, 216, 0.82); }
.cta-band .btn-ghost { border-color: rgba(243, 234, 216, 0.4); color: #f3ead8; }
.cta-band .btn-ghost:hover { background: #f3ead8; color: var(--pine-deep); border-color: #f3ead8; }
.cta-band .hero-cta { justify-content: center; margin-top: 32px; }

/* Footer */
.footer { background: var(--pine-deep); color: rgba(243, 234, 216, 0.72); padding: 84px 0 32px; margin-top: 0; }
.footer .brand { color: #f7f1e6; }
.footer .brand small { color: rgba(243, 234, 216, 0.6); }
.footer h4 { font-family: var(--font); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; }
.footer a { color: rgba(243, 234, 216, 0.72); display: block; padding: 6px 0; font-size: 0.94rem; transition: color 0.25s; }
.footer a:hover { color: #fff; }
.footer .f-about p { color: rgba(243, 234, 216, 0.68); font-size: 0.94rem; margin: 18px 0; max-width: 38ch; }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; border: 1px solid rgba(243, 234, 216, 0.22); border-radius: 50%; display: grid; place-items: center; color: rgba(243, 234, 216, 0.8); }
.socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,255,255,0.04); }
.socials svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(243, 234, 216, 0.16); margin-top: 56px; padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(243, 234, 216, 0.55); font-size: 0.85rem; }

/* Forms */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--paper); border: 1px solid var(--line);
  border-radius: 11px; padding: 14px 16px; color: var(--ink);
  font-family: inherit; font-size: 0.96rem; transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--pine); background: var(--card); box-shadow: 0 0 0 3px rgba(31, 58, 51, 0.1); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.82rem; color: var(--ink-dim); margin-top: 12px; }

/* Page hero (inner pages) */
.page-hero { padding: 168px 0 60px; text-align: center; }
.page-hero .lead { margin: 20px auto 0; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; color: var(--ink-dim); font-size: 0.84rem; margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--terra); }

/* Contact tiles */
.contact-tiles { display: grid; gap: 16px; }
.contact-tile { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-tile .ic { width: 46px; height: 46px; flex: none; border-radius: 11px; background: var(--pine); color: var(--paper); display: grid; place-items: center; }
.contact-tile .ic svg { width: 21px; height: 21px; }
.contact-tile h4 { font-family: var(--font); text-transform: none; letter-spacing: 0; color: var(--ink); font-size: 1rem; margin-bottom: 5px; font-weight: 600; }
.contact-tile p, .contact-tile a { color: var(--ink-soft); font-size: 0.94rem; }
.contact-tile a:hover { color: var(--terra); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--ink); font-family: var(--font-display); font-weight: 500; font-size: 1.18rem; padding: 26px 4px; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: transform 0.3s, background 0.3s, color 0.3s; color: var(--ink); }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--pine); color: var(--paper); border-color: var(--pine); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--ink-soft); max-width: 70ch; }

/* Pills */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 9px 18px; border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: 0.86rem; color: var(--ink-soft); background: var(--card); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* Toast */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(160%); background: var(--pine); color: #f3ead8; font-weight: 600; padding: 14px 28px; border-radius: var(--radius-pill); box-shadow: var(--shadow-lg); z-index: 200; transition: transform 0.5s var(--ease); }
.toast.show { transform: translateX(-50%) translateY(0); }

/* Section tone helpers */
.tone-2 { background: var(--paper-2); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .step::after { display: none; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat-box:nth-child(2) { border-right: none; }
  .stat-box:nth-child(1), .stat-box:nth-child(2) { border-bottom: 1px solid var(--line); }
  .card-feature { grid-column: span 2; grid-template-columns: 1fr; }
  .card-feature .cf-photo { min-height: 240px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links, .nav-cta .lang-switch { display: none; }
  .nav-toggle { display: flex; }
  .nav.open { background: rgba(247,241,230,0.97); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
  .nav.open .nav-links { display: flex; position: absolute; top: 82px; left: 16px; right: 16px; flex-direction: column; align-items: stretch; padding: 14px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
  .nav.open .nav-links a { padding: 14px 16px; }
  .nav.open .nav-links a::after { display: none; }
}
@media (max-width: 620px) {
  .section { padding: 84px 0; }
  .container { padding: 0 20px; }
  .grid-3, .grid-4, .grid-2, .stats-band { grid-template-columns: 1fr; }
  .stat-box { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-box:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr; }
  .card-feature { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-card.fc-1 { left: 0; top: 20px; }
  .float-card.fc-2 { right: 0; }
  .float-card.fc-3 { display: none; }
  .cta-band { padding: 56px 26px; }
  .hero-visual::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
