/* ══════════════════════════════════════
   Casa Boreal · Wellness Club
   Ultra-minimal · Mobile-first · v3
   ══════════════════════════════════════ */

/* ─── Palette ─── */
:root {
  --bg:      #faf8f5;
  --bg-alt:  #f4f1ec;
  --line:    #e8e4dd;
  --taupe:   #b8ad9e;
  --text:    #8a8070;
  --head:    #6b6155;
  --dark:    #4d453b;
  --accent:  #8b8672;
  --white:   #faf8f5;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ─── Section padding (mobile) ─── */
.hero, .about, .disciplines, .schedules, .pricing, .faq, .contact, .quote {
  padding-left: 7vw;
  padding-right: 7vw;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 7vw;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.logo-sub {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--taupe);
  line-height: 1;
}

/* ─── Burger ─── */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 210;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 1px;
  transition: 0.35s ease;
}

/* Burger → X when active */
.burger.active span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.burger.active span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* ─── Nav (mobile: fullscreen overlay) ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  background-color: #faf8f5;
}

.nav.open {
  display: flex;
}

.nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #4d453b;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.nav a:hover { color: #b8ad9e; }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  padding-top: 0;
  padding-bottom: 14vh;
}

/* ─── Hero carousel ─── */
.hero-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 3.5rem;
  overflow: hidden;
}

.hero-carousel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to bottom, transparent, rgba(250, 248, 245, 0.75));
  pointer-events: none;
  z-index: 2;
}

.hero-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-track img {
  width: 100vw;
  min-width: 100vw;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #4d453b;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.dot.active {
  background: #4d453b;
}

/* ─── Hero image (single) & section-img ─── */
.hero-img, .section-img {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 3.5rem;
}

.hero-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to bottom, transparent, rgba(250, 248, 245, 0.75));
  pointer-events: none;
}

.hero-img img, .section-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Social bar ─── */
.social-bar {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--taupe);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 0.3s, border-color 0.3s;
}

.social-bar a:hover {
  color: var(--dark);
  border-color: var(--dark);
}

.social-bar svg {
  width: 16px;
  height: 16px;
}

.hero-tag {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--taupe);
  margin-bottom: 1.8rem;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 2.5rem;
  max-width: 700px;
}

h1 em {
  font-style: italic;
  font-weight: 300;
}

/* ─── Buttons ─── */
.cta {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  background: var(--dark);
  border: 1px solid var(--dark);
  padding: 0.85rem 2.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta:hover {
  background: transparent;
  color: var(--dark);
}

.cta-s {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--head);
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.cta-s:hover {
  color: var(--dark);
  border-color: var(--dark);
}

/* ══════════════════════════════════════
   QUOTE STRIPS
   ══════════════════════════════════════ */
.quote {
  padding-top: 7vh;
  padding-bottom: 7vh;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}

.quote blockquote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 4.5vw, 2rem);
  color: var(--head);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
.about {
  padding-top: 8vh;
  padding-bottom: 6vh;
}

.about p {\n  margin-bottom: 1.4rem;\n  max-width: 620px;\n}

.about em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--head);
}

/* ══════════════════════════════════════
   SECTION TITLES
   ══════════════════════════════════════ */
.disciplines h2,
.schedules h2,
.pricing h2,
.faq h2,
.contact h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--dark);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

/* ══════════════════════════════════════
   DISCIPLINES
   ══════════════════════════════════════ */
.disciplines {
  padding-top: 6vh;
  padding-bottom: 6vh;
}

.disc {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0;
}

.disc:last-child {
  border-bottom: 1px solid var(--line);
}

.disc-top {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.disc-top h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--dark);
}

.phonetic {
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--taupe);
}

.disc p {
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.disc ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
}

.disc li {
  font-size: 0.82rem;
  color: var(--head);
  position: relative;
  padding-left: 0.9rem;
}

.disc li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--taupe);
  font-size: 0.7rem;
}

/* ══════════════════════════════════════
   SCHEDULES
   ══════════════════════════════════════ */
.schedules {
  padding-top: 6vh;
  padding-bottom: 6vh;
  background: var(--bg-alt);
}

.sched-grid {
  display: grid;
  gap: 2.5rem;
}

.sched h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}

.sched p {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  display: flex;
  justify-content: space-between;
  max-width: 260px;
}

/* ══════════════════════════════════════
   PRICING
   ══════════════════════════════════════ */
.pricing {
  padding-top: 6vh;
  padding-bottom: 4vh;
}

