/* =========================================================
   Sri Lanka Events & Travel
   Bespoke luxury travel house, Canberra, Australia
   Global stylesheet
   ========================================================= */

:root {
  /* Palette drawn from the company logo
     Navy banner, gold stupa, ocean teal, leaf green, sunset orange, orchid pink */
  --ink: #0d1b2a;
  --ink-soft: #243747;
  /* Navy is the primary brand anchor. Kept under the emerald names so the
     whole stylesheet adopts it without rewriting every rule. */
  --emerald: #0a2c4f;
  --emerald-deep: #06203a;
  --navy: #0a2c4f;
  --navy-deep: #06203a;
  --gold: #c79a3d;
  --gold-bright: #efb637;
  /* Secondary accents from the emblem, used sparingly */
  --teal: #1c8aa8;
  --leaf: #8fae2a;
  --sunset: #e3631a;
  --magenta: #e0356a;
  --logo-gradient: linear-gradient(90deg, #8fae2a 0%, #c79a3d 28%, #e3631a 52%, #1c8aa8 76%, #e0356a 100%);
  --cream: #f7f3ea;
  --sand: #eae1d0;
  --stone: #837a6d;
  --line: rgba(13, 27, 42, 0.13);
  --line-light: rgba(247, 243, 234, 0.18);

  /* Typography */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Metrics */
  --maxw: 1280px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0.01em;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section {
  padding-block: clamp(4.5rem, 10vw, 9rem);
}
.section.tight { padding-block: clamp(3rem, 6vw, 5rem); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 46ch;
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* Logo spectrum gradient text, used on select accent words */
.text-gradient {
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 2.1rem;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--bg);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: color 0.5s var(--ease);
  z-index: 0;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--ink); }
.btn:hover::before { transform: translateY(0); }
.btn .arrow { transition: transform 0.5s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-ghost {
  --bg: transparent;
  --fg: var(--cream);
  border-color: var(--line-light);
}
.btn-ghost:hover { color: var(--ink); }

.btn-gold {
  --bg: var(--gold);
  --fg: var(--ink);
}
.btn-gold::before { background: var(--ink); }
.btn-gold:hover { color: var(--cream); }

/* Text link with underline sweep */
.link-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  position: relative;
}
.link-line::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  opacity: 0.5;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.link-line:hover::after { transform: scaleX(1); opacity: 1; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background 0.5s var(--ease), height 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.scrolled {
  background: rgba(8, 30, 54, 0.94);
  backdrop-filter: blur(12px);
  height: 72px;
  box-shadow: 0 1px 0 var(--line-light);
}
.site-header.scrolled::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--logo-gradient);
  opacity: 0.9;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  line-height: 1;
  color: var(--cream);
  transition: color 0.4s var(--ease);
}
/* Emblem logo lockup */
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fffdf8;
  border-radius: 10px;
  padding: 6px 9px;
  box-shadow: 0 6px 20px rgba(6, 32, 58, 0.22);
  border: 1px solid rgba(199, 154, 61, 0.35);
  transition: height 0.4s var(--ease), padding 0.4s var(--ease);
}
.brand-logo img {
  height: 46px;
  width: auto;
  transition: height 0.4s var(--ease);
}
.site-header.scrolled .brand-logo img { height: 40px; }
.brand .brand-text { display: flex; flex-direction: column; }
.brand .brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
.brand .brand-sub {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav a {
  color: var(--cream);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--gold-bright); }

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

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  background: transparent;
  border: 0;
  position: relative;
  z-index: 1200;
}
.nav-toggle span {
  position: absolute;
  left: 9px;
  width: 28px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), top 0.4s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 29px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 23px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(12, 10, 7, 0.86) 0%, rgba(12, 10, 7, 0.25) 45%, rgba(12, 10, 7, 0.45) 100%);
}
.hero-inner {
  width: 100%;
  padding-bottom: clamp(3.5rem, 8vw, 7rem);
  padding-top: calc(var(--header-h) + 2rem);
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  font-weight: 500;
  max-width: 16ch;
  margin-top: 1.6rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.hero-sub {
  margin-top: 1.8rem;
  max-width: 52ch;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(247, 242, 232, 0.82);
  font-weight: 300;
}
.hero-actions {
  margin-top: 2.6rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
}
.hero-meta .stat .num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold-bright);
  display: block;
  line-height: 1;
}
.hero-meta .stat .label {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.7);
  margin-top: 0.6rem;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3.5rem, 8vw, 7rem);
  writing-mode: vertical-rl;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.75);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 60px;
  background: linear-gradient(var(--gold-bright), var(--teal), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   Intro / Statement
   ========================================================= */
.statement {
  background: var(--cream);
}
.statement .grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.statement h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-top: 1.6rem;
}
.statement p + p { margin-top: 1.2rem; }
.signature {
  margin-top: 2.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--emerald);
}
.statement-figure {
  position: relative;
}
.statement-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.statement-figure .badge {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--emerald);
  color: var(--cream);
  padding: 1.6rem 1.8rem;
  border-radius: var(--radius);
  max-width: 220px;
}
.statement-figure .badge .num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold-bright);
  line-height: 1;
}
.statement-figure .badge .txt {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  color: rgba(247, 242, 232, 0.85);
}

