/* Madhav Farm — premium party plot
   Palette drawn from logo: gold, peacock emerald/blue, ink */

:root {
  --ink: #14110f;
  --ink-soft: #2a2420;
  --gold: #c4a35a;
  --gold-deep: #a8843a;
  --gold-soft: #e8d5a3;
  --emerald: #1a6b45;
  --peacock: #1e5a7a;
  --sand: #f3efe8;
  --sand-deep: #e6dfd3;
  --stone: #8a8178;
  --white: #fffdf9;
  --line: rgba(20, 17, 15, 0.12);
  --shadow: 0 24px 60px rgba(20, 17, 15, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --header-h: 100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(196, 163, 90, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(26, 107, 69, 0.08), transparent 50%),
    linear-gradient(180deg, #f7f3ec 0%, var(--sand) 40%, #efe9df 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container-wide {
  width: min(1320px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ——— Top bar ——— */
.topbar {
  background: var(--ink);
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: var(--gold);
}

.topbar-contacts {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(20, 17, 15, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: 78px;
  max-width: 260px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: 0;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(20, 17, 15, 0.06));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav > li {
  position: relative;
}

.nav > li > a,
.nav > li > button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.25s ease;
}

.nav > li > a:hover,
.nav > li > a.is-active,
.nav > li > button:hover {
  color: var(--emerald);
}

.nav > li > a.is-active {
  color: var(--gold-deep);
}

.caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s var(--ease);
  z-index: 20;
}

.nav > li:hover > .dropdown,
.nav > li:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown a {
  display: block;
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: 0.2s ease;
}

.dropdown a:hover {
  background: rgba(196, 163, 90, 0.12);
  color: var(--ink);
}

.nav-cta {
  margin-left: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 560;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: 0.3s var(--ease);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1a1408;
  box-shadow: 0 10px 28px rgba(168, 132, 58, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(168, 132, 58, 0.45);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(196, 163, 90, 0.15);
}

.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--gold-soft);
}

.btn-emerald {
  background: var(--emerald);
  color: #fff;
}

.btn-emerald:hover {
  background: #145538;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: 0.25s ease;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1400 / 625;
  min-height: 360px;
  max-height: 625px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-media { z-index: 0; }
.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(8, 6, 4, 0.88) 0%, rgba(8, 6, 4, 0.55) 38%, rgba(8, 6, 4, 0.28) 62%, rgba(8, 6, 4, 0.42) 100%),
    linear-gradient(0deg, rgba(8, 6, 4, 0.82) 0%, rgba(8, 6, 4, 0.2) 42%, transparent 68%);
}

.hero-glow {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 78% 42%, rgba(196, 163, 90, 0.28), transparent 68%),
    radial-gradient(ellipse 40% 50% at 92% 18%, rgba(232, 213, 163, 0.14), transparent 70%);
  animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

.hero-watermark {
  position: absolute;
  right: 1.5%;
  top: 44%;
  z-index: 1;
  margin: 0;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9.5vw, 7.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: rgba(255, 253, 249, 0.14);
  text-transform: none;
  transform: translateY(-50%);
  white-space: nowrap;
  user-select: none;
  text-shadow: 0 0 48px rgba(196, 163, 90, 0.16);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.2), rgba(196, 163, 90, 0.12));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
  transform: scale(1.12);
}

.hero-slide:nth-child(1) img { object-position: center 45%; }
.hero-slide:nth-child(2) img { object-position: center 55%; }
.hero-slide:nth-child(3) img { object-position: center 60%; }
.hero-slide:nth-child(4) img { object-position: center 72%; }

.hero-slide.is-active img {
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.12) translate3d(0, 0, 0); }
  to { transform: scale(1.2) translate3d(-1.5%, -1%, 0); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.25rem 0 1.5rem;
}

