/* ═══════════════════════════════════════════════════════════
   ONE-PAGE TEMPLATE — Design System (2026)
   Reusable across industries. Single source of truth.
   ═══════════════════════════════════════════════════════════ */

:root {
  color-scheme: light;

  /* FSC Digital — Apple-inspired neutral palette */
  --brand:        #1D1D1F;
  --brand-dark:   #000000;
  --brand-light:  #424245;
  --brand-subtle: rgba(29, 29, 31, 0.06);

  --accent:       #1D1D1F;
  --accent-muted: #424245;
  --accent-refined: #0066CC;
  --sea-subtle:   rgba(0, 0, 0, 0.03);

  /* Soft neutral surfaces */
  --bg:           #FBFBFD;
  --bg-alt:       #F5F5F7;
  --surface:      #FFFFFF;
  --glass:        rgba(255, 255, 255, 0.78);
  --text:         #1D1D1F;
  --text-2:       #424245;
  --text-3:       #86868B;
  --border:       rgba(0, 0, 0, 0.08);
  --border-strong:rgba(0, 0, 0, 0.14);
  --rating:       #86868B;

  /* ── Spacing scale ── */
  --s1: 1rem;
  --s2: 1.5rem;
  --s3: 3.5rem;
  --s4: 5.5rem;

  /* ── Typography scale ── */
  --text-sm:   0.8125rem;
  --text-nav:  0.875rem;
  --text-base: 1.0625rem;
  --text-lg:   1.1875rem;
  --text-xl:   clamp(1.875rem, 2.8vw + 0.75rem, 2.75rem);
  --text-display: clamp(2.25rem, 4.2vw + 0.5rem, 3.375rem);
  --heading-section: clamp(1.875rem, 2.6vw + 0.85rem, 2.5rem);
  --heading-card: clamp(1.0625rem, 0.4vw + 0.95rem, 1.1875rem);
  --heading-cta: clamp(1.375rem, 1.6vw + 0.75rem, 1.75rem);

  /* ── Radius system ── */
  --radius-btn:   0.5rem;
  --radius-card:  1rem;
  --radius-img:   0.875rem;
  --radius-input: 0.5rem;
  --radius-hero:  1.25rem;

  /* ── Shadow system ── */
  --shadow-1: 0 1px 2px rgba(28, 46, 40, 0.035);
  --shadow-2: 0 4px 20px rgba(21, 40, 34, 0.06);
  --shadow-3: 0 12px 40px rgba(21, 40, 34, 0.09);
  --shadow-card: 0 2px 8px rgba(21, 40, 34, 0.04), 0 12px 32px rgba(21, 40, 34, 0.06);
  --shadow-btn: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 14px rgba(0, 0, 0, 0.12);

  /* Layout */
  --nav-h:      4rem;
  --max-w:      76rem;
  --content-w:  68rem;
  --pad-x:      1.25rem;
  --section-py: clamp(3.25rem, 4vw + 1.5rem, 5.75rem);
  --section-gap: clamp(1.25rem, 2.5vw, 2.25rem);
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --touch:      2.75rem; /* 44px — WCAG 2.2 minimum target size */
  --touch-lg:   3rem;
}

@media (min-width: 48rem) {
  :root {
    --pad-x:      2rem;
    --nav-h:      4.25rem;
  }
}

@media (min-width: 64rem) {
  :root {
    --pad-x:      clamp(3rem, 5vw, 5rem);
    --nav-h:      4.5rem;
  }
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 0.5rem);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
[hidden] { display: none !important; }

main,
section,
article,
aside,
div,
figure {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
a,
span {
  overflow-wrap: break-word;
}

.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;
}

.anchor-target {
  display: block;
  position: relative;
  top: calc(-1 * var(--nav-h) - 1.75rem);
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ─── ACCESSIBILITY ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s2);
  z-index: 10000;
  background: var(--brand);
  color: #fff;
  padding: 0.625rem 1rem;
  min-height: var(--touch);
  border-radius: 0 0 var(--radius-input) var(--radius-input);
  font-size: var(--text-sm);
  font-weight: 600;
}
.skip-link:focus-visible { top: 0; }

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

/* WCAG 2.2 — visible focus on all interactive controls */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* ─── LAYOUT SHELL ─── */
.shell {
  width: 100%;
  max-width: var(--content-w);
  margin-inline: auto;
  padding-inline: max(var(--pad-x), env(safe-area-inset-left, 0px))
                  max(var(--pad-x), env(safe-area-inset-right, 0px));
}

.section {
  padding-block: var(--section-py);
  padding-inline: max(var(--pad-x), env(safe-area-inset-left, 0px))
                  max(var(--pad-x), env(safe-area-inset-right, 0px));
}
.section--alt { background: var(--bg-alt); }
.section--surface { background: var(--surface); }

.section-shell {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
}

/* ─── TYPOGRAPHY ─── */
.kicker {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.875rem;
}

h1, h2 {
  font-family: var(--font-display);
  font-size: var(--heading-section);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 0.875rem;
  color: var(--accent);
}

