*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #FD7014;
  --orange-hover: #e56410;
  --orange-soft: #ff8a3d;
  --orange-glow: rgba(253, 112, 20, 0.12);
  --peach: #FFF7F2;
  --brown-dark: #402E32;
  --brown-medium: #6B5D56;
  --brown-light: #B5866E;
  --cream: #FDFAF7;
  --warm-white: #FFFDFB;
  --dark-bg: #2C1E14;
  --dark-surface: #3A2A1E;
  --dark-border: rgba(255, 247, 242, 0.08);
  --border: rgba(64, 46, 50, 0.1);
  --border-hover: rgba(64, 46, 50, 0.2);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--brown-dark);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--brown-dark);
}

img {
  max-width: 100%;
  display: block;
}

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

/* ═══════════════════════════════════════════
   Navigation
   ═══════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.nav--scrolled {
  background: rgba(255, 253, 251, 0.97);
  backdrop-filter: blur(16px);
  padding: 0.85rem 2rem;
  box-shadow: 0 1px 0 var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo-icon {
  height: 48px;
  width: auto;
  transition: height 0.4s ease;
}

.nav--scrolled .nav__logo-icon {
  height: 42px;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  transition: color 0.4s ease;
}

.nav__logo-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  transition: color 0.4s ease;
}

.nav__logo-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--orange);
  margin-top: 0.1rem;
}

.nav--scrolled .nav__logo-name {
  color: var(--brown-dark);
}

.nav--scrolled .nav__logo-tagline {
  color: var(--orange);
}



.nav__links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}

.nav__links li a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav__links li a:hover {
  color: #fff;
}

.nav--scrolled .nav__links li a {
  color: var(--brown-medium);
}

.nav--scrolled .nav__links li a:hover {
  color: var(--brown-dark);
}

.nav__links li.nav__separator {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 0.3rem;
}

.nav--scrolled .nav__links li.nav__separator {
  background: var(--border);
}

.nav__links .nav__huolto a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.nav--scrolled .nav__links .nav__huolto a {
  color: var(--brown-light);
}

.nav__cta {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  padding: 0.65rem 1.5rem !important;
  background: var(--orange);
  color: #fff !important;
  border-radius: 6px;
  transition: all 0.3s ease !important;
}

.nav__cta:hover {
  background: var(--orange-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--orange-glow);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
  background: none;
  border: none;
  padding: 4px;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav--scrolled .nav__toggle span {
  background: var(--brown-dark);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════
   Mobile nav overlay
   ═══════════════════════════════════════════ */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--dark-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 247, 242, 0.8);
  padding: 0.7rem 1rem;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--orange);
}

.mobile-nav .mobile-nav__huolto {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 247, 242, 0.1);
}

.mobile-nav .mobile-nav__huolto a {
  font-size: 1rem;
  color: rgba(255, 247, 242, 0.4);
}

/* ═══════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--primary {
  padding: 1rem 2.2rem;
  background: var(--orange);
  color: #fff;
  border-radius: 6px;
}

.btn--primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--orange-glow);
}

.btn--outline {
  padding: 1rem 2.2rem;
  background: transparent;
  color: var(--brown-dark);
  border: 2px solid var(--border);
  border-radius: 6px;
}

.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--outline-light {
  padding: 1rem 2.2rem;
  background: transparent;
  color: rgba(255, 247, 242, 0.8);
  border: 2px solid rgba(255, 247, 242, 0.25);
  border-radius: 6px;
}

.btn--outline-light:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--ghost {
  padding: 0;
  background: none;
  color: var(--brown-dark);
  border-bottom: 1px solid var(--brown-light);
  border-radius: 0;
  padding-bottom: 2px;
}

.btn--ghost:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   Section helpers
   ═══════════════════════════════════════════ */

.section {
  padding: 7rem 2rem;
}

.section--dark {
  background: var(--dark-bg);
  color: var(--peach);
}

.section--cream {
  background: var(--cream);
}

.section--peach {
  background: var(--peach);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.label--center {
  justify-content: center;
}

.label--center::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.label--light {
  color: var(--orange-soft);
}

.label--light::before,
.label--light::after {
  background: var(--orange-soft);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--brown-medium);
  max-width: 540px;
  line-height: 1.7;
}

