:root{
  --green:#76955E;
  --sage:#AFBB84;
  --cream:#DCCDA8;
  --soft-yellow:#E2C15D;
  --sun:#E7B511;
  --ink:#3f443d;
  --paper:#fffdf8;
  --white:#ffffff;
  --shadow:0 18px 50px rgba(80,79,57,.10);
  --radius:24px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--ink);
  background:linear-gradient(180deg,#fffdf9 0%,#fffaf0 100%);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.65;
}

h1,h2,h3{
  font-family:Georgia,'Times New Roman',serif;
  font-weight:400;
  line-height:1.12;
  margin:0 0 .6em;
}

h1{
  font-size:clamp(2.7rem,5.3vw,5.7rem);
}

h2{
  font-size:clamp(2rem,3.2vw,3.3rem);
}

h3{
  font-size:1.35rem;
}

p{
  margin:.4rem 0 1.1rem;
}

a{
  color:inherit;
}

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

.container{
  width:min(1180px,calc(100% - 36px));
  margin:auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:0;
  background:#000;
  color:#fff;
  padding:10px;
  z-index:99;
}

.skip-link:focus{
  left:10px;
  top:10px;
}


/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,253,248,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(118,149,94,.13);
}

.nav-wrap{
  min-height:92px;
  display:flex;
  align-items:center;
  gap:28px;
}

.brand{
  margin-right:auto;
}

.brand img{
  width:190px;
  height:auto;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:23px;
  font-size:.93rem;
}

.site-nav>a{
  text-decoration:none;
}

.site-nav>a:not(.btn):hover{
  color:var(--green);
}

.nav-toggle{
  display:none;
  background:none;
  border:1px solid var(--sage);
  border-radius:10px;
  padding:9px 12px;
}


/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:linear-gradient(135deg,var(--soft-yellow),#f4d784);
  color:#4b432e;
  text-decoration:none;
  border:0;
  border-radius:999px;
  padding:14px 24px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(226,193,93,.24);
  transition:transform .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-secondary{
  background:var(--green);
  color:#fff;
  box-shadow:none;
}

.btn-small{
  padding:10px 18px;
}


/* TYPOGRAPHY */

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.76rem;
  color:var(--green);
  font-weight:700;
}


/* HOMEPAGE HERO */

.hero{
  padding:70px 0 40px;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:40px;
}

.hero-copy{
  position:relative;
  padding:50px 0;
}

.hero-copy:after{
  content:"";
  position:absolute;
  right:-90px;
  top:5px;
  width:330px;
  height:330px;
  opacity:.10;
  z-index:-1;
  background:repeating-conic-gradient(
    from 0deg,
    var(--sun) 0 9deg,
    transparent 9deg 18deg
  );
  border-radius:50%;
}

.hero-copy .lede{
  font-size:1.12rem;
  max-width:600px;
}


/* SUNFLOWER HERO IMAGE */

