/* =========================================
   FONTS — Cooper Hewitt (self-hosted)
   Place .woff2 files in /fonts/
   Raleway from Google Fonts is the fallback.
   ========================================= */
@font-face {
  font-family: 'Cooper Hewitt';
  src: url('../fonts/CooperHewitt-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cooper Hewitt';
  src: url('../fonts/CooperHewitt-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cooper Hewitt';
  src: url('../fonts/CooperHewitt-BookItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cooper Hewitt';
  src: url('../fonts/CooperHewitt-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cooper Hewitt';
  src: url('../fonts/CooperHewitt-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cooper Hewitt';
  src: url('../fonts/CooperHewitt-Heavy.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* =========================================
   Custom Properties
   ========================================= */
:root {
  /* Palette */
  --sage: #98A699;
  --peach: #F2D8C2;
  --dusty-rose: #D9A5A0;
  --mauve: #D99A9A;
  --light-gray: #F2F2F2;

  /* Derived */
  --sage-dark: #7a8d7b;
  --sage-light: #c5d0c6;
  --peach-light: #faf0e6;
  --mauve-dark: #c07e7e;
  --mauve-light: #e8bfbf;
  --text-dark: #3e3e3e;
  --text-medium: #5a5a5a;
  --text-light: #888888;
  --white: #ffffff;

  /* Typography */
  --ff-main: 'Cooper Hewitt', 'Raleway', 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Sizing */
  --container-max: 1200px;
  --section-padding: 6rem 0;
  --border-radius: 14px;
  --border-radius-sm: 8px;

  /* Transitions */
  --transition: 0.3s ease;

  /* Header */
  --header-height: 80px;
}

/* =========================================
   Reset & Base
   ========================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-main);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--light-gray);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus-visible {
  color: var(--mauve);
}

ul {
  list-style: none;
}

::selection {
  background: var(--peach);
  color: var(--text-dark);
}

:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
}

/* =========================================
   Utility
   ========================================= */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section {
  padding: var(--section-padding);
}

.section__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.section__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-block;
  font-family: var(--ff-main);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.4;
}

.btn--primary {
  background: var(--mauve);
  color: var(--white);
  border-color: var(--mauve);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--mauve-dark);
  border-color: var(--mauve-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(217, 154, 154, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--sage);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* =========================================
   Header / Navigation
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(242, 242, 242, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(62, 62, 62, 0.08);
  background: rgba(242, 242, 242, 0.97);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo img {
  height: 55px;
  width: auto;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.5rem 0.85rem;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--mauve-dark);
  background: rgba(217, 165, 160, 0.1);
}

.nav__link--cta {
  background: var(--mauve);
  color: var(--white);
  margin-left: 0.25rem;
}

.nav__link--cta:hover,
.nav__link--cta:focus-visible {
  background: var(--mauve-dark);
  color: var(--white);
}

.nav__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(152, 166, 153, 0.3);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--text-medium);
  transition: all var(--transition);
}

.social-icon:hover {
  color: var(--mauve);
  background: rgba(217, 154, 154, 0.1);
}

/* Hamburger */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1001;
}

.nav__hamburger,
.nav__hamburger::before,
.nav__hamburger::after {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
  position: absolute;
  left: 5px;
}

.nav__hamburger {
  top: 50%;
  transform: translateY(-50%);
}

.nav__hamburger::before {
  content: '';
  top: -8px;
}

.nav__hamburger::after {
  content: '';
  top: 8px;
}

.nav__toggle.active .nav__hamburger {
  background: transparent;
}

.nav__toggle.active .nav__hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__toggle.active .nav__hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    160deg,
    var(--light-gray) 0%,
    var(--sage-light) 35%,
    var(--peach) 70%,
    var(--peach-light) 100%
  );
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152, 166, 153, 0.15) 0%, transparent 70%);
  top: -120px;
  right: -120px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 154, 154, 0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 8rem 1rem 4rem;
  max-width: 750px;
}