/* =========================================================
   Pillars / Why us
   ========================================================= */
.pillars { background: var(--ink); color: var(--cream); }
.pillars .section-head { max-width: 640px; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.pillars .section-head h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-top: 1.4rem;
}
.pillars .section-head p { color: rgba(247, 242, 232, 0.7); margin-top: 1.2rem; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.pillar {
  background: var(--ink);
  padding: clamp(2rem, 3vw, 3rem);
  transition: background 0.5s var(--ease);
}
.pillar:hover { background: var(--emerald-deep); }
.pillar .idx {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.pillar h3 {
  font-size: 1.6rem;
  margin-top: 1.4rem;
  color: var(--cream);
}
.pillar p {
  margin-top: 1rem;
  color: rgba(247, 242, 232, 0.68);
  font-size: 0.95rem;
}

/* =========================================================
   Destinations
   ========================================================= */
.section-head.center { text-align: center; max-width: 680px; margin-inline: auto; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-top: 1.4rem;
}
.section-head p { margin-top: 1.2rem; }

.dest-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.4rem);
}
.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  grid-column: span 4;
}
.dest-card.wide { grid-column: span 6; }
.dest-card.tall { min-height: 520px; }
.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  z-index: -2;
}
.dest-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,7,0.82) 0%, rgba(12,10,7,0.05) 60%);
  z-index: -1;
  transition: opacity 0.5s var(--ease);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-body {
  padding: clamp(1.4rem, 2.5vw, 2.2rem);
  transition: transform 0.5s var(--ease);
}
.dest-card .region {
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.dest-card h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-top: 0.6rem;
}
.dest-card .desc {
  font-size: 0.92rem;
  color: rgba(247, 242, 232, 0.82);
  max-width: 36ch;
  margin-top: 0.7rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease), opacity 0.5s var(--ease), margin 0.5s var(--ease);
}
.dest-card:hover .desc { max-height: 120px; opacity: 1; }

/* =========================================================
   Experiences filter gallery
   ========================================================= */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.7rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 40px;
  transition: all 0.4s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.exp-grid,
.event-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.exp-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  cursor: pointer;
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.exp-item.hide {
  display: none;
}
.exp-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
  z-index: -2;
}
.exp-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,7,0.85), rgba(12,10,7,0) 55%);
  z-index: -1;
}
.exp-item:hover img { transform: scale(1.07); }
.exp-body { padding: clamp(1.3rem, 2vw, 1.9rem); }
.exp-body .tag {
  font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-bright);
}
.exp-body h3 { font-size: 1.5rem; margin-top: 0.5rem; }
.exp-body p {
  font-size: 0.88rem;
  color: rgba(247,242,232,0.8);
  margin-top: 0.5rem;
}
.exp-zoom {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  display: grid; place-items: center;
  background: rgba(20,17,13,0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.45s var(--ease);
}
.exp-item:hover .exp-zoom { opacity: 1; transform: scale(1); }

/* =========================================================
   Journeys / Itineraries
   ========================================================= */
.journeys { background: var(--sand); }
.journey-list { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.journey {
  display: grid;
  grid-template-columns: 0.7fr 2fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-top: 1px solid var(--line);
  transition: padding 0.4s var(--ease);
  position: relative;
}
.journey:last-child { border-bottom: 1px solid var(--line); }
.journey .j-no {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
}
.journey h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  transition: color 0.4s var(--ease);
}
.journey .j-meta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.journey .j-desc { font-size: 0.95rem; color: var(--ink-soft); }
.journey .j-arrow {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
}
.journey:hover .j-arrow { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.journey:hover h3 { color: var(--emerald); }

/* =========================================================
   Parallax quote band
   ========================================================= */
.quote-band {
  position: relative;
  color: var(--cream);
  text-align: center;
  padding-block: clamp(6rem, 14vw, 11rem);
  overflow: hidden;
}
.quote-band .bg {
  position: absolute; inset: 0; z-index: -2;
}
.quote-band .bg img {
  width: 100%; height: 120%; object-fit: cover;
}
.quote-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(12,10,7,0.6);
}
.quote-band blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.22;
  max-width: 20ch;
  margin: 1.6rem auto 0;
}
.quote-band blockquote em { font-style: italic; color: var(--gold-bright); }