.hero-content {
  max-width: 540px;
  animation: heroRise 0.9s ease both;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-brand {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 7.2vw, 4.7rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(180deg, #ffffff 0%, #f3e6c0 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

.hero-logo {
  display: none;
}

.hero h1,
.hero-lead {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero h1.is-switching,
.hero-lead.is-switching {
  opacity: 0;
  transform: translateY(8px);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  margin: 0 0 0.7rem;
  color: rgba(255, 253, 249, 0.94);
}

.hero-lead {
  margin: 0 0 1.35rem;
  color: rgba(255, 253, 249, 0.88);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 40ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions .btn-outline {
  border-color: rgba(232, 213, 163, 0.75);
  color: #fff;
  background: transparent;
}

.hero-actions .btn-outline:hover {
  background: rgba(196, 163, 90, 0.18);
  border-color: var(--gold);
}

.hero-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(196, 163, 90, 0.35);
  background: rgba(10, 8, 6, 0.55);
  backdrop-filter: blur(8px);
}

.hero-bar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 58px;
}

.hero-phone {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-soft);
}

.hero-phone:hover {
  color: #fff;
}

.hero-phone-right {
  justify-self: end;
  text-align: right;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-nav {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(196, 163, 90, 0.5);
  background: transparent;
  color: var(--gold-soft);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.hero-nav svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

.hero-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1408;
}

.hero-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.35);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--gold);
}

/* legacy unused hero bits */
.hero-shell,
.hero-rail,
.hero-shine,
.hero-frame,
.hero-eyebrow,
.hero-logo-wrap,
.hero-call,
.hero-scroll,
.hero-bottom {
  display: none;
}

/* ——— Sections ——— */
.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

.section-head {
  margin-bottom: 2.75rem;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-lead {
  margin-inline: auto;
}

/* ——— Welcome ——— */
.welcome {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.welcome-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.welcome-copy p + p {
  margin-top: 1rem;
}

.welcome-copy p {
  color: var(--ink-soft);
}

.welcome-visual {
  position: relative;
}

.welcome-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.welcome-visual::after {
  content: "";
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--gold);
  z-index: -1;
}

.welcome-aside {
  margin-top: 1.75rem;
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 253, 249, 0.7);
}

.welcome-aside strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.welcome-aside a {
  display: inline;
}

.welcome-aside-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 0.55rem;
  border-radius: 50%;
  background: var(--stone);
  vertical-align: middle;
  opacity: 0.55;
}

/* ——— Stats ——— */
.stats {
  background: var(--ink);
  color: var(--white);
  padding: 2.75rem 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 200px at 20% 50%, rgba(196, 163, 90, 0.18), transparent),
    radial-gradient(500px 200px at 90% 50%, rgba(26, 107, 69, 0.16), transparent);
  pointer-events: none;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat {
  text-align: center;
  padding: 0.5rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat span {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, 0.72);
}

/* ——— Services ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.service-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  z-index: -2;
}

.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.15), rgba(12, 10, 8, 0.78));
  z-index: -1;
}

.service-panel:hover img {
  transform: scale(1.07);
}

.service-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.75rem;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.85rem;
}

.service-body .btn {
  background: rgba(255, 253, 249, 0.12);
  border-color: rgba(255, 253, 249, 0.45);
  color: #fff;
}

.service-body .btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* ——— Attractions ——— */
.attractions-section {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(196, 163, 90, 0.16), transparent 55%),
    radial-gradient(700px 380px at 92% 100%, rgba(26, 107, 69, 0.1), transparent 50%),
    linear-gradient(180deg, #ebe4d8 0%, #f3efe8 45%, #e8e1d4 100%);
  overflow: hidden;
}

.attractions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 17, 15, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 17, 15, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.attractions-section .section-head {
  position: relative;
  z-index: 1;
}

.attractions-section .section-title {
  position: relative;
  display: inline-block;
}

.attractions-section .section-head.center .section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.attractions-bento {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 1rem;
}

.attraction {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 240px;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 18px 40px rgba(20, 17, 15, 0.1);
}

