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

:root {
  --black: #170908;
  --green-dark: #173D36;
  --green-mid: #2C5548;
  --leaf-green: #8FAE7C;
  --leaf-green-dim: rgba(143,174,124,0.18);
  --black-deep: #0D0403;
  --cacao: #441615;
  --bronze: #C9989F;
  --copper: #7F2934;
  --ember: #C9989F;
  --cream: #F5ECD7;
  --cream-dim: rgba(245,236,215,0.65);
  --cream-faint: rgba(245,236,215,0.35);
  --cinzel: 'Cinzel', Georgia, serif;
  --playfair: 'Playfair Display', Georgia, serif;
  --lato: 'Lato', system-ui, sans-serif;
  --script: 'Alex Brush', cursive;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--lato);
  font-size: 16px;
  line-height: 1.6;
}

@media (pointer: fine) {
  body { cursor: none; }
  a, button, .card { cursor: none; }
}

::selection {
  background: var(--copper);
  color: var(--cream);
}

/* ===== CUSTOM CURSOR ===== */
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,152,159,0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  margin: -18px 0 0 -18px;
  opacity: 0;
  will-change: transform;
  transition: width 0.28s ease, height 0.28s ease, margin 0.28s ease, border-color 0.28s ease, opacity 0.3s ease;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--bronze);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  margin: -2.5px 0 0 -2.5px;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.3s ease;
}

@media (pointer: coarse) {
  .cursor-ring, .cursor-dot { display: none; }
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(23,9,8,0.95) 0%, transparent 100%);
  backdrop-filter: blur(4px);
}

.nav-logo {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-logo img {
  display: block;
  height: 28px;
  width: auto;
}

.nav-logo:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--lato);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--bronze); }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 2rem;
  padding: 0.3rem 0.6rem;
  background: transparent;
  border: 1px solid rgba(201,152,159,0.35);
  cursor: pointer;
  font-family: var(--lato);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.lang-opt {
  color: var(--cream-faint);
  transition: color 0.3s ease;
}

.lang-opt.is-active { color: var(--bronze); }
.lang-sep { color: rgba(201,152,159,0.4); }

/* ===== STATIC OPENING HERO ===== */
.hero-static {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 7.5rem;
  padding-bottom: 4rem;
  background-color: #0d0605;
  will-change: transform;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: 75% center;
  will-change: opacity;
  transform: translateZ(0);
}

.hero-bg-night {
  background-image: url('hero-main-night.jpg');
  opacity: 1;
}

.hero-bg-day {
  background-image: url('hero-main.jpg');
  opacity: 0;
}

.hero-static::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(260deg, rgba(23,9,8,0.72) 0%, rgba(23,9,8,0.48) 34%, rgba(23,9,8,0.16) 60%, transparent 78%),
    linear-gradient(to top, rgba(23,9,8,0.45) 0%, transparent 30%);
  pointer-events: none;
}

.hero-static-lines {
  position: relative;
  z-index: 2;
  max-width: min(620px, 40vw);
  padding: 0 5vw 0 2rem;
  text-align: right;
}

.hero-eyebrow-small {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  margin: 2rem 0 0;
  opacity: 0;
}

.hero-brand-name {
  font-family: var(--cinzel);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-brand-tag {
  font-family: var(--lato);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-line {
  font-family: var(--lato);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--cream-dim);
  margin: 0 0 1.1rem;
  opacity: 0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.65);
}

.hero-emphasis {
  color: var(--bronze);
  font-weight: 500;
  font-style: italic;
}

.hero-line-open {
  font-family: var(--playfair);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--cream);
  margin-bottom: 2.5rem;
}

.hero-line-closing {
  font-family: var(--playfair);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--cream);
  margin-top: 0.5rem;
}

#hero-line-4 {
  font-family: var(--cinzel);
  font-style: normal;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--cream);
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin-top: 1.75rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.65);
}

.hero-cta {
  margin-top: 2.5rem;
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  z-index: 5;
  animation: fadeCue 1.5s ease 2.4s forwards;
}

@keyframes fadeCue { to { opacity: 0.45; } }

.scroll-cue span {
  font-family: var(--lato);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
}

