/* ============================================================
   AumGram Ayurveda — design tokens
   Palette: copper (mortar & pestle, treatment vessels) + moss
   (alpine pine) on a warm parchment ground, ink for read-text.
   Display: Fraunces (warm, wonky serif) / Body+UI: Jost
   Signature: triangular zigzag trim, echoing the toran border
   in the logo mark and Alpine chalet bargeboards.
   ============================================================ */

:root {
  --ink: #211d16;
  --parchment: #f1e6cf;
  --parchment-2: #e8d9b8;
  --cream: #fbf6ec;
  --copper: #a3572c;
  --copper-dark: #7e3f1e;
  --moss: #3c4a2e;
  --moss-dark: #262f1c;
  --gold: #c99a4d;

  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Jost", "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 2px;
}

/* Add near the top, right after the * box-sizing block */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

em {
  font-style: italic;
}

h1,
h2,
h3 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

p {
  margin: 0 0 1em;
}

.lead {
  font-size: 1.15rem;
  color: #4b4436;
}

.eyebrow {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 600;
  color: var(--copper);
  margin: 0 0 .9em;
  display: flex;
  align-items: center;
  gap: .6em;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--copper);
  display: inline-block;
}

.eyebrow-light {
  color: var(--gold);
}

.eyebrow-light::before {
  background: var(--gold);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .03em;
  padding: 15px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

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

.btn-solid {
  background: var(--copper);
  color: var(--cream);
}

.btn-solid:hover {
  background: var(--copper-dark);
}

.btn-line {
  border-color: currentColor;
  color: var(--ink);
  background: transparent;
}

.btn-line:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-line-light {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-line-light:hover {
  background: var(--gold);
  color: var(--moss-dark);
}

.btn-full {
  width: 100%;
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============ NAV ============ */
.site-nav {
  /* position: sticky; */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgb(241, 230, 207);
  box-shadow: 0 2px 18px rgba(33, 29, 22, .08);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}

.site-nav.scrolled {
  background: rgb(241, 230, 207);
  box-shadow: 0 2px 18px rgba(33, 29, 22, .08);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: auto;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  padding: 8px;
  background: rgba(251, 246, 236, .98);
  box-shadow: 0 2px 10px rgba(20, 17, 11, .16);
  border: 2px solid var(--gold);
  flex-shrink: 0;
  transition: box-shadow .35s ease, width .35s ease, height .35s ease;
}

.brand img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.site-nav.scrolled .brand-mark {
  width: 66px;
  height: 66px;
  box-shadow: 0 2px 10px rgba(20, 17, 11, .16);
}

.brand span {
  font-family: var(--f-display);
  /* font-size: 2rem; */
  font-size: 26px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  transition: color .35s ease;
}

.brand span em {
  font-style: normal;
  font-size: .66rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-family: var(--f-body);
  /* color: var(--gold); */
}

.site-nav.scrolled .brand span {
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  /*font-size: .85rem; */
  font-size: 15px;
  letter-spacing: .03em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .35s ease;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width .3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  color: var(--ink);
  border-color: var(--ink);
  padding: 11px 22px;
}

.site-nav.scrolled .nav-cta {
  color: var(--ink);
  border-color: var(--ink);
}

.site-nav.scrolled .nav-cta:hover {
  color: var(--cream);
}

.nav-burger {
  position: relative;
  z-index: 101;
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: background .35s ease, transform .35s ease, opacity .35s ease;
}

.site-nav.scrolled .nav-burger span {
  background: var(--ink);
}

.site-nav.menu-open .nav-burger span {
  /* background: var(--ink); */
  background: var(--cream);
}

.site-nav.menu-open .brand {
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.site-nav.menu-open .nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.menu-open .nav-burger span:nth-child(2) {
  opacity: 0;
}

.site-nav.menu-open .nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  position: relative;
  z-index: 101;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: calc(100vh - 88px);
  min-height: 560px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 25, 15, .55) 0%, rgba(33, 25, 15, .25) 38%, rgba(33, 25, 15, .75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero .eyebrow::before {
  background: var(--gold);
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  color: rgba(251, 246, 236, .88);
  font-size: 1.15rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-play {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: 0;
  color: var(--cream);
  font-family: var(--f-body);
  font-size: .9rem;
  letter-spacing: .03em;
  cursor: pointer;
}

.play-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(251, 246, 236, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-ring i {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--cream);
  margin-left: 3px;
}

.play-ring::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(251, 246, 236, .35);
  animation: pulse 2.6s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(.85);
    opacity: .9;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(251, 246, 236, .8);
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 1px;
  height: 34px;
  background: rgba(251, 246, 236, .6);
  position: relative;
  overflow: hidden;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    top: -100%;
  }

  60% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

/* ============ SPOTLIGHT (hero reel + featured retreat) ============ */
.spotlight {
  background: var(--parchment);
  padding: 100px 0;
  /* padding: 100px 0 10px 0; */
}

/* .spotlight-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
} */

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  /* padding: 30px; */
  /* background: #fff; */
  /* border-radius: 10px; */
}

.spotlight-media {
  position: relative;
}

.spotlight-zoom {
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(163, 87, 44, .18);
  box-shadow: 0 22px 46px rgba(33, 29, 22, .18);
}

.spotlight-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: spotlightBreathe 9s ease-in-out infinite;
  transition: transform .6s ease;
}

.spotlight-media:hover .spotlight-zoom img {
  transform: scale(1.14);
  animation-play-state: paused;
}

@keyframes spotlightBreathe {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

.spotlight-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--cream);
  font-family: var(--f-body);
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.spotlight-play .play-ring {
  width: 74px;
  height: 74px;
  border-color: rgba(251, 246, 236, .85);
  background: rgba(20, 17, 11, .28);
}

.spotlight-play .play-ring i {
  border-left-color: var(--cream);
}

.spotlight-play:hover .play-ring {
  background: var(--copper);
  border-color: var(--copper);
}

.spotlight-copy .eyebrow {
  color: var(--copper);
}

.spotlight-copy h2 {
  margin-bottom: .35em;
}

.spotlight-copy h2 em {
  font-style: italic;
  color: var(--copper);
}

.spotlight-venue {
  border-top: 1px solid rgba(33, 29, 22, .15);
  border-bottom: 1px solid rgba(33, 29, 22, .15);
  margin: 22px 0 28px;
  padding: 18px 0;
  display: grid;
  gap: 9px;
}

.spotlight-venue p {
  margin: 0;
  font-size: .9rem;
  color: #4b4436;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.spotlight-venue i {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  display: inline-block;
  position: relative;
}

.spotlight-venue .ico-pin::before,
.spotlight-venue .ico-phone::before {
  border-color: var(--copper);
}

.spotlight-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ============ SIGNATURE TRIM ============ */
.trim {
  height: 26px;
  background: var(--copper);
  clip-path: polygon(0% 0%, 0.0% 0%, 3.571% 100%, 7.143% 0%, 10.714% 100%, 14.286% 0%, 17.857% 100%, 21.429% 0%, 25.0% 100%, 28.571% 0%, 32.143% 100%, 35.714% 0%, 39.286% 100%, 42.857% 0%, 46.429% 100%, 50.0% 0%, 53.571% 100%, 57.143% 0%, 60.714% 100%, 64.286% 0%, 67.857% 100%, 71.429% 0%, 75.0% 100%, 78.571% 0%, 82.143% 100%, 85.714% 0%, 89.286% 100%, 92.857% 0%, 96.429% 100%, 100.0% 0%, 100% 0%);
}

.trim-dark {
  background: var(--gold);
}

/* ============ ABOUT ============ */
.about {
  /* background: var(--parchment); */
  padding: 110px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 76px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
}

.seal {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 30px rgba(33, 29, 22, .35);
  border: 1px solid var(--gold);
}

.seal-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
}

.seal-label {
  font-size: .68rem;
  letter-spacing: .08em;
  margin-top: 4px;
  line-height: 1.3;
}

.seal-alt {
  right: auto;
  left: -28px;
  top: -28px;
  bottom: auto;
  background: var(--copper);
  border-color: var(--cream);
}

.seal-alt .seal-num {
  color: var(--cream);
}

.about-copy h2 {
  max-width: 480px;
}

.about-copy h2 em {
  font-style: italic;
  color: var(--copper);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 28px 0 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(33, 29, 22, .15);
}

.about-points div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-points strong {
  font-family: var(--f-display);
  font-size: 1.05rem;
}

.about-points span {
  font-size: .85rem;
  color: #5c5546;
}

.phone-line {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.phone-line span {
  font-size: .85rem;
  color: #5c5546;
}

.phone-line strong {
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 1.05rem;
}

/* ============ KITCHEN (Taste of Ayurveda) ============ */
.kitchen {
  background: var(--moss-dark);
  color: var(--cream);
  padding: 100px 0 120px;
}

.kitchen-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.kitchen h2 {
  color: var(--cream);
  /* max-width: 440px; */
}

.kitchen p {
  color: rgba(251, 246, 236, .82);
  max-width: 480px;
}

.kitchen blockquote {
  margin: 28px 0;
  padding: 22px 0 22px 26px;
  border-left: 2px solid var(--gold);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream);
}

.kitchen blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--f-body);
  font-style: normal;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.menu-tags li {
  font-size: .88rem;
  padding-left: 18px;
  position: relative;
  color: rgba(251, 246, 236, .9);
}