.attraction-hero {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 520px;
}

.attraction:nth-child(2),
.attraction:nth-child(3) {
  grid-column: span 5;
  min-height: 250px;
}

.attraction-wide {
  grid-column: span 8;
  min-height: 280px;
}

.attraction:nth-child(5) {
  grid-column: span 4;
  min-height: 280px;
}

.attraction:nth-child(6),
.attraction:nth-child(7),
.attraction:nth-child(8) {
  grid-column: span 4;
  min-height: 260px;
}

.attraction img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 0.6s ease;
  z-index: -2;
}

.attraction-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.08) 0%, rgba(12, 10, 8, 0.28) 42%, rgba(12, 10, 8, 0.82) 100%);
  transition: background 0.45s ease;
}

.attraction::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.4s ease, inset 0.4s ease;
  z-index: 2;
}

.attraction:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.attraction:hover .attraction-shade {
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.12) 0%, rgba(12, 10, 8, 0.4) 40%, rgba(12, 10, 8, 0.9) 100%);
}

.attraction:hover::before {
  border-color: rgba(196, 163, 90, 0.65);
  inset: 10px;
}

.attraction-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.35rem 1.4rem 1.4rem;
  z-index: 1;
  transform: translateY(8px);
  transition: transform 0.45s var(--ease);
}

.attraction:hover .attraction-meta {
  transform: none;
}

.attraction-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.attraction-meta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.attraction-hero .attraction-meta h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.attraction-meta p {
  max-width: 36ch;
  font-size: 0.92rem;
  color: rgba(255, 253, 249, 0.82);
  opacity: 0.92;
  line-height: 1.45;
}

.attraction-hero .attraction-meta p {
  font-size: 1rem;
}

.attractions-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 2rem;
}

/* ——— Optional services ——— */
.optional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.optional-item {
  padding: 1.6rem 1.4rem 1.5rem;
  background: rgba(255, 253, 249, 0.72);
  border-top: 2px solid var(--gold);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.optional-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.optional-num {
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.optional-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

.optional-item p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ——— Why Families Choose ——— */
.why-section {
  background:
    linear-gradient(180deg, rgba(243, 239, 232, 0.55), transparent 28%),
    var(--white);
}

.why-list {
  display: grid;
  gap: 3.5rem;
}

.why-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.why-row-reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.why-row-reverse .why-media {
  order: 2;
}

.why-row-reverse .why-copy {
  order: 1;
}

.why-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.why-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(20, 17, 15, 0.18));
  pointer-events: none;
}

.why-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
}

.why-row:hover .why-media img {
  transform: scale(1.04);
}

.why-copy {
  max-width: 420px;
  padding: 0.5rem 0;
}

.why-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: rgba(196, 163, 90, 0.45);
  margin-bottom: 0.75rem;
}

.why-copy .eyebrow {
  margin-bottom: 0.55rem;
}

.why-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: var(--ink);
}

.why-copy p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}

/* ——— Testimonials ——— */
.testimonials {
  background:
    linear-gradient(160deg, #f7f3ec 0%, #fffdf9 48%, rgba(232, 213, 163, 0.22) 100%);
  overflow: visible;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.25fr);
  gap: 0 3.5rem;
  align-items: stretch;
  padding: 0.5rem 0;
}

.testimonial-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding-right: 2.5rem;
  border-right: 1px solid rgba(196, 163, 90, 0.4);
}

.testimonial-aside .eyebrow {
  margin-bottom: 0.65rem;
}

.testimonial-aside .section-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.testimonial-aside-text {
  margin: 0;
  color: var(--ink-soft);
  max-width: 30ch;
  line-height: 1.65;
  font-size: 0.98rem;
}

.testimonial-aside-media {
  margin: 1.75rem 0 0;
  overflow: hidden;
  position: relative;
  flex: 1;
  min-height: 200px;
}

.testimonial-aside-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 17, 15, 0.28));
  pointer-events: none;
}