h3,
.benefit-card h3,
.pc-name {
  font-family: var(--font);
  font-size: var(--heading-card);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 0.375rem;
  color: var(--text);
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto var(--s3);
}
.section-head h2 em {
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
}
.section-desc {
  font-size: var(--text-base);
  color: var(--text-3);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 32rem;
  text-wrap: pretty;
}

/* ─── BUTTONS (single system) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch);
  padding: 0 var(--s2);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: background 0.2s var(--ease), border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-filled,
.btn-outlined,
.btn-massive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch);
  padding: 0 var(--s2);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: background 0.2s var(--ease), border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-filled {
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand-dark);
  box-shadow: var(--shadow-btn);
}
.btn-filled:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.14);
}
.btn-filled:active {
  box-shadow: var(--shadow-1);
}

.btn-outlined {
  color: var(--text-2);
  background: transparent;
  border: 1px solid var(--border-strong);
  font-weight: 500;
}
.btn-outlined:hover {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.03);
  color: var(--text);
}

.hero-ctas .btn-outlined {
  color: var(--text-3);
  border-color: var(--border);
}
.hero-ctas .btn-outlined:hover {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.03);
}

.btn-lg {
  min-height: 3.5rem;
  padding: 0 2rem;
  font-size: var(--text-lg);
  font-weight: 700;
  width: 100%;
}

.btn-filled:focus-visible,
.btn-outlined:focus-visible {
  outline: 2px solid var(--brand-light);
  outline-offset: 3px;
}

.btn-massive,
.btn-lg {
  min-height: 3.5rem;
  padding: 0 2rem;
  font-size: var(--text-lg);
  font-weight: 700;
  width: 100%;
}

/* ─── NAVIGATION ─── */
.nav {
  position: sticky;
  top: 0;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(251, 251, 253, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding-inline: max(var(--pad-x), env(safe-area-inset-left, 0px))
                  max(var(--pad-x), env(safe-area-inset-right, 0px));
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.elevated {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border), var(--shadow-1);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  flex-shrink: 0;
  border-radius: var(--radius-input);
  min-width: 0;
}
.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
}

.nav-tabs { display: none; gap: 0.125rem; }
.nav-tab-wide { display: none; }
.nav-tabs a {
  font-size: var(--text-nav);
  font-weight: 500;
  color: var(--text-2);
  padding: 0.4375rem 0.75rem;
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-btn);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.nav-tabs a:hover { background: var(--brand-subtle); color: var(--text); }
.nav-tabs a.active { color: var(--brand-dark); font-weight: 600; background: var(--brand-subtle); }

.nav-actions { display: none; align-items: center; gap: 0.5rem; }
.nav-actions .nav-book-btn {
  min-height: 2.5rem;
  padding: 0 1.125rem;
  font-size: var(--text-nav);
  font-weight: 600;
  box-shadow: var(--shadow-btn);
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}

.burger {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius-btn);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.burger span {
  display: block;
  width: 1.125rem;
  height: 1.5px;
  background: var(--text-2);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
body.nav-open .burger span:nth-child(1) { transform: rotate(45deg) translate(0, 6px); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: rotate(-45deg) translate(0, -6px); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 240;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease);
}
body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile nav — fullscreen panel */
.mob-nav {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: #fff;
  overflow-y: auto;
  padding: max(1rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right)) max(1.5rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.mob-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mob-nav-head {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.mob-nav-logo {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.mob-nav-close {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-nav-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  max-width: 20rem;
  margin: auto 0;
  text-align: left;
}
.mob-nav a:not(.mob-cta) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 3.25rem;
  padding: 0;
  font-size: clamp(1.375rem, 7vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  border-bottom: none;
}

.mob-nav-footer {
  width: 100%;
  max-width: 20rem;
}

.mob-lang-options {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1rem;
  width: 100%;
}
.mob-lang-btn {
  flex: 1;
  min-height: 2.75rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.mob-lang-btn.active { background: var(--brand-subtle); color: var(--brand-dark); border-color: rgba(79, 107, 82, 0.28); }
.mob-cta {
  width: 100%;
  max-width: 20rem;
  margin: 0;
  justify-content: center;
  color: #fff;
  background: var(--brand);
  border-radius: var(--radius-btn);
  min-height: 3.5rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mob-contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-top: 1.25rem;
  color: var(--text-3);
  font-size: var(--text-sm);
  font-weight: 600;
}
.mob-nav .mob-contact-links a {
  display: inline-flex;
  width: auto;
  min-height: 2rem;
  padding: 0;
  color: var(--text-3);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* Language switcher */
.lang-switcher { position: relative; }
.nav-lang-switcher { display: block; }
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 2.25rem;
  padding: 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-2);
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: transparent;
}
.lang-trigger-caret { width: 9px; height: 9px; opacity: 0.5; }
.lang-switcher.open .lang-trigger-caret { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-input);
  box-shadow: var(--shadow-3);
  min-width: 9.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 20;
}
.lang-switcher.open .lang-dropdown { opacity: 1; pointer-events: auto; transform: none; }
.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.55rem 0.75rem;
  min-height: 2.5rem;
  font-size: var(--text-sm);
  border-radius: calc(var(--radius-input) - 0.15rem);
  color: var(--text-2);
}
.lang-option:hover { background: var(--bg); }
.lang-option[aria-selected="true"] { color: var(--brand); background: var(--brand-subtle); font-weight: 600; }
.lang-option-check { width: 14px; height: 14px; opacity: 0; color: var(--brand); }
.lang-option[aria-selected="true"] .lang-option-check { opacity: 1; }

/* ─── HERO ─── */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 15% -5%, rgba(0, 0, 0, 0.03), transparent 55%),
    radial-gradient(ellipse 40% 35% at 95% 15%, rgba(0, 102, 204, 0.04), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #F8F8FA 100%);
}