.hero__tagline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 3.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero__title span {
  color: var(--mauve-dark);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2.8vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 1.75rem;
}

.hero__divider {
  width: 60px;
  height: 3px;
  background: var(--mauve);
  border-radius: 2px;
  margin: 0 auto 1.75rem;
}

.hero__text {
  font-size: 1.1rem;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.8;
}

.hero__cta-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin: 1.5rem 0 0.5rem;
}

.hero__accepting {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.hero__accepting a {
  color: var(--mauve-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--mauve);
  text-underline-offset: 3px;
}

.hero__accepting a:hover {
  color: var(--mauve);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-dark);
  border-radius: 12px;
  position: relative;
  opacity: 0.4;
}

.hero__scroll span::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--text-dark);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

/* =========================================
   How Can I Help Banner
   ========================================= */
.help-banner {
  background: var(--sage);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.help-banner__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.help-banner__text {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.9;
  opacity: 0.95;
}

.help-banner__text em {
  font-style: italic;
  font-weight: 700;
}

.help-banner__safe {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
}

.help-banner__safe img {
  border-radius: 3px;
}

/* =========================================
   About / Meet Your Doula
   ========================================= */
.about {
  background: var(--white);
}

.about .section__title .wave {
  display: inline-block;
  animation: waveHand 2.5s ease-in-out infinite;
  transform-origin: 70% 70%;
}

@keyframes waveHand {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(14deg); }
  20%  { transform: rotate(-8deg); }
  30%  { transform: rotate(14deg); }
  40%  { transform: rotate(-4deg); }
  50%  { transform: rotate(10deg); }
  60%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

.about__text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Badges row — cleaner wrap behavior on all screen sizes */
.about__badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(152, 166, 153, 0.2);
  flex-wrap: wrap;
}

.about__badge {
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

.about__safe {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.about__pride {
  border-radius: 3px;
}

/* Photo layout */
.about__photos {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__photo-main {
  position: relative;
}

.about__photo-main::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--dusty-rose);
  border-radius: var(--border-radius);
  z-index: 0;
}

.about__photo-main img {
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius);
  object-fit: cover;
  width: 100%;
  max-height: 380px;
  box-shadow: 0 8px 30px rgba(62, 62, 62, 0.1);
}

.about__photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about__photo-figure {
  text-align: center;
  display: flex;
  flex-direction: column;
}

/* ✅ FIX: Pregnant photos now display full (not cropped) with their natural vertical aspect ratio */
.about__photo-figure img {
  border-radius: var(--border-radius);
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 6px 20px rgba(62, 62, 62, 0.08);
  background-color: var(--light-gray);
}

.about__photo-figure figcaption {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 0.6rem;
  font-style: italic;
}

/* =========================================
   Services
   ========================================= */
.services {
  background: var(--light-gray);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row--reverse .service-row__image-wrap {
  order: 2;
}

.service-row--reverse .service-row__content {
  order: 1;
}

.service-row__image {
  width: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
  max-height: 420px;
  box-shadow: 0 8px 30px rgba(62, 62, 62, 0.08);
}

.service-row__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-row__content p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.service-row__list {
  padding: 0;
  margin: 0.5rem 0;
}

.service-row__list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.service-row__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.75rem;
  top: 0.25rem;
}

/* Two-column layout inside service content (text + small inset photo) */
.service-row__body {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.service-row__text {
  flex: 1;
  min-width: 0;
}

.service-row__inset {
  flex-shrink: 0;
  width: 170px;
  margin: 0;
}

.service-row__inset img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 6px 20px rgba(62, 62, 62, 0.12);
}

/* =========================================
   Gift Certificates
   ========================================= */
.gift {
  background: var(--white);
}

.gift__intro {
  max-width: 640px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  color: var(--text-medium);
}

.gift__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gift__step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.gift__step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--dusty-rose);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.gift__step strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}

.gift__step p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin: 0;
}