.testimonial-aside-media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 280px;
  object-fit: cover;
  display: block;
}

.testimonial-carousel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 0.35rem 0 0;
}

.testimonial-track {
  display: grid;
  flex: 1;
  overflow: visible;
}

.testimonial-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.85rem;
  pointer-events: none;
}

.testimonial-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  max-width: 45ch;
}

.testimonial-quote::before {
  content: "“";
  display: block;
  font-family: var(--font-display);
  font-size: 3.75rem;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 1rem;
  font-style: normal;
  font-weight: 600;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding-left: 2px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: #1a1408;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
}

.testimonial-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.testimonial-role {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

.testimonial-role > span {
  display: inline;
  margin: 0;
}

.testimonial-role > span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
  vertical-align: middle;
  transform: translateY(-1px);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 0.25rem;
}

.testimonial-nav {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(196, 163, 90, 0.55);
  background: #fffdf9;
  color: var(--gold-deep);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.testimonial-nav svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1408;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0.35rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(20, 17, 15, 0.18);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.testimonial-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
}

.testimonial-dot:hover:not(.is-active) {
  background: rgba(196, 163, 90, 0.55);
}

@media (max-width: 900px) {
  .testimonials {
    overflow: hidden;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 0;
  }

  .testimonial-aside {
    border-right: 0;
    border-bottom: 1px solid rgba(196, 163, 90, 0.35);
    padding: 0 0 1.15rem;
  }

  .testimonial-aside .section-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .testimonial-aside-media {
    display: none;
  }

  .testimonial-aside-text {
    max-width: none;
    font-size: 0.95rem;
  }

  .testimonial-carousel {
    min-height: 0;
    padding: 0.15rem 0 0;
  }

  .testimonial-slide {
    gap: 1.35rem;
    transform: translateY(8px);
  }

  .testimonial-quote {
    max-width: none;
    font-size: clamp(1.2rem, 5.2vw, 1.55rem);
    line-height: 1.5;
  }

  .testimonial-quote::before {
    font-size: 2.85rem;
    margin-bottom: 0.7rem;
  }

  .testimonial-meta {
    gap: 0.8rem;
  }

  .testimonial-avatar {
    width: 46px;
    height: 46px;
    font-size: 0.92rem;
  }

  .testimonial-meta strong {
    font-size: 1.05rem;
  }

  .testimonial-role {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    gap: 0.35rem 0.55rem;
  }

  .testimonial-role > span + span::before {
    margin-right: 0.55rem;
  }

  .testimonial-controls {
    margin-top: 1.35rem;
    gap: 0.55rem;
  }

  .testimonial-nav {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 640px) {
  .testimonial-aside {
    padding-bottom: 1rem;
  }

  .testimonial-aside .eyebrow {
    margin-bottom: 0.45rem;
  }

  .testimonial-aside .section-title {
    margin-bottom: 0.65rem;
  }

  .testimonial-quote {
    font-size: clamp(1.15rem, 5.5vw, 1.4rem);
  }

  .testimonial-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .testimonial-dots {
    margin: 0 0.15rem;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 3.25rem 0;
  }

  .cta-band h2 {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
  }

  .cta-band p {
    font-size: 0.95rem;
  }

  .why-list {
    gap: 2.25rem;
  }

  .why-media,
  .why-media img {
    min-height: 200px;
  }

  .why-num {
    font-size: 2.4rem;
  }
}

/* legacy discover (unused) */
.discover-grid,
.discover-card {
  display: none;
}

/* ——— CTA band ——— */
.cta-band {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.cta-band-media {
  position: absolute;
  inset: 0;
}

.cta-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 10, 8, 0.88), rgba(12, 10, 8, 0.55));
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 18ch;
}

.cta-band p {
  color: rgba(255, 253, 249, 0.8);
  margin-bottom: 1.4rem;
  max-width: 42ch;
}

