/* ==========================================================================
   Sai Ville Spa & Salon — Stylesheet
   ========================================================================== */

:root {
  /* Brand palette */
  --forest: #1f3d33;
  --forest-dark: #14261f;
  --forest-deep: #0f1e18;
  --ivory: #faf6ee;
  --ivory-soft: #f4eee1;
  --beige: #ece1cd;
  --gold: #c9a24b;
  --gold-light: #e4cf8f;
  --sage: #9caf97;
  --charcoal: #2a2924;
  --charcoal-soft: #55534a;
  --white: #ffffff;

  --font-serif: "Playfair Display", "Georgia", serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 60px -20px rgba(15, 30, 24, 0.25);
  --shadow-card: 0 12px 34px -14px rgba(20, 38, 31, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--forest-dark);
  margin: 0;
  line-height: 1.15;
  font-weight: 600;
}

p {
  margin: 0;
  color: var(--charcoal-soft);
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

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

.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.05rem;
}

.section-pad {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--gold);
  color: var(--forest-deep);
  box-shadow: 0 14px 30px -12px rgba(201, 162, 75, 0.55);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(201, 162, 75, 0.65);
}

.btn-outline {
  background: transparent;
  border-color: rgba(250, 246, 238, 0.55);
  color: var(--ivory);
}
.btn-outline:hover {
  background: rgba(250, 246, 238, 0.12);
  border-color: var(--ivory);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--forest);
  color: var(--ivory);
}
.btn-dark:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-ghost {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-ghost:hover {
  background: var(--forest);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 0.85rem; }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announce {
  background: var(--forest-deep);
  color: var(--beige);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 9px 16px;
}
.announce a { color: var(--gold-light); border-bottom: 1px solid rgba(228, 207, 143, 0.4); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 61, 51, 0.08);
  transition: box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
}
.navbar.scrolled {
  box-shadow: 0 8px 28px -18px rgba(20, 38, 31, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  transition: padding 0.35s var(--ease);
}
.navbar.scrolled .nav-inner { padding: 12px 24px; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--forest);
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--forest-dark);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.brand-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--forest);
}
.nav-call svg { width: 17px; height: 17px; color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-dark);
  margin: 0 auto;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--forest-deep);
  z-index: 600;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.mobile-panel.open { transform: translateX(0); }
.mobile-panel .mp-close {
  position: absolute;
  top: 26px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(250,246,238,0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-panel .mp-close svg { width: 18px; height: 18px; }
.mp-links { display: flex; flex-direction: column; gap: 6px; margin-bottom: 40px; }
.mp-links a {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--ivory);
  padding: 12px 0;
  border-bottom: 1px solid rgba(250, 246, 238, 0.1);
}
.mp-actions { display: flex; flex-direction: column; gap: 14px; }
.mp-call {
  color: var(--gold-light);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mp-call svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .nav-links, .nav-call { display: none; }
  .hamburger { display: flex; }
  .mobile-panel { display: block; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--ivory);
  overflow: hidden;
  background: var(--forest-deep);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 30, 24, 0.55) 0%, rgba(15, 30, 24, 0.72) 55%, rgba(15, 30, 24, 0.92) 100%),
    linear-gradient(100deg, rgba(15, 30, 24, 0.55) 10%, rgba(15, 30, 24, 0.1) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 160px 24px 90px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(250, 246, 238, 0.1);
  border: 1px solid rgba(228, 207, 143, 0.35);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.15s forwards;
}

