/* =============================================================
   VinYoga · Serene Minimal v2
   Lora body (warm, readable). Cormorant heads. Inter UI.
   Subtle scroll graphics. Lazy-loading video tiles.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bg:        #FAF7F0;
  --bg-alt:    #F1ECDD;
  --bg-deep:   #E9E1CC;
  --ink:       #232722;        /* slightly darker for AA contrast on cream */
  --ink-soft:  #3F4439;
  --muted:     #797A71;
  --sage:      #8FA585;
  --sage-deep: #5C7355;
  --sage-soft: #C5D1B7;
  --gold:      #C9A55C;
  --gold-soft: rgba(201, 165, 92, 0.32);
  --line:      rgba(63, 68, 57, 0.14);
  --line-soft: rgba(63, 68, 57, 0.07);

  --header-h: 84px;

  --serif-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --serif-body:    'Lora', Georgia, serif;
  --sans:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.2, .6, .2, 1);
  --ease-soft: cubic-bezier(.4, .02, .12, 1);
  --shadow-soft: 0 1px 0 var(--line), 0 24px 48px -32px rgba(35, 39, 34, 0.18);
  --shadow-lift: 0 22px 60px -24px rgba(35, 39, 34, 0.22);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--serif-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media (min-width: 1100px) {
  body { font-size: 18px; }
}

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

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

button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

::selection { background: var(--sage-soft); color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; z-index: 10000; border-radius: 2px;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif-display);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin: 0 0 0.55em;
}

h1 { font-size: clamp(48px, 7.5vw, 88px); font-weight: 300; letter-spacing: -0.025em; line-height: 1.06; }
h2 { font-size: clamp(34px, 4.6vw, 52px); font-weight: 400; letter-spacing: -0.015em; }
h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 500; }
h4 { font-size: 19px; font-weight: 500; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--sage-deep); font-weight: 300; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* Lora body needs slight letter-spacing relaxation at small sizes */
body, p, li, blockquote, dd { letter-spacing: 0.005em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 18px;
}
.eyebrow.centered { text-align: center; }

.lede { font-size: 20px; color: var(--ink-soft); line-height: 1.7; }
.section-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.7;
}
.section-head.centered .section-lede { margin-left: auto; margin-right: auto; }

.text-link {
  position: relative;
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sage-deep);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: border-color 300ms var(--ease), color 300ms var(--ease);
}
.text-link:hover { color: var(--ink); border-bottom-color: var(--sage-deep); }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

.section {
  padding: clamp(80px, 12vw, 144px) 0;
  position: relative;
  overflow: hidden;
}
.section.alt { background: var(--bg-alt); }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- Section ornaments (subtle SVG marks) ---------- */
.section-ornament {
  display: block;
  width: 64px;
  height: auto;
  margin: 0 auto clamp(28px, 4vw, 44px);
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1200ms var(--ease), transform 1200ms var(--ease);
}
.section-ornament.is-visible { opacity: 0.7; transform: translateY(0); }

/* Soft drifting petal motif in section backgrounds */
.section-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.section-petals svg {
  position: absolute;
  opacity: 0.12;
  color: var(--sage);
  animation: drift 28s ease-in-out infinite alternate;
}
.section-petals svg:nth-child(1) { top: 8%; left: 4%; width: 120px; animation-duration: 32s; }
.section-petals svg:nth-child(2) { top: 60%; right: 6%; width: 90px; opacity: 0.08; color: var(--gold); animation-duration: 38s; animation-delay: -6s; }
.section-petals svg:nth-child(3) { bottom: 10%; left: 18%; width: 70px; opacity: 0.09; animation-duration: 44s; animation-delay: -12s; }

@keyframes drift {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(24px, -32px) rotate(8deg); }
}

