:root {
  --navy: #17324b;
  --navy-2: #244d6c;
  --gold: #c79a3c;
  --gold-soft: #e6c98c;
  --cream: #f9f6f1;
  --sand: #f3ede3;
  --text: #243648;
  --muted: #667789;
  --line: rgba(23, 50, 75, 0.08);
  --shadow-soft: 0 12px 30px rgba(17, 37, 56, 0.08);
  --shadow-medium: 0 20px 55px rgba(17, 37, 56, 0.12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcfaf6, #f8f5ef);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 260px;
  z-index: 0;
  pointer-events: none;
  background-image: url("assets/background.png");
  background-repeat: repeat-y;
  background-size: 100vw auto;
  opacity: 1;
  animation: lemonFloat 90s linear infinite;
}

body::before {
  left: 0;
  background-position: left top;
}

body::after {
  right: 0;
  background-position: right top;
}

@keyframes lemonFloat {
  from { background-position-y: 0; }
  to { background-position-y: 2400px; }
}

img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: min(1180px, calc(100% - 220px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* TOPBAR */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.45rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
  white-space: nowrap;
}

.brand span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  min-width: 0;
}

.nav-links a {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  white-space: nowrap;
  transition: .2s ease;
}

.nav-links a:hover { color: var(--gold); }

.language-switcher {
  display: flex;
  flex-shrink: 0;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(23,50,75,.14);
  white-space: nowrap;
}

.lang-btn {
  border: 0;
  background: white;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  min-width: 44px;
}

.lang-btn.active {
  background: var(--navy);
  color: white;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 72px;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 42px 42px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.22));
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 62px;
}

.hero-panel {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 34px 30px 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow.light {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5.4rem, 10vw, 9rem);
  line-height: .88;
  color: white;
  letter-spacing: -.045em;
  text-shadow:
    0 3px 12px rgba(0,0,0,.45),
    0 12px 36px rgba(0,0,0,.24);
}

.hero h1 span { color: var(--gold-soft); }

.hero-lead {
  margin: 32px auto 0;
  max-width: 760px;
  font-size: 1.18rem;
  line-height: 1.9;
  color: white;
  background: rgba(19, 35, 52, 0.48);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  padding: 30px 36px;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: .2s ease;
  border: 1px solid transparent;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--navy);
  color: white;
}

.btn-secondary {
  background: rgba(255,255,255,.94);
  color: var(--navy);
  border-color: rgba(23,50,75,.1);
}

.hero-stats {
  margin: 48px auto 0;
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-medium);
}

.hero-stats div {
  padding: 26px 30px;
  border-right: 1px solid rgba(23,50,75,.08);
}

.hero-stats div:last-child { border-right: 0; }

.hero-stats strong {
  display: block;
  color: var(--navy);
  font-size: 1.18rem;
  margin-bottom: 5px;
}

.hero-stats span {
  color: var(--muted);
  font-size: .95rem;
}

/* GENERAL */

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.alt-section {
  background: rgba(255,255,255,.56);
  border-top: 1px solid rgba(23,50,75,.04);
  border-bottom: 1px solid rgba(23,50,75,.04);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.center { text-align: center; }

.section-heading.narrow {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -.03em;
}

.section-heading p { margin-top: 18px; }

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.mini-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(199,154,60,.12);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* GRIDS */

.info-grid,
.travel-grid,
.hotel-columns,
.activities-grid {
  display: grid;
  gap: 26px;
}

.info-grid { grid-template-columns: repeat(3, 1fr); }
.travel-grid { grid-template-columns: repeat(3, 1fr); }
.hotel-columns { grid-template-columns: repeat(2, 1fr); }
.activities-grid { grid-template-columns: repeat(4, 1fr); }

.info-card,
.travel-card,
.hotel-column,
.single-highlight-card,
.faq-item {
  padding: 38px;
}

.info-card h3,
.travel-card h3,
.hotel-column h3,
.faq-item h3,
.single-highlight-card h3 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.15rem;
  color: var(--navy);
}

.accent-card {
  background: linear-gradient(180deg, #fffdf8, #f7efe0);
}

/* VENUES */

.venues-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.premium-venue-card { overflow: hidden; }

.premium-venue-media {
  position: relative;
}

.premium-venue-media img {
  height: 340px;
  object-fit: cover;
}

.premium-venue-copy {
  padding: 34px;
}

.premium-venue-copy h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: var(--navy);
}

.featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(23,50,75,.88);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.pill-row {
  margin: 24px 0 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(243,237,227,.9);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 600;
}

.venue-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* MOOD */

.mood-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.mood-card {
  overflow: hidden;
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.mood-card img {
  height: 250px;
  object-fit: cover;
}

.mood-card-copy {
  padding: 22px;
}

.mood-card-copy h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--navy);
}

/* PROGRAM */

.program-illustration {
  width: min(1180px, 100%);
  margin: 0 auto 38px;
}

.program-illustration img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: contain;
}

.program-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin: 0 auto;
  width: min(1180px, 100%);
}

.program-step {
  text-align: center;
  background: rgba(249, 246, 241, 0.96);
  padding: 22px 18px;
  border-radius: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(17, 37, 56, 0.05);
  border: 1px solid rgba(255,255,255,.7);
}

.program-step span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .08em;
}

.program-step h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--navy);
}

/* TRAVEL */

.travel-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.travel-card p {
  font-size: 1.02rem;
}

.travel-card .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-block;
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .84rem;
  letter-spacing: .08em;
}

.text-link::after {
  content: " →";
  color: var(--gold);
}

/* HOTELS */

.hotel-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hotel-column li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(23,50,75,.08);
}

.hotel-column li:last-child { border-bottom: 0; }

.hotel-column strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

/* ACTIVITIES */

.activity-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.activity-card img {
  height: 230px;
  object-fit: cover;
}

.activity-copy {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 285px;
}

.activity-copy h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--navy);
}

.activity-copy .text-link {
  margin-top: auto;
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 38px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  padding: 30px;
}

/* SINGLE CARD */

.single-highlight-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* FOOTER */

.footer {
  padding: 54px 0 70px;
  background: rgba(255,255,255,.68);
  border-top: 1px solid rgba(23,50,75,.06);
  position: relative;
  z-index: 1;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.footer-note { color: var(--muted); }

/* RESPONSIVE */

@media (max-width: 1450px) {
  .container {
    width: min(1120px, calc(100% - 190px));
  }

  body::before,
  body::after {
    width: 190px;
    opacity: .75;
  }
}

@media (max-width: 1300px) {
  .mood-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 1200px) {
  .container {
    width: min(1000px, calc(100% - 120px));
  }

  body::before,
  body::after {
    width: 120px;
    opacity: .35;
  }
}

@media (max-width: 980px) {
  body::before,
  body::after {
    display: none;
  }

  .container {
    width: min(100%, calc(100% - 34px));
  }

  .venues-premium-grid,
  .info-grid,
  .travel-grid,
  .hotel-columns,
  .faq-layout,
  .program-line,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .program-illustration {
    width: min(760px, 100%);
  }

  .nav {
    display: flex;
    flex-direction: column;
    padding: 18px 0;
    height: auto;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }

  .language-switcher {
    margin-top: 4px;
  }

  .hero h1 {
    font-size: 4.6rem;
  }
}

@media (max-width: 720px) {
  .mood-grid,
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 0;
  }

  .hero-panel {
    padding: 0;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .hero-lead {
    font-size: 1rem;
    padding: 24px;
  }

  .section {
    padding: 72px 0;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: start;
  }
}