:root{
  /* Palette (match the reference) */
  --bg: #F9F5F0;
  --orange: #EEBE9F;
  --pink: #E6D3CD;
  --beige: #8C837C;
  --charcoal: #433E3B;
  --black: #050505;

  /* Semantic */
  --ink: var(--charcoal);
  --muted: rgba(67,62,59,.72);

  --paper: rgba(255,255,255,.60);
  --border: rgba(67,62,59,.14);

  --radius: 22px;
  --shadow: 0 18px 44px rgba(5, 5, 5, .08);

  --container: 1120px;
  --navH: 84px;
}

/* Base */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Playfair Display", serif; /* global font */
  line-height: 1.6;
}
a{ color: inherit; text-decoration: none; }
button, input, select, textarea{ font-family: inherit; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.free-session{
  font-size: 17px;
  color: #050505;
}

/* Announcement */
.announce{
  background: var(--orange);
  color: rgba(67,62,59,.82);
  text-align: center;
  padding: 10px 12px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: lowercase;
}

/* Announcement */
.announce-bottom{
  background: var(--orange);
  color: rgba(67,62,59,.82);
  text-align: center;
  padding: 10px 12px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: lowercase;
}

/* Header / Nav */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249,245,240,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav{
  height: var(--navH);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand */
.brand{
  display:flex;
  flex-direction: column;
  gap: 2px;
}
.brand-word{
  font-size: 40px;
  line-height: .95;
  letter-spacing: .01em;
  color: var(--charcoal);
}
.brand-sub{
  font-size: 12px;
  letter-spacing: .16em;
  color: rgba(67,62,59,.68);
}

/* Links */
.nav-links{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: nowrap;
}
.nav-links a{
  padding: 10px 10px;
  border-radius: 999px;
  color: rgba(67,62,59,.78);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: lowercase;
}
.nav-links a span{
  display: inline-block;
  white-space: nowrap;
}
.nav-links a:hover{
  background: rgba(230,211,205,.35);
}

/* Mobile nav toggle */
.nav-toggle{
  display:none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--border);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: rgba(67,62,59,.85);
  border-radius: 2px;
}
.nav-toggle span + span{ margin-top: 6px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(67,62,59,.18);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: lowercase;
  cursor: pointer;
  transition: transform .12s ease, filter .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn-secondary{
  background: var(--beige);
  color: var(--black);
  border-color: rgba(67,62,59,.18);
}
.btn-secondary:hover{ filter: brightness(1.03); }

/* HERO (single source of truth — NO top padding) */
.hero{
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 0 48px;
  overflow: hidden;
}

/* Full-width decorative strip */
.hero-strip{
  display: block;
  width: 100vw;
  height: 140px;
  object-fit: cover;
  margin: 0 calc(50% - 50vw) 48px;
}

/* Hero content */
.hero-single{
  display:flex;
  flex-direction: column;
  align-items:center;
  text-align:center;
  gap: 14px;
}

.hero-title{
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  color: var(--black);
}

.hero-sub{
  margin: 0;
  max-width: 52ch;
  color: rgba(67,62,59,.78);
  font-size: 22px;
  line-height: 1.25;
}

/* Icon grid */
.hero-icons{
  width: 100%;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin: 28px 0 10px;
  align-items: start;
}

.icon-card{
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 18px;
}

/* Image card */
.icon-img{
  width: 280px;
  height: 210px;
  object-fit: contain;
  padding: 22px;
  border-radius: 26px;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(5,5,5,.06);
  display: block;
}

/* Label pills */
.icon-card figcaption{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 26px;
  border-radius: 16px;
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  border: 1px solid rgba(67,62,59,.20);
  box-shadow: 0 12px 26px rgba(5,5,5,.06);
}
.icon-card:nth-child(1) figcaption{ background: #ffbe99; }
.icon-card:nth-child(2) figcaption{ background: #f1d1d6; }
.icon-card:nth-child(3) figcaption{ background: #eddacb; }

/* Intro split layout */
.intro-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.intro-text{ max-width: 720px; }
.intro-image{ display: flex; justify-content: center; }
.intro-image img{
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  object-fit: cover;

  /* softer, more professional */
  border-radius: 28px;

  background: var(--bg);
  border: 1px solid rgba(67,62,59,.18);

  box-shadow:
    0 12px 30px rgba(5,5,5,.08),
    0 2px 8px rgba(5,5,5,.04);
}

/* Sections */
.section{
  padding: 68px 0;
  background: var(--bg);
}
.section-alt{
  background: rgba(230,211,205,.22);
}

.section-head{
  max-width: 860px;
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: .01em;
  color: var(--black);
}

/* INTRO section only */
#intro.section{
  background: #f0cfa5;
}
/* INTRO section restyle */
#intro.section{
  background: #f0cfa5; /* softer than solid pink */
}

#intro .container{
  padding-top: 10px;
}

#intro .intro-text{
  max-width: 820px;            /* better reading width */
  margin: 0 auto;              /* centers the block */
}

#intro .section-head{
  text-align: center;
  margin-bottom: 18px;
}