.scroll-cue-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--bronze), transparent);
  animation: lineAnim 2s ease-in-out infinite;
}

@keyframes lineAnim {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== BUTTON ===== */
.btn-primary {
  display: inline-block;
  position: relative;
  padding: 1rem 2.75rem;
  background: transparent;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  font-family: var(--cinzel);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
  opacity: 0;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,152,159,0.18) 0%, rgba(127,41,52,0.18) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(201,152,159,0.4), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -80%; opacity: 0; }
  15% { opacity: 1; }
  55% { left: 130%; opacity: 0; }
  100% { left: 130%; opacity: 0; }
}

.btn-primary:hover { color: var(--cream); border-color: var(--ember); }
.btn-primary:hover::before { opacity: 1; }

.btn-large {
  padding: 1.35rem 3.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.26em;
}

/* ===== MARQUEE STRIP ===== */
.marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 1.1rem 0;
  background: var(--cacao);
  border-top: 1px solid rgba(201,152,159,0.1);
  border-bottom: 1px solid rgba(201,152,159,0.1);
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeRun 32s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--cinzel);
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  padding: 0 1.5rem;
  white-space: nowrap;
}

.marquee-item .sep {
  opacity: 0.3;
  font-size: 0.55rem;
}

@keyframes marqueeRun {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== STATEMENT SECTION ===== */
/* Subtle grid */
.stat-cards {
  position: relative;
  max-width: 1140px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  z-index: 2;
}

.stat-card {
  background: rgba(27,17,12,0.55);
  border: 1px solid rgba(201,152,159,0.16);
  padding: 1.5rem 1.75rem 1.75rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(14px);
}

.stat-num {
  font-family: var(--cinzel);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}

.stat-num sup {
  font-size: 1rem;
  font-weight: 500;
  color: var(--bronze);
  vertical-align: super;
}

.stat-label {
  font-family: var(--lato);
  font-size: 0.71rem;
  font-weight: 300;
  color: rgba(245,236,215,0.42);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* ===== SHARED SECTION STYLES ===== */
.section-grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--lato);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--cinzel);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--cream);
  text-align: center;
  margin-bottom: 1rem;
}

.section-sub {
  font-family: var(--playfair);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--cream-dim);
  text-align: center;
  max-width: 500px;
  margin: 0 auto 5rem;
  line-height: 1.65;
}

/* ===== SERVICES ===== */
.services {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(to bottom, var(--black) 0%, var(--cacao) 35%, var(--cacao) 65%, var(--black) 100%);
  overflow: hidden;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cards-row-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 740px;
  margin: 1.5rem auto 0;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cacao);
  border-top: 2px solid var(--bronze);
  border-left: 1px solid rgba(201,152,159,0.15);
  border-right: 1px solid rgba(201,152,159,0.15);
  border-bottom: 1px solid rgba(201,152,159,0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.8);
  transition: filter 0.7s ease, transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.card-img-wrap { overflow: hidden; }

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 30px rgba(127,41,52,0.12);
}

.card:hover .card-img {
  filter: brightness(0.9) saturate(1);
  transform: scale(1.15) translateY(-2%);
}

.card-body-wrap {
  padding: 1.75rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tier {
  font-family: var(--lato);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.75rem;
}

.card-free .card-tier { color: var(--bronze); }

.card-title {
  font-family: var(--cinzel);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-rule {
  width: 28px;
  height: 1px;
  background: var(--bronze);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.card-text {
  font-family: var(--lato);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream-dim);
  flex: 1;
}

/* ===== GIFT BAND (free guide) ===== */
.gift-band {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.gift-pinned {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 6.75rem 0 1.85rem;
}

@keyframes giftNeonPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.09); }
}

.gift-slider {
  position: relative;
  overflow: hidden;
}

.gift-track {
  display: flex;
}

.gift-slide {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  padding: 2rem 0 3.5rem;
  overflow: hidden;
}

.gift-slide-green { background: linear-gradient(135deg, var(--green-dark) 0%, var(--black) 100%); }

