/* ROE Strength Studio for Women — shared styles */

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

:root {
  --blush: #F2C4CE;
  --blush-light: #FAE8ED;
  --blush-deep: #E8A0B0;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --cream: #FDF6EC;
  --cream-warm: #F7EADC;
  --dark: #1E1A18;
  --text: #3A2F2A;
  --muted: #9A8880;
  --rule: rgba(201, 168, 76, 0.28);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;

  --gutter: clamp(1.25rem, 5vw, 5rem);
  --stack: clamp(4.5rem, 11vw, 9rem);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Paper grain — fixed, non-interactive */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
}

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

::selection { background: var(--blush); color: var(--dark); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Typography ---------- */

h1, h2, h3 { font-family: var(--serif); font-weight: 300; line-height: 1.08; letter-spacing: 0.01em; color: var(--dark); overflow-wrap: break-word; }

.display {
  font-size: clamp(2.35rem, 8.6vw, 6.6rem);
}
.display em { font-style: italic; color: var(--gold); }

h2.title {
  font-size: clamp(2rem, 5vw, 3.4rem);
}
h2.title em { font-style: italic; color: var(--gold); }

h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.marker {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.lede {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--text);
  max-width: 46ch;
}

p + p { margin-top: 1rem; }

.muted { color: var(--muted); }

/* ---------- Layout ---------- */

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

.section { padding-block: var(--stack); }

.rule { height: 1px; background: var(--rule); border: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 1.9rem;
  border: 1px solid var(--dark);
  background: var(--dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  transition: color .45s ease, border-color .45s ease;
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }
.btn:hover, .btn:focus-visible { color: var(--dark); border-color: var(--gold); }

.btn--ghost { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--dark); }

.btn .arw { transition: transform .45s cubic-bezier(.2,.7,.3,1); }
.btn:hover .arw { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--rule);
  transition: border-color .3s ease, color .3s ease, gap .3s ease;
}
.link-arrow:hover { color: var(--gold); border-color: var(--gold); gap: 0.9rem; }
@media (pointer: coarse) {
  .link-arrow { min-height: 44px; padding-block: 0.6rem 0.5rem; }
  .nav-toggle { margin-right: -0.5rem; }
}

/* ---------- Announcement bar ---------- */

.announce {
  background: var(--dark);
  color: rgba(253, 246, 236, 0.8);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.announce .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  flex-wrap: wrap;
  padding-block: 0.7rem;
}
.announce b { font-weight: 400; color: var(--gold-light); }
.announce a { color: rgba(253, 246, 236, 0.8); text-decoration: none; transition: color .3s ease; }
.announce a:hover { color: var(--gold-light); }
.announce .sep { color: rgba(253, 246, 236, 0.3); margin-inline: 0.7rem; }
@media (max-width: 640px) {
  .announce .wrap { justify-content: center; text-align: center; }
  .announce .hide-sm { display: none; }
}
@media (max-width: 480px) {
  .announce { font-size: 0.68rem; letter-spacing: 0.12em; }
  .announce a { overflow-wrap: anywhere; }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253, 246, 236, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.is-stuck { border-bottom-color: var(--rule); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.15rem;
}
@media (max-width: 480px) {
  .nav { gap: 0.75rem; }
  .brand { font-size: 0.95rem; }
  .brand small { font-size: 0.5rem; letter-spacing: 0.22em; }
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.02rem, 2.4vw, 1.32rem);
  letter-spacing: 0.05em;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.brand b { font-weight: 400; color: var(--gold); letter-spacing: 0.12em; }
.brand em { font-style: italic; letter-spacing: 0.02em; }
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.53rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.2rem);
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding-block: 0.4rem;
  position: relative;
  transition: color .3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-links a[aria-current="page"] { color: var(--dark); }