.inquiry-box {
  background: rgba(255, 253, 249, 0.08);
  border: 1px solid rgba(196, 163, 90, 0.35);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
}

.inquiry-box h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 253, 249, 0.2);
  background: rgba(12, 10, 8, 0.45);
  color: #fff;
  outline: none;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(255, 253, 249, 0.45);
}

.form-grid select option {
  color: var(--ink);
}

.form-grid textarea {
  min-height: 96px;
  resize: vertical;
}

.form-light input,
.form-light select,
.form-light textarea {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.form-light input::placeholder,
.form-light textarea::placeholder {
  color: var(--stone);
}

/* ——— Page hero ——— */
.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.35), rgba(12, 10, 8, 0.78));
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
}

.breadcrumb {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255, 253, 249, 0.75);
}

.breadcrumb .bc-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 0.45rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
  vertical-align: middle;
  transform: translateY(-1px);
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* ——— Content pages ——— */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.content-block p + p {
  margin-top: 1rem;
}

.content-block p {
  color: var(--ink-soft);
}

.feature-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
}

.feature-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.package {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
  transition: 0.3s var(--ease);
}

.package:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.package h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.package p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.event-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  color: #fff;
}

.event-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.event-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(12, 10, 8, 0.8));
}

.event-tile:hover img {
  transform: scale(1.06);
}

.event-tile span {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery-grid a {
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-card {
  background: var(--ink);
  color: #fff;
  padding: 2rem 1.75rem;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
}

.contact-person {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 253, 249, 0.12);
}

.contact-person:last-of-type {
  border-bottom: 0;
}

.contact-person strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.contact-person a {
  color: var(--gold);
}

.contact-meta {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.85rem;
  color: rgba(255, 253, 249, 0.82);
}

.contact-meta a {
  color: var(--gold-soft);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* ——— Footer ——— */
.site-footer {
  background: #0f0d0b;
  color: rgba(255, 253, 249, 0.78);
  padding: 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 163, 90, 0.45);
  color: var(--gold-deep);
  background: rgba(255, 253, 249, 0.65);
  transition: 0.25s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1408;
}

.footer-main .social-links {
  margin-top: 1.25rem;
}

.footer-main .social-link {
  background: rgba(196, 163, 90, 0.08);
  border-color: rgba(196, 163, 90, 0.4);
  color: var(--gold);
}

.footer-main .social-link:hover {
  background: var(--gold);
  color: #1a1408;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar-social .social-link {
  width: 32px;
  height: 32px;
  background: transparent;
  border-color: rgba(196, 163, 90, 0.45);
  color: var(--gold-soft);
}

.topbar-social .social-link:hover {
  background: var(--gold);
  color: #1a1408;
}

.topbar-social .social-link svg {
  width: 15px;
  height: 15px;
}

.footer-main {
  padding: 3rem 0 2.75rem;
  background: #0f0d0b;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 2rem;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col h4,
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 1.15rem;
  padding: 0 0 0.75rem;
  position: relative;
  white-space: nowrap;
  min-height: 2.55rem;
  box-sizing: border-box;
}

.footer-col h4::after,
.site-footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-about {
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: inline-block;
  color: rgba(255, 253, 249, 0.82);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact {
  display: grid;
  gap: 0.9rem;
}

.footer-contact a,
.footer-contact .footer-address-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 253, 249, 0.9);
  font-size: 0.95rem;
  min-width: 0;
}

.footer-contact a {
  align-items: center;
}

.footer-contact a span:last-child,
.footer-address-line p {
  word-break: break-word;
  margin: 0;
  line-height: 1.45;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-ico {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196, 163, 90, 0.4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(196, 163, 90, 0.08);
}

.footer-ico svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}

.footer-col-map {
  min-width: 0;
}

.footer-map {
  border: 1px solid rgba(196, 163, 90, 0.35);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  aspect-ratio: 16 / 11;
  min-height: 148px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.04);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.12);
  background: #0a0908;
  padding: 1.1rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: rgba(255, 253, 249, 0.55);
  padding-right: 4.5rem;
}

