:root {
  --forest: #0b3d2e;
  --forest-deep: #06261c;
  --forest-mid: #0f4a38;
  --gold: #c9a24d;
  --gold-bright: #e0c06a;
  --gold-soft: rgba(201, 162, 77, 0.85);
  --marble: #f4f1ea;
  --marble-ink: #1a2e26;
  --ink: #f7f4ec;
  --ink-soft: rgba(247, 244, 236, 0.78);
  --muted: rgba(247, 244, 236, 0.55);
  --whatsapp: #25d366;
  --whatsapp-deep: #1ebe57;
  --line: rgba(201, 162, 77, 0.35);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--forest-deep);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.04;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(6, 38, 28, 0.9);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(201, 162, 77, 0.22);
}

.logo-link {
  display: inline-flex;
  line-height: 0;
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.4s var(--ease);
}

.logo-link:hover .logo-img {
  transform: scale(1.05);
}

.nav {
  display: none;
  gap: 1.75rem;
}

.nav a,
.header-cta,
.menu-toggle {
  color: rgba(247, 244, 236, 0.92);
}

.nav a {
  position: relative;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid rgba(201, 162, 77, 0.55);
  padding: 0.68rem 1.05rem;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.header-cta:hover {
  background: rgba(201, 162, 77, 0.14);
  border-color: var(--gold-bright);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.35s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  background:
    radial-gradient(ellipse at top, rgba(201, 162, 77, 0.12), transparent 45%),
    var(--forest-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav-logo {
  width: 84px;
  height: 84px;
  margin-bottom: 0.5rem;
  border-radius: 6px;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 2.8rem);
  color: var(--ink);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(14px);
  animation: navIn 0.5s var(--ease) forwards;
}

.mobile-nav a:nth-child(2) { animation-delay: 0.04s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.08s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.12s; }
.mobile-nav a:nth-child(5) { animation-delay: 0.16s; }
.mobile-nav a:nth-child(6) { animation-delay: 0.2s; }
.mobile-nav a:nth-child(7) { animation-delay: 0.24s; }
.mobile-nav a:nth-child(8) { animation-delay: 0.28s; }

.mobile-cta {
  margin-top: 0.85rem;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(37, 211, 102, 0.7);
  color: var(--whatsapp) !important;
  padding: 0.9rem 1.5rem;
}

@keyframes navIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.08);
  animation: heroZoom 22s var(--ease) forwards;
  filter: saturate(0.85) contrast(1.05);
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 38, 28, 0.72) 0%, rgba(6, 38, 28, 0.45) 40%, rgba(6, 38, 28, 0.92) 100%),
    radial-gradient(ellipse at center, transparent 10%, rgba(6, 38, 28, 0.55) 100%);
}

.hero-leaves {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 35% at 0% 100%, rgba(15, 74, 56, 0.75), transparent 60%),
    radial-gradient(ellipse 35% 30% at 100% 0%, rgba(15, 74, 56, 0.55), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  padding: calc(var(--header-h) + 1.5rem) clamp(1.25rem, 4vw, 3rem) 5rem;
}

.hero-logo {
  width: clamp(150px, 32vw, 230px);
  height: auto;
  margin: 0 auto 1.25rem;
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(201, 162, 77, 0.35),
    0 24px 70px rgba(0, 0, 0, 0.45);
}

.hero-logo.reveal {
  transform: none;
}

.hero-logo.reveal.in {
  animation: logoFloat 7s ease-in-out infinite alternate;
}

@keyframes logoFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5.8vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.15;
  color: var(--gold-bright);
  text-wrap: balance;
}

.brand-sub {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #8fd4b0;
}

.slogan {
  margin: 1.35rem auto 0;
  max-width: 28rem;
  font-family: var(--font-script);
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1.35;
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid rgba(201, 162, 77, 0.5);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-cue span {
  width: 3px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  animation: cueDrop 1.8s ease-in-out infinite;
}

@keyframes cueDrop {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

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

.btn-whatsapp {
  background: var(--whatsapp);
  color: #04140a;
  border-color: var(--whatsapp);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-deep);
}

.btn-whatsapp.alt {
  background: transparent;
  color: var(--whatsapp);
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: none;
}

.btn-whatsapp.alt:hover {
  background: rgba(37, 211, 102, 0.1);
}

.btn-gold {
  background: linear-gradient(135deg, #d4b05a, #b8923d);
  color: #1a2e26;
  border-color: #c9a24d;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e0c06a, #c9a24d);
}

.btn-gold.outline {
  background: transparent;
  color: var(--gold-bright);
  border-color: rgba(201, 162, 77, 0.55);
}

.btn-gold.outline:hover {
  background: rgba(201, 162, 77, 0.12);
}

/* Sections */
.section-inner {
  position: relative;
  z-index: 1;
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: clamp(4.75rem, 10vw, 7.5rem) clamp(1.25rem, 4vw, 3rem);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.8vw, 3.85rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.section-title.dark {
  color: var(--forest);
}

.title-rule {
  width: 72px;
  height: 1px;
  margin: 1.05rem 0 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.title-rule.center {
  margin-left: auto;
  margin-right: auto;
}

.section-text {
  margin: 1.2rem 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.section-text.dark {
  color: rgba(26, 46, 38, 0.78);
}

/* About / marble */
.about {
  background: var(--forest-deep);
}

.marble-panel {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.55), transparent 40%),
    linear-gradient(135deg, #f7f4ef 0%, #ebe6dc 45%, #f3efe7 100%);
  color: var(--marble-ink);
  position: relative;
  overflow: hidden;
}

.marble-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.75 0 0 0 0 0.75 0 0 0 0 0.75 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23m)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.about-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.about-copy {
  order: 1;
  position: relative;
  z-index: 1;
}

.about-visual {
  order: 2;
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 540px;
  border: 1px solid rgba(201, 162, 77, 0.45);
  box-shadow: 0 20px 50px rgba(6, 38, 28, 0.18);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease);
}

.about-visual:hover img {
  transform: scale(1.04);
}

.owner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 2.2rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(11, 61, 46, 0.18);
}

.owner-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a6f2f;
}