.gift__content .btn {
  margin-top: 0.5rem;
}

.gift__visual {
  display: flex;
  justify-content: center;
}

.gift__card {
  background: linear-gradient(135deg, var(--peach-light), var(--peach), var(--dusty-rose));
  border-radius: var(--border-radius);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(217, 165, 160, 0.25);
  max-width: 360px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.gift__card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.gift__card-logo {
  margin: 0 auto 1.25rem;
}

.gift__card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.gift__card-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--mauve-dark);
  margin-bottom: 0.75rem;
}

.gift__card-text {
  font-size: 0.92rem;
  color: var(--text-medium);
  margin-bottom: 0.75rem;
}

.gift__card-note {
  font-size: 0.85rem;
  color: var(--text-medium);
}

/* =========================================
   Pricing
   ========================================= */
.pricing {
  background: var(--light-gray);
}

.pricing__intro {
  max-width: 600px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  color: var(--text-medium);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(62, 62, 62, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(62, 62, 62, 0.12);
}

.pricing-card__header {
  background: var(--sage);
  color: var(--white);
  padding: 1.5rem 2rem;
}

.pricing-card--alt .pricing-card__header {
  background: var(--dusty-rose);
}

.pricing-card__header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.pricing-card__body {
  padding: 2rem;
  flex: 1;
}

.pricing-card__rate {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-card__dollar {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-card__unit {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card__note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-card__features {
  padding: 0;
  margin-bottom: 1.5rem;
}

.pricing-card__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.pricing-card__example {
  background: var(--light-gray);
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  line-height: 1.6;
  border-left: 3px solid var(--dusty-rose);
}

.pricing-card__btn {
  margin: 0 2rem 2rem;
}

/* =========================================
   FAQ
   ========================================= */
.faq {
  background: var(--white);
}

.faq__list {
  max-width: 800px;
}

.faq__item {
  border-bottom: 1px solid rgba(152, 166, 153, 0.2);
}

.faq__question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 1.4rem 2.5rem 1.4rem 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: color var(--transition);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--sage);
  transition: transform var(--transition);
}

.faq__item[open] .faq__question::after {
  content: '−';
}

.faq__question:hover {
  color: var(--mauve-dark);
}

.faq__answer {
  padding: 0 0 1.4rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

.faq__answer p {
  margin-bottom: 0.75rem;
}

/* =========================================
   Trusted Friends
   ========================================= */
.friends {
  background: var(--peach-light);
}

.friends__intro {
  max-width: 600px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  color: var(--text-medium);
}

.friends__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.friend-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(62, 62, 62, 0.05);
  transition: all var(--transition);
  color: var(--text-dark);
  border: 2px solid transparent;
}

.friend-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(62, 62, 62, 0.1);
  border-color: var(--dusty-rose);
  color: var(--text-dark);
}

.friend-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--mauve-dark);
}

.friend-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.friend-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.friends__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.friends__note a {
  color: var(--mauve-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--mauve);
  text-underline-offset: 3px;
}

/* =========================================
   Testimonials
   ========================================= */
