/* ============================================================
   Hayley Molefe — Speaker · Luxury Brand Activator · Author
   Design system extracted from the original Wix build.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --cream:        #FDFBF7;   /* page background */
  --cream-warm:   #F5F0E6;   /* soft beige panels */
  --cream-panel:  #FAF7F0;   /* card panels */
  --ink:          #1A1A1A;   /* headings / body */
  --ink-soft:     #4A4A4A;   /* secondary body copy */
  --gold:         #C5A059;   /* buttons, rules, headings */
  --gold-bright:  #D4AF37;   /* eyebrow labels */
  --gold-pale:    #E8D9B5;
  --white:        #FFFFFF;

  --serif: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;

  --wrap:      1200px;
  --wrap-wide: 1440px;
  --gutter:    clamp(20px, 5vw, 60px);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.12; }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; }

/* ---------- Layout helpers ---------- */
.wrap      { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { width: 100%; max-width: var(--wrap-wide); margin-inline: auto; padding-inline: var(--gutter); }
.section   { padding-block: clamp(56px, 8vw, 110px); }
.section--tight { padding-block: clamp(40px, 5vw, 70px); }
.bg-cream  { background: var(--cream); }
.bg-warm   { background: var(--cream-warm); }
.bg-dark   { background: var(--ink); color: var(--cream); }
.bg-gold   { background: var(--gold); }
.center    { text-align: center; }

/* ---------- Type ---------- */
.eyebrow {
  font-size: clamp(13px, 1.1vw, 17px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 .55em;
  font-weight: 500;
}
.display {
  font-size: clamp(38px, 5.2vw, 74px);
  letter-spacing: -.005em;
}
.display--spaced {
  font-size: clamp(30px, 4.4vw, 62px);
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.25;
}
.h2 { font-size: clamp(30px, 3.6vw, 52px); }
.h3 { font-size: clamp(22px, 2vw, 30px); }
.lede {
  font-size: clamp(18px, 1.55vw, 25px);
  color: var(--ink-soft);
  line-height: 1.62;
}
.muted { color: var(--ink-soft); }
.bg-dark .muted, .bg-dark .lede { color: rgba(253, 251, 247, .82); }

/* dotted gold rule under headings */
.rule-dots {
  width: 220px; height: 3px; margin: 26px 0 30px;
  background-image: radial-gradient(circle, var(--gold-bright) 1.4px, transparent 1.6px);
  background-size: 8px 3px; background-repeat: repeat-x;
}
.rule-dots.is-center { margin-inline: auto; }
.rule-line { width: 108px; height: 1px; background: var(--gold); margin: 24px 0; }
.rule-line.is-center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 15px 34px;
  font-size: clamp(14px, 1.05vw, 17px);
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid   { background: var(--gold); color: var(--white); }
.btn--solid:hover { background: #B08D46; }
.btn--outline { background: transparent; color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--white); }
.btn--ghost   { background: #FBF6E7; color: var(--gold); border-color: transparent; }
.btn--ghost:hover { background: var(--gold); color: var(--white); }
.bg-dark .btn--outline { color: var(--gold-pale); border-color: var(--gold); }

/* ============================================================
   Header
   ============================================================ */
/* The original carries a soft cloud wash behind the masthead — barely there,
   just enough to warm the top of the page. */
.siteheader {
  position: sticky; top: 0; z-index: 60;
  background:
    linear-gradient(rgba(253, 251, 247, .93), rgba(253, 251, 247, .97)),
    url("../images/clouds-band.jpg") 50% 12% / cover no-repeat,
    var(--cream);
}
.siteheader__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-block: 14px;
}
.siteheader__logo img { width: clamp(210px, 24vw, 340px); height: auto; }
.siteheader__cta { display: none; }
@media (min-width: 900px) { .siteheader__cta { display: inline-flex; } }

.nav { border-top: 1px solid rgba(26, 26, 26, .08); }
.nav__list {
  list-style: none; display: none;
  gap: clamp(18px, 3vw, 52px);
  justify-content: center; padding-block: 14px; flex-wrap: wrap;
}
.nav__list a {
  font-size: clamp(13px, 1.05vw, 17px);
  letter-spacing: .13em; text-transform: uppercase;
  padding-bottom: 3px; border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.nav__list a:hover { color: var(--gold); }
.nav__list a[aria-current="page"] { border-bottom-color: var(--ink); }
@media (min-width: 900px) { .nav__list { display: flex; } }

.navtoggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 40px; background: none; border: 0; padding: 0;
}
.navtoggle span { display: block; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 900px) { .navtoggle { display: none; } }

.mobilenav {
  display: none; background: var(--cream);
  border-top: 1px solid rgba(26, 26, 26, .08);
}
.mobilenav.is-open { display: block; }
.mobilenav ul { list-style: none; padding: 8px 0 22px; }
.mobilenav a {
  display: block; padding: 13px var(--gutter);
  font-size: 17px; letter-spacing: .13em; text-transform: uppercase;
}
.mobilenav .btn { margin: 12px var(--gutter) 0; width: calc(100% - var(--gutter) * 2); }
@media (min-width: 900px) { .mobilenav { display: none !important; } }

/* ============================================================
   Hero (home)
   ============================================================ */
.hero { display: grid; grid-template-columns: 1fr; }
@media (min-width: 900px) { .hero { grid-template-columns: 1fr 1fr; } }
.hero__copy {
  position: relative;
  padding: clamp(38px, 5vw, 74px) var(--gutter);
  background: var(--cream) url("../images/hero-backdrop.jpg") center/cover no-repeat;
  display: flex; flex-direction: column; justify-content: center;
}
.hero__copy::before { content: ""; position: absolute; inset: 0; background: rgba(253, 251, 247, .93); }
.hero__copy > * { position: relative; }
.hero__title {
  font-size: clamp(30px, 3.6vw, 50px);
  letter-spacing: .13em; text-transform: uppercase; line-height: 1.28;
  margin-bottom: 6px;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 26px 0 34px; }

/* icon strip */
.iconstrip {
  display: grid; gap: clamp(10px, 2vw, 22px);
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
}
.iconstrip figure { margin: 0; text-align: center; }
.iconstrip img { width: clamp(66px, 6vw, 100px); height: auto; margin-inline: auto; }
.iconstrip figcaption {
  margin-top: 8px; font-size: clamp(11px, .95vw, 14px); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; line-height: 1.3;
}

/* ============================================================
   Split sections (image + copy)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr; align-items: center; gap: 0; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip .split__media { order: 2; }
}
.split__media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.split__copy { padding: clamp(38px, 5vw, 80px) var(--gutter); }
.split__copy .btn { margin-top: 10px; }

/* stat trio */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 2vw, 26px); margin-top: 34px; }
.stats figure { margin: 0; }
.stats img { width: clamp(70px, 6vw, 112px); height: auto; }
.stats figcaption {
  margin-top: 10px; font-size: clamp(12px, 1vw, 16px); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; line-height: 1.35;
}

