:root {
  --burgundy-950: #2a0c17;
  --burgundy-black: #1a0810;
  --burgundy-800: #601c33;
  --burgundy-600: #8e3551;
  --champagne: #c9a86a;
  --champagne-soft: #ead8ae;
  --ivory: #fbf7f1;
  --ivory-2: #f2eadf;
  --ink: #2b1620;
  --muted: #694b56;
  --sage: #46523c;
  --sage-soft: #e8eddf;
  --line: rgba(201, 168, 106, 0.34);
  --shadow: 0 22px 70px rgba(26, 8, 16, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Scroll-reveal: elements fade + rise into place as they enter the viewport.
   JS adds .reveal on load and .is-visible once in view; if JS never runs,
   nothing is tagged .reveal so content stays fully visible by default. */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body {
  margin: 0;
  font-family: "Jost", system-ui, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--ivory);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.solid, .site-header.menu-open {
  background: rgba(251, 247, 241, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(10px);
}
.brand { display: inline-flex; align-items: center; gap: 16px; font-family: "Cormorant Garamond", serif; font-size: 1.35rem; min-width: 0; }
.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 6px;
  background: rgba(251, 247, 241, 0.96);
  border: 1px solid rgba(234, 216, 174, 0.75);
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 8px 18px rgba(43, 22, 32, 0.12);
}
.brand-mark img {
  width: auto;
  height: 88%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.brand-text {
  line-height: 1;
  white-space: nowrap;
}
.desktop-nav { display: flex; justify-content: center; gap: 30px; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.desktop-nav a, .header-cta { padding: 8px 0; position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--champagne);
  transition: right 0.3s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-cta {
  border: 1px solid currentColor;
  padding: 10px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.header-cta:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--burgundy-black);
}
.menu-button { display: none; border: 0; background: transparent; color: inherit; padding: 6px; }
.menu-button span { display: block; width: 26px; height: 1.5px; margin: 6px 0; background: currentColor; }
.mobile-nav { display: none; }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: var(--ivory);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("/assets/hero-wedding.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 78% 15%, rgba(201, 168, 106, 0.10), transparent 55%),
    linear-gradient(90deg, rgba(26, 8, 16, 0.92), rgba(26, 8, 16, 0.62) 48%, rgba(26, 8, 16, 0.22)),
    radial-gradient(140% 100% at 50% 100%, rgba(0, 0, 0, 0.35), transparent 60%);
  z-index: -1;
}
.hero-media { z-index: -2; }
.hero-content {
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 110px);
  padding: 140px 0 120px;
}
.eyebrow {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  color: var(--champagne);
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne), transparent);
}
.hero .eyebrow::after, .contact .eyebrow::after, .thamara-hero .eyebrow::after { background: linear-gradient(90deg, var(--champagne-soft), transparent); }
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.04;
  margin: 0;
  font-weight: 500;
}
h1 { font-size: clamp(3rem, 7vw, 6.2rem); max-width: 780px; }
h2 { font-size: clamp(2.2rem, 4.8vw, 4rem); color: var(--burgundy-950); }
h3 { font-size: 1.65rem; color: var(--burgundy-950); }
.hero p:not(.eyebrow) { max-width: 610px; font-size: clamp(1rem, 1.8vw, 1.22rem); color: #f4e9dd; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: linear-gradient(135deg, var(--champagne-soft), var(--champagne));
  color: var(--burgundy-black);
  border-color: var(--champagne);
}
.button.primary:hover { background: var(--champagne-soft); box-shadow: 0 10px 26px rgba(201, 168, 106, 0.35); }
.button.secondary { color: var(--ivory); }
.button.secondary:hover { background: rgba(251, 247, 241, 0.12); }
.button.sage { background: var(--sage); color: white; border-color: var(--sage); margin-top: 16px; }
.hero-strip {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  background: rgba(26, 8, 16, 0.88);
  padding: 14px clamp(20px, 4vw, 56px);
}
.hero-strip span { white-space: nowrap; color: var(--champagne-soft); font-size: 0.74rem; letter-spacing: 0.17em; text-transform: uppercase; }
.hero-strip span::after { content: "/"; margin-left: 10px; opacity: 0.45; }