.hero-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem var(--pad-x) 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  max-width: 34rem;
  min-width: 0;
}

.hero-kicker {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 13em;
  text-wrap: balance;
}

.hero-desc {
  margin: 0;
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.125rem);
  color: var(--text-3);
  line-height: 1.65;
  max-width: 32rem;
  text-wrap: pretty;
}

.hero-price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-price-chips li {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2rem;
  letter-spacing: -0.01em;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  margin-top: 0.25rem;
}
.hero-ctas .btn,
.hero-ctas .btn-filled,
.hero-ctas .btn-outlined {
  width: 100%;
  justify-content: center;
  min-height: 2.75rem;
  max-width: 100%;
}
.hero-ctas .btn-filled,
.hero-ctas .hero-cta-primary {
  min-height: 3rem;
  padding-inline: 1.5rem;
  font-weight: 700;
  font-size: 1.0625rem;
  box-shadow: var(--shadow-btn);
}

.hero-trust-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.625rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-3);
  line-height: 1.4;
  max-width: 28rem;
}
.hero-trust-social .hero-trust-stars {
  color: var(--rating);
  letter-spacing: 0.06em;
  font-size: 0.6875rem;
  flex-shrink: 0;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.hero-trust-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-3);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2rem;
  backdrop-filter: none;
  box-shadow: none;
  line-height: 1.3;
}
.hero-trust-badge-icon {
  color: var(--accent-warm);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.hero-trust-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
}

.hero-trust-note {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: var(--text-2);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.45;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: var(--text-2);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.45;
}
.hero-trust-stars {
  color: var(--rating);
  letter-spacing: 0.04em;
  font-size: 0.75rem;
}

.hero-highlights {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-3);
  line-height: 1.5;
  max-width: 28rem;
  text-wrap: pretty;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.25rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: rgba(27, 107, 94, 0.35);
  text-underline-offset: 0.2em;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}
.hero-scroll:hover {
  color: var(--brand-dark);
  text-decoration-color: currentColor;
}
.hero-scroll svg { opacity: 0.8; }

.hero-media {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
}

.hero-media-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: min(70vh, 36rem);
  border-radius: var(--radius-hero);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hero-media-card picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-media-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 20px 48px rgba(0, 0, 0, 0.06);
}

.hero-float-badge {
  position: absolute;
  bottom: 1.25rem;
  left: -0.5rem;
  margin: 0;
  padding: 0.5rem 0.875rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-2);
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 2rem;
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  box-shadow: var(--shadow-2);
  max-width: calc(100% - 1rem);
  line-height: 1.35;
  z-index: 2;
}

.hero-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 40rem) {
  .hero-inner { padding-inline: 2rem; }
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }
  .hero-ctas .btn,
  .hero-ctas .btn-filled,
  .hero-ctas .btn-outlined {
    width: auto;
    min-width: 11rem;
  }
}

@media (min-width: 48rem) {
  .hero-inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
    gap: 1.75rem;
  }
  .hero-copy { gap: 1rem; }
}

.hero-ctas .btn-outlined.hero-cta-wa {
  display: none;
}

@media (min-width: 40rem) {
  .hero-ctas .btn-outlined.hero-cta-wa {
    display: inline-flex;
  }
}

@media (min-width: 64rem) {
  .hero {
    display: flex;
    align-items: center;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(2rem, 3.5vw, 3.5rem);
    padding-block: 2.5rem 3rem;
  }
  .hero-copy {
    max-width: none;
    gap: 1rem;
    padding-block: 0;
  }
  .hero h1 { max-width: 11em; }
  .hero-media {
    align-self: center;
    max-width: none;
    margin-inline: 0;
  }
  .hero-media-card {
    max-height: min(72vh, 34rem);
  }
  .hero-poster {
    object-position: center center;
  }
  .hero-cta-wa { display: inline-flex; }
}

@media (max-width: 63.99rem) {
  .hero-cta-wa { display: inline-flex; }
  .back-to-top { display: none !important; }
  .hero-media-card {
    max-height: 20rem;
    aspect-ratio: 5 / 4;
  }
}

/* ─── FIT / WHY US ─── */
#fit {
  background: var(--bg-alt);
}

.fit-shell {
  display: grid;
  gap: 2rem;
}

.fit-head {
  margin-bottom: 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
}

.fit-card {
  padding: 1.5rem 1.625rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-1);
}

.fit-card h3 {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-size: var(--heading-card);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
}

