/* =========================================================
   EMMY'S THERAPEUTIC MASSAGE - INDEXV2 STYLES
   Sections are commented so edits are easy to find.
   ========================================================= */

/* =========================================================
   VARIABLES / GLOBAL SETTINGS
   ========================================================= */
:root{
  --bg:#f2efe8;
  --paper:#fffdf8;
  --paper-2:#f8f4ec;
  --ink:#1d2118;
  --muted:#5d6459;
  --green:#5d7736;
  --green-2:#8da16b;
  --line:#ded8cb;
  --dark:#0e160f;
  --gold:#d6a94f;
  --focus:#1769e6;
  --shadow:0 16px 44px rgba(35,35,25,.11);
  --serif:"Cormorant Garamond", Georgia, serif;
  --sans:"Merriweather Sans", Arial, sans-serif;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    transition-duration:.01ms !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
  }
}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  line-height:1.45;
}

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

:focus-visible{
  outline:3px solid var(--focus);
  outline-offset:4px;
}

/* =========================================================
   ADA / ACCESSIBILITY: SKIP LINK
   ========================================================= */
.skip-link{
  position:absolute;
  left:12px;
  top:10px;
  z-index:999;
  background:#fff;
  color:#111;
  padding:10px 14px;
  border-radius:6px;
  transform:translateY(-160%);
}

.skip-link:focus{transform:translateY(0)}

/* =========================================================
   PAGE SHELL
   ========================================================= */
.page-shell{
  width:min(1280px,calc(100% - 52px));
  margin:32px auto;
  background:var(--paper);
  border:1px solid rgba(20,20,15,.08);
  box-shadow:0 10px 28px rgba(35,35,25,.08);
  overflow:visible;
}

/* =========================================================
   HEADER / TOP NAVIGATION
   Clean white header like the mockup
   ========================================================= */
.site-header{
  position:-webkit-sticky;
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--paper);
  border-bottom:1px solid #d8d3c7;
  box-shadow:0 2px 8px rgba(24,26,20,.04);
}

.site-header::after{
  display:none;
}

.header-inner{
  min-height:66px;
  display:grid;
  grid-template-columns:280px 1fr 206px;
  align-items:center;
  gap:22px;
  padding:0 26px;
  background:var(--paper);
}

.brand img{
  width:235px;
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:25px;
  font-size:13px;
  font-weight:700;
  color:#1d2118;
  line-height:1;
}

.nav-links a{
  position:relative;
  padding:26px 0 23px;
}

.nav-links a.is-active::after,
.nav-links a:hover::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:15px;
  height:2px;
  background:var(--green);
}

.book-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 22px;
  border-radius:4px;
  background:var(--green);
  color:#fff;
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}

.book-btn.secondary{
  min-height:42px;
  padding:0 19px;
  font-size:13px;
}

.menu-toggle{
  display:none;
  width:42px;
  height:38px;
  border:1px solid rgba(93,119,54,.35);
  border-radius:4px;
  background:#fff;
  padding:7px 9px;
}

.menu-toggle span{
  display:block;
  height:2px;
  background:var(--green);
  margin:6px 0;
}

/* =========================================================
   HERO SECTION
   Tuned to better match the mockup proportions and crop.
   ========================================================= */
.hero{
  position:relative;
  min-height:640px;
  margin-top:0;
  overflow:hidden;
  background:#111;
  border-top:1px solid #d8d3c7;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:url("img/hero-emmy-beach.jpg") center 18% / cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  display:block;
  background:
    linear-gradient(
      90deg,
      rgba(7,14,10,.84) 0%,
      rgba(7,14,10,.68) 18%,
      rgba(7,14,10,.38) 36%,
      rgba(7,14,10,.12) 56%,
      rgba(7,14,10,.03) 74%,
      rgba(7,14,10,0) 100%
    );
}

.hero::before{
  display:none;
}

.hero::after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  width:125px;
  background:linear-gradient(90deg, rgba(251,250,246,0) 0%, rgba(251,250,246,.38) 100%);
  pointer-events:none;
}

.hero-inner{
  position:relative;
  z-index:2;
  min-height:640px;
  display:flex;
  align-items:center;
  padding:30px 28px 26px;
}

.hero-copy{
  width:min(390px,100%);
  color:#fff;
}

.eyebrow,
.small-title{
  margin:0;
  color:#5f6f55;
  text-transform:uppercase;
  letter-spacing:.24em;
  font-size:12px;
  font-weight:800;
}

.leaf{
  display:inline-block;
  width:15px;
  height:9px;
  margin-left:6px;
  background:var(--green-2);
  border-radius:15px 0 15px 0;
  transform:rotate(-25deg);
}