.hero h1 {
  color: var(--ivory);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.32s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p.lead {
  color: rgba(250, 246, 238, 0.86);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.48s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.62s forwards;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.78s forwards;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.85);
}
.hero-trust svg { width: 16px; height: 16px; color: var(--gold-light); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 246, 238, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(rgba(250,246,238,0.9), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 640px) {
  .hero { min-height: 100vh; }
  .hero-content { padding: 130px 20px 90px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* ==========================================================================
   Marquee strip
   ========================================================================== */
.strip {
  background: var(--forest);
  color: var(--beige);
  overflow: hidden;
  padding: 16px 0;
}
.strip-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.strip-track span {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  white-space: nowrap;
}
.strip-track span::after {
  content: "\2726";
  color: var(--sage);
  font-style: normal;
  margin-left: 60px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services { background: var(--ivory); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px -18px rgba(20, 38, 31, 0.35);
}

.service-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-media img { transform: scale(1.08); }

.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(250, 246, 238, 0.92);
  color: var(--forest-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}

.service-body {
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.92rem;
  margin-bottom: 18px;
  flex: 1;
}
.service-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--charcoal-soft);
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(31, 61, 51, 0.16);
}
.service-meta span { display: flex; align-items: center; gap: 6px; }
.service-meta svg { width: 14px; height: 14px; color: var(--gold); }

.service-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.service-foot .btn { flex: 1; }

.services-more {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   About / split
   ========================================================================== */
.about { background: var(--beige); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-media {
  position: relative;
}
.split-media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.split-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-media .badge-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--forest);
  color: var(--ivory);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
  max-width: 230px;
}
.split-media .badge-card .big {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}
.split-media .badge-card p {
  color: rgba(250, 246, 238, 0.8);
  font-size: 0.82rem;
}

.about-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 34px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--charcoal);
}
.about-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--forest);
  background: rgba(156, 175, 151, 0.28);
  border-radius: 50%;
  padding: 4px;
  box-sizing: content-box;
}

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 60px; }
  .split-media .badge-card { right: 12px; bottom: -24px; }
}

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why { background: var(--forest-deep); color: var(--ivory); }
.why .section-head h2 { color: var(--ivory); }
.why .section-head p { color: rgba(250, 246, 238, 0.72); }
.why .eyebrow { color: var(--gold-light); }
.why .eyebrow::before { background: var(--gold-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(250, 246, 238, 0.05);
  border: 1px solid rgba(250, 246, 238, 0.12);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  background: rgba(250, 246, 238, 0.09);
  border-color: rgba(228, 207, 143, 0.4);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(228, 207, 143, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 24px; height: 24px; color: var(--gold-light); }
.why-card h3 {
  color: var(--ivory);
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(250, 246, 238, 0.68);
  font-size: 0.9rem;
}

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

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { background: var(--ivory); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  grid-row: span 2;
}
.gallery-item.tall { grid-row: span 3; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,30,24,0.75) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .g-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 1;
}
.gallery-item:hover .g-label { opacity: 1; transform: translateY(0); }
.gallery-item .zoom-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(250,246,238,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s var(--ease);
  z-index: 1;
}
.gallery-item:hover .zoom-icon { opacity: 1; transform: scale(1); }
.gallery-item .zoom-icon svg { width: 16px; height: 16px; color: var(--forest-dark); }

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.tall { grid-row: span 2; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(15, 30, 24, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease);
  padding: 24px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(900px, 92vw);
  max-height: 82vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,238,0.3);
  background: rgba(250,246,238,0.08);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(250,246,238,0.2); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-nav svg { width: 20px; height: 20px; }
.lightbox-nav.prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(250,246,238,0.75);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .lightbox-nav { width: 38px; height: 38px; }
}

/* ==========================================================================
   Offers
   ========================================================================== */