.section {
  padding: clamp(78px, 10vw, 130px) clamp(20px, 4vw, 56px);
}
.section-copy { max-width: 760px; margin-bottom: 42px; }
.section-copy.wide { max-width: 980px; }
.section-copy h2 { margin-top: 12px; }

.intro-grid, .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.intro-grid article, .service-card {
  position: relative;
  background: var(--ivory);
  padding: clamp(26px, 4vw, 42px);
  transition: background 0.25s ease;
}
.intro-grid article::before, .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--champagne), transparent 75%);
  opacity: 0.55;
  transition: opacity 0.25s ease;
}
.intro-grid article:hover::before, .service-card:hover::before { opacity: 1; }
.intro-grid p, .service-card p, .retreat-panel p, .contact-card p, .timeline span { color: var(--muted); }
.thamara-preview {
  display: flex;
  justify-content: center;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 4vw, 56px);
  background: linear-gradient(135deg, rgba(234, 216, 174, 0.24), rgba(255, 255, 255, 0.9));
}
.thamara-preview-card {
  width: min(1100px, 96%);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  background: var(--ivory);
  border: 1px solid rgba(200, 162, 93, 0.24);
  border-radius: 30px;
  padding: clamp(30px, 5vw, 54px);
  box-shadow: var(--shadow);
}
.thamara-preview-card h2 {
  margin: 10px 0 12px;
  color: var(--burgundy-950);
}
.thamara-preview-card p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.02rem;
}
.thamara-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 30px;
}
.thamara-highlights span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ivory-2);
  color: var(--burgundy-800);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.thamara-preview-media {
  height: 100%;
}
.thamara-preview-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(43, 22, 32, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.thamara-preview-copy {
  display: grid;
  gap: 24px;
}
.thamara-preview .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin-top: 28px;
}
.service-grid {
  display: block;
  background: transparent;
  border: 0;
}

/* Make header text dark on the Thamara page for readability over the poster */
.thamara-page .site-header {
  color: var(--burgundy-950);
  background: rgba(251, 247, 241, 0.96);
  box-shadow: 0 1px 0 var(--line);
}
.thamara-page .site-header .brand-mark { background: var(--ivory); }
.thamara-page .site-header .desktop-nav a, .thamara-page .site-header .mobile-nav a, .thamara-page .site-header .header-cta {
  color: inherit;
}

