:root {
  --ink: #1d221f;
  --forest: #113c24;
  --forest-soft: #1f5a39;
  --moss: #7d8f59;
  --rose: #d9a0a7;
  --petal: #f7e8e7;
  --linen: #faf6f0;
  --paper: #fffefe;
  --champagne: #c8a35d;
  --mist: #e7edf0;
  --muted: #6f746d;
  --line: rgba(29, 34, 31, 0.12);
  --shadow-soft: 0 18px 55px rgba(29, 34, 31, 0.12);
  --shadow-small: 0 8px 22px rgba(29, 34, 31, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --ease: 0.28s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

button {
  font: inherit;
}

.container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 1.15rem;
}

.section-kicker,
.hero-kicker,
.strip-kicker {
  color: var(--forest-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--forest);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 8vw, 3.7rem);
  text-wrap: balance;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

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

.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 15px 30px rgba(17, 60, 36, 0.22);
}

.btn-primary:hover {
  background: #0b2e1a;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--forest);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: rgba(17, 60, 36, 0.28);
  color: var(--forest);
}

.btn-outline:hover {
  border-color: var(--forest);
  background: rgba(17, 60, 36, 0.06);
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.navbar.scrolled,
.navbar.menu-open {
  background: rgba(255, 254, 254, 0.95);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(16px);
}

.nav-container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0.78rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-script {
  width: clamp(116px, 16vw, 156px);
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--ease), opacity var(--ease);
}

.navbar.scrolled .brand-script,
.navbar.menu-open .brand-script {
  filter: none;
}

.footer .brand-script {
  width: 134px;
  filter: brightness(0) invert(1);
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: #efe7dd;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.75);
}

.navbar.scrolled .logo-mark,
.navbar.menu-open .logo-mark {
  border-color: rgba(17, 60, 36, 0.14);
  box-shadow: none;
}

.mobile-menu-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 21px;
  height: 2px;
  background: #fff;
  transition: transform var(--ease), opacity var(--ease), background var(--ease);
}

.navbar.scrolled .mobile-menu-btn,
.navbar.menu-open .mobile-menu-btn {
  border-color: var(--line);
  background: #fff;
}

.navbar.scrolled .mobile-menu-btn span,
.navbar.menu-open .mobile-menu-btn span {
  background: var(--forest);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 1rem;
  right: 1rem;
  display: none;
  padding: 0.65rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.nav-links.active {
  display: grid;
}

.nav-links a {
  display: block;
  padding: 0.85rem;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a:hover {
  background: var(--linen);
  color: var(--forest);
}

.nav-links .nav-cta {
  margin-top: 0.35rem;
  background: var(--forest);
  color: #fff;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 7rem 0 3.25rem;
  background: var(--forest);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-image: url("optimized/Hero.webp");
  background-size: cover;
  background-position: center 44%;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 24, 17, 0.1) 0%, rgba(12, 24, 17, 0.35) 45%, rgba(12, 24, 17, 0.82) 100%),
    linear-gradient(90deg, rgba(12, 24, 17, 0.82) 0%, rgba(12, 24, 17, 0.48) 42%, rgba(12, 24, 17, 0.06) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  min-width: 0;
  margin: 0 auto;
  padding: 0 1.15rem;
  color: #fff;
}

.hero-kicker {
  color: #f3d2d5;
  margin-bottom: 0.85rem;
}

.hero h1 {
  max-width: 640px;
  width: min(100%, calc(100vw - 2.3rem));
  color: #fff;
  font-size: clamp(3rem, 12vw, 5.7rem);
  font-weight: 800;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-copy {
  width: min(100%, calc(100vw - 2.3rem));
  max-width: 610px;
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.hero-actions {
  display: grid;
  gap: 0.8rem;
  width: min(100%, 420px, calc(100vw - 2.3rem));
  margin-top: 1.75rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 2;
  display: none;
  width: 28px;
  height: 42px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #fff;
  animation: scrollCue 1.6s infinite;
}

@keyframes scrollCue {
  0%,
  100% {
    opacity: 0.35;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 10px);
  }
}

.intro {
  padding: 4.25rem 0;
  background:
    linear-gradient(90deg, rgba(247, 232, 231, 0.72), transparent 48%),
    var(--paper);
}

.intro-grid {
  display: grid;
  gap: 1.5rem;
}

.intro h2 {
  margin-top: 0.65rem;
}

.intro-copy {
  display: grid;
  gap: 1rem;
  font-size: 1rem;
}

.services {
  padding: 4.5rem 0;
  background: var(--linen);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.1rem;
}

.section-heading h2,
.gallery-heading h2,
.experience-content h2,
.contact-panel h2 {
  margin-top: 0.65rem;
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  min-height: 220px;
  padding: 1.35rem;
  border: 1px solid rgba(17, 60, 36, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-small);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
}

.service-number {
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card h3 {
  font-size: clamp(1.38rem, 5vw, 1.72rem);
  line-height: 1.08;
}

.service-card p {
  font-size: 0.98rem;
  line-height: 1.65;
}

.booking-strip {
  margin-top: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(17, 60, 36, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 160, 167, 0.2), rgba(231, 237, 240, 0.55)),
    #fff;
  display: grid;
  gap: 1rem;
  align-items: center;
}

.booking-strip h3 {
  margin-top: 0.45rem;
  font-size: clamp(1.55rem, 5vw, 2.25rem);
  line-height: 1.08;
}

.experience {
  padding: 4.75rem 0;
  background: var(--paper);
}

.experience-grid {
  display: grid;
  gap: 2rem;
}

.experience-image {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.experience-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.steps {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 0;
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--petal);
  color: var(--forest);
  font-weight: 900;
}

.step h3 {
  margin-bottom: 0.4rem;
  font-size: 1.28rem;
}

.step p {
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  border-bottom: 2px solid var(--champagne);
  color: var(--forest);
  font-weight: 850;
}

.vip-button {
  width: fit-content;
  min-width: min(100%, 260px);
}

.gallery {
  padding: 4.5rem 0;
  background: #eef3ef;
  overflow: hidden;
}

.gallery-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.45rem;
}

.gallery-controls {
  display: flex;
  gap: 0.55rem;
}

.gallery-nav {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17, 60, 36, 0.2);
  border-radius: 8px;
  background: var(--paper);
  color: var(--forest);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.gallery-nav:hover {
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px);
}