.menu-tags li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.menu-tags li em {
  font-style: italic;
}

.kitchen-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 154, 77, .35);
}

/* ============ RETREATS ============ */
.retreats {
  background: var(--cream);
  padding: 110px 0 120px;
}

.section-head {
  max-width: 620px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head .lead {
  margin: 0 auto;
}

.retreat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.retreat-card {
  background: var(--parchment);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0 0 34px;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
  border-top: 4px solid var(--copper);
}

.retreat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(33, 29, 22, .14);
}

.retreat-card--featured {
  border-top-color: var(--gold);
  background: var(--ink);
  color: var(--cream);
}

.retreat-card--featured h3 {
  color: var(--cream);
}

.retreat-card--featured p {
  color: rgba(251, 246, 236, .75);
}

.retreat-img {
  height: 220px;
  overflow: hidden;
}

.retreat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.retreat-card:hover .retreat-img img {
  transform: scale(1.07);
}

.retreat-tag {
  display: inline-block;
  margin: 22px 30px 6px;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}

.retreat-card--featured .retreat-tag {
  color: var(--gold);
}

.retreat-card h3 {
  margin: 0 30px .5em;
}

.retreat-card p {
  margin: 0 30px 1.3em;
  font-size: .92rem;
  color: #5c5546;
}