/* =========================================================
   Testimonials
   ========================================================= */
.testi { background: var(--emerald-deep); color: var(--cream); overflow: hidden; }
.testi .section-head h2 { color: var(--cream); }
.testi-track {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  min-height: 260px;
}
.testi-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
.testi-slide.active { opacity: 1; visibility: visible; transform: translateY(0); }
.testi-slide .stars { color: var(--gold-bright); letter-spacing: 0.3em; font-size: 0.9rem; }
.testi-slide blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.4;
  margin: 1.6rem 0 0;
  font-weight: 400;
}
.testi-slide .who { margin-top: 1.8rem; }
.testi-slide .who .name {
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bright);
}
.testi-slide .who .from {
  font-size: 0.72rem; color: rgba(247,242,232,0.6); margin-top: 0.4rem; letter-spacing: 0.12em;
}
.testi-dots { display: flex; gap: 0.6rem; justify-content: center; margin-top: clamp(2rem, 4vw, 3rem); }
.testi-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line-light);
  transition: all 0.4s var(--ease);
}
.testi-dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.2); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
}
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 18ch; margin-inline: auto; }
.cta-band p { margin: 1.4rem auto 0; max-width: 50ch; color: var(--ink-soft); }
.cta-band .btn { margin-top: 2.4rem; }

/* =========================================================
   Page hero (interior pages)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}
.page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 112%; object-fit: cover;
  z-index: -2;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(12,10,7,0.86), rgba(12,10,7,0.25));
}
.page-hero-inner {
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-top: calc(var(--header-h) + 2rem);
}
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin-top: 1.4rem; }
.page-hero .lead { color: rgba(247,242,232,0.85); margin-top: 1.4rem; }
.breadcrumb {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(247,242,232,0.7); margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--gold-bright); }

/* ---------- About page specifics ---------- */
.about-story .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-story h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-top: 1.4rem; }
.about-story p + p { margin-top: 1.1rem; }
.figure-stack { position: relative; }
.figure-stack img { border-radius: var(--radius); object-fit: cover; }
.figure-stack .a {
  width: 78%; aspect-ratio: 3/4;
}
.figure-stack .b {
  position: absolute;
  bottom: -40px; right: 0;
  width: 52%; aspect-ratio: 1/1;
  border: 8px solid var(--cream);
}

.values { background: var(--ink); color: var(--cream); }
.values .section-head h2 { color: var(--cream); }
.value-grid {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.value {
  background: var(--ink);
  padding: clamp(2rem, 3vw, 2.8rem);
}
.value .icon { display: block; width: 36px; height: 36px; color: var(--gold); }
.value .icon svg { width: 100%; height: 100%; }
.value h3 { color: var(--cream); font-size: 1.5rem; margin-top: 1.2rem; }
.value p { color: rgba(247,242,232,0.68); margin-top: 0.9rem; font-size: 0.94rem; }

/* ---------- Process timeline ---------- */
.process-grid {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.process-step { position: relative; padding-top: 2.4rem; }
.process-step::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 1px; background: var(--line);
}
.process-step .step-no {
  position: absolute; top: -14px; left: 0;
  background: var(--cream);
  font-family: var(--serif);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding-right: 1rem;
}
.process-step h3 { font-size: 1.4rem; margin-top: 0.4rem; }
.process-step p { font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.8rem; }

/* =========================================================
   Contact
   ========================================================= */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 1.4rem; }