.service-showcase {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-stage {
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(234, 216, 174, 0.22), rgba(255, 255, 255, 0.9));
  box-shadow: 0 24px 70px rgba(43, 22, 32, 0.16);
  border: 1px solid rgba(200, 162, 93, 0.2);
}
.service-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.service-slide {
  position: relative;
  min-width: 100%;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-slide:hover {
  transform: scale(1.006);
}
.service-slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--burgundy-950);
}
.service-slide-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.service-slide:hover .service-slide-media img {
  transform: scale(1.05);
}
.service-slide-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 6, 12, 0.94) 0%, rgba(20, 6, 12, 0.62) 42%, rgba(20, 6, 12, 0.08) 72%, rgba(20, 6, 12, 0.15) 100%);
}
.service-slide-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--champagne-soft);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--burgundy-950), var(--burgundy-black));
}
.service-slide-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(28px, 4vw, 48px);
}
.service-slide .num {
  color: var(--champagne);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
}
.service-slide h3 {
  margin: 10px 0 10px;
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  color: var(--ivory);
}
.service-slide p {
  margin: 0 0 16px;
  color: rgba(251, 247, 241, 0.86);
  max-width: 46ch;
}
.service-slide ul {
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-slide li {
  border: 1px solid rgba(201, 168, 106, 0.55);
  background: rgba(20, 6, 12, 0.35);
  padding: 5px 9px;
  color: var(--champagne-soft);
  font-size: 0.74rem;
  border-radius: 999px;
}
.service-slide-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.service-link {
  margin-top: 8px;
  padding: 12px 20px;
  border: 1px solid var(--champagne);
  background: rgba(201, 168, 106, 0.12);
  color: var(--champagne-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  cursor: pointer;
  align-self: start;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.service-link:hover {
  background: var(--champagne);
  color: var(--burgundy-black);
  transform: translateY(-1px);
}
.service-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.service-dots {
  display: flex;
  gap: 8px;
}
.service-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(104, 31, 56, 0.28);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.service-dot.active {
  width: 28px;
  background: var(--burgundy-800);
}
.service-navigation {
  display: flex;
  gap: 10px;
}
.service-nav-button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--burgundy-950);
  color: var(--ivory);
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(43, 22, 32, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-nav-button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 36px rgba(43, 22, 32, 0.2);
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(43, 22, 32, 0.72);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open {
  display: flex;
}
.modal-overlay.open .modal-content {
  animation: modal-bulge 0.35s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}
.modal-content {
  width: min(620px, 100%);
  min-height: 460px;
  max-height: 88vh;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  transform-origin: center center;
  background: var(--burgundy-950);
  display: flex;
  align-items: flex-end;
}
@keyframes modal-bulge {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(8px);
  }
  60% {
    opacity: 1;
    transform: scale(1.03) translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.modal-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--burgundy-950);
}
.modal-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(18px) brightness(0.82) saturate(1.05);
  transform: scale(1.15);
}
.modal-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(20, 6, 12, 0.95) 0%, rgba(20, 6, 12, 0.78) 38%, rgba(20, 6, 12, 0.32) 75%, rgba(20, 6, 12, 0.38) 100%);
}
.modal-body {
  position: relative;
  z-index: 2;
  padding: 40px 32px 34px;
  max-height: 88vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 106, 0.4);
  background: rgba(20, 6, 12, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  color: var(--champagne-soft);
  font-size: 1.3rem;
  cursor: pointer;
}
.modal-content .eyebrow {
  margin-bottom: 12px;
  color: var(--champagne);
}
.modal-content h3 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 2.2vw, 2.4rem);
  color: var(--ivory);
}
.modal-content p {
  margin: 0 0 22px;
  color: rgba(251, 247, 241, 0.86);
}
.modal-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.modal-keywords span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 106, 0.5);
  background: rgba(20, 6, 12, 0.35);
  color: var(--champagne-soft);
  font-size: 0.78rem;
}