.retreat-card--featured p {
  color: #fff;
}

.card-link {
  margin: 0 30px;
  font-size: .85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--copper);
}

.retreat-card--featured .card-link {
  color: var(--gold);
}

.card-link i {
  font-style: normal;
  transition: transform .25s ease;
}

.card-link:hover i {
  transform: translateX(4px);
}

/* ============ GALLERY ============ */
.gallery {
  background: var(--parchment);
  padding: 110px 0 100px;
}

.gallery-carousel {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-viewport {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-viewport {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(360px, 78vw);
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
}

.carousel-slide .g-link {
  width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.carousel-slide:hover img {
  transform: scale(1.06);
}

.carousel-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(33, 29, 22, .2);
  background: var(--cream);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.carousel-arrow:hover {
  background: var(--copper);
  color: var(--cream);
  border-color: var(--copper);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(33, 29, 22, .25);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.carousel-dots button.active {
  background: var(--copper);
  transform: scale(1.3);
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  background: var(--cream);
  padding: 100px 0;
}

.testimonial-inner {
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-photo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 26px;
  border: 1px solid var(--gold);
}

.testimonial-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ink);
}

.testimonial-name {
  margin-top: 18px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
}

/* ============ ENQUIRE ============ */
.enquire {
  background: var(--moss);
}

.enquire--page-top {
  padding-top: 90px;
}

.enquire-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.enquire-call {
  padding: 100px 60px 100px 32px;
  color: var(--cream);
}

.enquire-call h2 {
  color: var(--cream);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.enquire-call p {
  color: rgba(251, 246, 236, .8);
  max-width: 340px;
}

.tel-big {
  display: block;
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--gold);
  margin: 18px 0 22px;
}

.enquire-form {
  background: var(--moss-dark);
  padding: 100px 32px 100px 60px;
}

.enquire-form h3 {
  color: var(--cream);
  margin-bottom: 26px;
}

.field {
  margin-bottom: 16px;
}

.field input,
.field select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(251, 246, 236, .25);
  background: rgba(251, 246, 236, .06);
  color: var(--cream);
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: .92rem;
}

.field select option {
  color: var(--ink);
}

.field input::placeholder {
  color: rgba(251, 246, 236, .55);
}

.field input:focus,
.field select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  background: rgba(251, 246, 236, .1);
}