.owner-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--forest);
}

/* Highlights */
.highlights {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 162, 77, 0.1), transparent 55%),
    var(--forest);
}

.highlight-grid {
  display: grid;
  gap: 1.25rem;
}

.highlight {
  overflow: hidden;
  border: 1px solid rgba(201, 162, 77, 0.22);
  background: rgba(6, 38, 28, 0.45);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.highlight:hover {
  border-color: rgba(201, 162, 77, 0.5);
  transform: translateY(-4px);
}

.highlight-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.highlight:hover .highlight-media img {
  transform: scale(1.06);
}

.highlight h3 {
  margin: 1.1rem 1.2rem 0.35rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--gold-bright);
}

.highlight p {
  margin: 0 1.2rem 1.3rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* Services */
.services {
  background:
    linear-gradient(180deg, var(--forest-deep), #041912 100%);
}

.services-intro {
  margin-bottom: 0;
}

.menu-grid {
  display: grid;
  gap: 1.15rem;
}

.menu-block {
  padding: 1.5rem 1.3rem 1.25rem;
  background: linear-gradient(160deg, rgba(15, 74, 56, 0.55), rgba(6, 38, 28, 0.9));
  border: 1px solid rgba(201, 162, 77, 0.2);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.menu-block:hover {
  border-color: rgba(201, 162, 77, 0.45);
  transform: translateY(-3px);
}

.menu-title {
  margin: 0 0 0.95rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.05rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-bright);
}

.menu-note {
  margin: -0.4rem 0 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8fd4b0;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.72rem 0;
  border-bottom: 1px dotted rgba(201, 162, 77, 0.28);
  font-size: 0.94rem;
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list li span:first-child {
  color: rgba(247, 244, 236, 0.92);
}

.price-list li span:last-child {
  flex-shrink: 0;
  text-align: right;
  font-weight: 500;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

/* Fish spa */
.fish-spa {
  position: relative;
  overflow: hidden;
}

.fish-spa-bg {
  position: absolute;
  inset: 0;
}

.fish-spa-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fish-spa-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 38, 28, 0.94) 0%, rgba(6, 38, 28, 0.78) 50%, rgba(6, 38, 28, 0.55) 100%);
}

.fish-spa-grid {
  max-width: 720px;
}

.fish-benefits {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.fish-benefits li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.fish-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
}

.fish-prices {
  margin: 1.7rem 0;
  max-width: 24rem;
  padding: 0.35rem 1.1rem;
  background: rgba(6, 38, 28, 0.55);
  border: 1px solid rgba(201, 162, 77, 0.28);
  backdrop-filter: blur(8px);
}

/* Visit */
.visit {
  background:
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(201, 162, 77, 0.12), transparent 55%),
    var(--forest-deep);
}

.visit-grid {
  display: grid;
  gap: clamp(2.4rem, 6vw, 4rem);
}

.quote {
  margin: 2rem 0 0;
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--gold);
  line-height: 1.35;
}

.visit-panel {
  display: grid;
  gap: 1.45rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(160deg, rgba(15, 74, 56, 0.65), rgba(6, 38, 28, 0.95));
  border: 1px solid rgba(201, 162, 77, 0.28);
}

.detail-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.detail p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
  line-height: 1.3;
}

.social-inline {
  font-size: 1.25rem !important;
}

.detail a {
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.detail a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.sep {
  margin: 0 0.35rem;
  opacity: 0.45;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.25rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.55rem;
  height: 3.55rem;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #04140a;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  animation: waPulse 2.8s ease-in-out infinite;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--whatsapp-deep);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 12px 38px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(201, 162, 77, 0.2);
  background: #031610;
}

.footer-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 4vw, 3rem) 2.4rem;
  text-align: center;
}

.footer-logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 1rem;
  border-radius: 6px;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
}

.footer-sub {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8fd4b0;
}

.footer-meta {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-meta a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.3rem;
}

.footer-social a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.8);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1rem;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-copy {
  margin: 1.35rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(247, 244, 236, 0.35);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.hero .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero .reveal:nth-child(2) { transition-delay: 0.22s; }
.hero .reveal:nth-child(3) { transition-delay: 0.34s; }
.hero .reveal:nth-child(4) { transition-delay: 0.46s; }
.hero .reveal:nth-child(5) { transition-delay: 0.58s; }

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .about-copy {
    order: 0;
  }

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

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

  .visit-grid {
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
  }

  .visit-panel {
    padding: 2.3rem;
  }
}

@media (min-width: 1100px) {
  .highlight-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-media img,
  .hero-logo,
  .scroll-cue span,
  .whatsapp-float,
  .reveal,
  .mobile-nav a,
  .btn,
  .about-visual img,
  .highlight-media img {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
