/* ============================================
   COTEE RIVER MASSAGE & SKINCARE
   styles.css
   ============================================ */

:root {
  --navy:     #1A2E44;
  --navy-deep:#111D2A;
  --teal:     #01BDAE;
  --teal-2:   #00BDA5;
  --blue:     #00B9DD;
  --off-white:#F9F8F5;
  --white:    #FFFFFF;
  --text-body:#4A5F70;
  --text-dark:#1A2E44;
  --border:   #D5E0E8;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --header-h: 80px;
  --radius:   4px;
  --shadow:   0 2px 16px rgba(26,46,68,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
  overflow-x: hidden;
  max-width: 100vw;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(36px, 5vw, 58px); font-style: italic; }
h2 { font-size: clamp(30px, 3.5vw, 46px); }
h3 { font-size: clamp(24px, 2.8vw, 34px); }
h4 { font-size: clamp(20px, 2.2vw, 26px); }

p {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-body);
  font-size: 17px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.teal-bar {
  width: 36px;
  height: 2px;
  background: var(--teal);
  margin-bottom: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
}
.btn-primary:hover { background: var(--teal-2); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
}
.btn-secondary:hover { background: var(--off-white); transform: translateY(-1px); }

.btn-sm  { padding: 11px 22px; font-size: 14px; }
.btn-lg  { padding: 16px 36px; font-size: 13px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--header-h);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(1,189,174,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}



.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--teal);
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--teal); }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--teal);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.header-phone:hover { opacity: 0.8; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-deep);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 300;
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-menu .btn-primary { margin-top: 4px; text-align: center; padding: 14px; }

.mobile-menu.open { display: flex; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--navy);
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(1,189,174,0.05);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,183,249,0.04);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.hero .eyebrow { margin-bottom: 24px; }

.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  font-size: clamp(36px, 4.2vw, 58px);
  max-width: 860px;
}

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 900px;
  line-height: 1.8;
  white-space: nowrap;
}

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

.hero-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  background: var(--off-white);
  padding: 64px 0;
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 72px;
  align-items: start;
}

.intro-text p {
  margin-bottom: 20px;
  font-size: 18px;
}
.intro-text p:last-child { margin-bottom: 0; }

.intro-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.stat-card {
  padding: 20px 24px;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-card:last-child {
  border-bottom: none;
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}
.stat-val {
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--off-white);
  padding: 72px 0;
}

.section-head {
  margin-bottom: 40px;
}
.section-head h2 { margin-top: 8px; }

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

.service-card {
  background: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 52px 48px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, #01BDAE, #00B7F9);
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(1,189,174,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card h3 { margin-bottom: 6px; color: var(--white); }

.service-card-by {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 17px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.65);
}

.card-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(1,189,174,0.3);
  padding-bottom: 2px;
}
.card-link:hover { color: white; border-bottom-color: white; }
.card-link span { color: inherit; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  background: var(--off-white);
  padding: 64px 0;
}

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

.review-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.placeholder-review {
  border-style: dashed;
  opacity: 0.6;
}

.review-stars {
  color: var(--teal);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 14px;
  color: var(--text-body);
}

.review-author {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.06em;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
  background: var(--white);
  padding: 64px 0;
}

.why-list {
  display: flex;
  flex-direction: column;
  border-top: 0.5px solid var(--border);
}

.why-item {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 0.5px solid var(--border);
}

.why-num {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--teal);
  flex-shrink: 0;
  width: 28px;
  padding-top: 4px;
}

.why-content h4 { margin-bottom: 8px; }
.why-content p { font-size: 17px; max-width: 820px; }

/* ============================================
   CTA BAR
   ============================================ */
.cta-bar {
  background: var(--navy);
  padding: 72px 0;
  border-top: 3px solid var(--teal);
}

.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-bar h3 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 10px;
  font-size: clamp(28px, 3.5vw, 44px);
}