.offers { background: var(--beige); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.offer-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease);
}
.offer-card:hover { transform: translateY(-8px); }
.offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.offer-card:hover img { transform: scale(1.09); }
.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,30,24,0.92) 10%, rgba(15,30,24,0.35) 55%, rgba(15,30,24,0.1) 100%);
}
.offer-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
}
.offer-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 28px;
  color: var(--ivory);
}
.offer-content h3 {
  color: var(--ivory);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.offer-content p {
  color: rgba(250, 246, 238, 0.8);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

@media (max-width: 1080px) {
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card { height: 380px; }
}

/* ==========================================================================
   Booking
   ========================================================================== */
.booking { background: var(--forest); color: var(--ivory); overflow: hidden; }
.booking-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.booking-info {
  background: var(--forest-deep);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.booking-info .eyebrow { color: var(--gold-light); }
.booking-info .eyebrow::before { background: var(--gold-light); }
.booking-info h2 { color: var(--ivory); font-size: clamp(1.8rem, 3vw, 2.3rem); }
.booking-info p { color: rgba(250,246,238,0.72); }
.booking-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-contact a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--ivory);
  font-weight: 500;
}
.booking-contact a .ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(228, 207, 143, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-contact a svg { width: 19px; height: 19px; color: var(--gold-light); }
.booking-contact a small {
  display: block;
  color: rgba(250,246,238,0.55);
  font-weight: 400;
  font-size: 0.78rem;
  margin-top: 2px;
}

.booking-form {
  background: var(--ivory);
  padding: 56px 48px;
}
.booking-form h3 {
  color: var(--forest-dark);
  font-size: 1.3rem;
  margin-bottom: 26px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--forest-dark);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid rgba(31, 61, 51, 0.2);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: var(--charcoal);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.16);
}
.form-field .error-msg {
  font-size: 0.76rem;
  color: #b5482f;
  min-height: 14px;
}
.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea {
  border-color: #b5482f;
}

.form-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.form-note {
  font-size: 0.78rem;
  color: var(--charcoal-soft);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 10px;
}
.form-success.show { display: block; }
.form-success .tick {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(156, 175, 151, 0.25);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success .tick svg { width: 30px; height: 30px; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { max-width: 380px; margin: 0 auto; }

@media (max-width: 980px) {
  .booking-wrap { grid-template-columns: 1fr; }
  .booking-info, .booking-form { padding: 44px 28px; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Location
   ========================================================================== */
.location { background: var(--ivory); }
.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.location-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.location-row .ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(156, 175, 151, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-row .ic svg { width: 20px; height: 20px; color: var(--forest); }
.location-row h4 { font-size: 1rem; margin-bottom: 6px; color: var(--forest-dark); }
.location-row p { font-size: 0.92rem; }
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 420px;
  position: relative;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 980px) {
  .location-wrap { grid-template-columns: 1fr; }
  .map-frame { min-height: 320px; }
  .map-frame iframe { min-height: 320px; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--forest-deep); color: var(--ivory); }
.testimonials .section-head h2 { color: var(--ivory); }
.testimonials .section-head p { color: rgba(250,246,238,0.7); }
.testimonials .eyebrow { color: var(--gold-light); }
.testimonials .eyebrow::before { background: var(--gold-light); }

.t-track-wrap { position: relative; overflow: hidden; }
.t-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.t-slide {
  min-width: 100%;
  padding: 0 6px;
}
.t-card {
  background: rgba(250,246,238,0.05);
  border: 1px solid rgba(250,246,238,0.12);
  border-radius: var(--radius-lg);
  padding: 44px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.t-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 20px; }
.t-stars svg { width: 18px; height: 18px; color: var(--gold-light); }
.t-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 26px;
  line-height: 1.5;
}
.t-person { display: flex; align-items: center; justify-content: center; gap: 12px; }
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
}
.t-person .name { font-weight: 600; color: var(--ivory); font-size: 0.94rem; }
.t-person .role { font-size: 0.8rem; color: rgba(250,246,238,0.55); }

.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
}
.t-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,238,0.25);
  background: transparent;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}
.t-arrow:hover { background: rgba(250,246,238,0.12); }
.t-arrow svg { width: 18px; height: 18px; }
.t-dots { display: flex; gap: 9px; }
.t-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(250,246,238,0.3);
  padding: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.t-dots button.active { background: var(--gold-light); transform: scale(1.3); }