.form-note {
  text-align: center;
  font-size: .78rem;
  color: rgba(251, 246, 236, .6);
  margin: 14px 0 0;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: rgba(251, 246, 236, .75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand img {
  height: 80px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1) opacity(0.9);
}

.footer-brand p {
  font-size: .88rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(251, 246, 236, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, border-color .3s ease;
}

.footer-social a:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.footer-col h4 {
  font-family: var(--f-body);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: .9rem;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(251, 246, 236, .12);
  padding: 24px 32px;
  text-align: center;
  font-size: .78rem;
  color: rgba(251, 246, 236, .55);
}

/* simple icon glyphs (no external icon font dependency) */
.ico-instagram,
.ico-facebook,
.ico-youtube {
  width: 16px;
  height: 16px;
  position: relative;
  display: block;
  border: 1.4px solid currentColor;
  border-radius: 4px;
}

.ico-instagram::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.ico-facebook {
  border-radius: 50%;
}

.ico-facebook::after {
  content: "f";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-family: Georgia, serif;
}

.ico-youtube {
  border-radius: 4px;
}

.ico-youtube::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 11, .85);
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 860px;
}

.modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  background: none;
  border: 0;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.modal-frame {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.g-link {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
}

/* ---- Gallery lightbox carousel ---- */
.modal-lightbox .modal-close {
  top: 24px;
  right: 28px;
  z-index: 3;
}

.lightbox-figure {
  position: relative;
  z-index: 2;
  max-width: 920px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0 84px;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  opacity: 0;
  transform: scale(.98);
  transition: opacity .28s ease, transform .28s ease;
}

.lightbox-figure img.show {
  opacity: 1;
  transform: none;
}

.lightbox-figure figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(251, 246, 236, .85);
  font-size: .85rem;
  text-align: center;
}

.lightbox-count {
  color: var(--gold);
  font-family: var(--f-display);
  font-style: italic;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(251, 246, 236, .5);
  background: rgba(20, 17, 11, .35);
  color: var(--cream);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.lightbox-nav:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-to-top:hover {
  background: var(--copper-dark);
}

/* ============ FOCUS STATES ============ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

/* ============ GLOBAL LOCATIONS PAGE ============ */
.nav-links a.is-active {
  color: var(--gold);
}

.locations-header {
  background: var(--ink);
  color: var(--cream);
  padding: 160px 0 70px;
  text-align: center;
}

.locations-header .eyebrow {
  justify-content: center;
}

.locations-header h1 {
  color: var(--cream);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: .4em;
}

.locations-header h1 em {
  font-style: italic;
  color: var(--gold);
}

.locations-header .lead {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(251, 246, 236, .75);
}

.locations {
  background: var(--ink);
  color: var(--cream);
  padding: 0px 0 60px;
}

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

.location-card {
  background: rgba(251, 246, 236, .04);
  border: 1px solid rgba(201, 154, 77, .3);
  border-radius: var(--radius);
  padding: 40px 34px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease;
  position: relative;
}

.location-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.location-flag {
  font-size: 2.2rem;
  margin-bottom: 10px;
  line-height: 1;
}

.location-country {
  font-family: var(--f-body);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

.location-card--india {
  background: rgba(201, 154, 77, .08);
  border-color: var(--gold);
}

.panchakarma-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--copper);
  color: var(--cream);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}