.fit-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--text-base);
  color: var(--text-2);
  line-height: 1.55;
}

.fit-card--for .fit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--text);
  font-weight: 600;
  font-size: 0.8125rem;
}

.fit-card--not .fit-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-3);
  font-weight: 600;
}

@media (min-width: 48rem) {
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .fit-card {
    padding: 1.75rem;
  }
}

/* Legacy benefits aliases */
#benefits { background: var(--bg-alt); }
.benefits-grid { display: grid; }

/* ─── SERVICES / PRICING (primary conversion section) ─── */
#pricing,
#tours {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

#tours .sec-desc {
  margin-bottom: 0.5rem;
}

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 2rem;
  max-width: 40rem;
}
.pricing-trust li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-3);
  padding: 0.3rem 0.65rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 2rem;
}
.pricing-trust li + li::before {
  content: none;
}

.tours-row,
.services-grid {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.pricing-card.featured {
  border-color: rgba(0, 0, 0, 0.12);
}

.pricing-card .pc-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.375rem 1.5rem;
}

.pricing-card .pc-name {
  margin: 0;
  font-size: 1.125rem;
}

.pricing-card .pc-price {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  line-height: 1;
}

.pricing-card .pc-price-usd {
  font-size: 0.72em;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: -0.02em;
}

.pricing-card .pc-fit-label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-3);
}

.pricing-footnote {
  max-width: 38rem;
  margin: 1.75rem auto 0;
  padding: 0 0.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-3);
  line-height: 1.65;
}

/* Remove legacy image-badge pseudo */
.pricing-card::before { content: none; }

.pc-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 9.5rem;
  background: var(--bg-alt);
  overflow: hidden;
}
.pc-visual picture,
.pc-visual img {
  display: block;
  width: 100%;
  height: 100%;
}
.pc-visual img {
  object-fit: cover;
  object-position: center center;
}

.pc-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  display: inline-flex;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  border: 1px solid rgba(20, 82, 71, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-1);
}
.pricing-card.alt .pc-badge {
  color: #8A5E12;
  border-color: rgba(196, 136, 42, 0.2);
}

.pc-body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1rem 1.125rem 1.125rem;
  flex: 1;
}

.pc-head,
.pc-title-row,
.pc-thumb,
.pc-title-block { display: none; }

.pc-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.015em;
}

.pc-tag {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-3);
  line-height: 1.35;
}

.pc-price-box {
  padding: 0.625rem 0.75rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 0.625rem;
}

.pc-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.pc-price {
  font-size: clamp(1.875rem, 4.5vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--brand-dark);
  line-height: 1;
}
.pc-per {
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
}

.pc-tickets-note {
  margin: 0.2rem 0 0;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-3);
  line-height: 1.35;
}

.pc-bullets {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pc-bullet {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.35;
  padding-left: 1.1rem;
  position: relative;
}
.pc-bullet::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--brand);
}

.pc-actions {
  display: contents;
}

.pc-btn {
  width: 100%;
  justify-content: center;
  min-height: 2.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 0.125rem;
}

.pc-details {
  margin: 0;
  padding: 0;
  border: none;
}
.pc-details summary {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-3);
  cursor: pointer;
  min-height: 1.75rem;
  display: inline-flex;
  align-items: center;
  list-style: none;
  text-decoration: underline;
  text-decoration-color: rgba(20, 82, 71, 0.25);
  text-underline-offset: 0.15em;
  transition: color 0.2s var(--ease);
}
.pc-details summary:hover { color: var(--brand); }
.pc-details[open] summary { color: var(--brand-dark); }
.pc-details summary::-webkit-details-marker { display: none; }

.pc-fit,
.pc-details p {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-3);
  line-height: 1.55;
}

.pc-includes {
  display: grid;
  gap: 0.25rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}
.pc-include, .pc-exclude {
  font-size: 0.8125rem;
  line-height: 1.4;
}
.pc-include { color: var(--text-2); font-weight: 500; }
.pc-include::before { content: '✓ '; color: var(--brand); font-weight: 600; }
.pc-exclude { color: var(--text-3); }
.pc-exclude::before { content: '– '; color: var(--text-3); }

.pc-details .pc-places {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* Legacy selectors — keep for compat */
.pc-img-wrap { display: none; }
.pc-stops { display: none; }
.pc-cta { display: contents; }
.pc-divider { display: none; }
.pc-price-sub { display: none; }

@media (min-width: 48rem) {
  .tours-row, .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }
  .pc-visual {
    max-height: 10.5rem;
  }
  .pc-body {
    padding: 1.125rem 1.25rem 1.25rem;
  }
}

@media (min-width: 64rem) {
  .tours-row {
    max-width: 56rem;
    gap: 1rem;
  }
  .pc-visual {
    max-height: 11rem;
  }
}

/* ─── PORTFOLIO ─── */
#portfolio {
  background: var(--bg-alt);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.portfolio-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.portfolio-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.portfolio-visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}

.portfolio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease);
}

.portfolio-card:hover {
  box-shadow: var(--shadow-2);
  border-color: rgba(0, 0, 0, 0.12);
}