.gallery {
  background: var(--ivory);
  padding-top: clamp(62px, 8vw, 104px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 320px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--burgundy-950);
  min-height: 0;
}
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.06);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(43, 22, 32, 0.8));
  pointer-events: none;
}
.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: var(--ivory);
}
.gallery-item figcaption span {
  display: block;
  color: var(--champagne-soft);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.gallery-item figcaption strong {
  display: block;
  max-width: 440px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
  line-height: 1.12;
  font-weight: 500;
}

.services-section { background: var(--ivory-2); }
.services-section .service-card { background: var(--ivory-2); }
.services-section .service-card:hover { background: var(--ivory); }

.retreat {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  background: var(--sage-soft);
}
.retreat-panel {
  background: var(--ivory);
  border: 1px solid rgba(70, 82, 60, 0.2);
  padding: clamp(30px, 5vw, 58px);
  box-shadow: var(--shadow);
}
.retreat-panel h2 { color: var(--sage); margin: 12px 0 20px; }
.retreat-points { display: grid; align-content: center; gap: 14px; }
.retreat-points span { border-bottom: 1px solid rgba(70, 82, 60, 0.24); padding: 18px 0; color: var(--sage); font-size: 1.12rem; }

.process { background: var(--ivory); }
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.timeline li { border-top: 2px solid var(--champagne); padding-top: 18px; }
.timeline strong { display: block; color: var(--burgundy-950); margin-bottom: 8px; }

.contact {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 34px;
  background:
    radial-gradient(55% 70% at 85% 10%, rgba(201, 168, 106, 0.12), transparent 60%),
    var(--burgundy-950);
}
.contact h2, .contact h3 { color: var(--ivory); }
.contact-card, .quote-form {
  border: 1px solid rgba(234, 216, 174, 0.28);
  padding: clamp(28px, 4vw, 44px);
}
.contact-card p { color: #dec8d0; }
.contact-links { display: grid; gap: 10px; margin-top: 24px; color: var(--champagne-soft); }
.quote-form { background: rgba(251, 247, 241, 0.06); display: grid; gap: 18px; }
.quote-form h3 { margin-bottom: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: grid; gap: 7px; color: #e8d6dd; font-size: 0.78rem; letter-spacing: 0.07em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(234, 216, 174, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ivory);
  padding: 12px 13px;
  outline: 0;
}
option { color: var(--ink); }
input:focus, select:focus, textarea:focus { border-color: var(--champagne); }
textarea { resize: vertical; min-height: 126px; }
.checkbox { display: flex; align-items: center; gap: 10px; text-transform: none; letter-spacing: 0; }
.checkbox input { width: 18px; height: 18px; }
.submit-button {
  border: 0;
  background: var(--champagne-soft);
  color: var(--burgundy-950);
  padding: 15px 18px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  cursor: pointer;
}
.submit-button:disabled { opacity: 0.65; cursor: wait; }
.form-status { min-height: 24px; margin: 0; color: var(--champagne-soft); }
.form-status.error { color: #ffd3d3; }

footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 42px clamp(20px, 4vw, 56px);
  background:
    radial-gradient(60% 140% at 15% 0%, rgba(201, 168, 106, 0.08), transparent 60%),
    var(--burgundy-black);
  color: #dfc5cf;
  border-top: 1px solid rgba(201, 168, 106, 0.3);
}
footer strong { color: var(--ivory); }
footer p { max-width: 460px; margin-bottom: 0; }
footer div:last-child { display: grid; gap: 8px; justify-items: end; }
footer a { color: var(--champagne-soft); }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  width: 46px;
  height: 34px;
  object-fit: contain;
  object-position: center;
  border-radius: 999px;
  background: var(--ivory);
  border: 1px solid rgba(234, 216, 174, 0.45);
  padding: 3px;
}
.whatsapp-float {
  position: fixed;
  z-index: 19;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.thamara-page {
  --ivory: #fff7f2;
  --ivory-2: #fbefe8;
  --burgundy-950: #3b1420;
  --burgundy-800: #7a2b3b;
  --champagne: #c9a86a;
  --champagne-soft: #f0dfc4;
  --muted: #6f4e57;
  --sage: #2f5b3a;
  position: relative;
  background:
    radial-gradient(1200px 680px at 10% -14%, rgba(201, 168, 106, 0.22), transparent 58%),
    radial-gradient(950px 560px at 108% 4%, rgba(47, 91, 58, 0.13), transparent 55%),
    radial-gradient(760px 540px at 92% 98%, rgba(201, 168, 106, 0.16), transparent 60%),
    radial-gradient(600px 420px at 50% 40%, rgba(122, 43, 59, 0.05), transparent 65%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
}
.thamara-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='7'%3E%3Ccircle cx='1' cy='1' r='0.55' fill='%23c9a86a' opacity='0.35'/%3E%3C/svg%3E");
  background-size: 7px 7px;
}
.thamara-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 60% at 50% 0%, transparent 55%, rgba(59, 20, 32, 0.05) 100%);
}

