@font-face {
  font-family: "Cormorant Garamond";
  src: url(../fonts/CormorantGaramond-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url(../fonts/Karla-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --primary: #6B8F71;
  --primary-dark: #4A6B4F;
  --primary-light: #A8C5AD;
  --secondary: #C4A265;
  --secondary-light: #E8D5A8;
  --accent: #D4A574;
  --bg-cream: #FAF8F4;
  --bg-warm: #F3EDE4;
  --bg-sage: #EDF3EE;
  --text-dark: #2C2C2C;
  --text-body: #4A4A4A;
  --text-muted: #7A7A7A;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 44, 44, 0.1);
  --shadow-lg: 0 8px 40px rgba(44, 44, 44, 0.14);
  --shadow-xl: 0 16px 60px rgba(44, 44, 44, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Karla', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-cream);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 143, 113, 0.1);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.logo span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 6px 0;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition);
  border-radius: 2px;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: var(--primary-dark);
}

.header-notice {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--bg-sage);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-cream) 0%, var(--bg-sage) 40%, var(--bg-warm) 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-light), transparent);
  top: -100px;
  right: -80px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--secondary-light), transparent);
  bottom: -60px;
  left: -60px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent), transparent);
  top: 50%;
  left: 45%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-badge-alt {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-dark) 70%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 26px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  min-height: 44px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(107, 143, 113, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107, 143, 113, 0.45);
}

.btn-ghost {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-full {
  width: 100%;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.metric-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--primary-light), transparent);
}

.hero-visual {
  position: relative;
}

.hero-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3.2;
  position: relative;
}

.hero-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  animation: float 4s ease-in-out infinite;
}

.hero-float-1 {
  top: -14px;
  right: -10px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 20px;
  left: -20px;
  animation-delay: 1.5s;
}

.hero-float-3 {
  bottom: -14px;
  right: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  animation-delay: 3s;
}

.hero-float i {
  color: var(--primary);
  font-size: 1.2rem;
}

.hero-float strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.hero-float span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-float-stars {
  display: flex;
  gap: 2px;
}

.hero-float-stars i {
  font-size: 0.7rem;
  color: var(--secondary);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-scroll-hint {
  text-align: center;
  margin-top: 32px;
  color: var(--primary-light);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.section-header {
  text-align: center;
  margin-bottom: 44px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--secondary);
  margin-bottom: 12px;
  position: relative;
  padding: 0 24px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--secondary), transparent);
}

.section-tag::before {
  left: 0;
  transform: rotate(180deg);
}

.section-tag::after {
  right: 0;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
}

.section-desc {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.advantages {
  padding: 60px 0;
  background: var(--white);
}

.advantages-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.adv-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.adv-featured-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.adv-featured-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: 1;
  min-height: 220px;
  box-shadow: var(--shadow-sm);
}

.adv-text {
  display: flex;
  flex-direction: column;
}


.adv-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.adv-featured:hover .adv-featured-img img {
  transform: scale(1.05);
}

.adv-card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(107, 143, 113, 0.06);
  display: flex;
  flex-direction: column;
}

.adv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(107, 143, 113, 0.15);
}

.adv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition);
}

.adv-card:hover::before {
  opacity: 1;
}

.adv-featured {
  background: linear-gradient(145deg, var(--bg-sage), var(--bg-cream));
}

.adv-featured::before {
  opacity: 1;
  height: 4px;
}

.adv-icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light), var(--bg-sage));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.adv-icon-wrap i {
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.adv-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.adv-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
  flex: 1;
}

.adv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.adv-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--secondary);
  background: var(--secondary-light);
  padding: 4px 10px;
  border-radius: 20px;
}

.resorts {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
}

.resorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.resort-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.resort-featured .resort-img {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  aspect-ratio: auto;
  height: 100%;
}

.resort-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.resort-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.resort-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.resort-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resort-card:hover .resort-img img {
  transform: scale(1.06);
}

.resort-region {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}

.resort-flag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.resort-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.resort-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 10px;
}

.resort-rating i {
  color: var(--secondary);
  font-size: 0.75rem;
}

.resort-rating span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-left: 6px;
}

.resort-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.resort-body > p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.resort-services {
  list-style: none;
  margin-bottom: 16px;
}

.resort-services li {
  font-size: 0.8rem;
  color: var(--text-body);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.resort-services li i {
  color: var(--primary);
  font-size: 0.65rem;
}

.resort-price {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(107, 143, 113, 0.1);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-label {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.price-unit {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.pricing {
  padding: 60px 0;
  background: var(--white);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.pricing-info h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 12px;
}

.pricing-info > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 26px;
  line-height: 1.6;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}

.pf-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pf-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bg-sage), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1rem;
}

.pf-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.pf-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pricing-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--secondary-light), rgba(232, 213, 168, 0.4));
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-body);
  border-left: 3px solid var(--secondary);
}

.pricing-note i {
  color: var(--secondary);
  margin-top: 2px;
}

.pricing-table-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-table {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107, 143, 113, 0.1);
}

.pt-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pt-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(107, 143, 113, 0.07);
  font-size: 0.88rem;
  align-items: center;
  transition: var(--transition);
}

.pt-row:hover {
  background: var(--bg-sage);
}

.pt-featured {
  background: rgba(196, 162, 101, 0.07);
  font-weight: 600;
}