#intro .prose{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(67,62,59,.12);
  border-radius: 24px;
  padding: 26px 26px;
  box-shadow: 0 16px 40px rgba(5,5,5,.06);
  color: rgba(67,62,59,.82);
  font-size: 18px;
  line-height: 1.75;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

#intro .prose p{
  margin: 0 0 14px;
}

#intro .prose p:last-child{
  margin-bottom: 0;
}

.prose{
  max-width: 860px;
  color: rgba(67,62,59,.82);
  font-size: 18px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}
.intro-prose { margin: 0 0 14px; text-align: center; color: #6c6236;}
.intro-prose { text-align: center;color: #6c6236;}

/* buttons */
.buttons{
  background: #ddb9be;
  color: white;
  font-size: 20px;
}

/* =========================
   CARDS — “Uiverse hover fill”
   (NO arrow, uses your palette)
   ========================= */

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

/* Your existing markup uses <article class="card"><h3>... */
.card{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 18px;

  /* Base look matches your site */
  background: var(--paper);
  border: 1px solid rgba(67,62,59,.12);
  box-shadow: 0 14px 34px rgba(5,5,5,.06);

  display:flex;
  flex-direction: column;

  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

/* The “expanding corner blob” — tuned to your palette */
.card::before{
  content: "";
  position: absolute;
  z-index: 0;
  top: -18px;
  right: -18px;

  height: 36px;
  width: 36px;
  border-radius: 999px;

  /* use your palette: charcoal -> beige/pink */
  background: linear-gradient(135deg, rgba(67,62,59,.95), rgba(140,131,124,.75));
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform .35s ease-out;
}

/* Keep all content above the overlay */
.card > *{
  position: relative;
  z-index: 1;
}

.card:hover::before{
  transform: scale(30);
}

/* Keep your hover lift */
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(5,5,5,.10);
  border-color: rgba(67,62,59,.18);
}

/* Card hover overlay colours — reuse icon palette */

/* Card 1 */
.cards .card:nth-child(1)::before{
  background: linear-gradient(
    135deg,
    #ffbe99,
    rgba(255,190,153,.85)
  );
}

/* Card 2 */
.cards .card:nth-child(2)::before{
  background: linear-gradient(
    135deg,
    #f1d1d6,
    rgba(241,209,214,.85)
  );
}

/* Card 3 */
.cards .card:nth-child(3)::before{
  background: linear-gradient(
    135deg,
    #eddacb,
    rgba(237,218,203,.85)
  );
}

/* Title + description behavior on hover (adapted to your existing selectors) */
.card h3{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: .01em;
  color: var(--black);
  transition: color .5s ease-out;
}

.card p{
  margin: 0 0 14px; 
  color: rgba(67,62,59,.78);
  line-height: 1.65;
  transition: color .5s ease-out;
}

/* Keep text dark on hover */
.card:hover h3{ color: var(--black); }
.card:hover p{ color: rgba(67,62,59,.78); }

/* Meta pill: also adjust on hover so it doesn't look “dirty” */
.meta{
  margin-top: auto;
  align-self: flex-start;
  display:inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(249,245,240,.70);
  border: 1px solid rgba(67,62,59,.12);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: lowercase;
  color: rgba(8, 8, 8, 0.78);
  transition: background .5s ease-out, border-color .5s ease-out, color .5s ease-out;
}
.card:hover .meta{
  background: rgba(255,255,255,.45);
  border-color: rgba(67,62,59,.12);
  color: rgba(8, 8, 8, 0.78);
}

.fineprint{
  margin: 12px 0 0;
  font-size: 17px;
  color: rgba(67,62,59,.68);
}

/* Fees list */
#fees{
  padding-bottom: 0;
}

.fees-list{
  max-width: 860px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: rgba(67,62,59,.82);
  font-size: 18px;
}
.fees-list li{ margin: 10px 0; }
.fees-list strong{ color: var(--black); }

.fees-price {
  font-size: 20px;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.contact-left h2{
  font-size: clamp(28px, 3.2vw, 40px);
  margin: 0 0 10px;
  color: var(--black);
}

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

.contact-box{
  margin-top: 16px;
  display:grid;
  gap: 12px;
  background: rgba(255,255,255,.50);
  border: 1px solid rgba(67,62,59,.12);
  border-radius: var(--radius);
  padding: 16px;
}

.label{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: lowercase;
  color: rgba(67,62,59,.70);
  margin-bottom: 6px;
}

/* Form */
.form-card{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(67,62,59,.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.form-card h3{
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--black);
}

.form{ display:grid; gap: 12px; }
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label{
  display:grid;
  gap: 6px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: lowercase;
  color: rgba(67,62,59,.72);
}

input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(67,62,59,.14);
  background: rgba(255,255,255,.78);
  color: rgba(67,62,59,.92);
  font: inherit;
  outline: none;
}
textarea{ min-height: 130px; resize: vertical; }

input:focus, select:focus, textarea:focus{
  border-color: rgba(67,62,59,.26);
  box-shadow: 0 0 0 4px rgba(238,190,159,.35);
}

.checkbox{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(67,62,59,.82);
}
.checkbox input{
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

/* Generic full-bleed strip you can reuse anywhere */
.section-strip{
  display: block;
  width: 100vw;
  height: 140px;
  object-fit: cover;
  margin: 48px calc(50% - 50vw) 0;
}
.section-strip-bottom{
  margin-top: 48px;
  margin-bottom: 0;
}

#contact.section-alt{ background: #fbf6f1; }
#contact.section{ padding-bottom: 0; }

#NCIP {text-align: left;}

/* Footer */
.footer{
  background: var(--bg);
  border-top: 1px solid rgba(67,62,59,.12);
  padding: 26px 0 40px;
}
.footer-row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(67,62,59,.72);
}
.footer-link{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(67,62,59,.12);
}

.map-box {
  margin-top: 14px; /* spacing between the cards */
}

.map-embed {
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden; /* ensures rounded corners apply to the iframe */
  aspect-ratio: 16 / 10; /* responsive height */
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.map-text {color: #050505; font-size: 17px;}

.cookie-banner {
  display: none; /* IMPORTANT */
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 9999;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: rgba(67,62,59,.85);
}

.cookie-banner a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

/* Small buttons variant */
.btn.small {
  padding: 8px 14px;
  font-size: 14px;
}

/* Outline style for reject */
.btn-outline {
  background: transparent;
  border: 1px solid rgba(67,62,59,.3);
  color: rgba(67,62,59,.8);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto; }
  .card, .card::before{ transition: none !important; }
  .card:hover{ transform: none; }
  .card:hover::before{ transform: scale(1); }
}

/* Responsive */
@media (max-width: 980px){
  .cards{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 900px){
  .hero-icons{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .icon-img{
    width: min(340px, 92vw);
    height: auto;
  }

  .intro-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .intro-image{ order: -1; }
  .intro-image img{ max-width: 320px; }
}

@media (max-width: 860px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }

  .nav-links{
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(var(--navH) + 10px);
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
    background: rgb(255, 255, 255);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.open{ display:flex; }
  .brand-word{ font-size: 34px; }
}

@media (max-width: 560px){
  .container{ width: calc(100% - 28px); }
  .grid-2{ grid-template-columns: 1fr; }
  .brand-word{ font-size: 30px; }
  .hero-strip{ height: 120px; }
}