.gift-slide-glow {
  position: absolute;
  inset: -20%;
  filter: blur(30px);
  animation: giftNeonPulse 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.gift-slide-green .gift-slide-glow {
  background:
    radial-gradient(ellipse 50% 45% at 24% 32%, rgba(57,255,136,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 46% 42% at 76% 68%, rgba(44,85,72,0.55) 0%, transparent 72%),
    radial-gradient(ellipse 38% 34% at 50% 95%, rgba(57,255,136,0.16) 0%, transparent 72%);
}

.gift-eyebrow {
  display: block;
  font-family: var(--lato);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.1rem;
  max-width: 520px;
}

.gift-slide-green .gift-eyebrow { color: #5eeba8; }

.gift-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gift-inner-plain {
  position: relative;
  z-index: 2;
  padding: 3rem 2.5rem 6.5rem;
}

.gift-media { position: relative; overflow: hidden; }

.gift-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.7s ease;
  animation: giftSlowZoom 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes giftSlowZoom {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.015) translate(-0.4%, 0.3%); }
  100% { transform: scale(1.03) translate(0, 0); }
}

.gift-media:hover .gift-img {
  filter: brightness(0.95) saturate(1);
}

.gift-water {
  position: absolute;
  inset: 0;
  background-image: url('gift.jpg');
  background-size: cover;
  background-position: center;
  mask-image:
    linear-gradient(to top, transparent 0%, transparent 58%, white 74%, white 100%),
    linear-gradient(to right, transparent 0%, transparent 52%, white 70%, white 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(to top, transparent 0%, transparent 58%, white 74%, white 100%),
    linear-gradient(to right, transparent 0%, transparent 52%, white 70%, white 100%);
  -webkit-mask-composite: source-in, source-in;
  filter: url(#waterRipple) brightness(0.85) saturate(0.9);
  animation: giftSlowZoom 20s ease-in-out infinite alternate;
  pointer-events: none;
}

.gift-media-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,152,159,0.25);
  pointer-events: none;
  transform: translate(14px, 14px);
}

.gift-media-glow {
  position: absolute;
  inset: -1px;
  box-shadow: inset 0 0 70px rgba(127,41,52,0.5);
  pointer-events: none;
}

.gift-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #fff2c4;
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(255,224,150,0.85), 0 0 16px 5px rgba(245,195,77,0.5);
  opacity: 0;
  animation: sparkleTwinkle 3.4s ease-in-out infinite;
}

@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1); }
}

.gift-tag {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--cinzel);
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  padding: 0;
  background: linear-gradient(100deg, #b8874a 0%, #f3d999 22%, #fff6dd 42%, #f3d999 62%, #b8874a 100%);
  background-size: 220% auto;
  background-position: 0% center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 26px rgba(243, 217, 153, 0.4));
  animation: giftShimmer 7s ease-in-out infinite;
}

.gift-tag::before,
.gift-tag::after {
  content: '';
  width: clamp(40px, 6vw, 90px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(243, 217, 153, 0.8));
  flex-shrink: 0;
}

.gift-tag::after {
  background: linear-gradient(90deg, rgba(243, 217, 153, 0.7), transparent);
}

@keyframes giftShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.gift-title {
  font-family: var(--cinzel);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.gift-body {
  font-family: var(--playfair);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.gift-note {
  font-family: var(--lato);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-faint);
  margin-bottom: 2.75rem;
  max-width: 520px;
}

/* ===== OFFER BANDS ===== */
.offer-band {
  position: relative;
  padding: 6.5rem 0;
}

.offer-band.alt { background: var(--cacao); }

.offer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.offer-band.flip .offer-inner .offer-media { order: 2; }
.offer-band.flip .offer-inner .offer-text { order: 1; }

.offer-media { position: relative; overflow: hidden; }

.offer-media img,
.offer-media video {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.85);
  transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.offer-media:hover img,
.offer-media:hover video {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1);
}

.offer-tier {
  font-family: var(--lato);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
}

.offer-title {
  font-family: var(--cinzel);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}

.offer-rule {
  width: 32px;
  height: 1px;
  background: var(--bronze);
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.offer-body {
  font-family: var(--lato);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream-dim);
  max-width: 440px;
}

.offer-category {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 0;
  text-align: center;
}

.offer-category-label {
  font-family: var(--lato);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze);
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.offer-category-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bronze), transparent);
}