.leaf-left{
  margin-left:0;
  margin-right:6px;
}

.hero h1{
  margin:14px 0 12px;
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(52px,5.4vw,68px);
  line-height:.92;
  letter-spacing:-.03em;
  color:#fff;
}

.hero h1 em{
  color:#93a86a;
  font-style:italic;
}

.hero-text{
  max-width:365px;
  color:rgba(255,255,255,.95);
  font-size:16px;
  line-height:1.42;
  margin:0 0 20px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 20px;
  border-radius:4px;
  font-size:13px;
  font-weight:800;
}

.btn.solid{
  background:var(--green);
  color:#fff;
}

.btn.ghost{
  color:#fff;
  border:1px solid rgba(255,255,255,.78);
  background:rgba(0,0,0,.18);
}

.hero-note{
  color:#fff;
  font-size:14px;
  margin:0;
}

.hero-flower{
  display:none;
  position:absolute;
  right:12px;
  bottom:-8px;
  width:92px;
  z-index:3;
  pointer-events:none;
}

/* =========================================================
   TRUST / HIGHLIGHTS STRIP
   ========================================================= */
.trust-strip{
  background:var(--paper);
  border-top:1px solid rgba(255,255,255,.35);
  border-bottom:1px solid var(--line);
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
}

.trust-grid div{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:10px 8px;
  border-left:1px solid var(--line);
  text-align:center;
  color:#2f342d;
  font-size:13px;
}

.trust-grid div:first-child{border-left:none}

.trust-grid span:first-child{
  color:#354b22;
  font-size:18px;
}

/* =========================================================
   SHARED SECTION STYLES
   ========================================================= */
.section{
  background:var(--paper);
}

.section-inner{
  width:min(1240px,calc(100% - 48px));
  margin:auto;
  padding:34px 0 32px;
}

.section-heading{
  text-align:center;
  margin-bottom:24px;
}

.section-heading h2{
  margin:8px 0 0;
  font-family:var(--serif);
  font-size:31px;
  font-weight:600;
  letter-spacing:.10em;
  text-transform:uppercase;
}

.leafline{
  position:relative;
  width:110px;
  height:1px;
  background:var(--line);
  margin:14px auto 0;
}

.leafline::after{
  content:"";
  position:absolute;
  left:50%;
  top:-5px;
  width:14px;
  height:10px;
  background:var(--green-2);
  border-radius:14px 0 14px 0;
  transform:translateX(-50%) rotate(-20deg);
}

/* =========================================================
   SERVICES / SIGNATURE TREATMENTS
   ========================================================= */
.service-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
}

.service-card img{
  width:100%;
  aspect-ratio:1.12/1;
  object-fit:cover;
  border-radius:4px;
}

.service-card h3{
  margin:12px 0 6px;
  font-family:var(--serif);
  font-size:22px;
  line-height:1.05;
  font-weight:600;
  text-align:center;
}

.service-card p{
  margin:0;
  color:#53594f;
  font-size:13px;
  line-height:1.45;
  text-align:center;
}

.center{
  text-align:center;
  margin-top:18px;
}

.service-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 20px;
  border-radius:4px;
  background:var(--green);
  color:#fff;
  font-size:13px;
  font-weight:800;
}

/* =========================================================
   TESTIMONIAL FEATURE BAND
   1.00.16 - review-band-hard-restore-only
   ========================================================= */
.testimonial-band{
  position:relative;
  display:block;
  min-height:235px;
  margin:0;
  overflow:hidden;
  background:
    linear-gradient(90deg,
      rgba(8,14,8,.02) 0%,
      rgba(22,34,16,.13) 18%,
      rgba(48,72,25,.24) 50%,
      rgba(22,34,16,.13) 82%,
      rgba(8,14,8,.02) 100%),
    url("img/testimonial-bg.jpg") center center / cover no-repeat,
    #2f441f;
}

.testimonial-side,
.testimonial-side.left,
.testimonial-side.right,
.band-flower-left{
  display:none !important;
}

.testimonial-copy{
  position:relative;
  z-index:2;
  min-height:235px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 30px 28px;
  color:#fffdf8;
}

.testimonial-content{
  position:relative;
  width:min(560px, 100%);
  margin:0 auto;
  padding-left:30px;
  text-align:left;
}

.testimonial-quote-mark{
  position:absolute;
  left:calc(50% - 318px);
  top:43px;
  z-index:3;
  color:#f1e6c8;
  font-family:var(--serif);
  font-size:38px;
  line-height:1;
  opacity:.96;
}