.pt-flag {
  display: inline-block;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--white);
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}

.pt-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.pt-footer {
  padding: 12px 22px;
  font-size: 0.76rem;
  color: var(--text-muted);
  background: rgba(107, 143, 113, 0.04);
}

.pricing-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/7;
}

.pricing-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 107, 79, 0.3), transparent);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.pricing-visual-badge {
  background: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.reviews {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, var(--bg-sage) 0%, var(--bg-cream) 100%);
}

.reviews-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-slider {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.reviews-track {
  display: flex;
  width: 100%;
  --per-view: 3;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex: 0 0 calc(100% / var(--per-view));
  min-width: 0;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
}

.review-card-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.review-card:hover .review-card-inner {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars i {
  color: var(--secondary);
  font-size: 0.8rem;
}

.review-resort {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--bg-sage);
  padding: 3px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.review-card-inner > p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 16px;
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.review-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.review-city {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.slider-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(107, 143, 113, 0.15);
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-light);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--primary-dark);
  transform: scale(1.2);
}

.faq-section {
  padding: 48px 0 60px;
  background: var(--bg-cream);
}

.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(107, 143, 113, 0.06);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(107, 143, 113, 0.15);
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 300;
  transition: var(--transition);
  min-width: 20px;
  text-align: center;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: var(--primary-dark);
}

.faq-item p {
  padding: 0 20px 16px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cta-form {
  padding: 60px 0;
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 50%, #5A7D60 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content .section-tag {
  color: var(--secondary-light);
}

.cta-content .section-tag::before,
.cta-content .section-tag::after {
  background: var(--secondary-light);
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 14px;
}

.cta-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  margin-bottom: 26px;
  line-height: 1.65;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cta-benefit-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
}

.cta-benefit strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.cta-benefit span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.cta-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-trust-item i {
  color: var(--secondary-light);
}

.cta-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-xl);
}

.form-header {
  text-align: center;
  margin-bottom: 22px;
}

.form-header i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-header h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(107, 143, 113, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--bg-cream);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 143, 113, 0.1);
  background: var(--white);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.form-check label {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 0;
}

.form-note {
  display: block;
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 44px 0 22px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
}

.footer .logo span {
  color: var(--white);
}

.footer-desc {
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-legal nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-legal a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
  color: var(--primary-light);
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-bottom: 18px;
}

.footer-disclaimer p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thanks-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: linear-gradient(145deg, var(--bg-cream) 0%, var(--bg-sage) 50%, var(--bg-warm) 100%);
}

.thanks-box {
  text-align: center;
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 540px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.thanks-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.thanks-box img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
}

.thanks-box h1 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}

.thanks-box p {
  font-size: 1.2rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 10px;
}

.thanks-box .thanks-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .advantages-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .adv-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .resorts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resort-featured {
    grid-column: span 2;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .reviews-track {
    --per-view: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin-left: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid rgba(107, 143, 113, 0.1);
    box-shadow: var(--shadow-md);
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .nav.active {
    max-height: 420px;
    padding: 8px 24px 18px;
  }

  .nav a {
    font-size: 1rem;
    padding: 13px 0;
    border-bottom: 1px solid rgba(107, 143, 113, 0.08);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav a::after {
    display: none;
  }

  .burger {
    display: flex;
    margin-left: auto;
  }

  .header-notice {
    display: none;
  }

  .hero {
    padding: 36px 0 40px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-metrics {
    gap: 12px;
  }

  .metric-divider {
    display: none;
  }

  .hero-float-1,
  .hero-float-2 {
    display: none;
  }

  .advantages-bento {
    grid-template-columns: 1fr;
  }

  .adv-featured {
    grid-column: span 1;
  }

  .adv-featured-inner {
    grid-template-columns: 1fr;
  }

  .adv-featured-img {
    min-height: 200px;
    order: -1;
  }

  .resorts-grid {
    grid-template-columns: 1fr;
  }

  .resort-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .resort-featured .resort-img {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    aspect-ratio: 16/10;
  }

  .reviews-track {
    --per-view: 1;
  }

  .faq-columns {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .advantages,
  .resorts,
  .pricing,
  .reviews,
  .faq-section,
  .cta-form {
    padding: 40px 0;
  }

  .cta-form-wrap {
    padding: 24px;
  }

  .pt-header,
  .pt-row {
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 12px 14px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-float-3 {
    position: static;
    margin-top: 12px;
  }

  .cta-trust {
    flex-direction: column;
    gap: 10px;
  }
}

.legal-section {
  padding: 48px 0;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-sage) 100%);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 44px 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.legal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.legal-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.legal-updated {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(107, 143, 113, 0.12);
}

.legal-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 26px;
}

.legal-content h2 {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 30px 0 12px;
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 20px 0 8px;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 18px 1.5rem;
}

.legal-content li {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 8px;
}

.legal-content li strong {
  color: var(--text-dark);
}

.legal-content a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--secondary);
}

@media (max-width: 768px) {
  .legal-section {
    padding: 32px 0;
  }

  .legal-content {
    padding: 28px 22px;
  }

  .legal-content h1 {
    font-size: 1.6rem;
  }

  .legal-content h2 {
    font-size: 1.25rem;
    margin-top: 24px;
  }

  .legal-intro {
    font-size: 0.98rem;
  }
  body {
    word-break: break-word;
  }
    .review-resort {
      white-space: wrap;
    }
}