.founder {
  padding-top: 2vh;
  padding-bottom: 8vh;
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--taupe);
  margin-bottom: 2rem;
  font-style: italic;
}

.price-compare {
  font-size: 0.78rem;
  color: var(--taupe);
  margin-bottom: 1rem;
}

.price-compare s {
  color: var(--text);
}

.plan-grid {
  display: grid;
  gap: 1.5rem;
}

.founder-grid {
  max-width: 700px;
}

.pricing-sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--taupe);
  margin-bottom: 2rem;
}

.founder-benefits {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 500px;
}

.founder-benefits h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.founder-benefits ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.founder-benefits li {
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.founder-benefits li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--taupe);
  font-size: 0.7rem;
}

.founder-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--head);
  margin-top: 1rem;
}

.founder-limit {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-top: 1.2rem;
}

.plan {
  border: 1px solid var(--line);
  padding: 2rem 1.8rem;
  background: var(--bg);
  transition: border-color 0.3s;
}

.plan:hover {
  border-color: var(--taupe);
}

.plan h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.price {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.price span {
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--taupe);
}

.plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.plan li {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  padding-left: 1rem;
  position: relative;
  color: var(--text);
}

.plan li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--taupe);
}

.plan.highlight {
  border-color: var(--dark);
  background: var(--bg-alt);
}

.badge {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq {
  padding-top: 6vh;
  padding-bottom: 6vh;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0;
}

.faq details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.25s;
}

.faq summary:hover { color: var(--head); }
.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--taupe);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  font-size: 0.88rem;
  margin-top: 0.8rem;
  padding-right: 2rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact {
  padding-top: 8vh;
  padding-bottom: 10vh;
  background: var(--bg-alt);
}

.contact-text {
  margin-bottom: 2.5rem;
}

.contact-text p {
  max-width: 440px;
  font-size: 0.92rem;
}

.form {
  display: grid;
  gap: 1.4rem;
  max-width: 440px;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--taupe);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--dark);
}

.form select {
  color: var(--taupe);
}

.form select:valid { color: var(--dark); }

.form textarea {
  resize: vertical;
  min-height: 60px;
}

.form .cta { justify-self: start; margin-top: 0.5rem; }

/* ══════════════════════════════════════
   WHATSAPP BUTTON
   ══════════════════════════════════════ */
.wa {
  position: fixed;
  right: 5vw;
  bottom: 5vw;
  z-index: 90;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(77, 69, 59, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(77, 69, 59, 0.35);
}

.wa svg { width: 22px; height: 22px; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  text-align: center;
  padding: 3rem 7vw;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.footer-address {
  font-size: 0.75rem;
  color: var(--taupe);
  margin-top: 0.8rem;
  font-style: italic;
}

/* ══════════════════════════════════════
   FADE IN ANIMATION
   ══════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════
   TABLET+ (min-width: 768px)
   ══════════════════════════════════════ */
@media (min-width: 768px) {
  .hero, .about, .disciplines, .schedules, .pricing, .faq, .contact, .quote {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .header { padding: 1.2rem 10vw; }
  .footer { padding: 3rem 10vw; }

  .burger { display: none; }

  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 2.2rem;
    width: auto;
    height: auto;
    background: none;
  }

  .nav a {
    font-family: "Jost", sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
  }

  .nav a:hover { color: var(--dark); }

  .sched-grid { grid-template-columns: repeat(3, 1fr); }
  .plan-grid  { grid-template-columns: repeat(3, 1fr); }
  .founder-grid { grid-template-columns: repeat(2, 1fr); }

  .disc {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0 3rem;
  }

  .disc-top { grid-column: 1; }
  .disc p   { grid-column: 2; grid-row: 1 / 3; }
  .disc ul  { grid-column: 2; }

  .faq details {
    max-width: 700px;
  }

  .contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

/* ══════════════════════════════════════
   DESKTOP (min-width: 1100px)
   ══════════════════════════════════════ */
@media (min-width: 1100px) {
  .hero, .about, .disciplines, .schedules, .pricing, .faq, .contact, .quote {
    padding-left: 14vw;
    padding-right: 14vw;
  }

  .header { padding: 1rem 14vw; }
  .footer { padding: 3rem 14vw; }

  h1 { font-size: 3.6rem; max-width: 800px; }

  .about p { max-width: 720px; }

  .disc {
    grid-template-columns: 300px 1fr;
  }

  .faq details { max-width: 800px; }

  .wa { right: 2rem; bottom: 2rem; }
}