.testimonial-copy h2{
  margin:0 0 8px;
  color:#fffdf8;
  font-family:var(--serif);
  font-size:30px;
  font-weight:500;
  letter-spacing:.01em;
  line-height:1.08;
  text-shadow:0 2px 6px rgba(0,0,0,.25);
}

.stars{
  margin:0 0 9px;
  color:#d9aa35;
  font-size:14px;
  letter-spacing:.18em;
  line-height:1;
}

.review-title{
  margin:0 0 7px;
  color:#fffdf8;
  font-family:var(--serif);
  font-size:19px;
  font-weight:700;
  line-height:1.18;
  letter-spacing:.01em;
  text-shadow:0 2px 6px rgba(0,0,0,.24);
}

.testimonial-copy blockquote{
  margin:0 0 8px;
}

.testimonial-copy blockquote p{
  margin:0;
  max-width:530px;
  color:rgba(255,253,248,.98);
  font-size:14px;
  font-style:italic;
  font-weight:600;
  line-height:1.42;
  text-shadow:0 2px 6px rgba(0,0,0,.22);
}

.quote-name{
  margin:0 0 9px;
  color:#fffdf8;
  font-size:13px;
  font-weight:700;
  line-height:1.25;
}

.dots,
.testimonial-dots{
  display:flex;
  align-items:center;
  gap:7px;
  margin:0;
}

.dots span,
.testimonial-dots button{
  display:block;
  width:8px;
  height:8px;
  padding:0;
  border:0;
  border-radius:50%;
  background:rgba(245,242,222,.48);
  cursor:pointer;
}

.dots span.is-active,
.testimonial-dots button.is-active{
  background:#d6d78d;
}

.testimonial-dots button:focus-visible{
  outline:2px solid #fffdf8;
  outline-offset:3px;
}

/* =========================================================
   ENHANCEMENTS / ADD-ONS
   ========================================================= */
.enhancements .section-inner{
  padding-top:38px;
}

.enhancement-grid{
  display:grid;
  grid-template-columns:repeat(8,1fr);
  gap:14px;
}

.enhancement-grid div{
  text-align:center;
}

.enhancement-grid span{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  margin:0 auto 10px;
  border-radius:50%;
  background:#f0ece3;
  color:#798d62;
  font-size:24px;
}

.enhancement-grid strong{
  display:block;
  font-family:var(--serif);
  font-size:21px;
  font-weight:600;
  line-height:1.05;
}

.enhancement-grid p{
  margin:6px 0 0;
  color:#555d52;
  font-size:13px;
}

.addon-note{
  margin:18px 0 0;
  text-align:center;
  color:#5b6258;
  font-size:14px;
}

/* =========================================================
   ABOUT EMMY
   1.00.13 - about-badges-and-modalities-only-from-11
   ========================================================= */
.about-band{
  display:grid;
  grid-template-columns:.95fr 1.05fr 1.3fr;
  align-items:stretch;
  border-top:1px solid var(--line);
  border-bottom:none;
  background:#f8f4ec;
}

.about-badges{
  min-height:306px;
  display:grid;
  grid-template-columns:repeat(2, minmax(108px, 1fr));
  gap:16px 18px;
  align-content:center;
  justify-items:center;
  padding:25px 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(141,161,107,.12), transparent 36%),
    linear-gradient(135deg, #fffdf8 0%, #f7f3eb 100%);
  overflow:hidden;
}

.about-badges img{
  display:block;
  width:100%;
  max-width:128px;
  height:auto;
  filter:drop-shadow(0 5px 8px rgba(35,35,25,.10));
}

.about-copy{
  min-height:306px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:26px 34px 24px;
  background:#f8f4ec;
}

.about-copy .small-title{
  margin:0 0 8px;
  color:#3f4a38;
  letter-spacing:.28em;
  font-size:12px;
  font-weight:800;
}

.about-copy h2#about-title{
  margin:0 0 16px;
  font-family:var(--serif);
  color:#111a39;
  font-size:43px;
  line-height:1;
  font-weight:600;
  letter-spacing:.08em;
  text-align:center;
}

.about-copy h2#about-title::after{
  content:"";
  display:block;
  width:110px;
  height:1px;
  margin:13px auto 0;
  background:var(--line);
}

.about-copy p{
  color:#1d2118;
  font-size:13.5px;
  line-height:1.45;
  margin:0 0 11px;
}

.about-image{
  min-height:306px;
  overflow:hidden;
  background:#e7dfd2;
}

.about-image img{
  width:100%;
  height:100%;
  min-height:306px;
  object-fit:cover;
  object-position:center center;
}