.duration-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}

.pill {
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: .78rem;
  letter-spacing: .04em;
}

.locations-contact-link {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

.locations-contact-link:hover {
  color: var(--cream);
  border-color: var(--cream);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {

  .about-grid,
  .kitchen-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .kitchen-media {
    order: -1;
  }

  .retreat-cards {
    grid-template-columns: 1fr;
  }

  .enquire-grid {
    grid-template-columns: 1fr;
  }

  .enquire-call,
  .enquire-form {
    padding: 70px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .spotlight-zoom {
    height: 340px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-inner {
    padding: 8px 20px;
  }

  .brand-mark {
    width: 64px;
    height: 64px;
  }

  .site-nav.scrolled .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand span {
    font-size: 1rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .site-nav.menu-open .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .site-nav.menu-open .nav-links a {
    color: var(--cream);
    font-size: 1.3rem;
    font-family: var(--f-display);
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .menu-tags {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .carousel-slide {
    height: 320px;
  }

   .seal {
    width: 88px;
    height: 88px;
    right: 4px;
    bottom: 4px;
  }

  .seal-alt {
    right: auto;
    left: 4px;
    top: 4px;
    bottom: auto;
  }

  /* .seal {
    width: 96px;
    height: 96px;
    right: -14px;
    bottom: -14px;
  }

  .seal-alt {
    right: auto;
    left: -14px;
    top: -14px;
    bottom: auto;
  } */

  .lightbox-figure {
    padding: 0 56px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .locations-header {
    padding: 116px 0 56px;
  }

  .spotlight-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .spotlight-actions .btn {
    width: 100%;
  }

  .therapy-row {
    display: inline !important;
    grid-template-columns: .95fr 1.05fr;
    gap: 76px;
    align-items: center;
  }
  .therapy-media img{
    margin-bottom:20px;
  }

  .therapy-copy{
    margin-bottom: 40px;
  }

  .upcoming-grid {
    display: inline !important;
    margin-bottom: 30px !important;
  }

  .spotlight-top {
      padding-top: 130px !important;
  }

  .upcoming-card--confirmed{
    margin-bottom: 20px;
  }

}


/* ============ THERAPIES ============ */
.therapies {
  background: var(--cream);
  padding: 110px 0 100px;
}

.therapy-row {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 76px;
  align-items: center;
}

.therapy-row+.therapy-row {
  margin-top: 90px;
}

.therapy-row--reverse {
  grid-template-columns: 1.05fr .95fr;
}

.therapy-row--reverse .therapy-media {
  order: 2;
}

.therapy-row--reverse .therapy-copy {
  order: 1;
}

.therapy-media img {
  width: 100%;
  /*height: 480px;*/
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(163, 87, 44, .18);
}

.therapy-copy h3 {
  margin-bottom: .35em;
}

.therapy-copy>p {
  color: #4b4436;
}

.therapy-tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--copper);
}

.therapy-subhead {
  font-family: var(--f-body);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 26px 0 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(33, 29, 22, .15);
}

.therapy-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.therapy-list li {
  font-size: .92rem;
  padding-left: 20px;
  position: relative;
  color: #4b4436;
}

.therapy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--copper);
  transform: rotate(45deg);
}

.therapy-list--check li::before {
  background: var(--gold);
}


/* ============ UPCOMING RETREATS ============ */
.upcoming {
  background: var(--ink);
  color: var(--cream);
  padding: 110px 0 110px;
}

.upcoming .eyebrow {
  justify-content: center;
  color: var(--gold);
}

.upcoming .eyebrow::before {
  background: var(--gold);
}

.upcoming .section-head h2 {
  color: var(--cream);
}

.upcoming .section-head .lead {
  color: rgba(251, 246, 236, .72);
}

.upcoming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.upcoming-card {
  background: rgba(251, 246, 236, .04);
  border: 1px solid rgba(201, 154, 77, .3);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease;
}

.upcoming-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.upcoming-card--confirmed {
  background: rgba(201, 154, 77, .08);
  border-color: var(--gold);
}

.upcoming-card--confirmed .upcoming-season {
  color: var(--cream);
  background: var(--copper);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
}

.upcoming-venue {
  border-top: 1px solid rgba(201, 154, 77, .25);
  border-bottom: 1px solid rgba(201, 154, 77, .25);
  margin: 0 0 26px;
  padding: 18px 0;
  text-align: left;
  display: grid;
  gap: 9px;
}

.upcoming-venue p {
  margin: 0;
  font-size: .82rem;
  color: rgba(251, 246, 236, .75);
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.upcoming-venue a {
  color: rgba(251, 246, 236, .85);
}

.upcoming-venue a:hover {
  color: var(--gold);
}

.upcoming-venue i {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  display: inline-block;
  position: relative;
}

.ico-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.4px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.ico-phone::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1.4px solid var(--gold);
  border-radius: 3px;
}

.ico-globe::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.4px solid var(--gold);
  border-radius: 50%;
}

.upcoming-season {
  font-family: var(--f-body);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.upcoming-month {
  font-family: var(--f-display);
  font-size: 2.1rem;
  color: var(--cream);
  margin: 0 0 4px;
}

.upcoming-month span {
  font-style: italic;
  color: var(--copper);
}

.upcoming-year {
  font-family: var(--f-body);
  font-size: .85rem;
  letter-spacing: .1em;
  color: rgba(251, 246, 236, .6);
  margin: 0 0 16px;
}

.upcoming-note {
  font-size: .88rem;
  color: rgba(251, 246, 236, .65);
  margin: 12px 0 28px;
  min-height: 66px;
}

.upcoming-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.upcoming-register {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.upcoming-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--f-body);
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--gold);
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, color .25s ease;
}

.upcoming-link-btn:hover {
  border-color: var(--gold);
}

.upcoming-link-btn.is-copied {
  color: var(--cream);
}

.ico-link {
  width: 14px;
  height: 14px;
  display: inline-block;
  position: relative;
}

.ico-link::before,
.ico-link::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
  top: 3px;
}

.ico-link::before {
  left: 0;
}

.ico-link::after {
  right: 0;
}

.upcoming-partner-note {
  text-align: center;
  max-width: 560px;
  margin: 46px auto 0;
  font-size: .85rem;
  color: rgba(251, 246, 236, .6);
  font-style: italic;
}

.cap-code{
      text-align: center;
}

.spotlight-top{
  padding-top: 150px;
}

.sponsor {
  background: var(--parchment);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
/* .sponsor::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--parchment-2);
  opacity: .6;
} */
.sponsor .wrap {
  position: relative;
  z-index: 1;
}
.sponsor-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.sponsor-head .eyebrow {
  justify-content: center;
}
.sponsor-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}
.sponsor-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--parchment-2);
  border-radius: 6px;
  box-shadow: 0 24px 60px -30px rgba(33, 29, 22, .28);
  padding: 56px 60px;
  text-align: center;
}
.sponsor-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* padding-bottom: 26px; */
  margin-bottom: 26px;
  /* border-bottom: 1px solid var(--parchment-2); */
  width: 100%;
}
.sponsor-logo img {
  height: 72px;
  width: auto;
}
.sponsor-divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
}
.sponsor-text {
  font-family: var(--f-body);
  font-size: 1.02rem;
  line-height: 1.85;
  color: #4b4436;
  max-width: 620px;
  margin: 0 auto;
}
.sponsor-text strong {
  color: var(--copper-dark);
}
@media (max-width: 640px) {
  .sponsor { padding: 64px 0; }
  .sponsor-card { padding: 40px 26px; }
  .sponsor-logo img { height: 56px; }
}