.hero-media{
  min-height:520px;
  border-radius:50% 0 42% 0;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.hero-photo{
  background-image:url('/assets/images/sunflower.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero-photo:before,
.hero-photo:after{
  display:none;
}

.hero-note{
  margin-top:18px;
  color:#6f725f;
  font-size:.92rem;
}


/* GENERAL SECTIONS */

.section{
  padding:78px 0;
}

.section-soft{
  background:linear-gradient(
    135deg,
    rgba(220,205,168,.38),
    rgba(175,187,132,.20)
  );
  border-radius:var(--radius);
}

.intro-card{
  padding:48px;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  align-items:center;
}


/* ROWENA PHOTO */

.art-card{
  min-height:380px;
  border-radius:var(--radius);
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.rowena-photo{
  background-image:url('/assets/images/rowena.jpg');
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
}

.rowena-photo:before,
.rowena-photo:after{
  display:none;
}


/* SERVICE CARDS */

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

.card{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(118,149,94,.16);
  border-radius:18px;
  padding:28px;
  box-shadow:0 10px 28px rgba(80,79,57,.06);
}

.icon-badge{
  width:54px;
  height:54px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(175,187,132,.24);
  font-size:1.6rem;
  margin-bottom:15px;
}


/* THERAPY PROCESS */

.process{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
}

.step{
  text-align:center;
  padding:20px 24px;
  position:relative;
}

.step:not(:last-child):after{
  content:"→";
  position:absolute;
  right:-8px;
  top:45%;
  color:var(--green);
}

.num{
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin:0 auto 14px;
  background:var(--green);
  color:#fff;
}


/* TESTIMONIALS */

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.quote{
  background:#fff;
  border-radius:18px;
  padding:28px;
  box-shadow:var(--shadow);
  position:relative;
}

.quote:before{
  content:"“";
  font-family:Georgia,serif;
  color:var(--soft-yellow);
  font-size:4rem;
  line-height:.7;
}

.quote cite{
  font-style:normal;
  color:#74775f;
}


/* CALL TO ACTION */

.cta{
  background:linear-gradient(120deg,var(--green),#93a979);
  color:#fff;
  border-radius:var(--radius);
  padding:52px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:30px;
  align-items:center;
}


/* INNER PAGES */

.page-hero{
  padding:70px 0 45px;
  text-align:center;
}

.page-hero p{
  max-width:760px;
  margin-inline:auto;
  font-size:1.08rem;
}

.prose{
  max-width:850px;
  margin:auto;
}

.prose h2{
  margin-top:1.3em;
}

.bullet-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.bullet{
  padding:22px;
  border-left:4px solid var(--soft-yellow);
  background:#fff;
  border-radius:12px;
}


/* FORMS */

.form-card{
  max-width:820px;
  margin:auto;
  background:#fff;
  padding:34px;
  border-radius:22px;
  box-shadow:var(--shadow);
}

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

label{
  display:block;
  font-weight:700;
  margin-bottom:6px;
}

input,
select,
textarea{
  width:100%;
  font:inherit;
  border:1px solid #cfd2c5;
  border-radius:12px;
  padding:12px 14px;
  background:#fff;
}

textarea{
  min-height:150px;
  resize:vertical;
}

.full{
  grid-column:1/-1;
}

.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:400;
}

.check input{
  width:auto;
  margin-top:6px;
}

.notice{
  padding:14px 16px;
  border-radius:12px;
  background:#eef5e9;
  margin-bottom:20px;
}

.error{
  background:#fff0ea;
}


/* FEES */

.fees-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}


/* FOOTER */

.site-footer{
  margin-top:70px;
  background:#eef1e8;
  padding:50px 0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:50px;
}

.footer-logo{
  width:190px;
  margin-bottom:16px;
}

.footer-grid>div:nth-child(n+2){
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
}

.footer-grid a{
  text-decoration:none;
}

.footer-heading{
  font:700 1rem Arial,sans-serif;
  margin-bottom:8px;
}

.socials{
  display:flex;
  gap:10px;
}

.socials a{
  width:38px;
  height:38px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  display:grid;
  place-items:center;
  text-decoration:none;
  font-weight:700;
}

.small{
  font-size:.85rem;
  color:#737767;
}


/* ADMIN */

.admin-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}

.admin-table th,
.admin-table td{
  padding:12px;
  border-bottom:1px solid #e6e6e0;
  text-align:left;
  vertical-align:top;
}

.admin-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}


/* TABLET */

@media(max-width:980px){

  .nav-toggle{
    display:block;
  }

  .site-nav{
    position:absolute;
    left:0;
    right:0;
    top:92px;
    background:#fffdf8;
    padding:20px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    border-bottom:1px solid #ddd;
  }

  .site-nav.open{
    display:flex;
  }

  .hero-grid,
  .split,
  .cta{
    grid-template-columns:1fr;
  }

  .hero-media{
    min-height:380px;
  }

  .cards,
  .testimonial-grid{
    grid-template-columns:1fr 1fr;
  }

  .process{
    grid-template-columns:1fr 1fr;
  }

  .step:nth-child(2):after{
    display:none;
  }

}


/* MOBILE */

@media(max-width:640px){

  .brand img{
    width:150px;
  }

  .cards,
  .testimonial-grid,
  .process,
  .bullet-grid,
  .form-grid,
  .footer-grid,
  .fees-grid{
    grid-template-columns:1fr;
  }

  .step:after{
    display:none;
  }

  .hero{
    padding-top:28px;
  }

  .hero-copy{
    padding:25px 0;
  }

  .hero-media{
    min-height:300px;
  }

  .section{
    padding:55px 0;
  }

  .intro-card,
  .cta{
    padding:28px;
  }

  .art-card{
    min-height:340px;
  }

}