.t-disclaimer {
  text-align: center;
  font-size: 0.76rem;
  color: rgba(250,246,238,0.4);
  margin-top: 24px;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  position: relative;
  padding: 130px 0;
  text-align: center;
  color: var(--ivory);
  overflow: hidden;
}
.final-cta-media { position: absolute; inset: 0; }
.final-cta-media img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,30,24,0.85), rgba(15,30,24,0.9));
}
.final-cta-content { position: relative; z-index: 2; max-width: 660px; margin: 0 auto; }
.final-cta h2 { color: var(--ivory); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.final-cta p { color: rgba(250,246,238,0.78); font-size: 1.08rem; margin-bottom: 40px; }
.final-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .final-cta { padding: 90px 0; }
  .final-cta-actions { flex-direction: column; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--forest-deep); color: rgba(250,246,238,0.72); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,246,238,0.1);
}
.footer-brand .brand-text { color: var(--ivory); }
.footer-brand .brand-mark { color: var(--gold-light); }
.footer-brand p { color: rgba(250,246,238,0.6); margin: 18px 0 24px; max-width: 300px; font-size: 0.92rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,238,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer-social a:hover { background: rgba(228,207,143,0.15); border-color: var(--gold-light); }
.footer-social svg { width: 16px; height: 16px; color: var(--ivory); }

.footer h4 {
  color: var(--ivory);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
  font-family: var(--font-sans);
  font-weight: 600;
}
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul a, .footer ul span { font-size: 0.92rem; color: rgba(250,246,238,0.65); transition: color 0.3s var(--ease); }
.footer ul li a:hover { color: var(--gold-light); }
.footer address { font-style: normal; font-size: 0.92rem; color: rgba(250,246,238,0.65); line-height: 1.7; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 0;
  font-size: 0.8rem;
  color: rgba(250,246,238,0.45);
}
.footer-bottom a { color: rgba(250,246,238,0.55); }
.footer-bottom a:hover { color: var(--gold-light); }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ==========================================================================
   Floating actions (mobile + desktop)
   ========================================================================== */
.floaters {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.floater {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(15,30,24,0.45);
  transition: transform 0.3s var(--ease);
}
.floater:hover { transform: scale(1.08); }
.floater svg { width: 25px; height: 25px; }
.floater.wa { background: #25d366; color: #fff; }
.floater.call { background: var(--forest); color: var(--ivory); }

.mobile-actionbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  background: rgba(250,246,238,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(31,61,51,0.1);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}
.mobile-actionbar .row { display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 10px; }
.mobile-actionbar a {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px 8px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}
.mobile-actionbar svg { width: 16px; height: 16px; }
.mobile-actionbar .m-call { background: var(--forest); color: var(--ivory); }
.mobile-actionbar .m-wa { background: #25d366; color: #fff; }
.mobile-actionbar .m-book { background: var(--gold); color: var(--forest-deep); }

@media (max-width: 768px) {
  .floaters { display: none; }
  .mobile-actionbar { display: block; }
  body { padding-bottom: 74px; }
}

/* ==========================================================================
   Booking popup
   ========================================================================== */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(15,30,24,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease);
}
.promo-popup.open { opacity: 1; visibility: visible; }
.promo-card {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s var(--ease);
}
.promo-popup.open .promo-card { transform: translateY(0) scale(1); }
.promo-card .p-media { height: 150px; position: relative; }
.promo-card .p-media img { width: 100%; height: 100%; object-fit: cover; }
.promo-card .p-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,30,24,0.15), var(--ivory) 100%);
}
.promo-card .p-body { padding: 6px 32px 32px; text-align: center; }
.promo-card .eyebrow { justify-content: center; }
.promo-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.promo-card p { font-size: 0.92rem; margin-bottom: 24px; }
.promo-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(15,30,24,0.4);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.promo-close svg { width: 16px; height: 16px; }
.promo-actions { display: flex; gap: 12px; }
.promo-actions .btn { flex: 1; }

/* ==========================================================================
   Misc
   ========================================================================== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--gold-light);
  color: var(--forest-deep);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--forest);
  color: var(--ivory);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 12px; }

@media (max-width: 768px) {
  .service-grid, .offers-grid, .why-grid { gap: 20px; }
  .booking-form, .booking-info { padding: 36px 22px; }
  .location-card { padding: 32px 24px; }
}