.section .container { position: relative; z-index: 1; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  padding: 0 clamp(20px, 5vw, 56px);
  background: rgba(250, 247, 240, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 300ms var(--ease), background 300ms var(--ease), height 200ms var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 247, 240, 0.96);
  border-bottom-color: var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.brand-name {
  font-family: var(--serif-display);
  font-size: 23px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.primary-nav {
  display: flex; align-items: center; gap: clamp(12px, 2.4vw, 30px);
}
.primary-nav a {
  position: relative;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.015em;
  padding: 6px 0;
  transition: color 250ms var(--ease);
}
.primary-nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--sage-deep);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 350ms var(--ease);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a.is-active { color: var(--ink); }
.primary-nav a.is-active::after { transform: scaleX(1); }

.primary-nav a.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  margin-left: 8px;
  transition: background 250ms var(--ease), color 250ms var(--ease);
}
.primary-nav a.nav-cta::after { display: none; }
.primary-nav a.nav-cta:hover { background: var(--ink); color: var(--bg); }
.primary-nav a.nav-cta.is-active { background: var(--ink); color: var(--bg); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 300ms var(--ease), opacity 200ms var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 32px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 300ms var(--ease), opacity 250ms var(--ease);
  }
  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 16px;
  }
  .primary-nav a::after { display: none; }
  .primary-nav a.nav-cta {
    margin-top: 16px; margin-left: 0;
    text-align: center; border-radius: 999px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: all 300ms var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-primary {
  background: var(--ink); color: var(--bg);
  border: 1px solid var(--ink);
}
.btn-primary:hover { background: var(--sage-deep); border-color: var(--sage-deep); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(72px, 12vw, 144px) clamp(20px, 5vw, 56px) clamp(40px, 8vw, 80px);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(143, 165, 133, 0.18), transparent 70%),
    var(--bg);
  position: relative;
  overflow: hidden;
}

