:root {
  --ink: #221b17;
  --paper: #f6f0e7;
  --cream: #eadcc9;
  --gold: #e6a931;
  --rust: #9d5635;
  --warm-dark: #20130f;
}

body {
  background: #f5efe6;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
}

/* La entrada MR se conserva; la flor del CRM vive únicamente en el fondo. */
.brandIntro {
  background:
    radial-gradient(circle at 58% 42%, #9d237f55, transparent 42%),
    linear-gradient(135deg, #05010d, #16062a 52%, #070211);
}

.introFlower {
  position: absolute;
  z-index: 0;
  right: 50%;
  bottom: 50%;
  width: min(1180px, 112vw);
  height: min(900px, 90vh);
  object-fit: contain;
  transform: translate(50%, 50%) scale(1.06);
  opacity: 0.72;
  filter: saturate(1.35) brightness(1.02) contrast(1.08);
  mix-blend-mode: screen;
  animation: introFlowerBreathe 8s ease-in-out infinite;
}

.brandIntro::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: radial-gradient(circle at 50% 44%, transparent 24%, #08040f55 72%, #08040fbf 100%);
  pointer-events: none;
}

.introMark,
.introOrbit,
.introGlow {
  z-index: 3;
}

@keyframes introFlowerBreathe {
  0%, 100% { transform: translate(50%, 50%) scale(1.02) rotate(-0.5deg); opacity: 0.58; }
  50% { transform: translate(50%, 48%) scale(1.1) rotate(0.5deg); opacity: 0.86; }
}

/* Hero cálido y editorial como la referencia. */
.hero {
  min-height: 100svh;
  margin: 0;
  border-radius: 0;
  background: #3d2117;
}

.heroImg,
.heroShade {
  border-radius: 0;
}

.heroImg {
  object-position: 66% 30%;
  transform: scale(1.015);
  animation: heroImageIn 1.8s cubic-bezier(.16, 1, .3, 1) both;
}

.heroShade {
  background:
    linear-gradient(90deg, #552d1bd9 0%, #794126a8 43%, #28191438 72%),
    linear-gradient(0deg, #371e16b8, transparent 62%),
    linear-gradient(135deg, #d0843b33, transparent 55%);
}

.heroCopy {
  padding: clamp(175px, 22vh, 245px) 5.6vw 90px;
  max-width: 1120px;
}

.hero .kicker {
  max-width: 920px;
  margin: 0 0 36px;
  font-size: clamp(16px, 1.65vw, 26px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.015em;
  text-transform: none;
  color: #f4e9e0;
}

.hero h1 {
  margin: 0 0 52px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(72px, 8.2vw, 126px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: #fffdf9;
}

.hero blockquote {
  max-width: 990px;
  margin: 0 0 54px;
  padding: 5px 0 5px 30px;
  border-left: 3px solid var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(25px, 2.1vw, 36px);
  font-weight: 500;
  line-height: 1.5;
  color: #f2e5dc;
}

.hero .actions {
  gap: 24px;
}

.hero .button,
.hero .textLink {
  min-height: 82px;
  padding: 0 52px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero .button {
  min-width: 390px;
  border-color: #e5a832;
  background: #e5a832;
  color: #fff;
  box-shadow: 0 18px 45px #5b2d193c;
}

.hero .textLink {
  min-width: 290px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff38;
  background: #1a120f55;
  color: #fff;
  backdrop-filter: blur(14px);
}

.hero .button:hover,
.hero .textLink:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px #2a130f55;
}

.scroll {
  color: #fff;
  opacity: 0.72;
}

@keyframes heroImageIn {
  from { opacity: 0; transform: scale(1.09); }
  to { opacity: 1; transform: scale(1.015); }
}

/* Entrada editorial escalonada del hero */
.heroCopy.reveal.visible h1 {
  animation: referenceTitleIn 900ms cubic-bezier(.2,.8,.2,1) both;
}

.heroCopy.reveal.visible .kicker {
  animation: referenceTextIn 750ms 140ms cubic-bezier(.2,.8,.2,1) both;
}

.heroCopy.reveal.visible blockquote {
  animation: referenceTextIn 800ms 260ms cubic-bezier(.2,.8,.2,1) both;
}

.heroCopy.reveal.visible .actions {
  animation: referenceTextIn 800ms 390ms cubic-bezier(.2,.8,.2,1) both;
}

@keyframes referenceTitleIn {
  from { opacity: 0; transform: translate3d(0, 34px, 0); filter: blur(7px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}

@keyframes referenceTextIn {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Lenguaje editorial cálido para todo el sitio. */
.section,
.finalCta,
.innerHero,
footer {
  border-radius: 0;
}

.section {
  width: 100%;
  margin: 0;
}

.services,
.about,
.book {
  background: #fffaf4;
  box-shadow: none;
}

.sectionHead h2,
.about h2,
.book h2,
.podcast h2,
.contact h2,
.finalCta h2 {
  font-family: "Cormorant Garamond", serif;
  color: #2c2019;
}

.dark .sectionHead h2,
.dark h2,
.finalCta h2 {
  color: #fffaf4;
}

.eyebrow {
  color: #a86a36 !important;
}

.serviceCard {
  border-radius: 2px;
  box-shadow: none;
}

.serviceCard:hover {
  transform: translateY(-6px);
}

.dark {
  background:
    radial-gradient(circle at 12% 4%, #a7603638, transparent 30%),
    radial-gradient(circle at 88% 96%, #d99c3924, transparent 32%),
    #231712;
}

.button {
  background: #b46a3d;
  border-color: #b46a3d;
}

.button:hover {
  background: #935233;
}

.bookStrip,
.finalCta {
  background: linear-gradient(120deg, #a95b34, #d29036);
}

.gallery,
.contact {
  background: linear-gradient(145deg, #f1e5d5, #e9d6c3);
}

.followStrip,
.trusted {
  background: #f2e6d7;
}

footer {
  margin: 0;
  background: #1d130f;
}

@media (max-width: 900px) {
  .heroCopy {
    padding: 160px 34px 74px;
  }

  .hero h1 {
    font-size: clamp(68px, 13vw, 102px);
  }

  .hero .actions {
    flex-wrap: wrap;
  }

  .hero .button,
  .hero .textLink {
    min-width: min(100%, 350px);
  }
}

@media (max-width: 600px) {
  .introFlower {
    width: 158vw;
    height: 118svh;
    opacity: 0.76;
    object-position: 58% center;
  }

  .heroImg {
    object-position: 72% center;
  }

  .heroShade {
    background:
      linear-gradient(0deg, #4f291dec 0%, #6d3b25bd 58%, #22171344 100%),
      linear-gradient(90deg, #5a2e22a6, transparent);
  }

  .heroCopy {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 125px 20px 42px;
  }

  .hero .kicker {
    order: 2;
    margin: 0 0 22px;
    font-size: 15px;
  }

  .hero h1 {
    order: 1;
    margin-bottom: 26px;
    font-size: clamp(54px, 17vw, 74px);
  }

  .hero blockquote {
    order: 3;
    margin-bottom: 28px;
    padding-left: 18px;
    font-size: 21px;
  }

  .hero .actions {
    order: 4;
    width: 100%;
  }

  .hero .button,
  .hero .textLink {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 22px;
    font-size: 13px;
  }

  .scroll {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .introFlower,
  .heroImg {
    animation: none;
  }
}