.portfolio-card:hover .portfolio-visual img {
  transform: scale(1.02);
}

.portfolio-body {
  padding: 1.125rem 1.25rem 1.25rem;
}

.portfolio-category {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}

.portfolio-name {
  margin: 0 0 0.5rem;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
}

.portfolio-cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent-refined);
}

@media (min-width: 48rem) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 64rem) {
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.faq-desc {
  max-width: 32rem;
  margin: 0.75rem auto 0;
  text-align: center;
  color: var(--text-3);
  font-size: var(--text-base);
  line-height: 1.6;
}

.how-desc,
.tours-desc,
.benefits-desc {
  max-width: 38rem;
  margin: 0.75rem auto 0;
  text-align: center;
  color: var(--text-3);
  font-size: var(--text-base);
  line-height: 1.6;
}

.how-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin-top: 2rem;
  position: relative;
}

.how-step {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.375rem 1.5rem;
  box-shadow: var(--shadow-1);
  cursor: default;
  position: relative;
}

.how-step:not(:last-child) {
  margin-bottom: 1rem;
}

.how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.75rem;
  bottom: -1rem;
  width: 2px;
  height: 1rem;
  background: linear-gradient(180deg, rgba(20, 82, 71, 0.35), rgba(20, 82, 71, 0.1));
}

.how-step-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(20, 82, 71, 0.25);
}

.step-icon {
  display: inline-flex;
  color: var(--brand);
}

.how-step-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: var(--heading-card);
  font-weight: 600;
  color: var(--text);
}

.how-step-text {
  margin: 0;
  color: var(--text-3);
  line-height: 1.6;
}

.pricing-payment-strip {
  max-width: var(--content-w);
  margin: 2rem auto 0;
  padding: 0.875rem 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  text-align: center;
}

.pricing-payment {
  max-width: none;
  margin: 0;
  padding: 0;
  text-align: center;
  color: var(--text-3);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.hero-trust-badge {
  color: var(--accent-warm);
  margin-right: 0.35rem;
}

.rv-meta {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-3);
  font-style: normal;
  margin-top: 0.15rem;
}

.final-cta-shell .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.final-cta-wa {
  justify-content: center;
}

@media (min-width: 48rem) {
  .how-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .how-step:not(:last-child) {
    margin-bottom: 0;
  }
  .how-step:not(:last-child)::after {
    display: none;
  }
  .final-cta-shell .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 64rem) {
  .how-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
  }
  .how-step {
    border-radius: 0;
    border-right: none;
    padding: 1.5rem 1.25rem;
  }
  .how-step:first-child {
    border-radius: var(--radius-card) 0 0 var(--radius-card);
  }
  .how-step:last-child {
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    border-right: 1px solid var(--border);
  }
  .how-step:not(:last-child)::after {
    display: block;
    left: auto;
    right: -0.5rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(20, 82, 71, 0.35), rgba(20, 82, 71, 0.1));
    z-index: 1;
  }
}

/* ─── EXPERIENCE GALLERY (legacy — unused) ─── */
#gallery {
  background: var(--bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-img);
  background: var(--bg-alt);
  box-shadow: var(--shadow-1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.65s var(--ease), filter 0.35s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.04);
}

@media (min-width: 48rem) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 64rem) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

/* ─── REVIEWS ─── */
#reviews {
  background: var(--bg);
}

.reviews-panel {
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
  width: 100%;
}

.reviews-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1rem;
}

.reviews-head .sec-eyebrow {
  margin-bottom: 0.75rem;
}

.reviews-head h2 {
  margin: 0;
}

.reviews-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.reviews-trust-line {
  margin: 0;
  color: var(--text-2);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 28rem;
}

.reviews-trust-stars {
  color: var(--rating);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.reviews-trust-note {
  margin: 0;
  color: var(--text-3);
  font-size: var(--text-sm);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.reviews-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.reviews-external-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: var(--touch);
  padding: 0.5rem 1.125rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-1);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.reviews-external-link:hover {
  color: var(--accent);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-2);
  transform: translateY(-1px);
}
.reviews-external-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
  padding: 1rem 1.125rem;
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-1);
  cursor: default;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .review-card:hover {
    box-shadow: var(--shadow-2);
    border-color: rgba(20, 82, 71, 0.14);
  }
}

.reviews-grid .review-card--extra {
  display: none;
}
.reviews-grid.reviews-grid--expanded .review-card--extra {
  display: flex;
}

.reviews-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
.reviews-show-more {
  min-height: var(--touch);
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2rem;
  box-shadow: var(--shadow-1);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.reviews-show-more:hover {
  background: var(--brand-subtle);
  border-color: rgba(20, 82, 71, 0.2);
}
.reviews-show-more:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (min-width: 48rem) {
  .reviews-grid .review-card--extra {
    display: flex;
  }
  .reviews-more-wrap {
    display: none;
  }
}

.rv-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.rv-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--accent);
  font-weight: 700;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.rv-name {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  color: var(--text);
}
.rv-rating { color: var(--rating); font-size: 0.8125rem; letter-spacing: 0.08em; line-height: 1; }
.rv-rating span {
  background: linear-gradient(90deg, var(--rating), #D4A04A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rv-text {
  margin: 0;
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.5;
  color: var(--text-2);
  letter-spacing: -0.01em;
}

.rv-source {
  margin: auto 0 0;
  padding-top: 0.25rem;
  color: var(--text-3);
  font-size: var(--text-sm);
  font-weight: 500;
}

@media (min-width: 48rem) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 64rem) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