.signature{
  font-family:var(--serif);
  color:var(--green);
  font-style:italic;
  font-size:38px !important;
  line-height:1;
  margin-top:10px !important;
}

/* =========================================================
   MODALITIES / BENEFITS BAND
   1.01.08 - hero-plus-20-remove-flower-only
   ========================================================= */
.modalities-band{
  position:relative;
  min-height:152px;
  color:#fff;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(ellipse at 52% 40%, rgba(99,119,54,.34) 0%, rgba(45,67,31,.24) 28%, rgba(10,23,13,.12) 56%, rgba(3,9,5,0) 76%),
    linear-gradient(90deg, rgba(3,9,5,.97) 0%, rgba(12,28,15,.94) 24%, rgba(17,36,19,.92) 50%, rgba(12,28,15,.94) 76%, rgba(3,9,5,.97) 100%),
    repeating-linear-gradient(112deg, rgba(255,255,255,.022) 0 1px, transparent 1px 9px),
    linear-gradient(90deg,#061008 0%, #152516 50%, #061008 100%);
}

.modalities-band::before,
.modalities-band::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:228px;
  pointer-events:none;
  opacity:.72;
  background-repeat:no-repeat;
  background-size:228px 152px;
}

.modalities-band::before{
  left:0;
  background-position:left bottom;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 136'%3E%3Cdefs%3E%3ClinearGradient id='s' x1='0' y1='1' x2='1' y2='.15'%3E%3Cstop stop-color='%236f813c' stop-opacity='.62'/%3E%3Cstop offset='.72' stop-color='%235f7432' stop-opacity='.22'/%3E%3Cstop offset='1' stop-color='%235f7432' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' stroke='url(%23s)' stroke-width='2.1' stroke-linecap='round'%3E%3Cpath d='M-8 124C38 94 84 62 157 27'/%3E%3Cpath d='M13 113C47 95 66 76 91 47'/%3E%3Cpath d='M42 102C77 83 103 59 132 31'/%3E%3Cpath d='M-2 91C29 82 55 72 80 51'/%3E%3Cpath d='M24 132C69 116 107 100 146 72'/%3E%3C/g%3E%3Cg fill='%236f813c' fill-opacity='.31'%3E%3Cellipse cx='27' cy='105' rx='38' ry='8' transform='rotate(-29 27 105)'/%3E%3Cellipse cx='57' cy='86' rx='36' ry='7' transform='rotate(-37 57 86)'/%3E%3Cellipse cx='88' cy='64' rx='34' ry='7' transform='rotate(-42 88 64)'/%3E%3Cellipse cx='118' cy='43' rx='31' ry='6' transform='rotate(-34 118 43)'/%3E%3Cellipse cx='56' cy='123' rx='32' ry='6' transform='rotate(-13 56 123)'/%3E%3C/g%3E%3C/svg%3E");
}

.modalities-band::after{
  right:0;
  transform:scaleX(-1);
  background-position:left bottom;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 136'%3E%3Cdefs%3E%3ClinearGradient id='s' x1='0' y1='1' x2='1' y2='.15'%3E%3Cstop stop-color='%236f813c' stop-opacity='.62'/%3E%3Cstop offset='.72' stop-color='%235f7432' stop-opacity='.22'/%3E%3Cstop offset='1' stop-color='%235f7432' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' stroke='url(%23s)' stroke-width='2.1' stroke-linecap='round'%3E%3Cpath d='M-8 124C38 94 84 62 157 27'/%3E%3Cpath d='M13 113C47 95 66 76 91 47'/%3E%3Cpath d='M42 102C77 83 103 59 132 31'/%3E%3Cpath d='M-2 91C29 82 55 72 80 51'/%3E%3Cpath d='M24 132C69 116 107 100 146 72'/%3E%3C/g%3E%3Cg fill='%236f813c' fill-opacity='.31'%3E%3Cellipse cx='27' cy='105' rx='38' ry='8' transform='rotate(-29 27 105)'/%3E%3Cellipse cx='57' cy='86' rx='36' ry='7' transform='rotate(-37 57 86)'/%3E%3Cellipse cx='88' cy='64' rx='34' ry='7' transform='rotate(-42 88 64)'/%3E%3Cellipse cx='118' cy='43' rx='31' ry='6' transform='rotate(-34 118 43)'/%3E%3Cellipse cx='56' cy='123' rx='32' ry='6' transform='rotate(-13 56 123)'/%3E%3C/g%3E%3C/svg%3E");
}

.modalities-inner{
  position:relative;
  z-index:1;
  width:min(1252px,calc(100% - 42px));
  margin:auto;
  min-height:152px;
  display:grid;
  grid-template-columns:118px 1fr;
  grid-template-areas:
    "label grid"
    "sub sub";
  gap:4px 14px;
  padding:28px 4px 27px 0;
  align-items:start;
}