.testimonials {
  background: linear-gradient(160deg, var(--light-gray) 0%, var(--sage-light) 100%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(62, 62, 62, 0.05);
  display: flex;
  flex-direction: column;
  border: none;
  margin: 0;
  transition: transform var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.testimonial-card__stars {
  color: #DBB048;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.98rem;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.testimonial-card__author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-light);
}

/* =========================================
   Contact
   ========================================= */
.contact {
  background: var(--white);
}

.contact__intro {
  max-width: 640px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact__detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact__icon {
  width: 24px;
  height: 24px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact__detail a {
  color: var(--text-dark);
  font-weight: 600;
  word-break: break-word;
}

.contact__detail a:hover {
  color: var(--mauve);
}

.contact__detail small {
  color: var(--text-light);
  line-height: 1.5;
}

.contact__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(152, 166, 153, 0.2);
  border-bottom: 1px solid rgba(152, 166, 153, 0.2);
}

.contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: var(--light-gray);
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}

.contact__social-link:hover {
  background: var(--mauve);
  color: var(--white);
}

.contact__social-link svg {
  flex-shrink: 0;
}

.contact__credentials {
  margin-top: 1rem;
}

.contact__credentials p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact__credential-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.contact__credential-logo {
  border-radius: 10px;
  object-fit: contain;
}

.contact__form {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 24px rgba(62, 62, 62, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-group label span {
  color: var(--mauve);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--ff-main);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 2px solid rgba(152, 166, 153, 0.25);
  border-radius: var(--border-radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(152, 166, 153, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233e3e3e' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer__logo {
  margin-bottom: 0.75rem;
  filter: brightness(1.8) contrast(0.8);
  opacity: 0.9;
}

.footer__tagline {
  font-style: italic;
  font-size: 0.88rem;
  opacity: 0.6;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  align-self: center;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--peach);
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
}

.social-icon--footer {
  color: rgba(255, 255, 255, 0.7);
}

.social-icon--footer:hover {
  color: var(--peach);
  background: rgba(255, 255, 255, 0.1);
}

.footer__badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__badges img {
  border-radius: 8px;
  opacity: 0.85;
}

.footer__safe {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.footer__safe img {
  border-radius: 2px;
}

.footer__divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem;
}

.footer__bottom {
  text-align: center;
  font-size: 0.83rem;
  opacity: 0.5;
}

.footer__bottom p {
  margin-bottom: 0.25rem;
}

.footer__credential {
  font-size: 0.78rem;
}

/* =========================================
   Scroll Animations
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* Large Tablet */
@media (max-width: 1024px) {
  .about__grid {
    gap: 3rem;
  }

  .service-row {
    gap: 2.5rem;
  }

  .contact__grid {
    gap: 2.5rem;
  }

  .friends__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-row__inset {
    width: 140px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .gift__grid {
    grid-template-columns: 1fr;
  }

  .gift__visual {
    order: -1;
  }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__nav {
    justify-content: center;
  }

  .footer__right {
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
    --header-height: 70px;
  }

  /* Nav mobile */
  .nav__toggle {
    display: block;
  }

  .nav__right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: var(--light-gray);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 30px rgba(62, 62, 62, 0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav__right.open {
    right: 0;
  }

  .nav__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    width: 100%;
  }

  .nav__link {
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    width: 100%;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  .nav__social {
    border-left: none;
    border-top: 1px solid rgba(152, 166, 153, 0.3);
    padding-left: 0;
    padding-top: 1rem;
    margin-left: 0;
    width: 100%;
  }

  /* Mobile overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(62, 62, 62, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__photos {
    order: -1;
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }

  /* ✅ FIX: Center the badges row on mobile so they don't stack awkwardly to the left */
  .about__badges {
    justify-content: center;
    text-align: center;
  }

  /* Services */
  .service-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-row--reverse .service-row__image-wrap,
  .service-row--reverse .service-row__content {
    order: unset;
  }

  /* Service inset image stacks and centers on mobile */
  .service-row__body {
    flex-direction: column;
    align-items: center;
  }

  .service-row__inset {
    width: 60%;
    max-width: 220px;
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 1.5rem;
  }

  /* Friends */
  .friends__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Hero */
  .hero__content {
    padding: 7rem 1rem 5rem;
  }

  .hero__scroll {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero__title {
    font-size: 2.1rem;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .about__badges {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
  }

  .about__safe {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: nowrap;
  }

  .about__pride {
    display: inline-block;
    width: 44px;
    height: auto;
    flex-shrink: 0;
  }

  .about__photo-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .friends__grid {
    grid-template-columns: 1fr;
  }

  .hero__cta-text {
    font-size: 1.25rem;
  }

  .contact__social {
    flex-direction: column;
  }

  .contact__social-link {
    justify-content: center;
  }
}