.footer-brand {
  display: none;
}

/* ——— Modal ——— */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(12, 10, 8, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  overflow-y: auto;
  align-items: start;
  padding-top: min(4vh, 2rem);
  padding-bottom: 2rem;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  width: min(460px, 100%);
  background: var(--white);
  padding: 1.75rem;
  position: relative;
  transform: translateY(16px);
  transition: 0.3s var(--ease);
  margin: auto;
  overflow: visible;
}

.modal.is-open .modal-dialog {
  transform: none;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  border: 0;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}

.modal-dialog h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(8, 6, 5, 0.92);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: #fff;
  background: none;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ——— Floating WhatsApp ——— */
.float-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease;
}

.float-wa:hover {
  transform: scale(1.06);
}

.float-wa svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ——— Responsive ——— */
@media (max-width: 1024px) {
  .stats-grid,
  .optional-grid,
  .packages-grid,
  .events-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .attractions-bento {
    grid-template-columns: repeat(6, 1fr);
  }

  .attraction-hero,
  .attraction-wide,
  .attraction:nth-child(2),
  .attraction:nth-child(3),
  .attraction:nth-child(5),
  .attraction:nth-child(6),
  .attraction:nth-child(7),
  .attraction:nth-child(8) {
    grid-column: span 3;
    grid-row: auto;
    min-height: 260px;
  }

  .attraction-hero {
    grid-column: span 6;
    min-height: 360px;
  }

  .attraction-wide {
    grid-column: span 6;
  }

  .discover-grid,
  .cta-band-inner,
  .welcome,
  .split,
  .split.reverse,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 1.75rem;
  }

  .footer-col-map {
    grid-column: 1 / -1;
  }

  .footer-map {
    aspect-ratio: 21 / 9;
    min-height: 180px;
  }

  .footer-bottom {
    padding: 1.1rem 0;
  }

  .why-row,
  .why-row-reverse {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-row-reverse .why-media,
  .why-row-reverse .why-copy {
    order: initial;
  }

  .why-media,
  .why-media img {
    min-height: 240px;
  }

  .why-list {
    gap: 2.75rem;
  }

  .why-copy {
    max-width: none;
  }

  .discover-card,
  .discover-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .hero {
    aspect-ratio: 1400 / 625;
    max-height: 520px;
    min-height: 360px;
  }

  .hero-inner {
    padding: 1.5rem 0 1rem;
  }

  .hero-brand {
    font-size: clamp(2.45rem, 11vw, 3.5rem);
  }

  .hero-watermark {
    font-size: clamp(2.8rem, 12vw, 4.8rem);
    right: 2%;
    letter-spacing: 0.01em;
  }
}