/* ─── FAQ ─── */
#faq {
  background:
    radial-gradient(circle at top, rgba(79, 107, 82, 0.06), transparent 38%),
    radial-gradient(circle at 85% 12%, var(--sea-subtle), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.5), rgba(255, 252, 247, 0)),
    var(--bg-alt);
  padding-block: clamp(2.5rem, 3.5vw + 1rem, 4.5rem);
}

.faq-cta-shell {
  display: grid;
  gap: 1.5rem;
}

#faq .sec-head,
.faq-head {
  max-width: 44rem;
  margin-bottom: 0;
}

.faq-cta-layout {
  display: grid;
  gap: 1.75rem;
}

.faq-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.625rem;
  max-width: none;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.faq-item {
  overflow: clip;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-1);
}
.faq-item[open] {
  border-color: rgba(27, 107, 94, 0.22);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-2);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.75rem;
  padding: 0.875rem 1.125rem;
  cursor: pointer;
  list-style: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary:hover { background: rgba(255, 255, 255, 0.5); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--brand-light);
  outline-offset: -2px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-q {
  font-size: clamp(1rem, 0.7vw + 0.92rem, 1.125rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease);
}
details[open] .faq-q { color: var(--text); }

.faq-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  border: none;
  background: var(--brand-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--brand-dark);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  pointer-events: none;
}
details[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(27, 107, 94, 0.14);
  color: var(--brand-dark);
}

.faq-a {
  font-size: var(--text-base);
  color: var(--text-2);
  line-height: 1.65;
  padding: 0 1.25rem;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-0.25rem);
  transition: max-height 0.35s var(--ease), opacity 0.28s var(--ease), transform 0.28s var(--ease), padding 0.28s var(--ease);
  text-wrap: pretty;
}

details[open] .faq-a {
  max-height: 14rem;
  opacity: 1;
  transform: none;
  padding-bottom: 1.15rem;
}

@media (min-width: 48rem) {
  .faq-list {
    max-width: 50rem;
    gap: 1rem;
  }

  .faq-item summary {
    min-height: 3.25rem;
    padding: 1.15rem 1.35rem;
  }

  .faq-a {
    padding-inline: 1.35rem;
  }
}

@media (min-width: 64rem) {
  .faq-cta-shell {
    gap: 2rem;
  }

  .faq-cta-layout {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.42fr);
    gap: 2rem;
    align-items: start;
  }

  .faq-list {
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
  }

  .faq-item summary {
    min-height: 3.5rem;
    padding: 1.2rem 1.4rem;
  }

  .faq-q {
    font-size: clamp(1.06rem, 0.45vw + 1rem, 1.22rem);
  }

  .faq-a {
    padding-inline: 1.4rem;
    max-width: 34rem;
  }
}

/* ─── FINAL CTA ─── */
#final-cta {
  align-self: start;
}

.final-cta-shell {
  max-width: none;
  margin: 0;
  padding: 1.5rem 1.375rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(238,245,241,0.95));
  border: 1px solid rgba(20, 82, 71, 0.2);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 24px rgba(20, 82, 71, 0.1), var(--shadow-card);
  color: var(--text);
  text-align: left;
}

.final-cta-shell h2 {
  margin: 0 0 0.75rem;
  max-width: 12em;
  font-family: var(--font-display);
  font-size: var(--heading-cta);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
  text-wrap: balance;
}

.final-cta-copy {
  margin: 0 0 1.5rem;
  max-width: 32rem;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.cta-actions {
  display: flex;
  justify-content: flex-start;
  margin: 0;
}

.final-cta-shell .btn-filled {
  min-height: 2.875rem;
  width: 100%;
  padding-inline: 1.5rem;
  border-radius: var(--radius-btn);
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-btn);
  font-size: var(--text-base);
  font-weight: 600;
}
.final-cta-shell .btn-filled:hover {
  background: var(--brand-dark);
  box-shadow: 0 2px 4px rgba(20, 82, 71, 0.14), 0 6px 16px rgba(27, 107, 94, 0.18);
}

.final-cta-trust {
  margin: 1rem 0 0;
  color: var(--text-3);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.5;
}

.final-cta-shell .btn-filled:focus-visible {
  outline-color: var(--brand-dark);
}

@media (min-width: 40rem) {
  .final-cta-copy {
    font-size: 1.0625rem;
  }

  .final-cta-shell .btn-filled {
    width: min(22rem, 100%);
  }
}

@media (min-width: 64rem) {
  #final-cta {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
  }

  .final-cta-copy {
    font-size: 1.125rem;
  }

  .final-cta-shell .btn-filled {
    width: auto;
  }
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--brand-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  padding: 2rem var(--pad-x) max(4.5rem, calc(2.5rem + env(safe-area-inset-bottom)));
}