.offer-grid {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 2rem 6.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offer-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
}

.offer-card video,
.offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.88);
  transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.offer-card:hover video,
.offer-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1);
}

.offer-card-crop-close video {
  transform: scale(1.16);
}

.offer-card-crop-close:hover video {
  transform: scale(1.22);
}

.offer-grid-2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}

.offer-emergency-img {
  object-position: 45% 35%;
  transform: scale(1.05);
}

.offer-card:hover .offer-emergency-img {
  transform: scale(1.1);
}

.offer-hightouch-img {
  object-position: 50% 38%;
  transform: scale(1.3);
}

.offer-card:hover .offer-hightouch-img {
  transform: scale(1.36);
}

.offer-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,4,3,0) 35%, rgba(13,4,3,0.88) 100%);
  pointer-events: none;
}

.offer-card-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  z-index: 1;
}

.offer-card-tier {
  font-family: var(--lato);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.6rem;
}

.offer-card-title {
  font-family: var(--cinzel);
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.offer-card-body {
  font-family: var(--lato);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream-dim);
}

.offer-card-cta {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(201,152,159,0.55);
  background: rgba(13,4,3,0.32);
  color: var(--bronze);
  font-family: var(--lato);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.offer-card-cta:hover {
  color: var(--cream);
  border-color: var(--ember);
  background: rgba(201,152,159,0.16);
}

.offer-card-badge {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px dashed rgba(245,236,215,0.35);
  color: var(--cream-faint);
  font-family: var(--lato);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-card-featured {
  box-shadow: 0 0 0 2px var(--bronze), 0 20px 45px rgba(0,0,0,0.5);
}

.offer-card-featured-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.4rem 0.85rem;
  background: var(--bronze);
  color: var(--black);
  font-family: var(--lato);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-events-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.offer-events-list[hidden] { display: none; }

.offer-events-list li + li { margin-top: 0.5rem; }

.offer-events-list a {
  color: var(--cream-dim);
  font-family: var(--lato);
  font-size: 0.74rem;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201,152,159,0.5);
}

.offer-events-list a:hover { color: var(--cream); }

@media (max-width: 900px) {
  .offer-grid { gap: 0.75rem; padding: 2.5rem 1.25rem 4rem; }
  .offer-card { aspect-ratio: 3 / 5; }
  .offer-card-text { padding: 0.9rem; }
  .offer-card-tier { font-size: 0.5rem; margin-bottom: 0.4rem; }
  .offer-card-title { font-size: clamp(0.8rem, 2.6vw, 1rem); margin-bottom: 0.35rem; }
  .offer-card-body { font-size: 0.68rem; line-height: 1.45; }
  .offer-card-cta { font-size: 0.52rem; padding: 0.42rem 0.8rem; margin-top: 0.65rem; }
  .offer-card-badge { font-size: 0.48rem; padding: 0.38rem 0.75rem; margin-top: 0.65rem; }
  .offer-events-list a { font-size: 0.64rem; }
}

@media (max-width: 560px) {
  .offer-grid { gap: 0.4rem; padding: 2rem 0.75rem 3rem; }
  .offer-card-text { padding: 0.6rem; }
  .offer-card-body { display: none; }
  .offer-card-cta { font-size: 0.44rem; padding: 0.32rem 0.55rem; letter-spacing: 0.06em; }
  .offer-card-badge { font-size: 0.42rem; padding: 0.3rem 0.5rem; }
  .offer-events-list { margin-top: 0.5rem; }
  .offer-events-list a { font-size: 0.56rem; }
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: 0 0 8rem;
  background: var(--black);
}

.about-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 50% 30%, rgba(127,41,52,0.3) 0%, rgba(23,9,8,0.75) 65%, rgba(23,9,8,0.94) 100%),
    linear-gradient(to bottom, rgba(23,9,8,0.55) 0%, rgba(23,9,8,0.35) 30%, rgba(23,9,8,0.65) 70%, var(--black) 100%);
}

.about > .section-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-header {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  text-align: center;
  padding: 3.5rem 0 1rem;
  background: var(--black);
}

