/* ==========================================================
   REIKI HERO — Editorial / Cinematic
   ========================================================== */

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    background:
        linear-gradient(
            90deg,
            #0c0710 0%,
            #170b19 40%,
            #241025 67%,
            #2b1538 100%
        );

    padding-block: clamp(4rem, 6vw, 6rem);
}


/* ==========================================================
   BACKGROUND ATMOSPHERE
   ========================================================== */




/* Soft atmospheric glow behind the content */

.hero::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: -300px;
    top: -180px;

    background:
        radial-gradient(
            circle,
            rgba(112, 63, 105, 0.16) 0%,
            rgba(112, 63, 105, 0.05) 42%,
            transparent 72%
        );

    pointer-events: none;
    z-index: -1;
}


/* ==========================================================
   MAIN LAYOUT
   ========================================================== */

.hero__inner {
    display: grid;

    grid-template-columns:
        minmax(0, 0.84fr)
        minmax(0, 1.16fr);

    align-items: center;

    min-height: min(760px, 78vh);

    gap: clamp(3rem, 5vw, 6rem);

    text-align: left;
}


/* ==========================================================
   LEFT CONTENT
   ========================================================== */

.hero__content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}


/* ==========================================================
   EYEBROW
   ========================================================== */

.hero__eyebrow {
    margin: 0 0 var(--space-5);

    color: var(--color-gold);

    font-size: 0.72rem;
    line-height: 1.4;

    font-weight: var(--weight-medium);

    letter-spacing: 0.2em;

    text-transform: uppercase;
}


/* ==========================================================
   HEADLINE
   ========================================================== */

.hero__headline {
    margin: 0;

    max-width: 13ch;

    font-family: var(--font-display);

    font-weight: var(--weight-regular);

    font-size: clamp(
        3rem,
        4.4vw,
        4.8rem
    );

    line-height: 1.02;

    letter-spacing: -0.025em;

    color: var(--color-paper);
}


/* Gold second statement */

.hero__headline span {
    color: var(--color-gold);
}


/* ==========================================================
   DIVIDER
   ========================================================== */

.hero__divider {
    display: flex;

    align-items: center;

    width: min(100%, 500px);

    margin-top: clamp(2rem, 3vw, 2.75rem);

    gap: 0.65rem;
}


.hero__divider > span:first-child,
.hero__divider > span:last-child {
    height: 1px;

    flex: 1;

    background: linear-gradient(
        90deg,
        rgba(196, 153, 76, 0.04),
        rgba(196, 153, 76, 0.6)
    );
}


.hero__divider > span:last-child {
    background: linear-gradient(
        90deg,
        rgba(196, 153, 76, 0.6),
        rgba(196, 153, 76, 0.04)
    );
}


.hero__divider-mark {
    flex: 0 0 auto;

    color: var(--color-gold);

    font-size: 1.25rem;

    line-height: 1;

    transform: translateY(-1px);
}


/* ==========================================================
   THREE BENEFITS
   ========================================================== */

.hero__points {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1.5rem;

    margin-top: 2rem;

    max-width: 560px;
}


.hero__point {
    min-width: 0;
}


.hero__point-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 3.15rem;
    height: 3.15rem;

    margin-bottom: 0.8rem;

    border: 1px solid rgba(196, 153, 76, 0.9);

    border-radius: 50%;

    color: var(--color-gold);

    font-family: var(--font-display);

    font-size: 1.35rem;

    background:
        rgba(255, 255, 255, 0.008);

    box-shadow:
        0 0 0 5px rgba(196, 153, 76, 0.018),
        inset 0 0 20px rgba(196, 153, 76, 0.025);
}


.hero__point p {
    margin: 0;

    color: var(--color-paper-deep);

    font-family: var(--font-display);

    font-size: 0.92rem;

    line-height: 1.55;
}


/* ==========================================================
   SUPPORTING COPY
   ========================================================== */

.hero__body {
    margin-top: 2rem;

    max-width: 550px;
}


.hero__body p {
    margin: 0;

    color: var(--color-paper-deep);

    font-size: var(--text-md);

    line-height: 1.72;
}


/* ==========================================================
   CTA
   ========================================================== */

.hero__cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 1.25rem;

    margin-top: 2rem;

    padding:
        0.9rem
        1.55rem;

    border-radius: 999px;

    background:
        rgba(71, 21, 67, 0.78);

    border: 1px solid
        rgba(196, 153, 76, 0.035);

    color: var(--color-gold);

    font-size: 0.9rem;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);

    transition:
        transform 240ms ease,
        background 240ms ease,
        box-shadow 240ms ease;
}


.hero__cta-arrow {
    font-size: 1.15rem;

    transition:
        transform 240ms ease;
}


.hero__cta:hover {
    transform: translateY(-2px);

    background:
        rgba(91, 30, 84, 0.88);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.3);
}