.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 20rem;
}

.footer-tagline {
  margin: 0.45rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 1.125rem;
}

.footer-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-btn);
  transition: color 0.2s var(--ease);
}

.footer-nav-link:hover {
  color: #fff;
}

.footer-cta-wrap {
  display: flex;
  align-items: flex-start;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.footer-bar {
  max-width: var(--max-w);
  margin: 1.25rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-copy,
.footer-service {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.4;
}

.footer-service {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.375rem 0.75rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer-contact-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-contact-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.footer-contact-link svg {
  flex-shrink: 0;
  opacity: 0.88;
}

@media (min-width: 48rem) {
  .site-footer {
    padding-block: 2.25rem max(3rem, calc(1rem + env(safe-area-inset-bottom)));
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.4fr) auto auto;
    align-items: center;
    gap: 2rem;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-cta-wrap {
    justify-content: flex-end;
  }

  .footer-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }

  .footer-contact {
    justify-content: flex-end;
  }
}

@media (min-width: 64rem) {
  .site-footer {
    padding-block: 2.5rem max(3.25rem, calc(1rem + env(safe-area-inset-bottom)));
  }
}

.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw + 0.75rem, 1.125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color 0.2s var(--ease);
}
.footer-logo:hover { color: rgba(255, 255, 255, 0.92); }
.footer-logo:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
  border-radius: var(--radius-input);
}

@media (min-width: 48rem) and (max-width: 63.99rem) {
  .nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 0.75rem;
  }

  .logo { justify-self: start; min-width: 0; }

  .nav-tabs {
    display: flex;
    justify-self: center;
    gap: 0;
  }

  .nav-tabs a {
    font-size: var(--text-nav);
    padding: 0.375rem 0.625rem;
    min-height: 2.5rem;
  }

  .nav-actions {
    display: flex;
    justify-self: end;
  }

  .nav-actions .nav-book-btn {
    min-height: 2.5rem;
    padding-inline: 1rem;
    font-size: var(--text-nav);
  }

  .nav-utility {
    justify-self: end;
  }

  .burger { display: none; }

  .logo-name { max-width: 10rem; }
}

@media (min-width: 64rem) {
  .nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 1rem;
  }
  .logo,
  .nav-tabs,
  .nav-actions {
    grid-row: 1;
  }
  .logo { grid-column: 1; justify-self: start; }
  .nav-tabs {
    display: flex;
    grid-column: 2;
    justify-self: center;
  }
  .nav-actions {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }
  .nav-utility {
    display: flex;
    grid-column: 4;
    justify-self: end;
  }
  .nav-tab-wide { display: inline-flex; }
  .burger { display: none; }
  .logo-name { max-width: none; }
}

@media (max-width: 47.99rem) {
  h1,
  h2 {
    max-width: 100%;
    letter-spacing: -0.015em;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero h1 {
    font-size: clamp(1.875rem, 9vw + 0.5rem, 2.5rem);
  }

  h2,
  .sec-head h2,
  .reviews-head h2,
  .faq-head h2 {
    font-size: clamp(1.625rem, 7vw + 0.35rem, 2.125rem);
  }

  .hero-media {
    aspect-ratio: 4 / 5;
    max-height: 22rem;
    max-width: 100%;
  }

  .hero-media-card {
    max-height: 22rem;
    aspect-ratio: 4 / 5;
  }

  .hero-poster {
    object-position: center center;
  }

  .benefits-shell {
    gap: 1.25rem;
  }

  .benefits-head.sec-head {
    margin-bottom: 1rem;
  }

  .benefits-head .sec-desc {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .benefits-grid,
  .gallery-grid,
  .reviews-grid {
    gap: 0.75rem;
  }

  .benefit-card {
    padding: 1.125rem;
    gap: 0.5rem;
  }

  .benefit-icon {
    width: 2.125rem;
    height: 2.125rem;
  }

  .benefit-card h3,
  .pc-name {
    font-size: 1.0625rem;
  }

  .benefit-card p {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .review-card {
    padding: 1.25rem;
  }

  .sec-head {
    margin-bottom: 1.25rem;
  }

  .reviews-trust {
    margin-bottom: 1.25rem;
  }

  .final-cta-shell h2 {
    font-size: clamp(1.4375rem, 5.5vw + 0.35rem, 1.875rem);
  }

  .hero-ctas .btn-filled,
  .hero-ctas .btn-outlined,
  .pc-cta .btn-filled,
  .pc-btn,
  .final-cta-shell .btn-massive,
  .mob-cta {
    min-height: var(--touch-lg);
    font-size: var(--text-base);
    padding-inline: 1.125rem;
    white-space: normal;
    text-align: center;
  }
  .lang-trigger,
  .burger,
  .mob-lang-btn {
    min-width: var(--touch);
    min-height: var(--touch);
  }
}

/* ─── FAB & BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  right: max(var(--s2), env(safe-area-inset-right));
  bottom: max(5rem, calc(4rem + env(safe-area-inset-bottom)));
  z-index: 90;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-2);
  border: 1px solid var(--border);
  font-size: var(--text-base);
  font-weight: 500;
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s, transform 0.2s var(--ease), border-color 0.2s;
}
.back-to-top.visible { opacity: 1; visibility: visible; pointer-events: auto; }
.back-to-top:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.back-to-top:focus-visible { outline-color: var(--brand); }

.fab-wa {
  position: fixed;
  bottom: max(1.25rem, calc(0.75rem + env(safe-area-inset-bottom)));
  right: max(var(--s2), env(safe-area-inset-right));
  z-index: 199;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92) translateY(4px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.2s var(--ease);
  touch-action: manipulation;
}
.fab-wa svg {
  width: 1.375rem;
  height: 1.375rem;
}
.fab-wa.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.fab-wa:hover {
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transform: scale(1.04) translateY(-1px);
}
.fab-wa:focus-visible { outline-color: #fff; outline-offset: 3px; }

/* ─── MOBILE STICKY CTA ─── */
.mob-sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 198;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3.5rem;
  padding: 0.375rem max(0.75rem, env(safe-area-inset-right))
           max(0.375rem, env(safe-area-inset-bottom))
           max(0.75rem, env(safe-area-inset-left));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 12px rgba(21, 40, 34, 0.08);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.mob-sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mob-sticky-cta-primary {
  flex: 1 1 80%;
  width: 80%;
  max-width: 80%;
  min-height: 2.75rem;
  max-height: 2.75rem;
  padding: 0 0.75rem;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}
.mob-sticky-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-btn);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: #25D366;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.mob-sticky-cta-wa svg {
  width: 1.25rem;
  height: 1.25rem;
}
.mob-sticky-cta-wa:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.3);
}
.mob-sticky-cta-wa:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (min-width: 48rem) {
  .mob-sticky-cta { display: none; }
}