.about:not(.about-condensed-section) .about-header {
  position: sticky;
  top: 0;
  z-index: 15;
}

.about-divider {
  width: 100%;
  max-width: 560px;
  height: 1px;
  margin: 1.5rem auto 0;
  background: linear-gradient(to right, transparent, rgba(210,166,94,0.6), transparent);
}

.bio-list {
  margin: 0 auto;
  max-width: 1100px;
}

.bio-row-outer {
  position: relative;
}

.bio-row {
  position: sticky;
  top: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 14rem 1.75rem 3rem;
  background: var(--black);
}

.bio-row-inner {
  display: flex;
  align-items: flex-start;
  gap: 3.5rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.bio-row-outer:nth-child(even) .bio-row-inner { flex-direction: row-reverse; }

.bio-row-media { flex: 0 0 42%; min-width: 0; }
.bio-row-text { flex: 1 1 0; min-width: 0; }

@media (prefers-reduced-motion: reduce) {
  .bio-row-outer { min-height: 0 !important; margin-bottom: 3rem; }
  .bio-row { position: relative; top: 0; min-height: 0; width: 100%; margin-left: 0; padding: 1.5rem 1.75rem; }
}

.bio-crossfade {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 64vh;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0,0,0,0.45);
}

.bio-crossfade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(0.94) saturate(0.95);
  transition: opacity 0.9s ease;
}

.bio-crossfade img.is-active { opacity: 1; }

.why-panel-title {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  font-family: var(--cinzel);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}

.bio-num {
  font-family: var(--playfair);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--bronze);
  flex-shrink: 0;
}

.why-panel-text {
  font-family: var(--lato);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.85;
  color: rgba(245,236,215,0.88);
  text-align: left;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}

.why-panel-lead + p {
  position: relative;
  padding-top: 1.35rem;
}

.why-panel-lead + p::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 1px;
  background: linear-gradient(to right, var(--bronze), transparent);
}

.why-panel-text p { margin: 0 0 1.1rem; }
.why-panel-text p:last-child { margin-bottom: 0; }
.why-panel-text strong { color: var(--cream); font-weight: 700; }
.why-panel-text em { font-style: italic; font-family: var(--playfair); color: var(--cream); }
.why-panel-text .why-accent { color: var(--bronze); font-weight: 600; font-style: normal; }

.why-panel-lead {
  font-family: var(--playfair);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.35;
  color: var(--cream);
  text-align: left;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.about-condensed {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  max-width: 1000px;
  margin: 1rem auto 0;
  padding: 1.5rem 1.75rem 0;
}

.about-condensed-media {
  flex: 0 0 34%;
  min-width: 0;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0,0,0,0.45);
}

.about-condensed-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  filter: brightness(0.94) saturate(0.95);
}

.about-condensed-photo-zoomed {
  transform: scale(1.3) translateY(7%);
  transform-origin: 50% 50%;
}

.about-condensed-text { flex: 1 1 0; min-width: 0; }

.about-condensed-cta {
  display: inline-block;
  margin-top: 1.75rem;
}

@media (max-width: 900px) {
  .about-condensed { align-items: flex-start; gap: 1.5rem; padding: 1rem 1.25rem 0; }
}

@media (max-width: 560px) {
  .about-condensed { gap: 1rem; padding: 0.75rem 1rem 0; }
  .about-condensed-media { flex: 0 0 30%; }
}

.about-closing {
  text-align: center;
  margin-top: 5rem;
}