/* ============================================================
   Speaking highlights (dark)
   ============================================================ */
.photogrid { display: grid; gap: clamp(12px, 1.6vw, 22px); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .photogrid { grid-template-columns: repeat(4, 1fr); } }
.photogrid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* gold statistics band */
.goldband {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 30px);
  padding-block: clamp(26px, 3vw, 42px);
}
@media (min-width: 860px) { .goldband { grid-template-columns: repeat(4, 1fr); } }
.goldband figure {
  margin: 0; display: flex; flex-direction: column; align-items: center; text-align: center;
}
.goldband img { width: clamp(64px, 5vw, 92px); height: auto; }
.goldband figcaption {
  margin-top: 10px; font-size: clamp(11px, .95vw, 14px); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
@media (min-width: 860px) {
  .goldband figure + figure { border-left: 1px solid rgba(26, 26, 26, .22); }
}

/* bullet list with serif markers */
.list-check { list-style: none; margin: 24px 0 30px; }
.list-check li { position: relative; padding-left: 26px; margin-bottom: 11px; font-size: clamp(17px, 1.3vw, 21px); }
.list-check li::before {
  content: "•"; position: absolute; left: 4px; top: -1px; color: var(--ink); font-size: 1.15em;
}
.list-check--tick li::before { content: "✓"; color: var(--gold); font-size: .95em; top: 0; }

/* feature circles (book / dreamdoodle) */
.circles { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 46px); margin-top: 34px; }
.circles figure { margin: 0; text-align: center; width: clamp(96px, 10vw, 130px); }
.circles img { width: clamp(74px, 7vw, 104px); height: auto; margin-inline: auto; }
.circles figcaption { margin-top: 10px; font-size: clamp(12px, 1vw, 16px); line-height: 1.3; }
.circles--caps figcaption { text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: clamp(11px, .9vw, 13px); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: clamp(24px, 3vw, 40px);
}
.gallery__grid { display: grid; gap: clamp(12px, 1.4vw, 20px); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 860px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); } }
.gallery__item { margin: 0; }
.gallery__item button {
  display: block; width: 100%; padding: 0; border: 0; background: none; overflow: hidden;
}
.gallery__item img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery__item button:hover img { transform: scale(1.05); }
.gallery__cap {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 10px 2px 0; font-size: clamp(11px, .95vw, 14px);
  letter-spacing: .1em; text-transform: uppercase;
}
.gallery__cap span:last-child { color: var(--gold); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(20, 18, 16, .94);
  align-items: center; justify-content: center; padding: 4vh 4vw;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 84vh; object-fit: contain; }