.modalities-label{
  grid-area:label;
  margin:0;
  color:#d9b760;
  text-transform:uppercase;
  letter-spacing:.36em;
  font-size:11px;
  line-height:1;
  font-weight:800;
  text-shadow:0 2px 6px rgba(0,0,0,.50);
}

.modalities-sub{
  grid-area:sub;
  margin:4px 0 0;
  position:relative;
  left:-16px;
  color:#f1ead6;
  font-family:var(--serif);
  font-size:17px;
  font-weight:600;
  line-height:1.18;
  text-align:center;
  letter-spacing:.02em;
  text-shadow:0 2px 6px rgba(0,0,0,.54);
}

.modalities-grid{
  grid-area:grid;
  display:grid;
  position:relative;
  left:-16px;
  grid-template-columns:repeat(10,1fr);
  gap:8px;
  align-items:start;
  text-align:center;
}

.modality-item{
  color:#f3eddb;
  font-family:var(--serif);
  font-size:14.5px;
  font-weight:700;
  line-height:1.05;
  letter-spacing:.01em;
  text-shadow:0 2px 5px rgba(0,0,0,.56);
}

.modality-icon{
  display:grid;
  place-items:center;
  width:29px;
  height:29px;
  margin:0 auto 4px;
  color:#c8a34d;
  filter:drop-shadow(0 2px 4px rgba(0,0,0,.48));
}