.section-subtitle--center {
  margin: 0 auto;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ═══════════════════════════════════════════
   Hero
   ═══════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero--short {
  min-height: 50vh;
  min-height: 50svh;
  align-items: center;
}

.hero--short .hero__content {
  padding: 2rem;
  max-width: 750px;
  width: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 30, 20, 0.45) 0%,
    rgba(44, 30, 20, 0.1) 35%,
    rgba(44, 30, 20, 0.5) 70%,
    rgba(44, 30, 20, 0.82) 100%
  );
}

.hero--short .hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(44, 30, 20, 0.55) 0%,
    rgba(44, 30, 20, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  padding: 2rem;
  max-width: 750px;
  text-align: center;
}

.hero--short .hero__content {
  text-align: center;
}

.hero__content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: #fff;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hero__content h1 .highlight {
  color: var(--orange);
}

.hero__tagline {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.hero__tagline span {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 247, 242, 0.55);
  position: relative;
  padding-left: 1rem;
}

.hero__tagline span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 247, 242, 0.7);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero__scroll span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 247, 242, 0.35);
}

.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════════
   Two-column layout
   ═══════════════════════════════════════════ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__image {
  position: relative;
}

.split__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.split__image-badge {
  position: absolute;
  top: 1.5rem;
  right: -1.5rem;
  background: var(--orange);
  color: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px var(--orange-glow);
}

.split__image-badge .number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.split__image-badge .badge-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  opacity: 0.8;
}

.split__accent {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 180px;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  border: 5px solid var(--warm-white);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* ═══════════════════════════════════════════
   Stats row
   ═══════════════════════════════════════════ */

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.stats > div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--cream);
  border-radius: 6px;
  font-size: 1rem;
}

.stat__number {
  font-weight: 700;
  color: var(--orange);
}

.stat__label {
  color: var(--brown-medium);
}

/* ═══════════════════════════════════════════
   Feature grid
   ═══════════════════════════════════════════ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.feature-card {
  padding: 2rem;
  background: rgba(255, 247, 242, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  transition: all 0.4s ease;
}

.feature-card:hover {
  background: rgba(255, 247, 242, 0.08);
  border-color: rgba(253, 112, 20, 0.2);
  transform: translateY(-3px);
}

.feature-card__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1.2rem;
  color: var(--orange);
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--peach);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: rgba(255, 247, 242, 0.55);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   Accommodation cards
   ═══════════════════════════════════════════ */

.acc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.acc-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.acc-card__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.acc-card:hover .acc-card__img {
  transform: scale(1.04);
}

.acc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(44, 30, 20, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.acc-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.acc-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.acc-card p {
  font-size: 0.9rem;
  color: rgba(255, 247, 242, 0.65);
}

.acc-card__stats {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
}

.acc-card__stats span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 247, 242, 0.7);
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   Pricing
   ═══════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--orange);
  background: var(--dark-bg);
  color: var(--peach);
  box-shadow: 0 12px 40px var(--orange-glow);
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: 4px;
}

.pricing-card:not(.pricing-card--featured):hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.pricing-card__tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.pricing-card h3 {
  font-size: 1.3rem;
}

.pricing-card--featured h3 {
  color: var(--peach);
}

.pricing-card__price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 1.2rem 0;
  color: var(--brown-dark);
}

.pricing-card--featured .pricing-card__price {
  color: var(--orange);
}

.pricing-card__price span {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.5;
}

.pricing-card__features {
  list-style: none;
  margin: 1.5rem 0;
  flex: 1;
  text-align: left;
}

.pricing-card__features li {
  font-size: 0.88rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-card--featured .pricing-card__features li {
  border-color: var(--dark-border);
  color: rgba(255, 247, 242, 0.65);
}

.pricing-card__features li svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

.pricing-card__btn {
  display: block;
  width: 100%;
  padding: 0.9rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.pricing-card:not(.pricing-card--featured) .pricing-card__btn {
  background: transparent;
  border: 2px solid var(--brown-dark);
  color: var(--brown-dark);
}

.pricing-card:not(.pricing-card--featured) .pricing-card__btn:hover {
  background: var(--brown-dark);
  color: #fff;
}

.pricing-card--featured .pricing-card__btn {
  background: var(--orange);
  color: #fff;
}

.pricing-card--featured .pricing-card__btn:hover {
  background: var(--orange-hover);
}

/* ═══════════════════════════════════════════
   Gallery
   ═══════════════════════════════════════════ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-grid__item:hover img {
  transform: scale(1.06);
}

.gallery-grid__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-grid__item:hover .gallery-grid__caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ═══════════════════════════════════════════
   Reviews
   ═══════════════════════════════════════════ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
}

.review-card__quote {
  position: absolute;
  top: 0.8rem;
  left: 1.2rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.12;
  line-height: 1;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.review-card__stars svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  fill: var(--orange);
}

.review-card blockquote {
  font-size: 1rem;
  color: var(--brown-dark);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: normal;
}

.review-card__author {
  font-size: 0.82rem;
  font-weight: 700;
}

.review-card__source {
  font-size: 0.72rem;
  color: var(--brown-medium);
  margin-top: 0.15rem;
}

/* ═══════════════════════════════════════════
   CTA section
   ═══════════════════════════════════════════ */

.cta {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 30, 20, 0.6) 0%,
    rgba(44, 30, 20, 0.75) 100%
  );
}