.lightbox__cap {
  position: absolute; bottom: 3vh; left: 0; right: 0; text-align: center;
  color: var(--cream); letter-spacing: .14em; text-transform: uppercase; font-size: 14px;
}
.lightbox__btn {
  position: absolute; background: none; border: 0; color: var(--cream);
  font-size: 34px; line-height: 1; padding: 12px 18px; opacity: .8;
}
.lightbox__btn:hover { opacity: 1; }
.lightbox__btn--prev  { left: 1vw;  top: 50%; transform: translateY(-50%); }
.lightbox__btn--next  { right: 1vw; top: 50%; transform: translateY(-50%); }
.lightbox__btn--close { top: 2vh; right: 2vw; font-size: 28px; }

/* ============================================================
   Page banners
   ============================================================ */
.pagebanner { padding-block: clamp(46px, 6vw, 88px); text-align: center; }
.bannerstrip { padding-block: clamp(26px, 3vw, 46px); text-align: center; }
.bannerstrip h2 {
  color: var(--gold); font-size: clamp(22px, 2.6vw, 38px);
  letter-spacing: .1em; text-transform: uppercase; line-height: 1.3;
}
.fullbleed img { width: 100%; height: clamp(230px, 32vw, 450px); object-fit: cover; }

/* offer blocks (work with me) */
.offer { max-width: 780px; margin-inline: auto; text-align: center; }
.offer + .offer { margin-top: clamp(34px, 4vw, 56px); }
.offer h3 { font-size: clamp(22px, 2vw, 30px); margin-bottom: 12px; }