/* ============ TEAM ============ */
.team {
  background: var(--cream);
  padding: 160px 0 60px 0;
}

/* .team-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 44px;
} */

.team-photo {
  grid-column: span 4;
}

.team-copy {
  grid-column: span 8;
}

.team-card {
  grid-column: span 6;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  background: var(--parchment);
  border-radius: 6px;
  overflow: hidden;
  border-top: 4px solid var(--copper);
  box-shadow: 0 24px 60px -34px rgba(33, 29, 22, .3);
  transition: transform .35s ease, box-shadow .35s ease;
  margin-bottom: 30px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(33, 29, 22, .18);
}

.team-photo {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--parchment-2);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.team-card:hover .team-photo img {
  /* transform: scale(1.06); */
}

.team-copy {
  padding: 32px 34px 38px;
}

.team-copy h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}

.team-role {
  font-family: var(--f-body);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin: 0 0 18px;
}

.team-copy p {
  font-family: var(--f-body);
  font-size: .96rem;
  line-height: 1.8;
  color: #4b4436;
  margin: 0 0 16px;
}

.team-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .team { padding: 140px 0 72px 0; }
  .team-grid { gap: 34px; }
  .team-card { grid-column: span 12; }
}

@media (max-width: 640px) {
  .team-card { grid-template-columns: repeat(12, 1fr); }
  .team-photo { grid-column: span 12; aspect-ratio: 4 / 3; height: auto; }
  .team-copy { grid-column: span 12; }
}