/* Floating decorative dots in hero */
.hero-dots {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-dots span {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.18;
  animation: floaty 14s ease-in-out infinite alternate;
}
.hero-dots span:nth-child(1) { width: 8px; height: 8px; top: 18%; left: 8%; animation-duration: 18s; }
.hero-dots span:nth-child(2) { width: 6px; height: 6px; top: 28%; right: 12%; background: var(--sage); opacity: 0.22; animation-duration: 22s; animation-delay: -4s; }
.hero-dots span:nth-child(3) { width: 4px; height: 4px; bottom: 22%; left: 18%; animation-duration: 16s; animation-delay: -7s; }
.hero-dots span:nth-child(4) { width: 5px; height: 5px; top: 60%; right: 22%; background: var(--sage-deep); opacity: 0.16; animation-duration: 26s; animation-delay: -10s; }
.hero-dots span:nth-child(5) { width: 3px; height: 3px; top: 12%; left: 44%; animation-duration: 20s; animation-delay: -2s; }

@keyframes floaty {
  0%   { transform: translate(0,0); }
  100% { transform: translate(20px, -28px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.hero-title {
  margin-top: 8px;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.hero-title em { font-weight: 300; }

.hero-lede {
  font-family: var(--serif-body);
  font-size: clamp(18px, 1.6vw, 21px);
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 24px auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-meta {
  display: inline-flex; align-items: center;
  gap: clamp(20px, 4vw, 48px);
  margin: 0 auto;
  padding: 24px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta div { text-align: left; }
.hero-meta dt {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.hero-meta dd {
  margin: 0;
  font-family: var(--serif-display);
  font-size: 19px;
  color: var(--ink);
}
.meta-divider {
  width: 1px; height: 32px;
  background: var(--line);
}
@media (max-width: 600px) {
  .meta-divider { display: none; }
  .hero-meta { gap: 18px; padding: 22px 20px; }
}

/* Hero pose strip — now mixes images + a video tile */
.hero-pose-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 24px);
  max-width: 1280px;
  margin: clamp(56px, 8vw, 96px) auto 0;
  padding: 0 clamp(20px, 5vw, 56px);
  position: relative;
  z-index: 1;
}
.hero-pose-strip figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  /* parallax target */
  will-change: transform;
}
.hero-pose-strip img,
.hero-pose-strip video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
  transition: transform 1200ms var(--ease), filter 600ms var(--ease);
}
.hero-pose-strip figure:hover img,
.hero-pose-strip figure:hover video { transform: scale(1.04); filter: saturate(1); }
.hero-pose-strip figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--serif-display);
  font-size: 19px;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

/* ---------- About ---------- */
.section-about .col-text .pull-quote {
  margin: 36px 0 28px;
  padding: 26px 30px;
  border-left: 2px solid var(--sage);
  background: var(--bg-alt);
  font-family: var(--serif-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
}
.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-style: normal;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.col-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}
.card-portrait {
  width: 100px; height: 100px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.card-portrait img { width: 100%; height: 100%; object-fit: cover; }

.card-eyebrow {
  text-align: center;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 16px;
}
.discipline-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
}
.discipline-list li {
  font-family: var(--serif-display);
  font-size: 18px;
  color: var(--ink);
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
}

.card-divider { height: 1px; background: var(--line); margin: 28px 0; }

.card-stats { display: grid; gap: 18px; margin: 0; }
.card-stats dt {
  font-family: var(--serif-display);
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 2px;
}
.card-stats dd {
  margin: 0;
  font-family: var(--serif-body);
  font-size: 14.5px;
  color: var(--muted);
}

/* About — small inset video for the studio opening */
.about-inset {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.inset-video-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
}
.inset-video {
  width: 92px;
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.inset-video video, .inset-video img { width: 100%; height: 100%; object-fit: cover; }
.inset-video-text strong {
  display: block;
  font-family: var(--serif-display);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.inset-video-text small {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.inset-video-text p {
  margin: 8px 0 0;
  font-size: 15px;
  font-family: var(--serif-body);
  color: var(--ink-soft);
}

/* ---------- Classes ---------- */
.class-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: clamp(56px, 8vw, 88px);
}
.class-tile {
  background: var(--bg-alt);
  padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column;
  gap: 8px;
  transition: background 300ms var(--ease);
}
.class-tile:hover { background: var(--bg); }
.class-tile .tile-num {
  font-family: var(--serif-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.class-tile .tile-label {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.class-tile strong {
  font-family: var(--serif-display);
  font-size: 23px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.class-tile small {
  font-family: var(--serif-body);
  font-size: 14.5px;
  color: var(--ink-soft);
}
@media (max-width: 880px) { .class-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .class-grid { grid-template-columns: 1fr; } }

/* Class-in-action video strip */
.class-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
.class-video {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.class-video video, .class-video img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 1200ms var(--ease), filter 600ms var(--ease);
}
.class-video:hover video, .class-video:hover img { transform: scale(1.03); filter: saturate(1); }
.class-video::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(35, 39, 34, 0.55));
  pointer-events: none;
}
.class-video figcaption {
  position: absolute; left: 22px; bottom: 18px; right: 22px;
  z-index: 1;
}
.class-video figcaption strong {
  display: block;
  font-family: var(--serif-display);
  font-size: 20px;
  font-style: italic;
  color: #fff;
  margin-bottom: 4px;
}
.class-video figcaption small {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
@media (max-width: 700px) { .class-action-grid { grid-template-columns: 1fr; } }

/* ---------- Benefits + featured testimonial ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(64px, 9vw, 112px);
}
.benefit { text-align: center; padding: clamp(28px, 4vw, 48px) 24px; }
.benefit-mark {
  display: inline-block; font-size: 26px; color: var(--gold);
  margin-bottom: 24px;
}
.benefit h3 { margin-bottom: 12px; }
.benefit p { color: var(--ink-soft); margin: 0; font-size: 16px; }
@media (max-width: 800px) { .benefit-grid { grid-template-columns: 1fr; } }

/* Featured testimonial — Mrs Raveena video */
.testimonial-feature {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px);
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.testimonial-feature::before {
  content: '"';
  position: absolute;
  top: -28px; right: 24px;
  font-family: var(--serif-display);
  font-size: 220px;
  line-height: 1;
  color: var(--gold-soft);
  opacity: 0.5;
  pointer-events: none;
}
.tf-video-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow-lift);
  cursor: pointer;
}
.tf-video-wrap video, .tf-video-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.tf-video-wrap .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex; align-items: center; justify-content: center;
  transition: transform 300ms var(--ease), background 300ms var(--ease);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  border: 0;
}
.tf-video-wrap .play-btn::after {
  content: '';
  width: 0; height: 0;
  border-left: 18px solid var(--ink);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.tf-video-wrap:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.tf-video-wrap.is-playing .play-btn { opacity: 0; pointer-events: none; }

.tf-text { position: relative; z-index: 1; }
.tf-quote {
  font-family: var(--serif-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 24px;
}
.tf-meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 6px;
}
.tf-name {
  font-family: var(--serif-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.tf-role {
  font-family: var(--serif-body);
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 800px) {
  .testimonial-feature { grid-template-columns: 1fr; padding: 28px; }
  .tf-video-wrap { max-width: 320px; margin: 0 auto; }
}

/* Smaller testimonial cards below the feature */
.testimonial-grid {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.testimonial-grid figure {
  margin: 0;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.testimonial-grid blockquote {
  margin: 0 0 16px;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
}
.testimonial-grid blockquote::before {
  content: '"';
  display: block;
  font-size: 38px;
  line-height: 0.8;
  color: var(--sage);
  margin-bottom: 10px;
}
.testimonial-grid figcaption {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 800px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}
.gallery-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-deep);
  aspect-ratio: 4 / 5;
}
.gallery-card img,
.gallery-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 1200ms var(--ease), filter 600ms var(--ease);
}
.gallery-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(35, 39, 34, 0.55));
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.gallery-card figcaption {
  position: absolute; left: 18px; bottom: 14px;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 17px;
  color: #fff;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
  z-index: 1;
}
.gallery-card.video-tile::before {
  content: '';
  position: absolute;
  top: 14px; right: 14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  z-index: 1;
  background-image: linear-gradient(135deg, transparent 38%, var(--ink) 38% 62%, transparent 62%);
  /* simple play triangle hint */
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  transition: opacity 300ms var(--ease);
}
.gallery-card.video-tile.is-playing::before { opacity: 0; }
.gallery-card:hover img,
.gallery-card:hover video { transform: scale(1.05); filter: saturate(1); }
.gallery-card:hover::after { opacity: 1; }
.gallery-card:hover figcaption { opacity: 1; transform: translateY(0); }
@media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Instagram feed ---------- */
.instagram-row {
  position: relative;
  margin-top: clamp(72px, 10vw, 112px);
  padding: clamp(56px, 8vw, 88px) clamp(24px, 5vw, 56px);
  border-radius: 6px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(143, 165, 133, 0.10), transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(201, 165, 92, 0.10), transparent 70%),
    var(--bg);
  border: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}
/* Subtle Instagram-flavored gradient ribbon */
.instagram-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--sage) 25%,
    var(--gold) 50%,
    var(--sage-deep) 75%,
    transparent 100%
  );
  opacity: 0.5;
}

.ig-header { max-width: 620px; margin: 0 auto clamp(40px, 6vw, 64px); }
.ig-icon {
  width: 44px; height: 44px;
  margin: 0 auto 24px;
  color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
}
.ig-icon svg { width: 22px; height: 22px; }

.ig-handle {
  font-family: var(--serif-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  margin: 8px 0 16px;
}
.ig-handle a {
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 2px;
  transition: color 250ms var(--ease), border-color 250ms var(--ease);
}
.ig-handle a:hover {
  color: var(--sage-deep);
  border-bottom-color: var(--sage-deep);
  border-bottom-style: solid;
}

.ig-tagline {
  font-family: var(--serif-body);
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ig-follow-btn span {
  display: inline-block;
  font-size: 14px;
  transition: transform 300ms var(--ease);
}
.ig-follow-btn:hover span { transform: translate(2px, -2px); }

.reel-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  margin: 12px 0 0;
  letter-spacing: -0.01em;
}

/* Mount point for an embedded auto-feed widget (SnapWidget/Elfsight/etc.) */
.ig-auto-feed {
  margin-top: clamp(28px, 4vw, 48px);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 20px);
  text-align: left;
  margin: 0 auto;
  max-width: 1080px;
}
.reel-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  min-height: 360px;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease), border-color 400ms var(--ease);
}
.reel-card:hover {
  transform: translateY(-4px);
  border-color: var(--sage-soft);
  box-shadow: var(--shadow-soft);
}
.reel-card .instagram-media { margin: 0 !important; min-width: 0 !important; }