@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  :root {
    --header-h: 72px;
  }

  .nav-wrap {
    min-height: var(--header-h);
    padding: 0.35rem 0;
  }

  .brand img {
    height: 54px;
    max-width: 170px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s var(--ease);
    max-height: calc(100dvh - var(--header-h));
    overflow: auto;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    display: none;
    padding-left: 0.5rem;
  }

  .nav > li.is-expanded .dropdown {
    display: block;
  }

  .nav-cta {
    margin: 0.5rem 0 0;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .welcome {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: start;
  }

  .welcome-copy h2 {
    font-size: clamp(1.65rem, 6.5vw, 2.15rem);
    margin-bottom: 0.85rem;
  }

  .welcome-copy p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .welcome-copy p + p {
    margin-top: 0.75rem;
  }

  .welcome-visual {
    order: -1;
    max-width: 100%;
  }

  .welcome-visual img {
    aspect-ratio: 16 / 11;
    width: 100%;
    box-shadow: 0 14px 36px rgba(20, 17, 15, 0.12);
  }

  .welcome-visual::after {
    inset: 0.7rem -0.55rem -0.55rem 0.7rem;
  }

  .welcome-aside {
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
  }

  .welcome-aside strong {
    font-size: 1.2rem;
  }

  .welcome-aside a {
    font-size: 0.95rem;
  }

  .stats {
    padding: 2.15rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1rem;
  }

  .stat strong {
    font-size: clamp(1.55rem, 6vw, 1.85rem);
  }

  .stat span {
    font-size: 0.78rem;
  }

  /* Hero / banner — mobile (compact, image visible) */
  .hero {
    aspect-ratio: unset;
    width: 100%;
    height: 340px;
    min-height: 300px;
    max-height: 380px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 6, 4, 0.2) 0%, rgba(8, 6, 4, 0.12) 38%, rgba(8, 6, 4, 0.62) 70%, rgba(8, 6, 4, 0.9) 100%);
  }

  .hero-glow {
    display: none;
  }

  .hero-watermark {
    display: none;
  }

  .hero-inner {
    align-items: flex-end;
    padding: 0.85rem 0 0.75rem;
    width: min(1180px, calc(100% - 1.75rem));
    flex: 1;
  }

  .hero-content {
    max-width: none;
  }

  .hero-brand {
    margin: 0 0 0.35rem;
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .hero h1 {
    font-size: clamp(1.05rem, 4vw, 1.25rem);
    margin-bottom: 0.3rem;
    line-height: 1.3;
  }

  .hero-lead {
    font-size: 0.86rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
    max-width: 36ch;
  }

  .hero-actions {
    gap: 0.45rem;
  }

  .hero-actions .btn {
    padding: 0.65rem 1rem;
    font-size: 0.68rem;
  }

  .hero-bar {
    backdrop-filter: blur(6px);
  }

  .hero-bar-inner {
    grid-template-columns: 1fr auto 1fr;
    justify-items: stretch;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0;
    min-height: 48px;
  }

  .hero-phone,
  .hero-phone:first-child,
  .hero-phone-right {
    order: 0;
    justify-self: stretch;
    text-align: left;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .hero-phone:first-child {
    justify-self: start;
  }

  .hero-phone-right {
    justify-self: end;
    text-align: right;
  }

  .hero-controls {
    order: 0;
    justify-self: center;
  }

  .hero-nav {
    width: 34px;
    height: 34px;
  }

  .hero-slide img {
    object-position: center 58%;
    transform: scale(1.05);
  }

  .hero-slide:nth-child(1) img { object-position: center 52%; }
  .hero-slide:nth-child(2) img { object-position: center 62%; }
  .hero-slide:nth-child(3) img { object-position: center 55%; }
  .hero-slide:nth-child(4) img { object-position: center 68%; }

  .hero-slide.is-active img {
    animation: none;
  }

  .page-hero {
    min-height: 0;
    height: 220px;
    max-height: 240px;
    align-items: end;
  }

  .page-hero img {
    object-position: center 45%;
  }

  .page-hero::after {
    background: linear-gradient(180deg, rgba(12, 10, 8, 0.25) 0%, rgba(12, 10, 8, 0.72) 100%);
  }

  .page-hero-content {
    padding: 1.35rem 0 1.5rem;
  }

  .page-hero .eyebrow {
    margin-bottom: 0.35rem;
    font-size: 0.7rem;
  }

  .page-hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .breadcrumb {
    margin-top: 0.4rem;
    font-size: 0.82rem;
  }

  /* All inner-page layouts — single column on mobile */
  .split,
  .split.reverse,
  .contact-grid,
  .cta-band-inner,
  .discover-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .split img {
    aspect-ratio: 16 / 11;
  }

  .packages-grid,
  .events-grid,
  .optional-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .package {
    padding: 1.25rem 1.15rem;
  }

  .event-tile {
    min-height: 220px;
  }

  .contact-card,
  .contact-form-wrap {
    padding: 1.35rem 1.2rem;
  }

  .contact-form-wrap .btn-outline {
    border-color: var(--gold-deep);
    color: var(--ink);
  }

  .section-head.center .section-lead {
    max-width: none;
  }

  .footer-map {
    aspect-ratio: 16 / 10;
    min-height: 160px;
  }

  .inquiry-box {
    padding: 1.25rem 1.15rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 1.75rem));
  }

  .attractions-bento {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .attraction-hero,
  .attraction-wide,
  .attraction:nth-child(2),
  .attraction:nth-child(3),
  .attraction:nth-child(5),
  .attraction:nth-child(6),
  .attraction:nth-child(7),
  .attraction:nth-child(8) {
    grid-column: span 1;
    min-height: 240px;
  }

  .attraction-hero {
    min-height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col h4,
  .site-footer h4 {
    white-space: normal;
    min-height: 0;
  }

  .footer-bottom {
    padding: 1rem 0 1.15rem;
  }

  .stats-grid,
  .optional-grid,
  .packages-grid,
  .events-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    height: 200px;
    max-height: 210px;
  }

  .page-hero-content {
    padding: 1.15rem 0 1.25rem;
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 7.5vw, 2rem);
  }

  .brand img {
    height: 50px;
    max-width: 156px;
  }

  .hero {
    height: 300px;
    min-height: 280px;
    max-height: 320px;
  }

  .hero-brand {
    font-size: clamp(1.7rem, 8.5vw, 2.1rem);
  }

  .hero-lead {
    max-width: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-phone,
  .hero-phone:first-child,
  .hero-phone-right {
    font-size: 0.62rem;
  }

  .section {
    padding: 3.75rem 0;
  }
}

