*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Värvid tulevad css/themes/*.css failist — vaata disain.html */
:root {
  --radius: 16px;
  --radius-sm: 10px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--cream);
  background-image: var(--bg-pattern, url("../images/horseshoe-pattern.svg"));
  background-size: 240px 240px;
  background-attachment: fixed;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent-deep); }

.container { width: min(1140px, 100% - 2.5rem); margin-inline: auto; }
.container-narrow { width: min(720px, 100% - 2.5rem); margin-inline: auto; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--border-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.02em;
}

.logo span { color: var(--accent-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a:not(.btn) {
  color: var(--text);
  font-weight: 500;
  font-size: 0.925rem;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-light);
  transition: width 0.25s var(--ease);
}

.nav-links a:not(.btn):hover::after { width: 100%; }

.btn-nav {
  background: linear-gradient(135deg, var(--rose-700), var(--rose-800)) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.15rem !important;
  border-radius: 999px;
  font-size: 0.875rem !important;
  box-shadow: var(--shadow-btn);
}

.btn-nav:hover {
  background: linear-gradient(135deg, var(--rose-800), var(--rose-950)) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: 0.25s var(--ease);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--rose-700), var(--rose-800));
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--rose-800), var(--rose-950));
  color: var(--white);
  box-shadow: var(--shadow-btn-hover);
}

.btn-ghost {
  background: var(--white);
  color: var(--green-900);
  border-color: var(--cream-deep);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  background: var(--rose-100);
  border-color: var(--rose-400);
  color: var(--rose-900);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-full { width: 100%; }

.btn-calc {
  background: var(--white);
  color: var(--green-900);
  font-weight: 700;
}

.btn-calc:hover {
  background: var(--rose-100);
  color: var(--rose-900);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  background: transparent;
}

.hero-visual {
  position: relative;
  height: clamp(240px, 44vw, 560px);
  overflow: hidden;
  line-height: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 8s var(--ease);
}

.hero:hover .hero-visual img { transform: scale(1.03); }

.hero-visual-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-900);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--rose-200);
}

.hero-panel {
  background:
    var(--hero-overlay);
  padding: 2rem 0 2.75rem;
}

.hero-content { position: relative; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose-800);
  background: var(--rose-100);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  border: 1px solid var(--rose-200);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.5rem);
  line-height: 1.08;
  color: var(--green-900);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-lead {
  font-size: 1.075rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-actions .btn { width: 100%; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  list-style: none;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: var(--white);
  padding: 1rem 0.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.hero-stats li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.stat-icon {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rose-700);
  background: var(--rose-100);
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stats strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green-900);
}

/* Process strip */
.strip {
  background: linear-gradient(135deg, var(--rose-900) 0%, var(--rose-950) 100%);
  color: var(--white);
  padding: 1.5rem 0;
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.strip-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--rose-400);
}

.strip-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.strip-item span {
  font-size: 0.8rem;
  opacity: 0.75;
}

/* Sections */
.section { padding: 5rem 0; }
.section-alt {
  background: var(--section-alt-bg);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.section-label-light { color: var(--rose-400); opacity: 1; }

.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: var(--green-900);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  position: relative;
  overflow: hidden;
}

.card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s var(--ease);
}

.card:hover img { transform: scale(1.05); }

.card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--card-tag-bg);
  color: var(--rose-800);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--rose-200);
}

.card-body { padding: 1.5rem; }

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-900);
  margin-bottom: 0.5rem;
}

.card-body p { font-size: 0.95rem; color: var(--text-muted); }

/* Winter banner */
.winter-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--rose-50) 0%, var(--winter-banner-end) 100%);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius);
}

.winter-icon {
  font-size: 2rem;
  line-height: 1;
}

.winter-banner strong {
  display: block;
  color: var(--green-900);
  margin-bottom: 0.15rem;
}

.winter-banner p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pricing */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.price-rules {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
}

.price-rule {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--cream-dark);
}

.price-rule:last-of-type { border-bottom: none; }

.price-big {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 5.5rem;
  letter-spacing: -0.02em;
}

.checklist {
  list-style: none;
  margin: 1.75rem 0 1.25rem;
}

.checklist li {
  padding: 0.45rem 0 0.45rem 1.75rem;
  position: relative;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--white);
  background: var(--accent-light);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0.5rem;
}

.fine-print { font-size: 0.85rem; color: var(--text-muted); }

/* Calculator */
.calculator {
  background: linear-gradient(145deg, var(--rose-900) 0%, var(--rose-950) 55%, var(--green-950) 100%);
  color: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.calculator::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 100%;
  background: var(--calc-glow);
  pointer-events: none;
}

.calculator h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.calc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.calculator label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
  position: relative;
}

.calculator input,
.calculator select {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}

.calculator select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.calculator select option {
  background: var(--green-900);
  color: var(--white);
}

.calculator input:focus,
.calculator select:focus {
  outline: none;
  border-color: var(--rose-400);
  background-color: rgba(255, 255, 255, 0.12);
}

.calc-custom { margin-bottom: 0.75rem; }

.calc-hint,
.calc-transport-note {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 0.35rem;
  line-height: 1.4;
}

.calc-transport-note {
  margin-bottom: 1rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  opacity: 0.9;
}