@media (max-width: 640px) {
  .team-copy { padding: 26px 24px 30px; }
}
/* ============ GIFT CARDS PAGE ============ */

/* -- hero banner -- */
.gift-hero-banner {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gift-hero-media {
  position: absolute;
  inset: 0;
}

.gift-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.gift-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 25, 15, .68) 0%, rgba(33, 25, 15, .5) 45%, rgba(33, 25, 15, .82) 100%);
}

.gift-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 130px;
  padding-bottom: 90px;
}

.gift-hero-inner h1 {
  color: var(--cream);
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  margin: 10px 0 18px;
}

.gift-hero-lead {
  color: rgba(251, 246, 236, .88);
  max-width: 700px;
  margin: 0 auto;
}

.gift-hero-cta {
  margin-top: 26px;
}

/* -- gift uses grid -- */
.gift-uses {
  background: var(--cream);
  padding: 100px 0 96px;
}

.gift-uses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.gift-use-card {
  background: var(--parchment);
  border: 1px solid rgba(163, 87, 44, .18);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.gift-use-card:hover {
  transform: translateY(-4px);
  border-color: var(--copper);
  box-shadow: 0 14px 30px rgba(33, 29, 22, .1);
}

.gift-use-icon {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.gift-use-card p {
  margin: 0;
  font-size: .92rem;
  color: var(--ink);
  font-weight: 500;
}

/* -- amount picker (inside the enquiry form) -- */
.amount-label {
  font-family: var(--f-body);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}

.amount-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.amount-card {
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--cream);
  background: rgba(251, 246, 236, .06);
  border: 1px solid rgba(251, 246, 236, .25);
  border-radius: var(--radius);
  padding: 16px 8px;
  cursor: pointer;
  text-align: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.amount-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.amount-card.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 600;
}

.amount-card--custom {
  font-family: var(--f-body);
  font-size: .88rem;
  letter-spacing: .02em;
}

.custom-amount-box {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  padding: 4px 16px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(251, 246, 236, .06);
}

.custom-amount-prefix {
  color: var(--gold);
  font-family: var(--f-display);
  font-size: 1.1rem;
}

.custom-amount-box input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--cream);
  font-family: var(--f-body);
  font-size: .95rem;
  padding: 12px 0;
}

.custom-amount-box input:focus {
  outline: none;
}

.custom-amount-box input::placeholder {
  color: rgba(251, 246, 236, .5);
}

.selected-amount-note {
  font-size: .82rem;
  color: var(--gold);
  margin: 0 0 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(251, 246, 236, .15);
}

.selected-amount-note.is-error {
  color: #e2a2a2;
}

@media (max-width: 900px) {
  .gift-uses-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gift-uses-grid { grid-template-columns: 1fr; }
  .amount-card-grid { grid-template-columns: repeat(2, 1fr); }
}