.gallery-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-track-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-track-container::-webkit-scrollbar {
  display: none;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.48s ease;
}

.gallery-item {
  flex: 0 0 82%;
  aspect-ratio: 4 / 5;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
  box-shadow: var(--shadow-small);
  scroll-snap-align: center;
}

.gallery-item.tall {
  height: auto;
}

.gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
  transition: transform var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.gallery-indicator {
  width: 10px;
  height: 10px;
  border: 1px solid var(--forest-soft);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width var(--ease), background var(--ease);
}

.gallery-indicator.active {
  width: 30px;
  background: var(--forest-soft);
}

.quote-section {
  padding: 4.25rem 0;
  background: var(--forest);
}

.quote-section p {
  max-width: 900px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  text-wrap: balance;
}

.contact {
  padding: 4.5rem 0;
  background: var(--paper);
}

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

.contact-panel {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
}

.contact-list a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.8rem;
  align-items: center;
  min-height: 54px;
  color: var(--ink);
  font-weight: 750;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--petal);
  color: var(--forest);
  font-weight: 900;
}

.contact-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hours-card {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hours-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}

.contact-actions {
  display: grid;
  gap: 0.8rem;
}

.map-card {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  box-shadow: var(--shadow-small);
}

.map-card iframe {
  display: block;
  min-height: 390px;
  filter: saturate(0.92) contrast(1.02);
}

.footer {
  padding: 2.4rem 0;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-logo {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.footer p {
  max-width: 560px;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.footer-links a:hover {
  background: #fff;
  color: var(--ink);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1001;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transition: transform var(--ease), box-shadow var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 18, 12, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  width: auto;
  max-width: min(100%, 980px);
  max-height: 86vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

@media (min-width: 560px) {
  .hero-actions,
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .gallery-controls {
    display: none;
  }

  .hero h1,
  .hero-copy,
  .hero-actions {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.65rem);
  }

  .hero-copy {
    font-size: 0.96rem;
  }
}

@media (min-width: 760px) {
  .container,
  .nav-container,
  .hero-content {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .mobile-menu-btn {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
  }

  .navbar.scrolled .nav-links a {
    color: var(--ink);
  }

  .nav-links a:hover,
  .navbar.scrolled .nav-links a:hover {
    background: transparent;
    color: var(--rose);
  }

  .nav-links .nav-cta {
    margin: 0;
    padding: 0.72rem 0.95rem;
    color: #fff;
  }

  .navbar.scrolled .nav-links .nav-cta {
    color: #fff;
  }

  .hero {
    min-height: 90vh;
    padding: 8rem 0 5rem;
  }

  .hero-slide {
    background-position: center;
  }

  .hero-scroll {
    display: block;
  }

  .intro-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 3rem;
    align-items: start;
  }

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

  .booking-strip {
    grid-template-columns: 1fr auto;
    padding: 1.4rem;
  }

  .experience-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
  }

  .gallery-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .gallery-item {
    flex-basis: calc(50% - 0.5rem);
  }

  .contact-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 2rem;
    align-items: stretch;
  }

  .map-card,
  .map-card iframe {
    min-height: 560px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (min-width: 1040px) {
  .intro,
  .services,
  .experience,
  .gallery,
  .contact {
    padding-top: 6.6rem;
    padding-bottom: 6.6rem;
  }

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

  .gallery-track-container {
    overflow: hidden;
    scroll-snap-type: none;
  }

  .gallery-item {
    flex-basis: calc(33.333% - 0.67rem);
    scroll-snap-align: none;
  }

  .gallery-indicators {
    justify-content: center;
  }
}

@media (min-width: 1260px) {
  .hero-slide {
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right center;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, #0d2015 0%, #123d25 46%, transparent 78%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.62rem;
  }

  .gallery-item {
    flex-basis: 88%;
  }

  .gallery-item.tall {
    height: auto;
  }
}
