
:root{
  --bg:#f4f1ec;
  --panel:#f7f2ec;
  --panel-2:#ebe6df;
  --white:#ffffff;
  --olive:#6f7b49;
  --olive-dark:#616c3f;
  --brown:#b07b52;
  --brown-dark:#986a45;
  --ink:#423a34;
  --muted:#635a53;
  --line:rgba(90,82,71,.10);
  --shadow:0 14px 28px rgba(74,64,55,.08);
  --max:1280px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,sans-serif;background:var(--bg);color:var(--ink);line-height:1.6}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(calc(100% - 42px),var(--max));margin:0 auto}

.site-header{background:var(--bg);position:sticky;top:0;z-index:100}
.nav{
  min-height:96px;
  display:grid;
  grid-template-columns:270px 1fr 250px;
  align-items:center;
  gap:18px;
}
.brand{display:flex;align-items:center}
.brand-logo{height:78px;width:auto;display:block}
.nav-links{
  display:flex;justify-content:center;align-items:center;gap:30px;
  font-size:.98rem;font-weight:600;color:#4d4b46;flex-wrap:wrap
}
.nav-links a{position:relative;padding:4px 0}
.nav-links a.active::after{
  content:"";position:absolute;left:0;right:0;bottom:-8px;height:3px;border-radius:3px;background:#6f7859
}
.consult-btn{
  justify-self:end;display:inline-flex;align-items:center;justify-content:center;
  min-height:58px;padding:0 28px;border-radius:999px;background:#8f7369;color:#fff;
  font-weight:700;box-shadow:0 10px 20px rgba(143,115,105,.16);transition:.18s ease transform,.18s ease background
}
.consult-btn:hover{transform:translateY(-1px);background:#7e645b}

.top-strip{
  background:#ae7a53;color:#fff;text-align:center;font-size:.92rem;font-weight:700;padding:10px 12px
}

.hero-wrap{padding:10px 0 18px}
.hero-card{
  background:
    linear-gradient(180deg, rgba(80,66,55,.02), rgba(80,66,55,.06)),
    url('hero-photo.png') 100% center / contain no-repeat;
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:31% 69%;
  min-height:510px;
  position:relative;
}
.hero-left{
  position:relative;
  padding:50px 46px 38px 50px;
  background:linear-gradient(180deg,#f7f2ec 0%, #f1ece5 100%);
  display:flex;
  flex-direction:column;
  justify-content:center;
  z-index:1;
}
.hero-left::before{
  content:"";
  position:absolute;
  top:0;
  right:-18px;
  width:50px;
  height:100%;
  background:linear-gradient(180deg,#f7f2ec 0%, #f1ece5 100%);
  filter:blur(8px);
  opacity:.75;
  pointer-events:none;
}
.hero-left::after{
  content:"";
  position:absolute;
  left:-8px;
  bottom:-6px;
  width:165px;
  height:165px;
  background:url('decorative-leaf-large.png') no-repeat center/contain;
  opacity:.12;
  pointer-events:none
}
.hero-title{
  margin:0 0 8px;font-family:"Cormorant Garamond",serif;font-size:clamp(4.1rem,6vw,5.5rem);
  line-height:.89;letter-spacing:-.04em;color:#3f3934;font-weight:600;max-width:380px
}
.hero-title .accent{color:#be8b62;font-style:italic;font-weight:500}
.mini-line{width:40px;height:3px;border-radius:3px;background:#cbb197;margin:14px 0 16px}
.hero-copy{
  max-width:350px;margin:0 0 20px;color:#5d554e;font-size:1rem;line-height:1.72
}
.cta-row{display:flex;flex-wrap:wrap;align-items:center;gap:18px}
.primary-btn,.olive-btn{
  display:inline-flex;align-items:center;justify-content:center;min-height:52px;padding:0 22px;
  border-radius:999px;background:var(--olive);color:#fff;font-weight:700;
  box-shadow:0 8px 18px rgba(111,123,73,.18);transition:.18s ease transform,.18s ease background
}
.primary-btn:hover,.olive-btn:hover{background:var(--olive-dark);transform:translateY(-1px)}
.primary-btn::after,.olive-btn::after{content:"›";margin-left:10px;font-size:1.1rem}
.ghost-link{font-weight:700;color:#4f4b44}
.ghost-link::after{content:" →"}

.hero-right{
  position:relative;
  background:none;
}
.hero-right::before{
  content:"";
  position:absolute;
  inset:0;
  background:none;
  pointer-events:none;
}

.hero-quote{
  position: absolute !important;
  right: 20px !important;
  bottom: 20px !important;
  left: auto !important;
  top: auto !important;
  width: 232px;
  z-index: 10;
}
.hero-quote::before{
  content:"“";position:absolute;left:14px;top:8px;color:#b27b51;font-size:1.7rem;line-height:1;font-style:normal
}
.hero-quote span{display:block;padding-left:18px}

.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  align-items:start;
}
.feature{text-align:center;padding:24px 18px 18px;position:relative}
.feature + .feature::before{
  content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);
  width:1px;height:72px;background:rgba(90,82,71,.10)
}
.feature-icon{width:34px;height:34px;margin:0 auto 10px;color:#7d865a}
.feature h3{margin:0 0 8px;font-size:1rem;color:#47433d}
.feature p{margin:0 auto;max-width:220px;color:#6c645d;font-size:.94rem;line-height:1.55}

.about-section{padding:22px 0 30px}
.about-grid{display:grid;grid-template-columns:40% 60%;gap:28px;align-items:stretch}
.about-left{
  position:relative;padding:28px 16px 24px 92px;min-height:330px;display:flex;align-items:center
}
.about-left::before{
  content:"";
  position:absolute;
  left:-6px;
  bottom:-2px;
  width:150px;
  height:245px;
  background:url('decorative-leaf-large.png') no-repeat center/contain;
  opacity:.30;
  pointer-events:none
}
.eyebrow{
  color:#b18662;font-size:.88rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;margin-bottom:10px
}
.about-title{
  margin:0 0 16px;font-family:"Cormorant Garamond",serif;font-size:clamp(3rem,4vw,4rem);
  line-height:.98;letter-spacing:-.03em;color:#433c36;max-width:370px;font-weight:600
}
.about-title .accent{color:#be8b62;font-style:italic;font-weight:500}
.about-copy{max-width:420px;color:#5d554e;font-size:1rem;line-height:1.68;margin:0 0 12px}
.about-image{
  border-radius:22px;
  min-height:330px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:
    linear-gradient(180deg, rgba(80,66,55,.02), rgba(80,66,55,.08)),
    url('bottom-photo.png') 50% 20% / cover no-repeat;
}

.footer{padding:28px 0 36px}
.footer-inner{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;color:#6c645d;font-size:.95rem}
.footer-nav{display:flex;gap:20px;flex-wrap:wrap}

.page-hero{padding:30px 0 10px}
.page-panel{background:var(--panel);border-radius:26px;padding:48px 44px;box-shadow:var(--shadow)}
.page-kicker{color:#b18662;font-size:.9rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;margin-bottom:10px}
.page-title,.section-title{margin:0 0 14px;font-family:"Cormorant Garamond",serif;font-size:clamp(2.8rem,5vw,4.3rem);line-height:.96;letter-spacing:-.04em}
.page-copy{max-width:760px;color:#675f58;font-size:1.05rem}
.section{padding:18px 0 34px}
.content-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:24px}
.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.card,.content-box{background:var(--panel);border-radius:22px;box-shadow:var(--shadow)}
.card{padding:24px 22px}
.content-box{padding:28px 26px}
.card h3{margin:0 0 10px;font-size:1.12rem}
.card p,.card li,.content-box p,.content-box li{color:#675f58}
.content-box h2,.content-box h3{margin-top:0;font-family:"Cormorant Garamond",serif}
.content-box ul{padding-left:20px}
.team-photo{
  height:240px;
  border-radius:18px;
  margin-bottom:16px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* Linda */
.team-photo.linda{
  background-image:url('lindabio.png');
}

/* Person 2 */
.team-photo.clinician-two{
  background-image:url('kaylabio.PNG');
}

/* Person 3 */
.team-photo.clinician-three{
  background-image:url('shanarabio.PNG');
}

/* Person 4 */
.team-photo.clinician-four{
  background-image:url('gabebio.PNG');
}

/* Person 5 */
.team-photo.clinician-five{
  background-image:url('amberbio.png');
}

/* Person 6 */
.team-photo.clinician-six{
  background-image:url('hannahbio.png');
}

/* Person 7 */
.team-photo.clinician-seven{
  background-image:url('sokhobio.PNG');
}
.cta-panel{background:#e9e2d8;border-radius:22px;padding:28px 26px;margin-top:24px}
.cta-panel h3{margin-top:0}
.split-list{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.notice{font-size:.92rem;color:#675f58}
.label-list{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
.label{padding:8px 12px;border-radius:999px;background:#ece1d4;color:#6a5b50;font-size:.9rem;font-weight:600}

@media (max-width:1100px){
  .nav{grid-template-columns:1fr;justify-items:start;padding:20px 0 24px}
  .consult-btn{justify-self:start}
  .hero-card,.about-grid,.content-grid{grid-template-columns:1fr}
  .features,.card-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:700px){
  .container{width:min(calc(100% - 20px), var(--max))}
  .brand-logo{height:56px}
  .nav-links{gap:18px}
  .hero-card{min-height:auto;grid-template-columns:1fr;background:
    linear-gradient(180deg, rgba(80,66,55,.02), rgba(80,66,55,.06)),
    url('hero-photo.png') 64% center / cover no-repeat;}
  .hero-left{padding:36px 24px 32px}
  .hero-left::before{right:-42px;width:110px;filter:blur(16px);opacity:.95}
  .hero-title{font-size:clamp(3.1rem,15vw,4.3rem);max-width:320px}
  .hero-right{min-height:320px;background:none}
  .hero-right::before{background:none}
  .hero-quote{left:16px;right:16px;width:auto}
  .card-grid,.split-list{grid-template-columns:1fr}
  .feature + .feature::before{display:none}
  .about-left{padding:28px 20px 24px 24px;min-height:auto}
  .about-left::before{display:none}
  .page-panel,.content-box,.card{padding:22px 20px}
}
  .brand-logo{height:64px}
  .nav-links{gap:18px}
  .hero-card{min-height:auto}
  .hero-left{padding:36px 24px 32px}
  .hero-title{font-size:clamp(3.1rem,15vw,4.3rem);max-width:320px}
  .hero-right{min-height:320px}
  .hero-quote{left:16px;right:16px;width:auto}
  .card-grid,.split-list{grid-template-columns:1fr}
  .feature + .feature::before{display:none}
  .about-left{padding:28px 20px 24px 24px;min-height:auto}
  .about-left::before{display:none}
  .page-panel,.content-box,.card{padding:22px 20px}
}


/* FINAL POLISH */
.nav{
  align-items:center;
}

.brand{
  display:flex;
  align-items:center;
  min-height:78px;
}

.brand-logo{
  height:84px;
  width:auto;
  display:block;
}

.nav-links{
  gap:26px;
  letter-spacing:0.01em;
}

.consult-btn{
  min-height:56px;
  padding:0 26px;
}

.hero-card{
  min-height:495px;
}

.hero-left{
  padding:50px 48px 40px 52px;
}

.hero-title{
  max-width:390px;
}

.hero-copy{
  max-width:355px;
}

.cta-row{
  gap:16px;
}

.primary-btn,
.olive-btn{
  min-height:50px;
  padding:0 20px;
}

.ghost-link{
  font-size:.98rem;
}

.hero-quote{
  right:24px;
  bottom:20px;
}

.features{
  margin-top:18px;
}

.feature{
  padding:22px 16px 18px;
}

.about-left{
  padding:28px 18px 26px 88px;
}

.about-title{
  max-width:360px;
}

.about-copy{
  max-width:410px;
}

.about-image{
  background-position:center center;
}

.page-panel{
  padding:46px 42px;
}

.card,
.content-box{
  border:1px solid rgba(90,82,71,.05);
}

@media (max-width:1100px){
  .brand-logo{
    height:74px;
  }
  .nav-links{
    gap:20px;
  }
}

@media (max-width:700px){
  .brand{
    min-height:auto;
  }
  .brand-logo{
    height:60px;
  }
  .consult-btn{
    min-height:52px;
    padding:0 20px;
  }
  .hero-left{
    padding:34px 24px 30px 24px;
  }
  .hero-card{
    min-height:auto;
  }
  .hero-copy{
    max-width:100%;
  }
  .about-left{
    padding:24px 20px 20px 24px;
  }
  .page-panel{
    padding:22px 20px;
  }
}


@media (max-width:700px){
  .about-left::before{
    display:block;
    left:-4px;
    bottom:-2px;
    width:96px;
    height:160px;
    opacity:.24;
  }
  .hero-left::after{
    width:110px;
    height:110px;
    left:-6px;
    bottom:-4px;
    opacity:.10;
  }
}


/* HERO FINAL PRECISION PASS */
.hero-card{
  min-height:510px;
}
.hero-left{
  padding:50px 48px 38px 50px;
}
.hero-title{
  max-width:388px;
}
.hero-copy{
  max-width:345px;
}
.hero-right{
  position: relative;
}

.hero-quote{
  position: absolute !important;
  right: 20px !important;
  bottom: 20px !important;
  left: auto !important;
  top: auto !important;
  width: 232px;
  z-index: 10;
}
@media (max-width:700px){
  .hero-right{
    background:
      linear-gradient(180deg, rgba(246,241,235,0.10), rgba(246,241,235,0.03)),
      url('hero-photo.png') 64% center / cover no-repeat;
    filter:saturate(.94) brightness(.97);
  }
  .hero-right::before{
    background:linear-gradient(180deg, rgba(246,241,235,0.08), rgba(246,241,235,0));
  }
}

.specialties {
  text-align: center;
  padding: 40px 0;
  background-color: #f7f5f2;
}

.specialties-img {
  width: 100%;
  max-width: 1100px; /* controls how wide it gets */
  height: auto;
  margin: 0 auto;
  display: block;
}
/* Team page only additions */
.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.team-link-card{
  display:block;
  transition:transform .18s ease, box-shadow .18s ease;
}
.team-link-card:hover{
  transform:translateY(-3px);
}
.team-link-card .card{
  height:100%;
}
.team-link-card .card p{
  margin-bottom:0;
}
.team-subtle-link{
  display:inline-block;
  margin-top:14px;
  color:#8d6e63;
  font-weight:700;
}
.profile-hero{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:24px;
  align-items:stretch;
}
.profile-photo{
  min-height:360px;
  border-radius:22px;
  box-shadow:var(--shadow);
  background:
    linear-gradient(180deg, rgba(80,66,55,.03), rgba(80,66,55,.10)),
    url('favicon-leaf.png') center/cover;
}
.profile-photo.linda{
  background:
    linear-gradient(180deg, rgba(80,66,55,.03), rgba(80,66,55,.10)),
    url('lindabio.png') center/cover;
}
.profile-photo.placeholder2{
  background:
    linear-gradient(180deg, rgba(80,66,55,.04), rgba(80,66,55,.12)),
    url('kaylabio.PNG') center/cover;
}
.profile-photo.placeholder3{
  background:
    linear-gradient(180deg, rgba(80,66,55,.03), rgba(80,66,55,.10)),
    url('shanarabio.PNG') center/cover;
}
.profile-photo.placeholder4{
  background:
    linear-gradient(180deg, rgba(80,66,55,.04), rgba(80,66,55,.12)),
    url('gabebio.PNG') center/cover;
}
.profile-photo.placeholder5{
  background:
    linear-gradient(180deg, rgba(80,66,55,.04), rgba(80,66,55,.12)),
    url('amberbio.png') center/cover;
}
.profile-photo.placeholder6{
  background:
    linear-gradient(180deg, rgba(80,66,55,.04), rgba(80,66,55,.12)),
    url('hannahbio.png') center/cover;
}
.profile-photo.placeholder7{
  background:
    linear-gradient(180deg, rgba(80,66,55,.04), rgba(80,66,55,.12)),
    url('sokhobio.PNG') center/cover;
}
.profile-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 16px;
}
.profile-pill{
  padding:8px 12px;
  border-radius:999px;
  background:#ece1d4;
  color:#6a5b50;
  font-size:.9rem;
  font-weight:600;
}
.back-link{
  display:inline-block;
  margin-bottom:16px;
  color:#8d6e63;
  font-weight:700;
}
.back-link::before{
  content:"← ";
}
@media (max-width:1100px){
  .grid-4{
    grid-template-columns:repeat(2,1fr);
  }
  .profile-hero{
    grid-template-columns:1fr;
  }
}
@media (max-width:700px){
  .grid-4{
    grid-template-columns:1fr;
  }
}
/* ABOUT HERO IMAGE (RIGHT SIDE) */
.about-hero {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 30px;
  align-items: center;
}

.about-hero-image {
  width: 100%;
  min-height: 340px;
  border-radius: 20px;

  background-image:
    linear-gradient(180deg, rgba(80,66,55,.05), rgba(80,66,55,.10)),
    url('counseling.jpg'); /* <-- THIS is your image */

  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* MOBILE FIX */
@media (max-width: 900px){
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero-image {
    min-height: 260px;
  }
}
/* HOURS – POLISHED + ICONS */
.hours {
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 10px;
  column-gap: 16px;
  align-items: center;
  margin-top: 10px;
  font-size: 0.95rem;
}

/* Days */
.hours div:nth-child(odd) {
  font-weight: 500;
  color: #5b5147;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Add subtle calendar icon */
.hours div:nth-child(odd)::before {
  content: "•"; /* simple subtle dot */
  font-size: 0.8rem;
  color: #c8b8a6;
}

/* Times */
.hours div:nth-child(even) {
  color: #3d362f;
}

/* Divider lines */
.hours div {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Remove last row border */
.hours div:last-child,
.hours div:nth-last-child(2) {
  border-bottom: none;
}

/* TODAY HIGHLIGHT */
.hours .today {
  font-weight: 600;
  color: #2f2a25;
}

.hours .today::before {
  content: "●";
  color: #b89b7a; /* warm accent */
}