/* Hero */
.thamara-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 56px) clamp(40px, 6vw, 72px);
  display: grid;
  background:
    linear-gradient(90deg, transparent, var(--champagne) 40%, var(--champagne) 60%, transparent) top center / min(420px, 70%) 2px no-repeat,
    radial-gradient(64% 64% at 50% 0%, rgba(201, 168, 106, 0.22), transparent 70%),
    radial-gradient(90% 50% at 50% 100%, rgba(47, 91, 58, 0.06), transparent 70%);
  color: var(--burgundy-950);
  text-align: center;
}
.thamara-hero::before,
.thamara-hero::after {
  content: "";
  position: absolute;
  top: -30px;
  width: 260px;
  height: 260px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 15 C138 55 158 95 100 185 C42 95 62 55 100 15Z' fill='none' stroke='%23c9a86a' stroke-width='1.1' opacity='0.4'/%3E%3Cpath d='M100 42 C124 70 136 98 100 158 C64 98 76 70 100 42Z' fill='none' stroke='%23c9a86a' stroke-width='1' opacity='0.32'/%3E%3Cpath d='M100 68 C114 84 120 100 100 132 C80 100 86 84 100 68Z' fill='none' stroke='%23c9a86a' stroke-width='0.9' opacity='0.28'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.thamara-hero::before { left: -70px; transform: scaleX(-1) rotate(-10deg); }
.thamara-hero::after { right: -70px; transform: rotate(10deg); }
.thamara-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  justify-items: center;
}
.thamara-hero-eyebrow {
  color: var(--champagne);
}
.thamara-hero-inner h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 0;
}
.thamara-hero-inner h1 span {
  padding: 0 6px;
  background: linear-gradient(120deg, var(--champagne) 0%, #f2e0b3 45%, var(--champagne) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (prefers-reduced-motion: no-preference) {
  .thamara-hero-eyebrow, .thamara-hero-inner h1, .thamara-hero-tagline, .thamara-poster-frame, .thamara-hero .hero-actions {
    animation: thamaraRise 0.8s ease both;
  }
  .thamara-hero-inner h1 { animation-delay: 0.08s; }
  .thamara-hero-tagline { animation-delay: 0.16s; }
  .thamara-poster-frame { animation-delay: 0.24s; }
  .thamara-hero .hero-actions { animation-delay: 0.32s; }
}
@keyframes thamaraRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.thamara-hero-tagline {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 540px;
  margin: 0;
}
.thamara-poster-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 18px auto 6px;
  padding: 14px;
  background: linear-gradient(160deg, #fff 0%, var(--ivory-2) 100%);
  border: 1px solid rgba(200, 162, 93, 0.4);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(43, 22, 32, 0.16), 0 0 0 8px rgba(201, 168, 106, 0.05);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.thamara-poster-frame::after {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(201, 168, 106, 0.28), transparent 75%);
  opacity: 0.9;
  filter: blur(2px);
}
.thamara-poster-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(200, 162, 93, 0.28);
  border-radius: 14px;
  pointer-events: none;
}
.thamara-poster-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 42px 96px rgba(43, 22, 32, 0.22);
}
.thamara-poster {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.thamara-hero .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}
.thamara-hero .hero-actions .button.primary { min-width: 200px; }
.thamara-hero .hero-actions .button.secondary {
  color: var(--burgundy-950);
  border-color: var(--burgundy-950);
}

/* Content rhythm */
.thamara-content {
  padding: clamp(24px, 5vw, 40px) clamp(20px, 4vw, 56px) clamp(60px, 8vw, 100px);
  display: grid;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.thamara-lede {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 10px;
}
.thamara-lede h2 { margin: 0; }
.thamara-lede p { color: var(--muted); margin: 0; }
.thamara-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 320px;
  margin: 0 auto;
  color: var(--champagne);
}
.thamara-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 93, 0.55), transparent);
}
.thamara-divider em {
  font-style: normal;
  font-size: 1rem;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.22), transparent 72%);
}
.thamara-section-card {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgba(200, 162, 93, 0.2);
  box-shadow: 0 20px 56px rgba(43, 22, 32, 0.08);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 38px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.thamara-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.85;
}
.thamara-section-card::after {
  content: "";
  position: absolute;
  top: -36px;
  right: -36px;
  width: 170px;
  height: 170px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 15 C138 55 158 95 100 185 C42 95 62 55 100 15Z' fill='none' stroke='%23c9a86a' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
  pointer-events: none;
}
.thamara-section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(43, 22, 32, 0.12);
}
.thamara-section-card--tinted {
  background: linear-gradient(135deg, var(--champagne-soft), var(--ivory) 55%, rgba(47, 91, 58, 0.06) 130%);
  border-color: rgba(200, 162, 93, 0.32);
}
.thamara-section-card h2 {
  margin: 0 0 12px;
  color: var(--burgundy-950);
}
.thamara-section-card p,
.thamara-section-card li {
  color: var(--muted);
}
.thamara-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.thamara-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
}

