/* ================================================
   ELDANAI — Premium Brand CSS
   Palette: Sage #A8B29A | Gold #C9A46A | Cream #E8DDD1 | Sand #D6C2A8 | Coffee #8A6B52 | Warm White #F7F3EE
   ================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage:       #A8B29A;
  --sage-dark:  #7A8F72;
  --sage-light: #C6CFC0;
  --gold:       #C9A46A;
  --gold-dark:  #A8823F;
  --gold-light: #E8C98A;
  --cream:      #E8DDD1;
  --sand:       #D6C2A8;
  --coffee:     #8A6B52;
  --warm-white: #F7F3EE;
  --text-dark:  #3A3028;
  --text-mid:   #6B5744;
  --text-light: #9A8578;
  --nav-h:      80px;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;

  --shadow-sm: 0 2px 12px rgba(58,48,40,.08);
  --shadow-md: 0 8px 32px rgba(58,48,40,.12);
  --shadow-lg: 0 20px 60px rgba(58,48,40,.16);

  --radius:    12px;
  --radius-lg: 24px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.br-desk { display: none; }
@media (min-width: 768px) { .br-desk { display: inline; } }

/* ── SECTION LABELS & TITLES ── */
.section-label {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-dark);
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-subtitle {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--sm   { font-size: .78rem; padding: .6rem 1.5rem; }
.btn--lg   { font-size: .95rem; padding: 1.05rem 2.8rem; }

.btn--gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,164,106,.35);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 8px 32px rgba(201,164,106,.5);
  transform: translateY(-2px);
}

.btn--sage {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
  box-shadow: 0 4px 16px rgba(168,178,154,.35);
}
.btn--sage:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(168,178,154,.5);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

.btn--white {
  background: var(--warm-white);
  color: var(--text-dark);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(247,243,238,.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(201,164,106,.15);
  transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  height: 52px;
  width: auto;
  filter: none;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(58,48,40,.1) 0%,
    rgba(58,48,40,.3) 40%,
    rgba(58,48,40,.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--nav-h) 1.5rem 4rem;
  max-width: 760px;
  animation: fadeUp .9s .2s both;
}

.hero__badge {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: .9;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(58,48,40,.4);
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero__subtitle {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.88);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  margin-top: 3rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ── ABOUT ── */
.about {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--warm-white);
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

@media (max-width: 900px) {
  .about__container { grid-template-columns: 1fr; }
}

.about__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.about__img:hover { transform: scale(1.02); }

.about__image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about__image-badge-text {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.about__image-badge-sub {
  display: block;
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .25rem;
}

.about__text {
  padding: 1rem 0;
}

.about__para {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.about__values {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.about__value {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--coffee);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.about__value-icon {
  font-size: 1.1rem;
}

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--sage);
  padding: 1.5rem 0;
  overflow: hidden;
}

.quote-band__inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.quote-band__inner span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.95);
  flex-shrink: 0;
}

.quote-band__sep {
  color: var(--gold-light) !important;
  font-style: normal !important;
  font-size: .8rem !important;
}

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

/* ── RITUALS ── */
.rituals {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: #fff;
}

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

@media (max-width: 1024px) { .rituals__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }
@media (min-width: 640px) and (max-width: 1024px) { .rituals__grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; } }

.ritual-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(214,194,168,.4);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.ritual-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.ritual-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201,164,106,.2);
  position: relative;
}

.ritual-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.ritual-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.ritual-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--transition);
}

.ritual-card:hover .ritual-card__img {
  transform: scale(1.06);
}

.ritual-card__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(247,243,238,.92);
  color: var(--coffee);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.ritual-card__tag--gold {
  background: var(--gold);
  color: #fff;
}

.ritual-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ritual-card__number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: .5rem;
}

.ritual-card__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: .75rem;
}

.ritual-card__desc {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  flex: 1;
}

.ritual-card__features {
  list-style: none;
  margin-bottom: 1.75rem;
}

.ritual-card__features li {
  font-size: .85rem;
  color: var(--coffee);
  padding: .3rem 0;
  font-weight: 500;
  letter-spacing: .03em;
}

/* ── INTENTIONS ── */
.intentions {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}

.intentions__grid {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.intention-chip {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--warm-white);
  border: 1.5px solid var(--sand);
  border-radius: 100px;
  padding: .65rem 1.5rem;
  cursor: default;
  transition: all var(--transition);
  user-select: none;
}

.intention-chip:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,164,106,.3);
}

.intentions__cta {
  text-align: center;
}

.intentions__cta-text {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 1.75rem;
}

/* ── DELIVERY ── */
.delivery {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--warm-white);
}

.delivery__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

@media (max-width: 900px) {
  .delivery__inner { grid-template-columns: 1fr; }
}

.delivery__para {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 1.2rem 0 2rem;
}

.delivery__features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.delivery__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(214,194,168,.4);
  transition: all var(--transition);
}

.delivery__feature:hover {
  background: var(--sand);
  transform: translateX(4px);
}

.delivery__feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: .1rem;
}

.delivery__feature strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .2rem;
}

.delivery__feature p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.delivery__image-wrap {
  position: relative;
}

.delivery__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.delivery__image-quote {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(247,243,238,.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  text-align: center;
  border: 1px solid rgba(201,164,106,.2);
}

/* ── QUOTES ── */
.quotes {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--sage);
}

.quotes__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) { .quotes__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px)  { .quotes__grid { grid-template-columns: 1fr; } }