.about-closing-text {
  font-family: var(--playfair);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--cream);
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.about-closing-link {
  display: inline-block;
  font-family: var(--cinzel);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  text-decoration: none;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 0.35rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.about-closing-link:hover { color: var(--cream); border-color: var(--cream); }

.about-wordmark {
  font-family: var(--cinzel);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 2.5rem;
  text-align: center;
}

@media (max-width: 900px) {
  .bio-row { padding: 13.5rem 1.25rem 2.5rem; }
  .bio-row-inner, .bio-row-outer:nth-child(even) .bio-row-inner {
    align-items: flex-start;
    gap: 1.5rem;
  }
  .bio-row-media { flex: 0 0 34%; }
  .why-panel-title { font-size: 0.85rem; gap: 0.6rem; margin-bottom: 1rem; }
  .bio-num { font-size: 1.3rem; }
  .why-panel-lead { font-size: clamp(1.05rem, 3.4vw, 1.3rem); margin-bottom: 1rem; }
  .why-panel-text { font-size: 0.88rem; line-height: 1.65; }
}

@media (max-width: 560px) {
  .bio-row { padding: 13.5rem 1rem 2rem; }
  .bio-row-inner, .bio-row-outer:nth-child(even) .bio-row-inner {
    align-items: flex-start;
    gap: 1rem;
  }
  .bio-row-media { flex: 0 0 30%; }
  .why-panel-title { font-size: 0.72rem; gap: 0.4rem; margin-bottom: 0.75rem; }
  .bio-num { font-size: 1.05rem; }
  .why-panel-lead { font-size: clamp(0.95rem, 4vw, 1.1rem); margin-bottom: 0.75rem; }
  .why-panel-text { font-size: 0.8rem; line-height: 1.55; }
  .why-panel-lead + p { padding-top: 0.9rem; }
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: 9rem 0;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url('cta.jpg') center center / cover no-repeat;
  opacity: 0.22;
  filter: brightness(0.6) saturate(0.7);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(127,41,52,0.5) 0%, var(--black) 75%);
}

.cta-content { position: relative; z-index: 2; }

.cta-mark {
  height: 46px;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
  opacity: 0.65;
}

.cta-lead {
  font-family: var(--lato);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--cream-dim);
  max-width: 640px;
  margin: 1.5rem auto 0;
}

.cta-quote {
  font-family: var(--playfair);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
  max-width: 720px;
  margin: 2rem auto 1.25rem;
}

.cta-quote-attr {
  display: block;
  font-family: var(--lato);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 0.85rem;
}

.cta-sub {
  font-family: var(--lato);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--cream-faint);
  max-width: 560px;
  margin: 0 auto 3rem;
}

/* ===== PODCAST ===== */
.podcast-section {
  position: relative;
  padding: 7rem 0;
  background: var(--black);
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.podcast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: 1.75rem 1.5rem 2rem;
  border: 1px solid rgba(201,152,159,0.2);
  text-decoration: none;
  transition: border-color 0.4s ease, transform 0.4s ease, background 0.4s ease;
}

.podcast-card:hover {
  border-color: var(--bronze);
  background: rgba(201,152,159,0.06);
  transform: translateY(-4px);
}

.podcast-art-wrap {
  position: relative;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
}

.podcast-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.9);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.podcast-card:hover .podcast-art {
  transform: scale(1.07);
  filter: brightness(0.94) saturate(1);
}

.podcast-icon-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13,4,3,0.72);
  border: 1px solid rgba(201,152,159,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cinzel);
  font-size: 0.9rem;
  color: var(--bronze);
}

.podcast-label {
  font-family: var(--lato);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
  padding: 7rem 0;
  background: var(--black);
  text-align: center;
}

.testimonial-slider {
  max-width: 100vw;
  width: 100vw;
  position: relative;
  left: 50%;
  margin: 3.5rem -50vw 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.testimonial-slides {
  display: flex;
  align-items: stretch;
  width: max-content;
  animation: testimonial-marquee 70s linear infinite;
}

.testimonial-slider:hover .testimonial-slides { animation-play-state: paused; }

@keyframes testimonial-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-slide {
  flex: 0 0 295px;
  width: 295px;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  display: flex;
  border-right: 1px solid rgba(0,0,0,0.3);
}

.testimonial-slide:last-child { border-right: none; }

.testimonial-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-photo {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin: 0;
  border: none;
  border-radius: 0;
}

.testimonial-caption {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.5rem 1.75rem;
}

.testimonial-quote {
  font-family: var(--playfair);
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--cream-dim);
  margin: 0 0 1.1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.testimonial-panel.is-text {
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100%;
  padding: 2.5rem 1.75rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.testimonial-panel.is-text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,4,3,0.4), rgba(13,4,3,0.78));
}

.testimonial-panel.is-text .testimonial-quote {
  position: relative;
  z-index: 1;
  font-family: var(--cinzel);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--cream);
  -webkit-line-clamp: 5;
}