.cta-bar > .container > div > p,
.cta-bar p {
  font-size: 17px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

.cta-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.cta-phone:hover { color: var(--teal); }

/* ============================================
   PROVIDER BIO (used on service pages)
   ============================================ */
.bio-section {
  background: var(--off-white);
  padding: 88px 0;
}

.bio-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

.bio-text h2 { margin-bottom: 24px; margin-top: 10px; font-size: clamp(28px, 3.5vw, 44px); }
.bio-text p { font-size: 17px; margin-bottom: 20px; line-height: 1.85; }
.bio-text p:last-child { margin-bottom: 0; }

.bio-photo {
  background: var(--navy);
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  padding: 24px;
  line-height: 1.6;
  border: 2px dashed rgba(1,189,174,0.25);
}

/* ============================================
   SERVICE LISTINGS
   ============================================ */
.services-list {
  background: var(--white);
  padding: 88px 0;
}

.services-category {
  margin-bottom: 64px;
}
.services-category:last-child { margin-bottom: 0; }

.services-category-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  padding-bottom: 18px;
  border-bottom: 2px solid var(--teal);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-item {
  padding: 36px 0;
  border-bottom: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.service-item-name { font-family: var(--font-serif); font-size: 28px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.service-item-tags { font-size: 13px; font-weight: 400; color: var(--teal); letter-spacing: 0.06em; margin-bottom: 12px; font-style: italic; }
.service-item-desc { font-size: 16px; line-height: 1.85; color: var(--text-body); max-width: 640px; }
.service-item-provider { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-body); margin-top: 10px; }

.service-pricing {
  text-align: right;
  flex-shrink: 0;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 4px;
}
.price-duration {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-body);
  white-space: nowrap;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}

/* ============================================
   ADDONS CALLOUT
   ============================================ */
.addons-callout {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 48px;
  margin: 48px 0;
  border-left: 4px solid var(--teal);
}
.addons-callout h4 { color: var(--white); margin-bottom: 12px; font-style: italic; }
.addons-callout p { color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 10px; }
.addons-callout .addon-note { color: var(--teal); font-size: 15px; font-weight: 400; margin-top: 12px; }

/* ============================================
   PACKAGES
   ============================================ */
.package-item {
  background: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.package-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, #01BDAE, #00B7F9);
}
.package-item h4 { margin-bottom: 10px; color: var(--white); }
.package-item p { font-size: 16px; margin-bottom: 18px; color: rgba(255,255,255,0.65); }
.package-prices { display: flex; flex-wrap: wrap; gap: 10px; }
.package-price-tag {
  background: rgba(1,189,174,0.15);
  border: 1px solid rgba(1,189,174,0.5);
  border-radius: 2px;
  padding: 10px 16px;
  font-size: 15px;
  color: #ffffff;
  font-weight: 400;
  color: var(--navy);
  font-weight: 400;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  background: var(--navy);
  padding: 90px 0 80px;
}
.about-hero h1 { color: var(--white); max-width: 640px; }
.about-hero p { color: rgba(255,255,255,0.6); font-size: 16px; margin-top: 16px; max-width: 560px; }

.about-story {
  background: var(--off-white);
  padding: 88px 0;
}
.about-story-inner { max-width: 720px; }
.about-story p { font-size: 18px; margin-bottom: 22px; line-height: 1.9; }
.about-story p:last-child { margin-bottom: 0; }

.about-photos {
  background: var(--white);
  padding: 88px 0;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.photo-placeholder {
  background: var(--navy);
  border: 2px dashed rgba(1,189,174,0.25);
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.photo-placeholder p { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 300; }

.about-diff {
  background: var(--off-white);
  padding: 80px 0;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.diff-item {
  background: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.diff-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #01BDAE, #00B7F9);
}
.diff-item h4 { margin-bottom: 10px; color: var(--white); }
.diff-item p { font-size: 16px; color: rgba(255,255,255,0.65); }

/* ============================================
   BOOK / CONTACT PAGE
   ============================================ */
.book-hero {
  background: var(--navy);
  padding: 80px 0 64px;
  text-align: center;
}
.book-hero h1 { color: var(--white); }
.book-hero p { color: rgba(255,255,255,0.6); font-size: 16px; margin-top: 12px; }

.book-content {
  background: var(--off-white);
  padding: 80px 0;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.book-primary { }
.book-primary h3 { margin-bottom: 20px; }
.massagebook-embed {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  margin-bottom: 24px;
}
.massagebook-embed p { font-size: 14px; margin-bottom: 20px; color: var(--text-body); }

.book-details { }
.book-details h3 { margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(1,189,174,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info { }
.contact-info .label { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.contact-info .value { font-size: 15px; font-weight: 400; color: var(--navy); }
.contact-info .sub { font-size: 13px; color: var(--text-body); font-weight: 300; margin-top: 2px; }

.map-placeholder {
  background: var(--border);
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-body);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--navy);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(1,189,174,0.05);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); max-width: 760px; font-size: clamp(32px, 4vw, 52px); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 19px; font-weight: 300; margin-top: 18px; max-width: 640px; line-height: 1.75; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-deep);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo { margin-bottom: 12px; }
.footer-tagline {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 8px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}

/* ============================================
   PAGE BOOKING CTA (bottom of service pages)
   ============================================ */
.page-cta {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
  border-top: 3px solid var(--teal);
}
.page-cta h3 { color: var(--white); font-style: italic; margin-bottom: 10px; font-size: clamp(26px, 3.2vw, 40px); }
.page-cta p { color: rgba(255,255,255,0.55); font-size: 17px; margin-bottom: 32px; font-weight: 300; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .intro-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .intro-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    border: none;
    background: transparent;
    order: -1;
  }
  .stat-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
    border: 0.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    padding: 14px 16px;
  }
  .stat-card:last-child {
    border-bottom: 0.5px solid var(--border);
  }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; box-sizing: border-box; }
  .hero h1 { font-size: clamp(26px, 5.5vw, 46px); }
  .hero-sub { font-size: 17px; white-space: normal; word-wrap: break-word; }

  .intro-inner { grid-template-columns: 1fr; gap: 36px; }
  .intro-stats { grid-template-columns: 1fr 1fr; }

  .service-cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .bio-inner { grid-template-columns: 1fr; }
  .bio-photo { aspect-ratio: 4/3; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .service-item { grid-template-columns: 1fr; }
  .service-pricing { text-align: left; }
  .price-row { justify-content: flex-start; }

  .cta-bar-inner { flex-direction: column; align-items: flex-start; }
  .cta-bar-right { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 600px) {
  :root { --header-h: 64px; }
  body { padding-top: 64px; }
  .container { padding: 0 20px; box-sizing: border-box; }
  .hero { padding: 52px 0; width: 100%; overflow: hidden; }
  .hero .container { padding: 0 24px; }
  .hero-content { max-width: 100%; overflow: hidden; text-align: center; }
  .hero h1 { font-size: clamp(26px, 7.5vw, 38px); line-height: 1.28; word-wrap: break-word; overflow-wrap: break-word; }
  .hero-sub { font-size: 16px; word-wrap: break-word; overflow-wrap: break-word; white-space: normal; max-width: 100%; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { text-align: center; width: 100%; }
  .hero-note { text-align: center; }
  .hero .eyebrow { text-align: center; }

  .hero { padding: 52px 0 52px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { width: 100%; text-align: center; }

  .intro { padding: 56px 0; }
  .services-section,
  .reviews-section,
  .why-section,
  .bio-section,
  .services-list,
  .about-story,
  .about-photos,
  .about-diff,
  .book-content { padding: 56px 0; }

  .why-item { gap: 20px; }
  .photo-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px 20px; }
  .addons-callout { padding: 24px; }
  .package-item { padding: 20px; }

  
}