.hero__cta:hover .hero__cta-arrow {
    transform: translateX(4px);
}


/* ==========================================================
   RIGHT IMAGE
   ========================================================== */

.hero__visual {
    position: relative;

    min-width: 0;

    height: min(760px, 72vh);

    display: flex;
    align-items: center;
}


.hero__image-wrap {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 10px;
}


/* ----------------------------------------------------------
   Image → Plum transition
   ---------------------------------------------------------- */

.hero__image-wrap::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            #0c0710 0%,
            rgba(12, 7, 16, 0.92) 4%,
            rgba(12, 7, 16, 0.5) 13%,
            rgba(12, 7, 16, 0.08) 28%,
            transparent 42%
        );

    z-index: 1;

    pointer-events: none;
}


/* Slight bottom atmospheric fade */

.hero__image-wrap::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 28%;

    background:
        linear-gradient(
            to top,
            rgba(12, 7, 16, 0.24),
            transparent
        );

    z-index: 1;

    pointer-events: none;
}


.hero__image {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: center;

        filter:
            saturate(0.94)
            contrast(1.02);

        transform: scale(1.015);
        border-radius: 10px;
    }

    .hero__visual--mobile {
        display: none;
    }


/* ==========================================================
   LARGE TABLET
   ========================================================== */

@media (max-width: 1100px) {

    .hero__inner {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(0, 1fr);

        gap: 3.5rem;
    }


    .hero__headline {
        font-size: clamp(3rem, 5vw, 4.2rem);
    }


    .hero__visual {
        min-height: 600px;
    }


    .hero__image-wrap {
        width: calc(100% + 4vw);

        margin-right: -4vw;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

    .hero {
        padding-block:
            var(--space-8)
            var(--space-9);
    }


    .hero__inner {
        display: grid;

        grid-template-columns: 1fr;

        align-items: stretch;

        min-height: auto;

        gap: 3rem;

        text-align: left;
    }


    .hero__content {
        max-width: none;
    }


    .hero__eyebrow {
        margin-bottom: 1.2rem;

        font-size: 0.65rem;

        letter-spacing: 0.17em;
    }


    .hero__headline {
        max-width: 13ch;

        font-size:
            clamp(
                2.65rem,
                11.5vw,
                4rem
            );

        line-height: 1.03;
    }


    .hero__divider {
        margin-top: 2rem;
    }


    .hero__points {
        gap: 0.9rem;

        margin-top: 1.75rem;
    }


    .hero__point-icon {
        width: 2.75rem;
        height: 2.75rem;

        margin-bottom: 0.65rem;

        font-size: 1.15rem;
    }


    .hero__point p {
        font-size: 0.78rem;

        line-height: 1.5;
    }


    .hero__body {
        margin-top: 1.75rem;
    }


    .hero__body p {
        font-size: var(--text-sm);

        line-height: 1.7;
    }


    .hero__cta {
        margin-top: 1.75rem;
    }


    .hero__visual {
        display: none;
    }

    .hero__visual--mobile {
        display: block;
        margin-top: var(--space-6);
    }

    .hero__visual--mobile .hero__image-wrap {
        border-radius: var(--radius-3);
        overflow: hidden;
    }

    .hero__visual--mobile .hero__image {
        display: none;
    }

    /* Image comes AFTER content on mobile */

    .hero__visual {
        display: none;
    }


    .hero__image-wrap {
        width: calc(100% + 2rem);

        margin-left: -1rem;
        margin-right: -1rem;
    }


    /* Mobile fade becomes top fade */

    .hero__image-wrap::before {
        background:
            linear-gradient(
                to bottom,
                rgba(12, 7, 16, 0.38) 0%,
                rgba(12, 7, 16, 0.04) 25%,
                transparent 42%
            );
    }


    .hero__image-wrap::after {
        height: 20%;

        background:
            linear-gradient(
                to top,
                rgba(12, 7, 16, 0.25),
                transparent
            );
    }

}


/* ==========================================================
   VERY SMALL PHONES
   ========================================================== */

@media (max-width: 420px) {

    .hero__points {
        gap: 0.65rem;
    }


    .hero__point p {
        font-size: 0.73rem;
    }


    .hero__visual {
        min-height: 300px;
    }

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .hero__cta,
    .hero__cta-arrow {
        transition: none;
    }

}

.page-reiki .site-nav {
  border-bottom-color: transparent;
}
.intro__grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

/* Left column — intro copy */
.intro__content {
  display: grid;
  gap: var(--space-4);
  max-width: 44rem;
}

.intro__content h2 {
  max-width: 20ch;
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-blush);
}

.intro__content p {
  margin: 0;
  line-height: var(--leading-loose);
  color: var(--color-ink-soft);
}

.intro__whisper {
  margin-top: var(--space-2) !important;
  color: var(--color-blush) !important;
}