.testimonial-panel.is-text .testimonial-readmore {
  position: relative;
  z-index: 1;
}

.testimonial-quote.is-expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.testimonial-readmore {
  background: none;
  border: none;
  font-family: var(--lato);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bronze);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
  margin: -0.7rem 0 1.1rem;
}

.testimonial-readmore:hover { color: var(--cream-dim); }

.testimonial-name {
  font-family: var(--lato);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bronze);
  position: relative;
  padding-top: 0.9rem;
  margin-top: 0.5rem;
}

.testimonial-name::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bronze), transparent);
}

.testimonial-panel.is-text .testimonial-name {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  padding-top: 0;
}

.testimonial-panel.is-text .testimonial-name::before { display: none; }

@media (max-width: 680px) {
  .testimonial-slide { flex: 0 0 260px; width: 260px; }
  .testimonial-slides { animation-duration: 50s; }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-slides { animation: none; }
}

/* ===== FOOTER ===== */
footer {
  padding: 3.5rem 2rem;
  text-align: center;
  background: var(--cacao);
  border-top: 1px solid rgba(201,152,159,0.12);
}

.footer-mark {
  height: 56px;
  width: auto;
  margin: 0 auto 1rem;
  display: block;
  opacity: 0.9;
}

.footer-logo {
  height: 34px;
  width: auto;
  margin: 0 auto 0.75rem;
  display: block;
}

.footer-sub {
  font-family: var(--playfair);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream-faint);
  margin-bottom: 1.75rem;
}

.footer-copy {
  font-family: var(--lato);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(245,236,215,0.2);
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

/* ===== SR ONLY ===== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-static { padding-top: 7rem; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-row-2 { grid-template-columns: 1fr 1fr; max-width: 100%; margin-top: 0; }
  .gift-inner { grid-template-columns: 0.6fr 1fr; gap: 1.25rem; }
  .gift-tag { font-size: clamp(1rem, 5.5vw, 1.4rem); gap: 0.9rem; letter-spacing: 0.2em; }
  .gift-tag::before, .gift-tag::after { width: clamp(20px, 7vw, 40px); height: 2px; }
  .gift-pinned { padding: 6rem 0 1.25rem; }
  .gift-title { font-size: clamp(1.3rem, 3.4vw, 1.8rem); margin-bottom: 0.75rem; }
  .gift-body { font-size: 0.95rem; margin-bottom: 0.75rem; }
  .gift-note { font-size: 0.78rem; margin-bottom: 1.25rem; }
  .btn-large { padding: 0.85rem 1.75rem; font-size: 0.62rem; letter-spacing: 0.16em; }
  .offer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .offer-band.flip .offer-inner .offer-media,
  .offer-band.flip .offer-inner .offer-text { order: initial; }
  .offer-media { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 960px) {
  .hero-static-lines { max-width: min(480px, 58vw); padding: 0 4vw 0 2rem; }
}

@media (max-width: 768px) {
  .stat-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  nav { padding: 1.1rem 1.5rem; }
  .nav-links { display: none; }
  .section-inner { padding: 0 1.25rem; }
  .cards-grid, .cards-row-2 { grid-template-columns: 1fr; }
  .services, .about, .cta-section { padding: 4rem 0; }
  .gift-media-frame { transform: translate(8px, 8px); }
  .gift-slide { padding: 1.5rem 0 2.5rem; }
  .gift-inner { grid-template-columns: 0.55fr 1fr; gap: 0.85rem; padding: 0 1.25rem; }
  .gift-inner-plain { padding: 2rem 1.25rem 3rem; }
  .gift-note { display: none; }
  .gift-eyebrow { font-size: 0.6rem; margin-bottom: 0.6rem; }
  .btn-large { padding: 0.7rem 1.4rem; font-size: 0.56rem; }
  .stat-cards { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat-card { padding: 1.1rem 1.25rem 1.25rem; }
  .stat-num { font-size: 1.9rem; }
  .podcast-grid { grid-template-columns: 1fr; }
  .offer-band, .podcast-section { padding: 4.5rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary::after,
  .scroll-cue-line,
  .marquee-track {
    animation: none;
    transition: none;
  }
}