.modality-icon svg{
  width:29px;
  height:29px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* =========================================================
   CONTACT / LOCATION / BOOKING CTA
   1.01.09 - map-footer-ninevolts-credit-only
   ========================================================= */
.contact-band{
  display:grid;
  grid-template-columns:1.75fr .95fr;
  border-top:1px solid var(--line);
  background:#f8f4ec;
}

.contact-map-panel{
  min-height:304px;
  background:#e8eee6;
  border-right:1px solid var(--line);
}

.contact-map-panel iframe{
  width:100%;
  height:100%;
  min-height:304px;
  display:block;
  border:0;
}

.contact-info-panel{
  position:relative;
  min-height:304px;
  padding:31px 28px 27px;
  background:
    radial-gradient(circle at 100% 100%, rgba(214,169,79,.18), transparent 28%),
    var(--paper);
  overflow:hidden;
}

.contact-info-panel::after{
  content:"";
  position:absolute;
  right:-20px;
  bottom:-26px;
  width:132px;
  height:132px;
  pointer-events:none;
  opacity:.42;
  background:url("img/plumeria.svg") center center / contain no-repeat;
}

.contact-info-panel .small-title{
  margin:0 0 10px;
  color:#7d8b69;
}

.contact-info-panel h2{
  margin:0 0 5px;
  color:#111a39;
  font-family:var(--serif);
  font-size:38px;
  font-weight:600;
  line-height:1.05;
  letter-spacing:.05em;
}

.contact-location-name{
  margin:0 0 11px;
  color:#4e5c45;
  font-size:17px;
  font-weight:700;
}

.contact-info-panel address{
  margin:0 0 12px;
  color:#343b32;
  font-style:normal;
  font-size:16px;
  line-height:1.45;
}

.contact-phone{
  display:inline-block;
  margin:0 0 17px;
  color:#111a39;
  font-size:25px;
  font-weight:800;
  letter-spacing:.03em;
}

.contact-actions{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:15px;
  flex-wrap:wrap;
}

.contact-actions .book-btn.secondary{
  display:inline-flex;
}

.directions-link{
  color:#4f6f31;
  font-size:14px;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:4px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  display:grid;
  grid-template-columns:230px minmax(0,1fr) auto auto;
  column-gap:14px;
  row-gap:12px;
  align-items:center;
  padding:14px 22px;
  border-top:1px solid var(--line);
  background:var(--paper);
}

.footer-brand img{
  width:220px;
}

.footer-copy,
.footer-links{
  color:#5a6157;
  font-size:13px;
}

.footer-credit{
  display:inline-flex;
  justify-content:flex-end;
  align-items:center;
  justify-self:end;
  margin-left:auto;
}

.footer-credit img{
  width:154px;
  height:auto;
  opacity:.94;
}


.footer-links{
  display:flex;
  justify-content:center;
  gap:18px;
}

.footer-links a{
  text-decoration:underline;
  text-underline-offset:3px;
}

.footer-socials{
  display:flex;
  justify-content:flex-end;
  justify-self:end;
  gap:12px;
}

.footer-socials a{
  width:32px;
  height:32px;
  border-radius:50%;
  background:#1d2118;
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:800;
}

/* =========================================================
   RESPONSIVE: TABLET
   ========================================================= */
@media (max-width: 1180px){
  .header-inner{
    grid-template-columns:230px 1fr 190px;
    gap:16px;
  }

  .nav-links{
    gap:18px;
    font-size:12px;
  }

  .service-grid{grid-template-columns:repeat(3,1fr)}
  .enhancement-grid{grid-template-columns:repeat(4,1fr)}
  .testimonial-band{grid-template-columns:180px 1fr 180px}
  .contact-band{grid-template-columns:1fr}

  .contact-map-panel{
    min-height:300px;
    border-right:none;
    border-bottom:1px solid var(--line);
  }

  .contact-map-panel iframe{
    min-height:300px;
  }

  .map-wrap{
    border-left:none;
    border-right:none;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }

  .site-footer{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-brand img{margin:auto}
  .footer-credit{justify-self:center;margin-left:0}
  .footer-links,
  .footer-socials{justify-content:center;justify-self:center}
}

/* =========================================================
   RESPONSIVE: MOBILE
   ========================================================= */
@media (max-width: 980px){
  .page-shell{
    width:100%;
    margin:0;
    border:none;
    box-shadow:none;
  }

  .site-header{
    border-bottom:1px solid #ddd7ca;
    box-shadow:0 2px 8px rgba(24,26,20,.05);
  }

  .site-header::after{
    display:none;
  }

  .header-inner{
    min-height:76px;
    grid-template-columns:auto auto;
    justify-content:space-between;
    padding:0 18px;
  }

  .brand img{width:210px}

  .menu-toggle{display:block}

  .nav-links{
    position:absolute;
    left:14px;
    right:14px;
    top:76px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:#fffdf8;
    border:1px solid var(--line);
    border-radius:8px;
    box-shadow:0 18px 45px rgba(0,0,0,.14);
    padding:10px;
  }

  .nav-links.is-open{display:flex}
  .nav-links a{padding:13px 12px}
  .nav-links a::after{display:none}
  .book-btn{display:none}

  .hero{
  min-height:770px;
  margin-top:0;
}

.hero-bg{
  background-position:62% 18%;
}

.hero-overlay{
  display:block;
}

.hero::before{display:none}

.hero-inner{
  min-height:770px;
  align-items:flex-start;
  padding:72px 18px 28px;
}

.hero-copy{width:100%}
.hero h1{font-size:52px;max-width:310px}
.hero-text{max-width:320px;font-size:16px}

.hero-actions{
  flex-direction:column;
  width:230px;
}

.hero-flower{
  width:68px;
  right:0;
  bottom:0;
}

  .trust-grid{
    overflow:auto;
    grid-template-columns:repeat(5,180px);
  }

  .section-inner{
    width:calc(100% - 30px);
  }

  .service-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .service-card{
    display:grid;
    grid-template-columns:112px 1fr;
    gap:16px;
    align-items:center;
    border-bottom:1px solid var(--line);
    padding-bottom:14px;
  }

  .service-card img{
    aspect-ratio:1/1;
    height:112px;
  }

  .service-card h3,
  .service-card p{
    text-align:left;
  }

  .service-card h3{margin:0 0 6px}
.enhancement-grid{
    display:flex;
    overflow:auto;
    gap:14px;
    padding-bottom:6px;
  }

  .enhancement-grid div{
    min-width:130px;
  }

  .about-band{
    grid-template-columns:1fr;
  }

  .about-badges{
    min-height:auto;
    grid-template-columns:repeat(4, minmax(80px, 1fr));
    padding:26px 20px;
  }

  .about-badges img{
    max-width:105px;
  }

  .about-copy{
    min-height:auto;
    padding:30px 22px 28px;
  }

  .about-copy h2#about-title{
    font-size:38px;
  }

  .about-image,
  .about-image img{
    min-height:280px;
  }

  .modalities-inner{
    width:calc(100% - 30px);
    grid-template-columns:1fr;
    grid-template-areas:
      "label"
      "grid"
      "sub";
    min-height:auto;
    gap:8px;
    padding:20px 0 18px;
  }

  .modalities-label{
    text-align:center;
  }

  .modalities-sub{
    left:0;
    margin:0;
  }

  .modalities-grid{
    left:0;
    grid-template-columns:repeat(2,1fr);
    gap:16px 14px;
    text-align:center;
    font-size:11px;
  }

  .modality-icon,
  .modality-icon svg{
    width:27px;
    height:27px;
  }
}

/* =========================================================
   RESPONSIVE: SMALL MOBILE
   ========================================================= */
@media (max-width: 560px){
  .brand img{width:190px}

  .hero{min-height:740px}

  .hero-bg{
    background-position:64% 20%;
  }

  .hero-inner{
    min-height:740px;
    padding-top:68px;
  }

  .hero h1{font-size:48px}

  .eyebrow,
  .small-title{font-size:11px}

  .btn{
    min-height:44px;
    padding:0 18px;
  }

  .hero-actions{width:220px}

  .service-card{
    grid-template-columns:98px 1fr;
  }

  .service-card img{height:98px}

  .about-badges{
    grid-template-columns:repeat(2, minmax(105px, 1fr));
  }

  .about-badges img{
    max-width:122px;
  }

  .contact-info-panel{
    min-height:auto;
    padding:28px 22px 26px;
  }

  .contact-info-panel h2{
    font-size:32px;
  }

  .contact-phone{
    font-size:23px;
  }

  .ready-card h2{font-size:32px}
}


/* =========================================================
   RESPONSIVE: TESTIMONIAL BAND
   ========================================================= */
@media (max-width: 980px){
  .testimonial-band{
    display:block;
    min-height:220px;
    background-position:center center;
  }

  .testimonial-copy{
    min-height:220px;
    padding:28px 24px 24px;
  }

  .testimonial-content{
    width:min(540px, 100%);
    padding-left:28px;
  }

  .testimonial-quote-mark{
    left:22px;
    top:34px;
    font-size:32px;
  }

  .testimonial-copy h2{
    font-size:26px;
  }

  .review-title{
    font-size:17px;
  }

  .testimonial-copy blockquote p{
    font-size:13.5px;
    line-height:1.42;
  }
}

@media (max-width: 767px){
  .testimonial-band{
    display:block;
    min-height:0;
    background-position:center center;
  }

  .testimonial-copy{
    min-height:0;
    padding:28px 22px 24px;
    background:rgba(25,37,18,.26);
  }

  .testimonial-content{
    width:100%;
    padding-left:24px;
  }

  .testimonial-quote-mark{
    left:18px;
    top:27px;
    font-size:30px;
  }

  .testimonial-copy h2{
    font-size:24px;
  }

  .review-title{
    font-size:17px;
  }

  .testimonial-copy blockquote p{
    max-width:100%;
    font-size:13.5px;
    line-height:1.42;
  }

  .quote-name{
    font-size:12.5px;
  }
}

/* =========================================================
   MOBILE: SIGNATURE TREATMENTS POLISH
   1.01.15 - services-mobile-card-layout-only
   ========================================================= */
@media (max-width: 767px){
  .services .section-inner{
    width:calc(100% - 28px);
    padding:30px 0 32px;
  }

  .services .section-heading{
    margin-bottom:20px;
  }

  .services .section-heading h2{
    max-width:330px;
    margin:9px auto 0;
    font-size:27px;
    line-height:1.24;
    letter-spacing:.15em;
  }

  .services .leafline{
    margin-top:16px;
  }

  .service-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
  }

  .service-card{
    display:grid;
    grid-template-columns:104px minmax(0,1fr);
    grid-template-rows:auto 1fr;
    grid-template-areas:
      "service-image service-title"
      "service-image service-text";
    gap:0 16px;
    align-items:start;
    padding:12px;
    border:1px solid rgba(222,216,203,.92);
    border-radius:10px;
    background:linear-gradient(135deg,#fffdf8 0%,#f8f4ec 100%);
    box-shadow:0 10px 24px rgba(35,35,25,.07);
  }

  .service-card img{
    grid-area:service-image;
    width:104px;
    height:104px;
    aspect-ratio:auto;
    object-fit:cover;
    border-radius:7px;
  }

  .service-card h3{
    grid-area:service-title;
    margin:2px 0 7px;
    text-align:left;
    font-size:22px;
    line-height:1.06;
    color:#111a39;
  }

  .service-card p{
    grid-area:service-text;
    margin:0;
    text-align:left;
    color:#4f574c;
    font-size:13px;
    line-height:1.45;
  }

  .services .center{
    margin-top:18px;
  }

  .services .service-cta{
    width:min(220px,100%);
  }
}

@media (max-width: 420px){
  .services .section-inner{
    width:calc(100% - 24px);
  }

  .services .section-heading h2{
    max-width:300px;
    font-size:25px;
    letter-spacing:.14em;
  }

  .service-card{
    grid-template-columns:94px minmax(0,1fr);
    gap:0 13px;
    padding:10px;
  }

  .service-card img{
    width:94px;
    height:94px;
  }

  .service-card h3{
    font-size:20px;
  }

  .service-card p{
    font-size:12.4px;
    line-height:1.42;
  }
}

/* =========================================================
   MOBILE: SIGNATURE TREATMENTS SMALLER CARD IMAGES
   1.01.16 - services-mobile-smaller-images-only
   ========================================================= */
@media (max-width: 767px){
  .service-card{
    grid-template-columns:82px minmax(0,1fr);
    gap:0 14px;
    align-items:center;
  }

  .service-card img{
    width:82px;
    height:82px;
  }

  .service-card h3{
    margin:0 0 5px;
    font-size:21px;
  }

  .service-card p{
    font-size:12.5px;
    line-height:1.4;
  }
}

@media (max-width: 420px){
  .service-card{
    grid-template-columns:76px minmax(0,1fr);
    gap:0 12px;
    padding:10px;
  }

  .service-card img{
    width:76px;
    height:76px;
  }

  .service-card h3{
    font-size:19px;
  }

  .service-card p{
    font-size:12px;
    line-height:1.38;
  }
}


/* =========================================================
   MOBILE: ABOUT CARD + HERO HEIGHT POLISH
   1.01.17 - about-mobile-signature-hero-height-only
   ========================================================= */
.about-signature-card{
  margin-top:12px;
  padding:14px 16px 13px;
  border:1px solid rgba(222,216,203,.95);
  border-radius:12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(214,169,79,.16), transparent 34%),
    linear-gradient(135deg,#fffdf8 0%,#f8f4ec 100%);
  box-shadow:0 12px 28px rgba(35,35,25,.08);
  text-align:center;
}

.about-signature-text{
  display:block;
  color:#5d7736;
  font-family:var(--serif);
  font-size:42px;
  font-style:italic;
  font-weight:600;
  line-height:.9;
  letter-spacing:.02em;
}

.about-signature-line{
  display:block;
  margin-top:8px;
  color:#4f574c;
  font-size:12px;
  font-weight:600;
  line-height:1.35;
}

@media (max-width: 980px){
  .hero,
  .hero-inner{
    min-height:660px;
  }
}

@media (max-width: 767px){
  .hero,
  .hero-inner{
    min-height:620px;
  }

  .about-copy{
    padding:28px 22px 30px;
  }

  .about-copy .small-title{
    display:none;
  }

  .about-copy h2#about-title{
    margin-bottom:18px;
    font-size:37px;
  }

  .about-copy p{
    font-size:13.5px;
    line-height:1.5;
    margin-bottom:12px;
  }
}