/* Right column — image */
.intro__image,
.intro__image_mobile {
  min-width: 0;
  width: 100%;
  position: relative;
}

.intro__image img,
.intro__image_mobile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 18px 24px 38px rgba(17, 10, 18, 0.20), 0 12px 22px rgba(75, 24, 67, 0.14);
  transform: translateY(-2px);
  aspect-ratio: 4 / 5;
}

/* Desktop — clean 1fr / 1fr split (content left, image right) */
@media (min-width: 1024px) {
  .intro__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 1fr);
    gap: var(--space-9);
    align-items: center;
  }

  .intro__content {
    max-width: none;
  }

  .intro__image {
    justify-self: end;
    max-width: 32rem;
  }

  .intro__image img {
    aspect-ratio: 4 / 5;
  }

  
}

/* Mobile / tablet — stack vertically, content on top, image below */
@media (min-width: 1024px){
  .intro__image_mobile{
  display: none;
}

}

@media (max-width: 1023px) {
  .intro__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .intro__image {
    justify-self: center;
    max-width: 34rem;
    display: none
  }

  /* .intro__image img {
    aspect-ratio: 4 / 3;
  } */
}

.offer {
  background: linear-gradient(
    0deg,
    #000000 0%,
    #130d15 30%,
    #221226 65%,
    #3d1a40 100%
);
}

.offer__lede {
  max-width: 45rem;
  margin-inline: auto;
  margin-bottom: var(--space-9);
}

.offer__lede h2 { margin-bottom: var(--space-4); 
color: var(--color-gold); font-family: var(--font-display); font-size: var(--text-2xl); }
.offer__lede p { margin-top: var(--space-2); line-height: var(--leading-loose); color: #fff; }

@media (max-width: 767px) {
  .offer__lede { margin-bottom: var(--space-7); }
}


.offer__grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 1024px) {
  .offer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
}

.offer__title { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--color-gold); }
.offer__tagline { margin-top: var(--space-2); font-style: italic; color: var(--color-ink-soft); }

.offer__content > p { margin-top: var(--space-4); line-height: var(--leading-loose); color: var(--color-blush); }

.offer__offers { margin-top: var(--space-5); }

.offer__offers-heading {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.offer__offers ul { list-style: none; }

.offer__offers li {
  position: relative;
  padding-left: var(--space-4);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--color-blush);
}

.offer__offers li + li { margin-top: var(--space-2); }
.offer__offers li::before { content: '—'; position: absolute; left: 0; color: var(--color-line); }

.offer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5) var(--space-6);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-line);
}

.offer__meta-item { display: flex; flex-direction: column; gap: 2px; }

.offer__meta-label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.offer__meta-value { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-gold); }

.offer__cta {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-7);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full, 999px);
  background-color: var(--color-accent);
  color: var(--color-paper);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  transition: background-color var(--duration-base) var(--ease-soft);
}

.offer__cta:hover { background-color: var(--color-accent-deep, var(--color-accent)); }


.reflection {
  padding-block: var(--space-11);
}

.reflection__grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .reflection__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
  }
}

.reflection__column {
  padding: var(--space-7);
  border-radius: var(--radius-xl, 1.5rem);
  background-color: color-mix(in srgb, var(--color-paper) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-paper) 12%, transparent);
  transition: border-color var(--duration-base) var(--ease-soft),
              background-color var(--duration-base) var(--ease-soft);
}
@media (max-width:767px){
  .reflection__column{
    padding: var(--space-4)
  }
}

.reflection__column:hover {
  background-color: color-mix(in srgb, var(--color-paper) 8%, transparent);
  border-color: color-mix(in srgb, var(--color-paper) 20%, transparent);
}

.reflection__label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-gold-deep) !important;
  margin-top: 0 !important;
}

.reflection__column p {
  margin-top: var(--space-3);
  line-height: var(--leading-loose);
  color: var(--color-paper-deep);
}

.reflection__whisper {
  margin-top: var(--space-5) !important;
  color: var(--color-blush) !important;
}

.closing{
  background: linear-gradient(
    180deg,
    #3d1a39,
    #290924,
    
    #000000
);
}

.closing__inner { max-width: 40rem; margin-inline: auto; }

.closing__reveal {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-ink-soft);
}

.closing__body {
  margin-top: var(--space-5);
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  color: var(--color-blush);
}

.closing__signature {
  margin-top: var(--space-6) !important;
  margin-inline: auto;
}

.closing__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  background: transparent;
  transition: background-color 250ms var(--ease-soft), color 250ms var(--ease-soft), transform 250ms var(--ease-soft);
  margin-top: var(--space-6);
}



.closing__cta:hover,
.closing__cta:focus-visible {
  color: var(--color-paper);
  background-color: var(--color-gold);
  transform: translateY(-1px);
}

.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;
}