:root{
  /* Brand (sampled from logo palette) */
  --blue: #242B6C;
  --orange: #A45C39;
  --sand: #EED1A9;

  /* Neutrals */
  --ink: #0c1020;
  --text: #1b1f2a;
  --muted: rgba(10, 14, 25, 0.65);
  --line: rgba(36, 43, 108, 0.16);

  --bg: #fbfbfd;
  --card: rgba(255,255,255,0.92);

  --shadow: 0 16px 40px rgba(10, 14, 25, 0.10);
  --shadow-soft: 0 10px 28px rgba(10, 14, 25, 0.08);

  --r: 18px;

  /* WhatsApp */
  --wa: #22c55e;
  --wa-dark: #16a34a;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 12% 10%, rgba(238,209,169,0.22), transparent 60%),
    radial-gradient(900px 500px at 92% 18%, rgba(36,43,108,0.12), transparent 60%),
    radial-gradient(1000px 700px at 65% 90%, rgba(164,92,57,0.10), transparent 55%),
    var(--bg);
}

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

.container{
  width:min(1120px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(251,251,253,0.80);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.logo-group{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: inherit;
}

.logo-img{
  width: 110px;  /* Even bigger! Was 90px */
  height: auto;
  object-fit: contain;
}

.logo-text{ display:flex; flex-direction: column; line-height:1.05; }
.logo-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  color: var(--blue);
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a{
  text-decoration:none;
  color: rgba(12,16,32,0.72);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 6px;
  border-radius: 12px;
  transition: 160ms ease;
}
.nav-links a:hover{
  background: rgba(36,43,108,0.06);
  color: var(--blue);
}

.nav-cta{ white-space: nowrap; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #151b4b);
  box-shadow: 0 12px 26px rgba(36,43,108,0.22);
}
.btn-primary:hover{
  box-shadow: 0 16px 36px rgba(36,43,108,0.28);
  transform: translateY(-1px);
}

.btn-ghost{
  background: rgba(255,255,255,0.80);
  border: 1px solid var(--line);
  color: var(--blue);
}
.btn-ghost:hover{
  background: rgba(36,43,108,0.06);
  transform: translateY(-1px);
}

.btn-whatsapp{
  color:#fff;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  box-shadow: 0 14px 34px rgba(34,197,94,0.30);
}
.btn-whatsapp:hover{
  box-shadow: 0 18px 44px rgba(34,197,94,0.38);
  transform: translateY(-1px);
}

.btn-whatsapp-lg{
  padding: 18px 34px;
  font-size: 1.2rem;
}

.button-row{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }

/* Sections */
.section{
  padding: 70px 0;
}
.section-soft{
  background:
    linear-gradient(180deg, rgba(238,209,169,0.14), rgba(255,255,255,0.0) 35%),
    rgba(255,255,255,0.35);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title{
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 2.7vw, 2.25rem);
  color: var(--blue);
  letter-spacing: 0.2px;
}
.section-intro{
  margin: 0 0 26px;
  max-width: 76ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Rich text blocks */
.prose{
  max-width: 86ch;
  color: rgba(10,14,25,0.72);
  line-height: 1.8;
  font-size: 1.02rem;
}
.prose p{ margin: 0 0 14px; }

/* Hero */
.hero{
  padding: 64px 0 32px;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: 
    "text photo";
  gap: 40px;
  align-items: center;
}

.hero-logo-wrapper{
  grid-area: logo;
  margin-bottom: 0;
  text-align: left;
}

.hero-logo{
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}

.hero-text{
  grid-area: text;
  text-align: left;
}

.hero-image{
  grid-area: photo;
}

.hero-eyebrow{
  margin:0 0 10px;
  color: rgba(164,92,57,0.95);
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.86rem;
}
.hero h1{
  margin:0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4.0vw, 3.1rem);
  line-height: 1.06;
  color: var(--blue); /* MAKE HERO TITLE BLUE */
}
.hero-subtitle{
  margin:0 0 18px;
  color: rgba(10, 14, 25, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-buttons{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.hero-note{
  margin: 0;
  color: rgba(36,43,108,0.70);
  font-size: 0.95rem;
}

.hero-photo{
  border-radius: 28px;
  overflow:hidden;
  border: 1px solid rgba(36,43,108,0.18);
  box-shadow: var(--shadow);
}
.hero-photo img{
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Layout helpers */
.two-column{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}
.col{ min-width: 0; }

/* Cards */
.card-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: var(--card);
  border: 1px solid rgba(36,43,108,0.14);
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.card-title{
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--orange);
  font-weight: 700;
}
.card p{
  margin: 0;
  color: rgba(10,14,25,0.72);
  line-height: 1.65;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 4px 10px;
  margin-left: 8px;
  font-size: 0.78rem;
  border-radius: 999px;
  background: rgba(164,92,57,0.12);
  color: var(--orange);
  border: 1px solid rgba(164,92,57,0.20);
}

/* Quote blocks */
.quote-block{
  border-left: 4px solid rgba(164,92,57,0.65);
  padding: 12px 14px;
  margin: 14px 0 18px;
  background: rgba(238,209,169,0.18);
  border-radius: 14px;
}
.quote{
  margin: 0 0 6px;
  font-style: italic;
  color: rgba(10,14,25,0.78);
  line-height: 1.65;
  font-size: 0.95rem; /* SMALLER QUOTE TEXT */
}
.quote-credit{
  margin: 0;
  color: rgba(36,43,108,0.70);
  font-weight: 600;
  font-size: 0.92rem;
}
.mini-quote{
  margin-top: 14px;
  color: rgba(164,92,57,0.92);
  font-weight: 600;
}

/* Notice box */
.notice{
  margin: 16px 0 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(36,43,108,0.06);
  border: 1px solid rgba(36,43,108,0.14);
}
.notice h3{
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 800;
}
.notice p{ margin: 0 0 10px; color: rgba(10,14,25,0.72); line-height: 1.75; }
.notice ul{ margin: 0; padding-left: 18px; color: rgba(10,14,25,0.72); line-height: 1.75; }
.notice li{ margin: 6px 0; }

/* About image */
.about-photo{
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid rgba(36,43,108,0.16);
  box-shadow: var(--shadow);
}
.about-photo img{
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.about-badges{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.badge{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(36,43,108,0.08);
  border: 1px solid rgba(36,43,108,0.14);
  color: rgba(36,43,108,0.88);
  font-weight: 600;
  font-size: 0.86rem;
}

/* Modalities */
.modality-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.modality{
  padding: 16px;
}
.modality-head{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}
.modality-title{
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
}
.modality-subtitle{
  margin: 0;
  color: rgba(36,43,108,0.75);
  font-weight: 500;
}
.modality-media{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(36,43,108,0.18);
}
.modality-media img{
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.modality-body p{
  color: rgba(10,14,25,0.72);
  line-height: 1.7;
  margin-bottom: 16px;
}
.modality-body p:last-child{
  margin-bottom: 0;
}
.modality-body ul{
  margin: 12px 0;
  padding-left: 24px;
  line-height: 1.75;
}
.modality-body li{
  margin: 8px 0;
}
.note{
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(10,14,25,0.60);
}

/* Accordion */
.acc{
  border: 1px solid rgba(36,43,108,0.14);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.70);
  margin-top: 10px;
}
.acc summary{
  cursor: pointer;
  font-weight: 700;
  color: var(--blue);
  outline: none;
}
.acc p{ margin: 10px 0 0; }

/* Pricing table */
.table-card{ padding: 14px; }
.price-table{
  width: 100%;
  border-collapse: collapse;
}
.price-table th,
.price-table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(36,43,108,0.12);
  text-align: left;
}
.price-table th{
  color: var(--blue);
  font-weight: 800;
  background: rgba(36,43,108,0.06);
}
.row-section td{
  background: rgba(238,209,169,0.22);
  color: rgba(10,14,25,0.80);
  font-weight: 800;
  border-bottom: 1px solid rgba(164,92,57,0.18);
}

.small-note{
  margin: 12px 0 0;
  font-size: 0.92rem;
  color: rgba(10,14,25,0.60);
}

/* Contact (centered) */
.contact-center{
  text-align: center;
}
.contact-center .section-title{
  text-align: left;
}
.contact-inner{
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.contact-list{
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.contact-list li{
  padding: 10px 0;
  border-bottom: 1px dashed rgba(36,43,108,0.18);
}
.contact-list a{
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.contact-list a:hover{ text-decoration: underline; }

.contact-note{
  margin-top: 14px;
  color: rgba(10,14,25,0.60);
  line-height: 1.7;
}

/* Available Hours box (Photo 1 style) */
.hours-card{
  margin: 18px 0 18px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(36,43,108,0.16);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 18px 18px;
}
.hours-title{
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 700;
}
.hours-list{
  margin: 0;
  padding-left: 20px;
  color: rgba(10,14,25,0.72);
  line-height: 1.8;
}
.hours-list li{ margin: 8px 0; }
.hours-list strong{ color: var(--blue); }

/* Social icons block */
.social-block{
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(164,92,57,0.18);
  background: rgba(238,209,169,0.18);
}
.social-block strong{
  display:block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 1.15rem;
}

.social-icons{
  display:flex;
  justify-content: center; /* CENTER ICONS */
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icon{
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(36,43,108,0.16);
  box-shadow: 0 10px 24px rgba(10,14,25,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.social-icon:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(10,14,25,0.10);
}
.social-icon svg{
  width: 30px;
  height: 30px;
  fill: var(--blue);
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(255,255,255,0.55);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(10,14,25,0.62);
}
.to-top{
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}
.to-top:hover{ text-decoration: underline; }

/* Hamburger menu (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 50;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--blue);
  transition: 0.3s;
  border-radius: 3px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .hero-inner{ grid-template-columns: 1fr; }
  .two-column{ grid-template-columns: 1fr; }
  .card-grid{ grid-template-columns: 1fr; }
  .modality-head{ grid-template-columns: 1fr; }
  .contact-center .section-title{ text-align: left; }
  
  /* Fix photo grids on mobile */
  .hero-photo img, .modality-media img, .about-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }
  
  /* Mobile menu */
  .nav-links {
    position: fixed;
    top: 77px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 77px);
    background: rgba(251,251,253,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto;
  }
  
  .nav-links.active {
    display: flex;
    right: 0;
  }
  
  .nav-links a {
    width: 100%;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(36,43,108,0.1);
    font-size: 1.05rem;
  }
  
  /* Mobile nav logo - override site-header constraint and make much bigger */
  .logo-group,
  .site-header .logo-group {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .logo-img,
  .site-header .logo-img {
    width: 200px !important;
    height: auto;
  }

  .logo-text {
    display: flex;
    text-align: center;
  }

  .logo-title {
    font-size: 1.1rem;
  }

  .nav {
    padding: 12px 0;
    align-items: center;
  }

  /* Make price table scroll better or stack */
  .price-table {
    font-size: 0.85rem;
  }
  
  .price-table th,
  .price-table td {
    padding: 8px 6px;
  }
}

@media (max-width: 768px){
  /* Mobile: photo first, text second */
  .hero-inner{
    display: flex;
    flex-direction: column;
    gap: 30px;
    grid-template-areas: none;
    grid-template-columns: none;
  }
  
  .hero-image{
    order: -1; /* Photo first */
  }
  
  .hero-text{
    order: 0; /* Text second */
    text-align: left;
  }
  
  /* Make sure all images display naturally on mobile */
  .hero-photo img,
  .modality-media img,
  .about-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  /* Pricing table on mobile - no scrolling, show everything */
  .price-table {
    display: block;
    width: 100%;
  }
  
  .price-table thead {
    display: none;
  }
  
  .price-table tbody {
    display: block;
  }
  
  /* Section headers - full width, centered */
  .row-section {
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }
  
  .row-section td {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.05rem;
    padding: 12px 10px;
    font-weight: 800;
    background: rgba(238,209,169,0.3);
    border-radius: 8px;
    border: none;
  }
  
  /* Regular rows - card style */
  .price-table tr:not(.row-section) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(36,43,108,0.12);
    border-radius: 8px;
  }
  
  .price-table td {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 4px;
    border: none;
    font-size: 0.85rem;
  }
  
  .price-table td:before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    color: var(--blue);
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  
  .price-table td:nth-child(1):before {
    content: "Session";
  }
  
  .price-table td:nth-child(2):before {
    content: "Length";
  }
  
  .price-table td:nth-child(3):before {
    content: "Price";
  }
}

/* Hero logo styling */



/* ===== Header navigation: keep links on one line ===== */
.site-header .nav{
  display:flex;
  align-items:center;
  gap:16px;
  overflow: visible;
}
.site-header .logo-group{flex:0 0 auto;}
.site-header .nav-links{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:nowrap;
  gap:12px;
  white-space:nowrap;
  overflow: visible;
  -webkit-overflow-scrolling:touch;
}
.site-header .nav-links::-webkit-scrollbar{height:0;}
.site-header .nav-links a{
  white-space:nowrap;
  font-size:15px;
}

/* If you ever add a CTA back, keep it from shrinking the nav */
.site-header .nav-cta{flex:0 0 auto;}


/* ===== Calendly embedded booking ===== */
.booking-block{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid rgba(0,0,0,0.08);
}
.booking-title{
  margin:0 0 8px 0;
}
.booking-subtitle{
  margin:0 0 14px 0;
  opacity:0.85;
}
.calendly-inline-widget{
  min-width:320px;
  height:900px; /* big calendar like screenshot */
}
@media (max-width: 768px){
  .calendly-inline-widget{height:820px;}
}

/* Clickable treatment cards */
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}
.card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(10, 14, 25, 0.14);
  border-color: rgba(164, 92, 57, 0.35);
}
.card-link:hover .card-title {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.card-link::after {
  content: 'Learn more →';
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 150ms ease, transform 150ms ease;
}
.card-link:hover::after {
  opacity: 1;
  transform: translateY(0);
}