/* values trio (my story) */
.values { display: grid; gap: clamp(26px, 4vw, 56px); grid-template-columns: 1fr; }
@media (min-width: 820px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value { display: flex; gap: 18px; align-items: flex-start; }
.value img { width: clamp(58px, 5vw, 86px); height: auto; flex: none; }
.value h3 { font-size: clamp(20px, 1.7vw, 26px); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.value p { font-size: clamp(16px, 1.2vw, 19px); color: var(--ink-soft); margin: 0; }

/* story photo pair grid */
.photopair { display: grid; gap: clamp(12px, 1.6vw, 20px); grid-template-columns: repeat(2, 1fr); }
.photopair img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* section divider label with side rules */
.labelrule {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  color: var(--gold); letter-spacing: .18em; text-transform: uppercase;
  font-size: clamp(14px, 1.15vw, 18px); margin-bottom: clamp(28px, 3.5vw, 48px);
}
.labelrule::before, .labelrule::after {
  content: ""; height: 1px; background: var(--gold); flex: 0 1 110px;
}

/* ============================================================
   Book / product hero card
   ============================================================ */
.producthero { position: relative; }
.producthero > img { width: 100%; height: clamp(420px, 62vw, 880px); object-fit: cover; }
.producthero__card {
  background: var(--cream-panel); border: 1px solid rgba(197, 160, 89, .35);
  padding: clamp(26px, 3vw, 44px); max-width: 460px; text-align: center;
}
@media (min-width: 900px) {
  .producthero__card { position: absolute; top: 50%; left: var(--gutter); transform: translateY(-50%); }
}
@media (max-width: 899px) {
  .producthero > img { height: clamp(280px, 60vw, 420px); }
  .producthero__card { margin: -60px auto 0; position: relative; }
}
.producthero__card ul { list-style: none; margin: 18px 0 26px; }
.producthero__card li { margin-bottom: 9px; font-size: clamp(16px, 1.2vw, 19px); }

/* ============================================================
   Contact
   ============================================================ */
.contactgrid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 900px) { .contactgrid { grid-template-columns: 1fr 1.15fr; } }
.contactgrid__media img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.form { background: var(--cream-warm); padding: clamp(28px, 3.4vw, 52px); }
.form h2 { font-size: clamp(26px, 2.4vw, 36px); margin-bottom: 26px; }
.form__row { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: 20px; }
.field > label { display: block; margin-bottom: 8px; font-size: clamp(15px, 1.1vw, 18px); }
.field input[type="text"], .field input[type="email"], .field textarea {
  width: 100%; padding: 12px 14px;
  font-family: var(--serif); font-size: 18px; color: var(--ink);
  background: var(--white); border: 1px solid rgba(26, 26, 26, .45); border-radius: 0;
  transition: border-color .25s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 130px; resize: vertical; }
.radios { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.radios label { display: flex; align-items: center; gap: 10px; font-size: clamp(15px, 1.1vw, 18px); }
.form .btn { width: 100%; }
.form .btn[disabled] { opacity: .62; cursor: default; transform: none; }
.form__note { margin: 14px 0 0; font-size: 15px; color: var(--ink-soft); }

/* honeypot — off-screen rather than display:none, which some bots skip */
.honeypot {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}

.form__status {
  margin: 16px 0 0; padding: 13px 16px;
  font-size: clamp(15px, 1.15vw, 18px); line-height: 1.45;
}
.form__status.is-ok    { background: rgba(197, 160, 89, .16); border-left: 3px solid var(--gold); }
.form__status.is-error { background: rgba(178, 58, 44, .10);  border-left: 3px solid #B23A2C; }

/* empty-state (book online) */
.emptystate { padding-block: clamp(80px, 14vw, 190px); text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
.sitefooter { background: var(--ink); color: var(--cream); padding-block: clamp(46px, 5vw, 76px); }
.sitefooter__brand { text-align: center; margin-bottom: clamp(30px, 4vw, 50px); }
.sitefooter__brand img { width: 78px; height: auto; margin: 0 auto 14px; }
.sitefooter__brand h2 { font-size: clamp(30px, 3vw, 44px); }
.sitefooter__brand p {
  color: var(--gold); letter-spacing: .18em; text-transform: uppercase;
  font-size: clamp(11px, .95vw, 14px); margin: 10px 0 0;
}
.sitefooter__cols { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 4vw, 56px); }
@media (min-width: 900px) { .sitefooter__cols { grid-template-columns: 1.2fr .8fr 1fr; } }
.sitefooter__col { font-size: clamp(15px, 1.15vw, 18px); }
@media (min-width: 900px) {
  .sitefooter__col + .sitefooter__col { border-left: 1px solid var(--gold); padding-left: clamp(24px, 3vw, 48px); }
}
.sitefooter h3 {
  color: var(--gold); letter-spacing: .14em; text-transform: uppercase;
  font-size: clamp(17px, 1.5vw, 23px); margin-bottom: 6px;
}
.sitefooter__list { list-style: none; margin-top: 18px; }
.sitefooter__list li { margin-bottom: 12px; }
.sitefooter__list a:hover { color: var(--gold); }
.sitefooter__meta { list-style: none; margin-top: 26px; }
.sitefooter__meta li { margin-bottom: 13px; display: flex; gap: 10px; align-items: baseline; }
.sitefooter__meta a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.sitefooter__script {
  font-family: "Parisienne", var(--serif);
  font-size: clamp(38px, 4vw, 58px); color: var(--gold);
  font-weight: 400; line-height: 1; margin: 20px 0 24px;
}
.socials { display: flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.socials > span {
  color: var(--gold); letter-spacing: .13em; text-transform: uppercase;
  font-size: clamp(16px, 1.4vw, 21px);
}
.socials a {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cream); color: var(--ink);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.socials a:hover { transform: translateY(-2px); background: var(--gold); color: var(--white); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.sitefooter__legal {
  margin-top: clamp(38px, 4vw, 62px); padding-top: 24px;
  border-top: 1px solid rgba(253, 251, 247, .22);
  text-align: center; font-size: 15px; color: rgba(253, 251, 247, .72);
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .gallery__item button:hover img { transform: none; }
}

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--ink); color: var(--cream); padding: 12px 20px;
}
.skip:focus { left: 12px; top: 12px; }