.quote-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.quote-card:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-4px);
}

.quote-card--featured {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
}

.quote-card__icon {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: block;
}

.quote-card p {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: #fff;
  line-height: 1.7;
}

/* ── CTA FINAL ── */
.cta-final {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
}

.cta-final__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.cta-final__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(138,107,82,.72) 0%,
    rgba(58,48,40,.78) 100%
  );
}

.cta-final__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 1.5rem;
  animation: fadeUp .9s .2s both;
}

.cta-final__logo {
  height: 140px;
  width: auto;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.cta-final__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.cta-final__title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.cta-final__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* ── FOOTER ── */
.footer {
  background: var(--text-dark);
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

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

.footer__logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
  margin-bottom: .75rem;
}

.footer__slogan {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: .5rem;
}

.footer__tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 380px;
}

.footer__contact-title {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.25rem;
  transition: color var(--transition);
}

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

.footer__socials {
  display: flex;
  gap: .75rem;
}

.footer__social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}

.footer__social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.footer__divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 2.5rem 0 1.5rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer__copy,
.footer__love {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

.footer__love { color: rgba(201,164,106,.6); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}

.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-ring 2.4s cubic-bezier(.4,0,.6,1) infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0%   { transform: scale(.95); opacity: .7; }
  70%  { transform: scale(1.4);  opacity: 0;  }
  100% { transform: scale(1.4);  opacity: 0;  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE (original) ── */
@media (max-width: 640px) {
  .about__img     { height: 380px; }
  .delivery__img  { height: 360px; }
  .about__image-badge { right: .5rem; bottom: -1rem; }
  .ritual-card__image-wrap { height: 220px; }
  .cta-final__logo { height: 100px; }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}

/* ═══════════════════════════════════════════════
   EXPERIENCE BLOCKS — Editorial Ritual Layout
   ═══════════════════════════════════════════════ */

.rituals {
  padding: clamp(5rem, 10vw, 9rem) 0 0;
  background: var(--warm-white);
  overflow: hidden;
}

/* ── EXP BLOCK BASE (alternating 50/50) ── */
.exp-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}

.exp-block--reverse {
  direction: rtl;
}
.exp-block--reverse > * {
  direction: ltr;
}

/* Media side */
.exp-block__media {
  position: relative;
  overflow: hidden;
}

.exp-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .9s cubic-bezier(.4,0,.2,1);
}

.exp-block:hover .exp-block__img {
  transform: scale(1.04);
}

.exp-block__media-accent {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(255,255,255,.18);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.exp-block__media-accent--gold {
  color: rgba(201,164,106,.28);
}

.exp-block__badge-float {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
}

/* Content side */
.exp-block__content {
  background: var(--warm-white);
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exp-block__label {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.exp-block__label--light {
  color: rgba(255,255,255,.65);
}

.exp-block__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.exp-block__title em {
  font-style: italic;
  color: var(--gold-dark);
  display: block;
}

.exp-block__line {
  width: 48px;
  height: 1px;
  background: var(--sage);
  margin-bottom: 1.75rem;
  transition: width .4s ease;
}

.exp-block__line--gold {
  background: var(--gold);
}

.exp-block:hover .exp-block__line {
  width: 80px;
}

.exp-block__text {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: .75rem;
  font-style: italic;
}

.exp-block__text--soft {
  font-family: var(--sans);
  font-size: .92rem;
  font-style: normal;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.exp-block__btn {
  align-self: flex-start;
}

/* ── ALTERNATING BACKGROUNDS ── */
.exp-block:nth-child(odd) .exp-block__content  { background: var(--warm-white); }
.exp-block:nth-child(even) .exp-block__content { background: #fff; }

/* ── HERO RITUAL (CREADO PARA TI) ── */
.exp-block--hero {
  display: block;
  position: relative;
  min-height: 680px;
  margin-top: 0;
}

.exp-block__hero-inner {
  position: relative;
  width: 100%;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.exp-block__hero-media {
  position: absolute;
  inset: 0;
}

.exp-block__hero-media .exp-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.exp-block__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(58,48,40,.82) 0%,
    rgba(58,48,40,.65) 55%,
    rgba(58,48,40,.3) 100%
  );
}

.exp-block__hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(2.5rem, 6vw, 6rem);
  max-width: 640px;
}

.exp-block__hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.25rem;
}

.exp-block__hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.exp-block__hero-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.85;
  margin-bottom: .75rem;
}

.exp-block__hero-text--soft {
  font-family: var(--sans);
  font-size: .92rem;
  font-style: normal;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.exp-block__hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin-bottom: 2.25rem;
}

.exp-block__hero-details span {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: .9;
}

/* ── EXP BLOCK RESPONSIVE ── */
@media (max-width: 900px) {
  .exp-block {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .exp-block--reverse { direction: ltr; }
  .exp-block__media   { height: 380px; }
  .exp-block__content { padding: 2.5rem 1.75rem; }

  .exp-block__hero-inner { min-height: 520px; }
  .exp-block__hero-content { padding: 2.5rem 1.75rem; }
}

@media (max-width: 640px) {
  .exp-block__media   { height: 300px; }
  .exp-block__title   { font-size: 2.6rem; }
  .exp-block__hero-title { font-size: 3rem; }
  .exp-block__hero-inner  { min-height: 460px; }
  .exp-block__btn     { width: 100%; justify-content: center; }
  .exp-block__hero-details { gap: .5rem 1rem; }
}