.contact-info .lead { margin-top: 1.4rem; }
.contact-detail {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.contact-detail .row { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-detail .ic {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--emerald);
}
.contact-detail .row .label {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone);
}
.contact-detail .row .val { font-size: 1.1rem; margin-top: 0.2rem; color: var(--ink); }
.contact-detail .row a.val:hover { color: var(--gold); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 0.6rem;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  transition: border 0.4s var(--ease), background 0.4s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.form-card .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-note {
  font-size: 0.78rem;
  color: var(--stone);
  margin-top: 1.2rem;
  text-align: center;
}
.form-success {
  display: none;
  background: var(--emerald);
  color: var(--cream);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
  font-size: 0.92rem;
}
.form-success.show { display: block; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--navy-deep);
  color: rgba(247,243,234,0.72);
  padding-top: clamp(4rem, 8vw, 6rem);
  border-top: 3px solid transparent;
  border-image: var(--logo-gradient) 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line-light);
}
.footer-logo {
  display: inline-flex;
  background: #fffdf8;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.4rem;
}
.footer-logo img { height: 76px; width: auto; }
.footer-brand .brand-name {
  font-family: var(--serif); font-size: 1.7rem; color: var(--cream);
}
.footer-brand .brand-sub {
  font-size: 0.58rem; letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold-bright); margin-top: 6px;
}
.footer-brand p { margin-top: 1.4rem; max-width: 34ch; font-size: 0.92rem; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.footer-col ul li { margin-bottom: 0.85rem; }
.footer-col a { font-size: 0.92rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 2rem;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}
.footer-bottom .socials { display: flex; gap: 1.4rem; }

/* =========================================================
   Lightbox
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(12,10,7,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
  padding: 2rem;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(0.96);
  transition: transform 0.5s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox .lb-caption {
  position: absolute; bottom: 2.4rem; left: 0; right: 0;
  text-align: center; color: var(--cream);
  font-family: var(--serif); font-size: 1.3rem; letter-spacing: 0.04em;
}
.lb-close, .lb-nav {
  position: absolute;
  background: transparent; border: 1px solid var(--line-light);
  color: var(--cream);
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  transition: all 0.4s var(--ease);
}
.lb-close { top: 1.6rem; right: 1.6rem; }
.lb-nav.prev { left: 1.6rem; top: 50%; transform: translateY(-50%); }
.lb-nav.next { right: 1.6rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-nav:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* =========================================================
   Mobile menu overlay
   ========================================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  clip-path: circle(0% at calc(100% - 46px) 46px);
  transition: clip-path 0.7s var(--ease);
  pointer-events: none;
}
body.menu-open .mobile-menu {
  clip-path: circle(150% at calc(100% - 46px) 46px);
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3rem);
  color: var(--cream);
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s var(--ease);
}
body.menu-open .mobile-menu a { opacity: 1; transform: translateY(0); }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: 0.18s; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 0.24s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 0.30s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 0.36s; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: 0.42s; }
.mobile-menu a:hover { color: var(--gold-bright); }
.mobile-menu .mm-contact {
  margin-top: 2.5rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.5s;
}
body.menu-open .mobile-menu .mm-contact { opacity: 1; }
.mobile-menu .mm-contact a {
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: block;
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .statement .grid,
  .about-story .grid,
  .contact-wrap { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .exp-grid, .event-grid { grid-template-columns: repeat(2, 1fr); }
  .event-services { grid-template-columns: 1fr; }
  .statement-figure { max-width: 480px; }
  .journey { grid-template-columns: 0.5fr 2fr auto; }
  .journey .j-desc { display: none; }
}

@media (max-width: 760px) {
  :root { --header-h: 70px; }
  .nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card, .dest-card.wide { grid-column: 1 / -1; min-height: 380px; }
  .dest-card.tall { min-height: 380px; }
  .dest-card .desc { max-height: 120px; opacity: 1; }
  .value-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .exp-grid, .event-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr auto; gap: 1rem; }
  .journey .j-no { display: none; }
  .statement-figure .badge { left: 0; }
  .hero-meta { gap: 1.6rem; }
}

/* =========================================================
   Events and Celebrations
   ========================================================= */
.events { background: var(--cream); scroll-margin-top: 96px; }
.event-services {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.event-service {
  background: var(--cream);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  transition: background 0.5s var(--ease);
}
.event-service:hover { background: #fff; }
.event-service .es-no {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.event-service .icon { display: block; width: 38px; height: 38px; color: var(--gold); }
.event-service .icon svg { width: 100%; height: 100%; }
.event-service h3 { font-size: 1.6rem; margin-top: 1rem; color: var(--ink); }
.event-service p { margin-top: 0.8rem; font-size: 0.95rem; color: var(--ink-soft); }
