/* COLORS */
:root{
  --warm-cream:#F7F5ED;
  --soft-blush:#F2B6A0;
  --muted-sage:#456153;
  --dusty-sky:#a1bcb8;
  --clay:#C97A5D;
  --text:#333;
}

/* BASE */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--warm-cream);
  color:var(--text);
  line-height:1.6;
}
a{ text-decoration:none; color:inherit; }
h1,h2,h3{
  font-family:'Nordeco','Cormorant Garamond','Georgia',serif;
  letter-spacing:0.2px;
}
ul{ list-style:none; padding-left:0; }

/* Accessibility helper */
.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;
}

/* Helpers */
.container{ max-width:1200px; margin:0 auto; padding:60px 20px; }
.section{ padding:60px 20px; }
.text-center{ text-align:center; }
.max-text{ max-width:920px; margin:0 auto; }
.spacer-top{ margin-top:34px; }
.contact-small{ margin-top:14px; opacity:0.9; }

/* BUTTON */
.btn{
  display:inline-block;
  padding:12px 24px;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;
  transition:0.25s ease;
  font-family:'Quicksand', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}
.btn-primary{ background:var(--clay); color:#fff; }
.btn-primary:hover{ background:var(--soft-blush); transform:translateY(-1px); box-shadow:0 14px 30px rgba(0,0,0,0.14); }
.btn-secondary{ background:var(--muted-sage); color:#fff; }
.btn-secondary:hover{ background:var(--dusty-sky); transform:translateY(-1px); box-shadow:0 14px 30px rgba(0,0,0,0.14); }

/* TOP NAV */
.topnav{
  position:sticky; top:0; z-index:999;
  background:rgba(255,246,238,0.90);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.nav-inner{
  max-width:1200px; margin:0 auto; padding:12px 20px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  transition: padding 0.25s ease;
}

/* Brand lockup */
.brand{
  display:flex; align-items:center; gap:10px;
  color:var(--clay);
  line-height:1;
}
.logo-lockup img{
  height:34px; width:auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.08));
  transition: transform 0.25s ease;
}
.logo-lockup span{
  font-family:'Nordeco','Cormorant Garamond','Georgia',serif;
  font-weight:800;
  letter-spacing:0.3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  font-weight:700;
  font-family:'Quicksand', sans-serif;
}
.nav-links a{ padding:8px 10px; border-radius:10px; }
.nav-links a:hover{ background:rgba(201,122,93,0.10); }

.nav-cta{
  background:var(--clay);
  color:#fff !important;
  box-shadow:0 10px 18px rgba(0,0,0,0.12);
}
.nav-cta:hover{
  background:var(--clay);
  box-shadow:0 14px 26px rgba(0,0,0,0.16);
}

.nav-book{
  background: rgba(201,122,93,0.10);
}
.nav-book:hover{
  background: rgba(201,122,93,0.18);
}

/* Instagram icon in header */
.ig-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:12px;
  color: var(--clay);
  background: rgba(201,122,93,0.10);
  transition: 0.25s ease;
  flex:0 0 auto;
}
.ig-link:hover{
  background: rgba(201,122,93,0.18);
  transform: translateY(-1px);
}

/* Nav shrink on scroll */
.topnav.scrolled{
  background: rgba(255,246,238,0.96);
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}
.topnav.scrolled .nav-inner{ padding:10px 20px; }
.topnav.scrolled .logo-lockup img{ transform: scale(0.92); }
.topnav.scrolled .logo-lockup span{ transform: translateY(-1px); }

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  text-align:center;
  min-height: clamp(520px, 72vh, 760px);
  padding:96px 20px 84px;
  background: url("hero-bg.jpg") center/cover no-repeat;
  background-color: var(--warm-cream);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(255,246,238,0.35) 0%,
    rgba(255,246,238,0.25) 55%,
    rgba(255,246,238,0.35) 100%
  );
  pointer-events:none;
  z-index:0;
}
.hero > *{ position:relative; z-index:1; }

.hero-logo{
  width:min(420px, 84vw);
  height:auto;
  margin:0 auto 16px;
  display:block;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.10));
}
.hero p{
  font-size:1.1rem;
  margin:0 auto 10px;
  max-width:820px;
}
.hero .tagline{
  font-family:'Quicksand', sans-serif;
  font-weight:800;
  opacity:0.98;
  margin: 8px auto 12px;
  letter-spacing:0.2px;
}
.hero .cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:16px;
}

/* Hero entrance animation */
.hero .hero-logo,
.hero p,
.hero .cta-row{
  opacity:0;
  transform:translateY(8px);
  animation: heroIn 0.8s ease forwards;
}
.hero .hero-logo{ animation-delay:0.05s; }
.hero p.tagline{ animation-delay:0.18s; }
.hero p.subline{ animation-delay:0.28s; }
.hero .cta-row{ animation-delay:0.40s; }
@keyframes heroIn{ to{ opacity:1; transform:translateY(0); } }