/* ——— Booking calendar (green = booked) ——— */
.mf-cal-wrap {
  position: relative;
  width: 100%;
}

.mf-date-input {
  cursor: pointer;
  width: 100%;
}

.mf-cal-panel {
  position: fixed;
  z-index: 400;
  width: min(320px, 92vw);
  padding: 0.85rem;
  background: #fffdf9;
  border: 1px solid rgba(196, 163, 90, 0.45);
  box-shadow: 0 18px 40px rgba(20, 14, 8, 0.22);
}

.mf-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  color: var(--ink);
}

.mf-cal-nav {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(196, 163, 90, 0.45);
  background: transparent;
  color: var(--gold-deep);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.mf-cal-nav:hover {
  background: var(--gold);
  color: #1a1408;
}

.mf-cal-weekdays,
.mf-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.mf-cal-weekdays {
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  text-align: center;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mf-cal-day {
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.88rem;
  cursor: pointer;
  border-radius: 4px;
}

.mf-cal-day:not([disabled]):hover {
  background: rgba(196, 163, 90, 0.2);
}

.mf-cal-day.is-empty {
  pointer-events: none;
}

.mf-cal-day.is-past {
  color: rgba(40, 32, 24, 0.28);
  cursor: not-allowed;
}

.mf-cal-day.is-booked {
  background: #1f7a4d;
  color: #fff;
  font-weight: 600;
  cursor: not-allowed;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.mf-cal-day.is-selected:not(.is-booked) {
  background: var(--gold);
  color: #1a1408;
  font-weight: 600;
}

.mf-cal-day.is-today:not(.is-booked):not(.is-selected) {
  box-shadow: inset 0 0 0 1px var(--gold);
}

.mf-cal-legend {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.mf-cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.mf-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.mf-dot.is-booked {
  background: #1f7a4d;
}

.mf-dot.is-open {
  background: rgba(196, 163, 90, 0.55);
  box-shadow: inset 0 0 0 1px rgba(196, 163, 90, 0.9);
}

.mf-booking-toast {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  z-index: 500;
  min-width: min(380px, calc(100% - 2rem));
  padding: 0.9rem 1.2rem;
  background: #1f7a4d;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mf-booking-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.mf-booking-toast.is-error {
  background: #8f2f2f;
}

.modal .mf-cal-panel,
.form-light .mf-cal-panel {
  background: #fffdf9;
}