.calc-result {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.calc-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.calc-result strong {
  font-family: var(--font-display);
  font-size: 2.75rem;
  letter-spacing: -0.03em;
  color: var(--rose-400);
}

/* Transport */
.transport-section {
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--green-900);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.split p { color: var(--text-muted); margin-bottom: 1rem; }

.split-list {
  list-style: none;
  margin-top: 1.25rem;
}

.split-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}

.split-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
}

.split-media {
  position: relative;
}

.split-media::before {
  content: "";
  position: absolute;
  inset: -8px -8px 8px 8px;
  background: var(--green-100);
  border-radius: var(--radius);
  z-index: 0;
}

.split-media img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* Regions */
.regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.regions-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .regions-grid { grid-template-columns: 1fr; }
}

.region {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.region:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.region-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.region h3 {
  font-family: var(--font-display);
  color: var(--green-900);
  margin-bottom: 0.5rem;
}

.region h3 a {
  color: var(--green-900);
  text-decoration: underline;
  text-decoration-color: var(--rose-400);
  text-underline-offset: 3px;
}

.region h3 a:hover { color: var(--accent); }

.region p { font-size: 0.925rem; color: var(--text-muted); line-height: 1.6; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--green-900);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent-light);
  font-weight: 400;
  transition: transform 0.25s;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Booking */
.section-cta {
  background: linear-gradient(160deg, var(--rose-800) 0%, var(--rose-900) 45%, var(--green-950) 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.section-cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--booking-glow);
  pointer-events: none;
}

.booking {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
  position: relative;
}

.booking-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.booking-intro p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.booking-intro strong {
  color: var(--white);
  font-weight: 700;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  transition: background 0.2s;
}

.email-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.booking-form {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.booking-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.8rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.form-note.success { color: var(--rose-600); font-weight: 600; }

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--rose-950) 0%, var(--green-950) 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-footer {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}

.logo-footer span { color: var(--green-400); }

.footer-brand p { font-size: 0.9rem; max-width: 28ch; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-col p { margin-bottom: 0.4rem; font-size: 0.9rem; }
.footer-col a { color: var(--green-400); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.25rem 0;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Sticky CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 90;
  padding: 0.9rem 2.25rem;
  background: linear-gradient(135deg, var(--rose-700), var(--rose-800));
  color: var(--white);
  font-weight: 700;
  border-radius: 999px;
  box-shadow: var(--sticky-cta-shadow);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}

.sticky-cta.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.sticky-cta:hover {
  color: var(--white);
  box-shadow: var(--sticky-cta-shadow-hover);
}

.sticky-cta.hide-near-form { opacity: 0; pointer-events: none; }

/* Desktop hero */
@media (min-width: 769px) {
  .hero {
    grid-template-columns: 1.08fr 0.92fr;
    min-height: min(90vh, 680px);
  }

  .hero-visual {
    height: auto;
    min-height: 480px;
  }

  .hero-visual img { object-position: center 25%; }

  .hero-panel {
    display: flex;
    align-items: center;
    padding: 3rem 0;
    border-left: 1px solid var(--cream-deep);
  }

  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .sticky-cta { display: inline-flex; }
  body { padding-bottom: 5rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 4.25rem;
    left: 0;
    right: 0;
    background: var(--nav-mobile-bg);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--cream-deep);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s var(--ease);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li { width: 100%; }
  .nav-links a:not(.btn) {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.05rem;
  }

  .btn-nav { width: 100%; text-align: center; margin-top: 0.5rem; }

  .strip-inner { grid-template-columns: 1fr; gap: 1.25rem; }

  .pricing-layout,
  .split,
  .booking,
  .regions,
  .footer-inner { grid-template-columns: 1fr; }

  .calc-fields { grid-template-columns: 1fr; }

  .hero h1 { font-size: 2rem; }

  .split-media { order: -1; }

  .winter-banner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-visual img { transition: none; }
  body { background-attachment: scroll; }
}

/* SEO / article pages */
.hero-seo {
  font-size: 0.95rem;
  color: var(--rose-800);
  font-weight: 500;
  margin: -0.5rem 0 1rem;
  max-width: 42ch;
  line-height: 1.5;
}

.article-page {
  padding: 3rem 0 4rem;
  background: transparent;
}

.article-content {
  max-width: 720px;
}

.article-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  color: var(--green-900);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.article-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green-900);
  margin: 2rem 0 0.75rem;
}

.article-content p,
.article-content li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.article-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.article-hero-img {
  margin: 1.5rem 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--rose-50) 0%, var(--cream-dark) 100%);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius);
  text-align: center;
}

.article-cta h2 { margin-top: 0; }

.article-cta .btn { margin: 0.35rem; }

.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}

.article-table th,
.article-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--cream-deep);
  text-align: left;
}

.article-table th {
  background: var(--cream-dark);
  color: var(--green-900);
  font-weight: 600;
}

.article-related {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.article-related a {
  color: var(--accent);
  font-weight: 500;
}

/* Pony profiles */
.pony-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.pony-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pony-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pony-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
}

.pony-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.pony-card:hover .pony-card-img img {
  transform: scale(1.04);
}

.pony-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.pony-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green-900);
  margin-bottom: 0.25rem;
}

.pony-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose-800);
  margin-bottom: 0.75rem;
}

.pony-card-body p:last-child {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.pony-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.pony-note a {
  font-weight: 600;
  color: var(--accent);
}

.pony-intro {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