.nav-cta {
  border: 1px solid var(--dark);
  padding: 0.72rem 1.25rem !important;
  transition: background .35s ease, color .35s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--dark); color: var(--cream); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
}
.nav-toggle i {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--dark);
  margin: 5px auto;
  transition: transform .35s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
    padding: 1rem var(--gutter) 2.4rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links {
    max-height: calc(100vh - 8rem);
    max-height: calc(100dvh - 8rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--rule); }
  .nav-links li:last-child { border-bottom: 0; padding-top: 1.4rem; }
  .nav-links a { display: block; padding-block: 1.05rem; font-size: 0.82rem; }
  .nav-cta { display: inline-block; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-top: clamp(3.5rem, 9vw, 7rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -22vw; right: -14vw;
  width: 58vw; height: 58vw;
  background: radial-gradient(circle at 50% 50%, var(--blush-light) 0%, rgba(250,232,237,0) 68%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30vw; left: -20vw;
  width: 52vw; height: 52vw;
  background: radial-gradient(circle at 50% 50%, rgba(232,213,163,.42) 0%, rgba(232,213,163,0) 68%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; align-items: start; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.hero-facts {
  display: grid;
  gap: 1.15rem;
  border-left: 1px solid var(--rule);
  padding-left: clamp(1.2rem, 2.6vw, 2.2rem);
}
.hero-facts div { display: grid; gap: 0.15rem; }
.hero-facts dt {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-facts dd {
  font-family: var(--serif);
  font-size: 1.28rem;
  color: var(--dark);
}
@media (max-width: 900px) {
  .hero-facts {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding-left: 0;
    padding-top: 1.8rem;
    margin-top: 0.5rem;
    column-gap: 2rem;
  }
}

/* ---------- Marquee ---------- */

.marquee {
  border-block: 1px solid var(--rule);
  background: var(--cream-warm);
  overflow: hidden;
  padding-block: 0.95rem;
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: slide 38s linear infinite;
}
.marquee span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  white-space: nowrap;
}
.marquee span::before { content: "\2726"; color: var(--gold); font-style: normal; margin-right: 3.5rem; font-size: 0.7rem; vertical-align: middle; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Section head ---------- */

.head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 820px) { .head { grid-template-columns: 1fr; gap: 1.25rem; } }
.head .marker { display: block; margin-bottom: 1rem; }

/* ---------- Offering list (asymmetric rows) ---------- */

.rows { border-top: 1px solid var(--rule); }
.row {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: baseline;
  padding-block: clamp(1.8rem, 3.4vw, 2.6rem);
  border-bottom: 1px solid var(--rule);
  transition: background .4s ease, padding-left .4s ease;
}
.row:hover { background: rgba(250, 232, 237, 0.42); padding-left: 0.9rem; }
@media (max-width: 780px) {
  .row { grid-template-columns: 1fr; gap: 0.6rem; }
  .row:hover { padding-left: 0; }
}
.row .num { font-size: 0.66rem; letter-spacing: 0.2em; color: var(--gold); }
.row p { color: var(--muted); }

/* ---------- Split feature ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

.panel {
  position: relative;
  background: var(--dark);
  color: var(--cream);
  padding: clamp(2.2rem, 4.5vw, 3.6rem);
}
.panel h2, .panel h3 { color: var(--cream); }
.panel .eyebrow { color: var(--gold-light); }
.panel p { color: rgba(253, 246, 236, 0.72); }
.panel .btn { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.panel .btn::before { background: var(--cream); }

.frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(150deg, var(--blush-light) 0%, var(--cream-warm) 55%, var(--blush) 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  pointer-events: none;
}
.frame .mono {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: rgba(30, 26, 24, 0.16);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 2rem;
}

/* ---------- Pricing ---------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.price {
  background: var(--cream);
  padding: clamp(1.8rem, 3.4vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: background .4s ease;
}
.price:hover { background: var(--cream-warm); }
.price--feature { background: var(--dark); color: var(--cream); }
.price--feature:hover { background: #262120; }
.price--feature h3 { color: var(--cream); }
.price--feature .eyebrow { color: var(--gold-light); }
.price--feature .price-note, .price--feature li { color: rgba(253, 246, 236, 0.7); }
.price--feature .amount { color: var(--gold-light); }

.amount {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  color: var(--dark);
  line-height: 1;
}
.amount sub {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  vertical-align: baseline;
  margin-left: 0.5rem;
  bottom: 0;
}
.price-note { font-size: 0.86rem; color: var(--muted); }
.price ul { list-style: none; display: grid; gap: 0.55rem; font-size: 0.92rem; color: var(--muted); }
.price li { display: flex; gap: 0.7rem; }
.price li::before { content: "\2014"; color: var(--gold); flex: none; }
.price .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Info / hours ---------- */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.6rem, 3.6vw, 3rem);
}
.info h3 { font-size: 1.28rem; margin-bottom: 0.6rem; }
.info p, .info address { font-style: normal; color: var(--muted); font-size: 0.95rem; }
.info .marker { display: block; margin-bottom: 0.9rem; }

/* ---------- CTA band ---------- */

.band {
  background: var(--dark);
  color: var(--cream);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  top: -40%; left: 50%;
  width: 70vw; height: 70vw;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201,168,76,0.16) 0%, rgba(201,168,76,0) 62%);
  pointer-events: none;
}
.band .wrap { position: relative; z-index: 1; }
.band h2 { color: var(--cream); }
.band h2 em { font-style: italic; color: var(--gold-light); }
.band p { color: rgba(253,246,236,0.7); }
.band .btn { background: var(--cream); border-color: var(--cream); color: var(--dark); }
.band .btn::before { background: var(--gold); }
.band .btn--ghost { background: transparent; color: var(--cream); border-color: rgba(253,246,236,0.4); }
.band .btn--ghost:hover { color: var(--dark); border-color: var(--gold); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--cream-warm);
  border-top: 1px solid var(--rule);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.85fr));
  gap: clamp(1.8rem, 3.4vw, 3rem);
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer address { font-style: normal; font-size: 0.92rem; color: var(--text); line-height: 1.7; }
.site-footer h4 {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; display: grid; gap: 0.6rem; }
.site-footer a { text-decoration: none; font-size: 0.92rem; color: var(--text); transition: color .3s ease; }
.site-footer a:hover { color: var(--gold); }
.footer-brand .brand { font-size: 1.6rem; }
.footer-brand p { margin-top: 1rem; font-size: 0.92rem; color: var(--muted); max-width: 34ch; }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ---------- Page hero (interior) ---------- */

.page-hero {
  padding-top: clamp(2.8rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3.2rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -26vw; right: -18vw;
  width: 52vw; height: 52vw;
  background: radial-gradient(circle, var(--blush-light) 0%, rgba(250,232,237,0) 68%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .lede { margin-top: 1.5rem; }
.page-hero .marker { display: block; margin-bottom: 1.1rem; }
.split .marker { display: block; }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