.cta__content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1.2rem;
}

.cta h2 .highlight {
  color: var(--orange);
}

.cta p {
  font-size: 1rem;
  color: rgba(255, 247, 242, 0.6);
  margin-bottom: 2.5rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   Check list (for diff/info sections)
   ═══════════════════════════════════════════ */

.check-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.check-list__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check-list__icon svg {
  width: 11px;
  height: 11px;
  color: #fff;
}

/* ═══════════════════════════════════════════
   Info cards (ohjeet, etc.)
   ═══════════════════════════════════════════ */

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.info-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-card p:last-child {
  margin-top: auto;
}

.info-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  color: var(--orange);
}

.info-card__icon svg {
  width: 100%;
  height: 100%;
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.info-card__highlight {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.info-card p {
  font-size: 0.92rem;
  color: var(--brown-medium);
  line-height: 1.7;
}

.info-card .btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

.info-cards--single {
  max-width: 500px;
  margin: 0 auto;
}

.info-card--featured {
  border: 2px solid var(--orange);
  box-shadow: 0 8px 32px var(--orange-glow);
  padding: 2.5rem 3rem;
}

.info-card--featured .info-card__icon {
  width: 64px;
  height: 64px;
}

.info-card--featured h3 {
  font-size: 1.4rem;
}

.info-card--featured p {
  font-size: 1rem;
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.booking-terms {
  max-width: 600px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 1.2rem 1.5rem;
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--brown-medium);
  line-height: 1.8;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════
   Lightbox
   ═══════════════════════════════════════════ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__close svg {
  width: 100%;
  height: 100%;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav svg {
  width: 24px;
  height: 24px;
}

.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

.gallery-grid__item {
  cursor: zoom-in;
}

/* ═══════════════════════════════════════════
   Accordion
   ═══════════════════════════════════════════ */

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown-dark);
  text-align: left;
  line-height: 1.3;
}

.accordion__trigger:hover {
  color: var(--orange);
}

.accordion__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 1rem;
  color: var(--orange);
  transition: transform 0.3s ease;
}

.accordion__item.open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__inner {
  padding: 0 0 1.5rem;
  color: var(--brown-medium);
  line-height: 1.8;
  font-size: 0.95rem;
}

.accordion__inner p {
  margin-bottom: 0.8rem;
}

.accordion__inner ul {
  margin: 0.5rem 0 0.8rem 1.2rem;
}

.accordion__inner ul li {
  margin-bottom: 0.4rem;
}

.accordion__inner h4 {
  font-size: 1rem;
  margin: 1.2rem 0 0.5rem;
  color: var(--brown-dark);
}

/* ═══════════════════════════════════════════
   Page content (for inner pages)
   ═══════════════════════════════════════════ */

.page-content {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
}

.page-content h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.8rem;
}

.page-content p {
  color: var(--brown-medium);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.page-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--brown-medium);
}

.page-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════ */

.footer {
  background: var(--dark-bg);
  padding: 4.5rem 2rem 2.5rem;
}

.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
}

.footer__brand .nav__logo {
  display: inline-block;
  margin-bottom: 1.2rem;
}

.footer__brand .nav__logo img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);

}

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255, 247, 242, 0.4);
  max-width: 280px;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 247, 242, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  border-color: var(--orange);
  background: rgba(253, 112, 20, 0.1);
}

.footer__social svg {
  width: 15px;
  height: 15px;
  color: rgba(255, 247, 242, 0.45);
}

.footer__col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 247, 242, 0.3);
  margin-bottom: 1.3rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 0.65rem;
}

.footer__col a {
  font-size: 0.88rem;
  color: rgba(255, 247, 242, 0.55);
  transition: color 0.3s ease;
}

.footer__col a:hover {
  color: var(--orange);
}