/* Packages */
.thamara-quote {
  background: linear-gradient(135deg, rgba(70, 82, 60, 0.1), rgba(234, 216, 174, 0.22) 55%, rgba(122, 43, 59, 0.06) 130%);
  text-align: center;
}
.thamara-quote .package-grid { text-align: left; }
.package-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.package-card {
  position: relative;
  border: 1px solid rgba(200, 162, 93, 0.2);
  background: var(--ivory-2);
  border-radius: 20px;
  padding: 26px 24px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(43, 22, 32, 0.14);
}
.package-card--signature {
  background: linear-gradient(160deg, #fff 0%, var(--champagne-soft) 160%);
  border: 1px solid var(--champagne);
  box-shadow: 0 24px 60px rgba(43, 22, 32, 0.14), 0 0 0 1px rgba(201, 168, 106, 0.25) inset;
}
.package-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: linear-gradient(120deg, var(--champagne), #f2e0b3, var(--champagne));
  background-size: 220% 100%;
  color: var(--burgundy-950);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(43, 22, 32, 0.18);
}
@media (prefers-reduced-motion: no-preference) {
  .package-badge { animation: thamaraShimmer 6s ease-in-out infinite; }
}
@keyframes thamaraShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.package-card h3 { margin-bottom: 10px; }
.package-card .price {
  font-size: 1.55rem;
  color: var(--burgundy-950);
  font-weight: 600;
  margin: 10px 0 2px;
}
.package-card .price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
}
.package-card .price-early {
  font-size: 0.88rem;
  color: var(--burgundy-800);
  font-weight: 600;
  margin: 0 0 12px;
}
.package-card .price-early span {
  font-weight: 400;
  color: var(--muted);
}
.package-card .package-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 16px;
}
.package-list-group { margin-bottom: 14px; }
.package-list-group h4 {
  font-family: "Jost", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy-800);
  margin-bottom: 6px;
}
.package-list-group .thamara-list { margin-bottom: 0; }
.package-footnote {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 10px;
}
.retreat-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 30px 0 10px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(251, 247, 241, 0.6);
  border: 1px solid rgba(201, 168, 106, 0.25);
  text-align: left;
}
.retreat-meta div strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 4px;
}
.retreat-meta div span { font-size: 0.9rem; color: var(--ink); }
.package-tags {
  margin-top: 6px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--burgundy-800);
  font-style: italic;
}
.thamara-services-hint {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  font-size: 0.9rem;
  margin: -6px 0 6px;
}
.services-explorer { position: relative; margin-top: 28px; }
.services-panel { transition: opacity 0.3s ease, transform 0.3s ease; }
.services-panel.is-out { opacity: 0; transform: translateY(10px); }
.services-panel[hidden] { display: none; }
@media (prefers-reduced-motion: reduce) {
  .services-panel { transition: none; }
}

.services-grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  text-align: left;
}
.service-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  text-align: left;
  font-family: inherit;
  background: var(--ivory);
  border: 1px solid rgba(201, 168, 106, 0.25);
  border-radius: 16px;
  padding: 22px 22px 20px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--champagne), transparent 75%);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.service-tile:hover, .service-tile:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(43, 22, 32, 0.14);
  border-color: rgba(201, 168, 106, 0.55);
}
.service-tile:hover::before, .service-tile:focus-visible::before { opacity: 1; }
.service-tile h3 { font-size: 1.05rem; color: var(--burgundy-950); margin: 0; }
.service-tile .tile-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}
.service-tile .tile-arrow {
  margin-left: auto;
  color: var(--champagne);
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}
.service-tile:hover .tile-arrow, .service-tile:focus-visible .tile-arrow { transform: translateX(4px); }

.services-detail-view { text-align: left; }
.services-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--burgundy-800);
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 0 20px;
  transition: color 0.25s ease, gap 0.25s ease;
}
.services-back:hover { color: var(--champagne); gap: 12px; }
.services-detail-view h3 {
  font-size: 1.4rem;
  color: var(--burgundy-950);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 168, 106, 0.35);
}
.services-detail-list { columns: 1; column-gap: 36px; }
@media (min-width: 640px) {
  .services-detail-list.is-wide { columns: 2; }
}
.services-detail-list li { break-inside: avoid; margin-bottom: 13px; font-size: 0.94rem; }
.thamara-note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
}
.thamara-cta {
  display: inline-flex;
  margin-top: 20px;
}