body.sticky-cta-visible .fab-wa {
  bottom: calc(3.75rem + env(safe-area-inset-bottom, 0px));
}
body.sticky-cta-visible .site-footer {
  padding-bottom: max(4.25rem, calc(3.25rem + env(safe-area-inset-bottom)));
}

/* ─── LEGACY ALIASES (template compat) ─── */
.content { display: flex; flex-direction: column; }

main section[id] {
  scroll-margin-top: calc(var(--nav-h) + 0.5rem);
  padding-block: var(--section-py);
  padding-inline: max(var(--pad-x), env(safe-area-inset-left, 0px))
                  max(var(--pad-x), env(safe-area-inset-right, 0px));
}

@media (min-width: 64rem) and (prefers-reduced-motion: no-preference) {
  #pricing,
  #tours,
  #portfolio,
  #fit,
  #reviews,
  #faq {
    content-visibility: auto;
    contain-intrinsic-size: auto 36rem;
  }

  #portfolio { contain-intrinsic-size: auto 32rem; }
  #reviews { contain-intrinsic-size: auto 34rem; }
  #faq { contain-intrinsic-size: auto 38rem; }
}

section.section--light { background: var(--bg); }
section.section--tinted { background: var(--bg-alt); }

.sec-head {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto var(--section-gap);
  width: 100%;
}
.sec-head h2,
.reviews-head h2,
.faq-head h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: var(--heading-section);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.sec-head h2 em { font-style: normal; font-weight: 700; color: var(--brand); }

.sec-kicker {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.sec-desc {
  font-size: var(--text-base);
  color: var(--text-3);
  line-height: 1.65;
  margin: 0.75rem auto 0;
  max-width: 30rem;
  text-wrap: pretty;
}

.sec-eyebrow, .sec-eyebrow-line, .hero-eyebrow-line { display: block; margin: 0; }
.sec-eyebrow-line, .sec-eyebrow-line--end { display: none; }

.sec-head,
.tours-row,
.reviews-panel,
.faq-list,
.final-cta-shell {
  width: 100%;
}

/* Reveal animations — transform only so content stays visible before JS */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    transform: translateY(10px);
    transition: transform 0.65s var(--ease);
  }
  .reveal.in { transform: none; }
  .d2 { transition-delay: 0.07s; }
  .d3 { transition-delay: 0.14s; }
  .anim-ready:not(.anim-visible) {
    transform: translateY(10px);
    transition: transform 0.65s var(--ease);
  }
  .anim-ready.anim-visible { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .anim-ready { opacity: 1; transform: none; }
  .hero-poster { display: block; }
}

@media (hover: none) {
  .btn-filled:hover, .btn-outlined:hover,
  .fab-wa:hover, .benefit-card:hover, .review-card:hover { transform: none; }
  .hero-media-card:hover { transform: none; }
  .fab-wa {
    width: 2.75rem;
    height: 2.75rem;
  }
}

/* Large screens / ultrawide */
@media (min-width: 90rem) {
  :root {
    --max-w: 80rem;
    --content-w: 72rem;
  }

  .sec-head {
    max-width: 40rem;
  }
}

/* Small phones */
@media (max-width: 23.99rem) {
  .logo-name { font-size: var(--text-sm); }
  .hero h1 { font-size: 1.75rem; }
}