.footer__bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 247, 242, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255, 247, 242, 0.25);
}

.footer__langs {
  display: flex;
  gap: 1rem;
}

.footer__langs a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 247, 242, 0.25);
  transition: color 0.3s ease;
}

.footer__langs a:hover,
.footer__langs a.active {
  color: var(--orange);
}

/* ═══════════════════════════════════════════
   Scroll reveal
   ═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .split--reverse {
    direction: ltr;
  }

  .split__image img {
    height: 380px;
  }

  .split__accent {
    display: none;
  }

  .split__image-badge {
    right: 1rem;
  }

  .feature-grid,
  .acc-grid,
  .pricing-grid,
  .reviews-grid,
  .info-cards {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  .nav--scrolled {
    padding: 0.8rem 1.25rem;
  }

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .section {
    padding: 4.5rem 1.25rem;
  }

  .hero__content {
    padding: 1.25rem;
  }

  .hero--short .hero__content {
    padding: 1.25rem;
  }

  .hero__tagline {
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.75rem;
  }

  .hero__tagline span {
    font-size: 0.75rem;
    padding-left: 0.8rem;
  }

  .stats > div {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__scroll {
    display: none;
  }

  .feature-grid,
  .acc-grid,
  .pricing-grid,
  .reviews-grid,
  .info-cards {
    grid-template-columns: 1fr;
  }

  .acc-card__stats {
    flex-wrap: wrap;
  }

  .acc-card__img {
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid__item--tall {
    grid-row: span 1;
  }

  .stats {
    gap: 0.5rem;
  }

  .cta {
    padding: 5rem 1.25rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  .hero__desc {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.88rem;
  }

  .check-list li {
    font-size: 0.88rem;
  }

  .feature-grid--light {
    grid-template-columns: 1fr;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════
   Nav Social Icons
   ═══════════════════════════════════════════ */

.nav__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav__social a:hover {
  opacity: 1;
}

.nav__social svg {
  fill: #fff;
  transition: fill 0.4s ease;
}

.nav--scrolled .nav__social svg {
  fill: var(--brown-medium);
}

.nav--scrolled .nav__social a:hover svg {
  fill: var(--orange);
}

.mobile-nav__social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 247, 242, 0.1);
  margin-top: 1.5rem;
}

.mobile-nav__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.mobile-nav__social a:hover {
  opacity: 1;
}

.mobile-nav__social svg {
  fill: var(--peach);
}

/* ═══════════════════════════════════════════
   Nav Social Responsive Fixes
   ═══════════════════════════════════════════ */

@media (max-width: 1280px) {
  .nav__links li a {
    padding: 0.5rem 0.6rem;
    font-size: 0.72rem;
  }

  .nav__social {
    gap: 0.3rem;
  }

  .nav__social svg {
    width: 15px;
    height: 15px;
  }

  .nav__cta {
    padding: 0.55rem 1rem !important;
    font-size: 0.72rem !important;
  }

  .nav__logo-icon {
    height: 38px;
  }

  .nav--scrolled .nav__logo-icon {
    height: 34px;
  }

  .nav__logo-name {
    font-size: 0.9rem;
  }

  .nav__logo-tagline {
    font-size: 0.6rem;
  }
}

@media (max-width: 1100px) {
  .nav__social {
    display: none;
  }

  .nav__links .nav__huolto {
    display: none;
  }

  .nav__links li.nav__separator {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav__social {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   Language Switcher
   ═══════════════════════════════════════════ */

.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__lang a {
  font-size: 0.6rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  padding: 0.25rem 0.35rem !important;
  opacity: 0.5;
  text-transform: uppercase !important;
  transition: opacity 0.3s ease !important;
}

.nav__lang a.active {
  opacity: 1;
}

.nav__lang a:hover {
  opacity: 1;
}

.mobile-nav__lang {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 0 0;
}

.mobile-nav__lang a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.4;
  padding: 0.3rem 0.5rem;
  transition: opacity 0.3s ease;
}

.mobile-nav__lang a.active {
  opacity: 1;
  color: var(--orange);
}

.mobile-nav__lang a:hover {
  opacity: 1;
}

@media (max-width: 1280px) {
  .nav__lang a {
    font-size: 0.55rem !important;
    padding: 0.2rem 0.25rem !important;
  }
}

@media (max-width: 1100px) {
  .nav__lang {
    display: none;
  }
}

.pricing-card__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: 4px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   Floating Language Selector
   ═══════════════════════════════════════════ */

.social-float {  position: fixed;  bottom: 1.5rem;  left: 1.5rem;  z-index: 99;  display: flex;  flex-direction: row;  align-items: center;  gap: 0.5rem;}.social-float__btn {  width: 36px;  height: 36px;  border-radius: 50%;  background: rgba(255, 255, 255, 0.95);  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);  display: flex;  align-items: center;  justify-content: center;  transition: transform 0.2s ease, box-shadow 0.2s ease;}.social-float__btn:hover {  transform: scale(1.1);  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);}.social-float__btn svg {  fill: var(--brown-dark);  transition: fill 0.2s ease;}.social-float__btn:hover svg {  fill: var(--orange);}
@media (max-width: 768px) {
  .social-float { bottom: 1rem; left: 1rem; gap: 0.4rem; }
  .social-float__btn { width: 28px; height: 28px; }
  .social-float__btn svg { width: 14px; height: 14px; }
}
/* ═══════════════════════════════════════════
   Translation Alignment Fixes
   ═══════════════════════════════════════════ */