.ig-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(36px, 5vw, 56px);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sage-deep);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: color 250ms var(--ease), border-color 250ms var(--ease);
}
.ig-view-all:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

@media (max-width: 1000px) { .reel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .reel-grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .reel-card { min-height: 420px; } }

/* ---------- Articles ---------- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 36px);
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease), border-color 400ms var(--ease);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--sage-soft);
}
.article-meta {
  display: flex; justify-content: space-between;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.article-meta span:first-child { color: var(--sage-deep); }
.article-card h3 {
  margin-bottom: 14px;
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.3;
}
.article-card p {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--ink-soft);
}
@media (max-width: 880px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .article-grid { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  margin-bottom: 32px;
}
@media (max-width: 1100px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column;
  transition: transform 400ms var(--ease), border-color 400ms var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--sage);
}
.service-card.featured {
  background: var(--ink);
  color: rgba(255,255,255,0.86);
  border-color: var(--ink);
}
.service-card.featured h3,
.service-card.featured .service-num { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,0.82); }
.service-card.featured .service-list li { color: rgba(255,255,255,0.78); }
.service-card.featured .service-list li::before { background: var(--sage-soft); }
.service-card.featured .btn-primary {
  background: var(--sage); border-color: var(--sage); color: var(--ink);
}
.service-card.featured .btn-primary:hover { background: #fff; border-color: #fff; }

.service-num {
  font-family: var(--serif-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.service-card h3 { margin-bottom: 14px; }
.service-card p { font-size: 15.5px; line-height: 1.7; }

.service-list {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
}
.service-list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--serif-body);
  font-size: 14.5px;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.service-list li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 10px; height: 1px;
  background: var(--sage-deep);
}

.price {
  font-family: var(--serif-display);
  font-size: 34px;
  color: var(--ink);
  margin: 16px 0 18px;
  font-weight: 500;
}
.service-card.featured .price { color: var(--sage-soft); }

.services-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  font-style: italic;
}

/* Razorpay payment CTA */
.service-pay {
  align-self: flex-start;
  margin-top: auto;
}
.service-pay .pay-arrow {
  display: inline-block;
  font-size: 13px;
  margin-left: 4px;
  transition: transform 300ms var(--ease);
}
.service-pay:hover .pay-arrow { transform: translate(2px, -2px); }