@media (max-width: 560px){
  .hero,
  .hero-inner{
    min-height:610px;
  }

  .hero-inner{
    padding-top:58px;
  }
}

@media (max-width: 420px){
  .hero,
  .hero-inner{
    min-height:590px;
  }

  .about-copy{
    padding:26px 20px 28px;
  }

  .about-copy h2#about-title{
    font-size:34px;
    letter-spacing:.07em;
  }

  .about-signature-card{
    margin-top:14px;
    padding:13px 14px 12px;
  }

  .about-signature-text{
    font-size:38px;
  }
}

/* =========================================================
   MOBILE: TRUST STRIP CENTERED STACK FIX
   1.01.23 - trust-strip-mobile-centered-stack-only
   ========================================================= */
@media (max-width: 767px){
  .trust-strip{
    padding:0;
    background:var(--paper);
  }

  .trust-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:0 !important;
    overflow:visible !important;
  }

  .trust-grid div,
  .trust-grid div:first-child,
  .trust-grid div:last-child{
    width:100% !important;
    min-height:46px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:10px !important;
    padding:11px 16px !important;
    border:0 !important;
    border-bottom:1px solid var(--line) !important;
    border-radius:0 !important;
    background:var(--paper) !important;
    box-shadow:none !important;
    text-align:center !important;
    font-size:13px !important;
    line-height:1.25 !important;
  }

  .trust-grid div:first-child{
    border-top:1px solid var(--line) !important;
  }

  .trust-grid span:first-child{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex:0 0 auto !important;
    width:18px !important;
    height:18px !important;
    margin:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    color:#70845b !important;
    font-size:14px !important;
    line-height:1 !important;
  }

  .trust-grid span:last-child{
    color:#2d342b !important;
    font-weight:700 !important;
    text-align:center !important;
  }
}


/* =========================================================
   ADA CONTRAST FIXES - SMALL SECTION LABELS
   ========================================================= */

/* Hero label on dark photo background */
.hero .eyebrow{
  color:#dfe8d4;
}

/* Contact label on light background */
.contact-info-panel .small-title{
  color:#4f6046;
}