/* Collaboration section: Kerala heritage + British hospitality */
.thamara-collab { text-align: center; }
.thamara-collab-intro {
  max-width: 640px;
  margin: 10px auto 0;
  color: var(--muted);
}
.collab-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  margin-top: 30px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 22px;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(47, 91, 58, 0.07), transparent 48%),
    linear-gradient(270deg, rgba(122, 43, 59, 0.06), transparent 48%);
}
.collab-pillar {
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--ivory-2);
  border-top: 3px solid transparent;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.collab-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(43, 22, 32, 0.1);
}
.collab-pillar--kerala {
  border-top-color: var(--sage);
}
.collab-pillar--britain {
  border-top-color: var(--burgundy-800);
}
.collab-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.collab-pillar--kerala .collab-label { color: var(--sage); }
.collab-pillar--britain .collab-label { color: var(--burgundy-800); }
.collab-pillar h3 { margin: 0 0 8px; color: var(--burgundy-950); }
.collab-pillar p { color: var(--muted); margin: 0; font-size: 0.96rem; }
.collab-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--sage);
  text-decoration: none;
  font-weight: 600;
}
.collab-link:hover { text-decoration: underline; }
.collab-emblem {
  font-size: 1.6rem;
  color: var(--champagne);
  justify-self: center;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 106, 0.4);
  background: radial-gradient(circle, rgba(201, 168, 106, 0.14), transparent 72%);
}

/* Closing CTA band */
.thamara-closing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 90% at 50% 10%, rgba(201, 168, 106, 0.14), transparent 65%),
    linear-gradient(135deg, var(--burgundy-950), #2a0e18);
  padding: clamp(48px, 8vw, 84px) clamp(20px, 4vw, 56px);
}
.thamara-closing::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 15 C138 55 158 95 100 185 C42 95 62 55 100 15Z' fill='none' stroke='%23c9a86a' stroke-width='0.6'/%3E%3Cpath d='M100 42 C124 70 136 98 100 158 C64 98 76 70 100 42Z' fill='none' stroke='%23c9a86a' stroke-width='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}
.thamara-closing-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 14px;
}
.thamara-closing-inner .eyebrow { color: var(--champagne); }
.thamara-closing-inner h2 { color: var(--ivory); margin: 0; }
.thamara-closing-inner p { color: rgba(251, 247, 241, 0.82); margin: 0 0 6px; }
.thamara-closing-inner .button.sage { margin: 0 auto; }
@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: block; justify-self: end; }
  .mobile-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    background: var(--ivory);
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px;
  }
  .site-header.menu-open .mobile-nav { display: grid; }
  .mobile-nav a { padding: 12px; border-bottom: 1px solid var(--line); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; }
  .mobile-nav a:last-child { border: 1px solid var(--burgundy-950); text-align: center; margin-top: 6px; }
  .intro-grid, .service-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 1; }
  .retreat, .contact { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { max-width: 560px; margin: 0 auto; }
}

@media (max-width: 620px) {
  .site-header { padding: 14px 18px; gap: 16px; }
  .brand { font-size: 1.05rem; gap: 10px; }
  .brand-mark { width: 42px; height: 32px; }
  .hero-content { margin: 0 18px; width: auto; }
  .hero-overlay { background: linear-gradient(180deg, rgba(26, 8, 16, 0.88), rgba(26, 8, 16, 0.58)); }
  .intro-grid, .service-grid, .timeline, .form-row { grid-template-columns: 1fr; }
  .service-slide { min-height: 440px; }
  .service-slide p { max-width: none; }
  .modal-content { min-height: 380px; }
  .modal-body { padding: 30px 22px 26px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .gallery-wide { grid-column: span 1; }
  .gallery-item figcaption { left: 18px; right: 18px; bottom: 18px; }
  .contact-card, .quote-form { padding: 24px 18px; }
  footer { display: grid; }
  footer div:last-child { justify-items: start; }
  .footer-brand { align-items: flex-start; }
  .footer-brand img { width: 40px; height: 30px; }
  .thamara-grid, .package-grid { grid-template-columns: 1fr; }
  .collab-grid { grid-template-columns: 1fr; }
  .collab-emblem { order: -1; }
  .thamara-hero-inner .hero-actions { width: 100%; gap: 14px; }
  .thamara-preview-card { grid-template-columns: 1fr; padding: 24px 18px; }
  .thamara-preview-media { order: -1; }
  .thamara-preview-media img { min-height: 220px; border-radius: 18px; }
  .thamara-preview-copy { gap: 18px; }
}