.pricing-card__tier {
  min-height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card h3 {
  min-height: 1.6em;
}

.feature-card h3 {
  min-height: 2.4em;
  display: flex;
  align-items: center;
}

.feature-card p {
  flex: 1;
}

.feature-card {
  display: flex;
  flex-direction: column;
}

.acc-card__overlay h3 {
  min-height: 1.5em;
}

.info-card h3 {
  min-height: 1.5em;
}

.check-list li {
  min-height: 1.4em;
}

.hero__tagline span {
  white-space: nowrap;
}

.nav__links li a {
  white-space: nowrap;
}

.feature-card--light {
  background: #fff;
  border-color: var(--border);
}

.feature-card--light:hover {
  background: #fff;
  border-color: rgba(253, 112, 20, 0.3);
}

.feature-card--light h3 {
  color: var(--brown-dark);
}

.feature-card--light p {
  color: var(--brown-medium);
}

/* ═══════════════════════════════════════════
   Mökkihuolto service table
   ═══════════════════════════════════════════ */







/* ═══════════════════════════════════════════
   Nav Language Button
   ═══════════════════════════════════════════ */

.nav__lang-btn {
  position: relative;
}

.nav__lang-wrap {
  position: relative;
}

.nav__lang-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.45rem;
  padding: 0.35rem 0.7rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav__lang-toggle:hover {
  transform: scale(1.15);
}

.nav__lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: var(--dark-bg);
  border-radius: 8px;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.nav__lang-wrap.open .nav__lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__lang-dropdown a {
  font-size: 1.1rem;
  padding: 0.35rem 0.6rem !important;
  border-radius: 4px;
  transition: background 0.2s ease;
  text-align: center;
}

.nav__lang-dropdown a:hover {
  background: var(--dark-surface);
}

.mobile-nav__lang {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 247, 242, 0.1);
  margin-top: 1.5rem;
}

.mobile-nav__lang a {
  font-size: 1.5rem;
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-nav__lang a.active {
  opacity: 1;
}

.mobile-nav__lang a:hover {
  opacity: 1;
  transform: scale(1.15);
}

@media (max-width: 1100px) {
  .nav__lang-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav__lang-btn {
    display: none;
  }
}


.huolto-table {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.huolto-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.huolto-table th,
.huolto-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.huolto-table th {
  background: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.huolto-table td {
  font-size: 0.9rem;
  color: var(--brown-dark);
}

.huolto-table tr:last-child td {
  border-bottom: none;
}

.huolto-mobile { display: none; }

@media (max-width: 768px) {
  .huolto-table { display: none; }
  .huolto-mobile { display: flex; flex-direction: column; gap: 2rem; }
  .huolto-mobile__group h3 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.8rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--orange); }
  .huolto-mobile__group ul { list-style: none; margin: 0; padding: 0; }
  .huolto-mobile__group li { padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--brown-dark); }
  .huolto-mobile__group li:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav:not(.nav--scrolled) .nav__logo {
    opacity: 0;
    pointer-events: none;
  }
  .nav--scrolled .nav__logo {
    opacity: 1;
    pointer-events: auto;
  }
  .nav__logo {
    transition: opacity 0.4s ease;
  }
}

.booking-calendar {
  display: flex;
  justify-content: center;
}

.booking-calendar .wpsbc-container {
  font-family: inherit;
  transform: scale(1.4);
  transform-origin: top center;
  margin-bottom: 120px;
}

.booking-calendar .wpsbc-calendar {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