.service-pay-note {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.service-card:not(.featured) .service-pay-note { color: var(--muted); }
.service-pay-note a {
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  padding-bottom: 1px;
  transition: color 250ms var(--ease), border-color 250ms var(--ease);
}
.service-card:not(.featured) .service-pay-note a {
  color: var(--sage-deep);
  border-bottom-color: var(--line);
}
.service-pay-note a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.service-card:not(.featured) .service-pay-note a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* Service responsive: handled by the 4/2/1 column rules at .service-grid above */

/* ---------- Hero brand line (proper-cased, replaces uppercase eyebrow at top of hero) ---------- */
.hero-brandline {
  font-family: var(--serif-display);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--sage-deep);
  margin: 0 0 18px;
  text-align: center;
}
.hero-brandline span {
  display: inline-block;
  margin: 0 8px;
  color: var(--gold);
  font-style: normal;
  transform: translateY(-1px);
}

/* ---------- Coming-soon service card variant ---------- */
.service-card.coming-soon {
  background: var(--bg-alt);
  border-style: dashed;
  border-color: var(--line);
  position: relative;
}
.service-card.coming-soon:hover {
  border-color: var(--sage-soft);
  transform: translateY(-2px);
}
.service-card.coming-soon h3 { color: var(--ink); }
.service-card.coming-soon p { color: var(--ink-soft); }
.service-card.coming-soon .service-num { color: var(--muted); }
.service-card.coming-soon .service-list li { color: var(--muted); }
.service-card.coming-soon .service-list li::before { background: var(--muted); }

.coming-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 165, 92, 0.08);
  padding: 5px 11px;
  border: 1px solid rgba(201, 165, 92, 0.35);
  border-radius: 999px;
  margin-bottom: 14px;
  margin-top: -4px;
}

.coming-price {
  font-family: var(--serif-display);
  font-size: 22px;
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
}

/* ---------- Contact pending placeholder ---------- */
.contact-pending {
  font-family: var(--serif-display);
  font-size: 18px;
  font-style: italic;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact-cols { align-items: center; }
.contact-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-list li {
  background: var(--bg);
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  padding: 22px 4px;
  gap: 16px;
}
.contact-label {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-list a {
  font-family: var(--serif-display);
  font-size: 20px;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 250ms var(--ease), color 250ms var(--ease);
  word-break: break-word;
}
.contact-list a:hover {
  border-bottom-color: var(--sage-deep);
  color: var(--sage-deep);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 48px 0 56px;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-mark {
  font-family: var(--serif-display);
  font-size: 19px;
  color: var(--ink);
  margin: 0;
}
.footer-mantra {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.footer-meta {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1000ms var(--ease), transform 1000ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left { transform: translateX(-24px); }
.reveal-left.is-visible { transform: translateX(0); }
.reveal-right { transform: translateX(24px); }
.reveal-right.is-visible { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .hero-dots span, .section-petals svg { animation: none; }
}