/* ABOUT */
.about{
  background:var(--dusty-sky);
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.about p{ max-width:900px; margin-top:16px; font-size:1.1rem; }
.about-grid{
  width:100%;
  max-width:980px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:16px;
  margin-top:24px;
  text-align:left;
}
.about-card{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius:16px;
  padding:18px;
}
.about-card h3{
  color:#fff;
  margin-bottom:8px;
  font-family:'Quicksand', sans-serif;
  font-weight:900;
  letter-spacing:0.2px;
}
.about-card p{
  margin-top:0;
  font-size:1.03rem;
  opacity:0.96;
}

/* Cards (used by Shop + Sessions) */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
  margin-top:26px;
  text-align:left;
}
.card{
  background:#fff;
  border-radius:16px;
  padding:22px;
  box-shadow:0 6px 14px rgba(0,0,0,0.10);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 26px rgba(0,0,0,0.14);
}
.card h3{ color:var(--clay); margin-bottom:8px; }
.card p{ margin-bottom:10px; }

.text-link{
  font-weight:900;
  font-family:'Quicksand', sans-serif;
  color:var(--clay);
  border-bottom:1px solid rgba(201,122,93,0.35);
  display:inline-block;
  padding-bottom:2px;
}

/* Sessions wrapper + CTA styling */
.sessions .mini-row{
  margin-top:22px;
  display:flex;
  justify-content:center;
}
.sessions .btn-secondary{
  background: var(--dusty-sky);
  color: #fff;
}
.sessions .btn-secondary:hover{
  background: var(--clay);
  transform: translateY(-1px);
}

/* Embeds */
.embed-card{
  background:#fff;
  border-radius:16px;
  padding:18px;
  max-width:950px;
  margin:18px auto 0;
  box-shadow:0 6px 14px rgba(0,0,0,0.12);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.embed-card:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 22px rgba(0,0,0,0.14);
}

/* Contact */
.contact-note{
  font-family:'Quicksand',sans-serif;
  font-weight:800;
  color:var(--clay);
  margin-bottom:8px;
}
.contact-email{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  background: rgba(201,122,93,0.08);
  border: 1px solid rgba(201,122,93,0.18);
  font-weight:800;
  font-family:'Quicksand',sans-serif;
}
.contact-email:hover{
  background: rgba(201,122,93,0.12);
  transform: translateY(-1px);
}

/* Mailchimp */
.mc-theme{ text-align:center; }
.mc-theme .indicates-required{ font-size:12px; opacity:0.7; margin-bottom:10px; }
.mc-theme label{
  display:block;
  text-align:left;
  max-width:520px;
  margin:0 auto 6px;
  font-weight:800;
  color:var(--clay);
  font-family:'Quicksand', sans-serif;
}
.mc-theme input[type="email"],
.mc-theme input[type="text"]{
  width:90%;
  max-width:520px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,0.12);
  margin:0 auto 14px;
  font-size:16px;
  font-family:'Open Sans', sans-serif;
  outline:none;
}
.mc-theme input[type="email"]:focus,
.mc-theme input[type="text"]:focus{
  border-color:var(--clay);
  box-shadow:0 0 0 4px rgba(201,122,93,0.15);
}
.mc-theme .button,
.mc-theme input[type="submit"]{
  background:var(--clay);
  color:#fff;
  border:none;
  border-radius:12px;
  padding:14px 22px;
  font-weight:900;
  cursor:pointer;
  font-family:'Quicksand', sans-serif;
  transition:0.25s ease;
  box-shadow:0 10px 22px rgba(0,0,0,0.12);
}
.mc-theme .button:hover,
.mc-theme input[type="submit"]:hover{
  background:var(--clay);
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(0,0,0,0.16);
}

/* Footer */
footer{
  background:var(--dusty-sky);
  color:#fff;
  padding:40px 20px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:18px;
}
footer a{ color:#fff; }
footer .footer-col{ flex:1 1 220px; margin:10px; }
footer li{ margin:8px 0; }

.footer-ig{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  font-family:'Quicksand',sans-serif;
}

/* Back to top button */
.back-to-top{
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--clay);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
  z-index: 999;
}
.back-to-top:hover{
  background: var(--clay);
  transform: translateY(2px);
}
.back-to-top.show{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Responsive */
@media(max-width:768px){
  .nav-links{ gap:8px; font-size:14px; }
  .logo-lockup img{ height:28px; }
  .logo-lockup span{ font-size:15px; }
  .ig-link{ width:34px; height:34px; border-radius:11px; }

  .hero{
    padding:78px 16px 68px;
    min-height: 520px;
    background-position: 55% center;
  }
  .hero p{ font-size:1.03rem; }
}
@media(max-width:420px){
  .hero{ background-position: 58% center; }
  .hero-logo{ width:min(360px, 86vw); }
}

/* Soft section separators */
.section, .container{ position:relative; }
.section::after{
  content:"";
  display:block;
  height:1px;
  max-width:980px;
  margin:50px auto 0;
  background:rgba(0,0,0,0.06);
}
