/* Baby Home Sessions production site */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap");

:root {
  --bhs-brown: #7A3E26;
  --bhs-coral: #CF6856;
  --bhs-champagne: #F7E7CE;
  --bhs-white: #FFFFFF;
  --warm-50: #FBF6EF;
  --warm-100: #F4EADD;
  --warm-200: #E8D7C4;
  --warm-300: #D8BFA6;
  --warm-400: #BFA088;
  --warm-500: #9C7D66;
  --warm-600: #7A5C46;
  --warm-700: #5C4030;
  --warm-800: #3F2B1F;
  --coral-soft: #E9A99B;
  --coral-tint: #F6E0D9;
  --coral-deep: #B14E3D;
  --brown-soft: #A06A4F;
  --bg-page: var(--warm-50);
  --bg-raised: var(--bhs-white);
  --bg-soft: var(--bhs-champagne);
  --bg-inverse: var(--bhs-brown);
  --fg-strong: var(--warm-800);
  --fg-default: var(--warm-700);
  --fg-muted: var(--warm-500);
  --fg-faint: var(--warm-400);
  --fg-on-dark: #F6ECE0;
  --fg-on-dark-mut: #CDB7A4;
  --accent: var(--bhs-coral);
  --accent-hover: var(--coral-deep);
  --border-soft: var(--warm-200);
  --border-strong: var(--warm-300);
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;
  --shadow-xs: 0 1px 2px rgba(63, 43, 31, 0.06);
  --shadow-sm: 0 2px 8px rgba(63, 43, 31, 0.07);
  --shadow-md: 0 10px 30px rgba(63, 43, 31, 0.10);
  --shadow-lg: 0 24px 60px rgba(63, 43, 31, 0.14);
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --track-wordmark: 0.22em;
  --track-eyebrow: 0.34em;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg-page);
  color: var(--fg-default);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  background: var(--bg-page);
  color: var(--fg-default);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

::selection {
  background: var(--coral-soft);
  color: var(--bhs-white);
}

.skip-link {
  position: fixed;
  left: var(--sp-4);
  top: var(--sp-4);
  z-index: 50;
  transform: translateY(-150%);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-pill);
  background: var(--bhs-brown);
  color: var(--fg-on-dark);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(232, 215, 196, 0.78);
  background: rgba(251, 246, 239, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--sp-3) 0;
}

.nav-logo {
  width: clamp(180px, 24vw, 308px);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  flex: 1;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.nav-links a {
  color: var(--warm-600);
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--accent-hover);
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.76);
  color: var(--bhs-brown);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}

.hamburger {
  display: grid;
  gap: 5px;
  width: 20px;
}

.hamburger span {
  display: block;
  height: 1.5px;
  border-radius: var(--r-pill);
  background: var(--bhs-brown);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + var(--sp-3));
  right: 0;
  display: none;
  width: min(330px, calc(100vw - 28px));
  padding: var(--sp-4);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--warm-50);
  box-shadow: var(--shadow-lg);
}

.mobile-menu-panel:target {
  display: block;
}

.mobile-menu-close {
  display: inline-flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: var(--sp-2);
  color: var(--warm-600);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.mobile-menu-links {
  display: grid;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.mobile-menu-links a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  color: var(--warm-700);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.mobile-menu-links a[aria-current="page"],
.mobile-menu-links a:hover {
  background: var(--coral-tint);
  color: var(--accent-hover);
}

.btn,
.contact-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 var(--sp-5);
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
}

.btn:active,
.contact-method:active {
  transform: scale(0.98);
}

.btn-primary,
.contact-method.primary {
  background: var(--accent);
  color: var(--bhs-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.contact-method.primary:hover {
  background: var(--accent-hover);
  color: var(--bhs-white);
}

.btn-secondary,
.contact-method {
  border-color: var(--border-soft);
  background: rgba(255, 255, 255, 0.74);
  color: var(--bhs-brown);
}

.btn-secondary:hover,
.contact-method:hover {
  border-color: var(--warm-300);
  color: var(--accent-hover);
}

.button-row,
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

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

.section {
  padding: var(--sp-9) 0;
}

.section.compact {
  padding: var(--sp-8) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: var(--sp-7);
  align-items: end;
  margin-bottom: var(--sp-7);
}

.section-head p {
  margin-bottom: 0;
}

.eyebrow {
  display: block;
  margin-bottom: var(--sp-3);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-eyebrow);
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--fg-faint);
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

figure,
blockquote {
  margin: 0;
}

h1,
.h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.04;
  color: var(--fg-strong);
  text-wrap: balance;
}

.h-display {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.6vw, 98px);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 0.98;
  color: var(--fg-strong);
  text-wrap: balance;
}

h2,
.h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--fg-strong);
  text-wrap: balance;
}

h3,
.h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 29px);
  font-weight: 600;
  line-height: 1.22;
  color: var(--fg-strong);
}

p,
li {
  font-size: 16px;
  line-height: 1.72;
}

.lead {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.62;
  color: var(--fg-muted);
}

.small {
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-muted);
}

.fine-rule {
  width: 90px;
  height: 1px;
  margin: var(--sp-5) 0;
  background: var(--warm-300);
}

.warm-band {
  background: var(--bg-soft);
}

.brown-band {
  background: var(--bg-inverse);
  color: var(--fg-on-dark);
}

.brown-band h1,
.brown-band h2,
.brown-band h3,
.brown-band p,
.brown-band li {
  color: inherit;
}

.brown-band .eyebrow,
.brown-band .small {
  color: var(--fg-on-dark-mut);
}

.site-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--fg-on-dark);
}

.site-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/site-assets/images/hero-family.webp") center / cover no-repeat;
}

.site-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(63, 43, 31, 0.76), rgba(63, 43, 31, 0.34) 52%, rgba(63, 43, 31, 0.08)),
    linear-gradient(0deg, rgba(63, 43, 31, 0.42), transparent 46%);
}

.hero-content {
  padding: var(--sp-10) 0 var(--sp-8);
}

.site-hero h1,
.site-hero .lead,
.site-hero .eyebrow {
  color: inherit;
}

.site-hero h1 {
  max-width: 820px;
  margin-bottom: var(--sp-5);
}

.site-hero .lead {
  max-width: 620px;
  color: var(--fg-on-dark);
}

.hero-actions {
  margin-top: var(--sp-6);
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  width: min(980px, 100%);
  margin-top: var(--sp-8);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(18px);
}

.quick-panel div {
  padding: var(--sp-5);
  background: rgba(63, 43, 31, 0.38);
}

.quick-panel strong {
  display: block;
  margin-bottom: var(--sp-1);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  color: var(--fg-on-dark);
}

.quick-panel span {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-on-dark-mut);
}

.sub-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-soft);
}

.sub-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(330px, 0.58fr);
  gap: var(--sp-8);
  align-items: center;
  padding: var(--sp-9) 0;
}

.sub-hero h1 {
  margin-bottom: var(--sp-5);
}

.sub-hero-image,
.photo {
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--warm-100);
  box-shadow: var(--shadow-md);
}

.sub-hero-image {
  aspect-ratio: 4 / 5;
}

.sub-hero-image img,
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumbs {
  margin-bottom: var(--sp-5);
  font-size: 13px;
  color: var(--fg-muted);
}

.breadcrumbs a {
  color: var(--warm-600);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.08fr);
  gap: var(--sp-8);
  align-items: center;
}

.split.reversed {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr);
}

.split .photo {
  aspect-ratio: 4 / 5;
}

.soft-card,
.feature-card,
.price-card,
.area-card,
.faq-item,
.policy-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--bg-raised);
  box-shadow: var(--shadow-sm);
}

.feature-grid,
.process-grid,
.price-grid,
.area-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.feature-card,
.process-step,
.price-card,
.area-card,
.contact-card,
.policy-card {
  padding: var(--sp-6);
}

.feature-card p,
.process-step p,
.price-card p,
.area-card p {
  margin-bottom: 0;
}

.process-step .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: var(--sp-5);
  border: 1px solid var(--warm-300);
  border-radius: var(--r-pill);
  color: var(--bhs-brown);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.image-story-grid,
.gallery-preview,
.gallery-horizontal,
.gallery-vertical {
  display: grid;
  gap: var(--sp-4);
}

.image-story-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
}

.image-story-grid .large {
  grid-column: span 2;
  grid-row: span 2;
}

.image-story-grid .photo,
.gallery-preview .photo,
.gallery-horizontal .photo,
.gallery-vertical .photo {
  box-shadow: none;
}

.gallery-preview {
  grid-template-columns: 1.1fr 0.75fr 1fr;
  grid-auto-rows: 178px;
}

.gallery-preview .wide {
  grid-column: span 2;
}

.gallery-preview .tall {
  grid-row: span 2;
}

.gallery-horizontal {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-horizontal .photo {
  aspect-ratio: 3 / 2;
}

.gallery-vertical {
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--sp-4);
}

.gallery-vertical .photo {
  aspect-ratio: 3 / 4;
}

.price-card.featured {
  background: var(--bhs-brown);
  color: var(--fg-on-dark);
}

.brown-band .price-card {
  color: var(--fg-default);
}

.brown-band .price-card h2,
.brown-band .price-card h3 {
  color: var(--fg-strong);
}

.brown-band .price-card p,
.brown-band .price-card li {
  color: var(--fg-default);
}

.brown-band .price-card .eyebrow {
  color: var(--fg-faint);
}

.brown-band .price-card.featured,
.price-card.featured {
  background: var(--bhs-brown);
  color: var(--fg-on-dark);
}

.brown-band .price-card.featured h2,
.brown-band .price-card.featured h3,
.brown-band .price-card.featured p,
.brown-band .price-card.featured li,
.price-card.featured h2,
.price-card.featured h3,
.price-card.featured p,
.price-card.featured li {
  color: inherit;
}

.brown-band .price-card.featured .eyebrow,
.price-card.featured .eyebrow {
  color: var(--fg-on-dark-mut);
}

.price {
  margin: var(--sp-3) 0 var(--sp-4);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1;
  color: var(--bhs-brown);
}

.featured .price {
  color: var(--fg-on-dark);
}

.check-list,
.plain-list,
.location-list {
  padding-left: 0;
  list-style: none;
}

.check-list li,
.plain-list li,
.location-list li {
  position: relative;
  margin-bottom: var(--sp-3);
  padding-left: var(--sp-5);
}

.check-list li::before,
.plain-list li::before,
.location-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: var(--r-pill);
  background: var(--accent);
}

.area-card a {
  display: inline-flex;
  margin-top: var(--sp-4);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.faq-list {
  display: grid;
  gap: var(--sp-4);
}

.faq-item {
  padding: var(--sp-6);
}

.faq-item h2,
.faq-item h3 {
  margin-bottom: var(--sp-3);
}

.cta-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-6);
  align-items: center;
  padding: var(--sp-7);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--bg-raised);
  box-shadow: var(--shadow-sm);
}

.cta-strip h2,
.cta-strip p {
  color: var(--fg-strong);
}

.cta-strip p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--fg-muted);
}

.contact-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--bg-raised);
  box-shadow: var(--shadow-sm);
}

.contact-card p {
  margin-bottom: var(--sp-4);
}

.contact-card .contact-method {
  width: 100%;
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(260px, 0.26fr);
  gap: var(--sp-6);
  align-items: start;
}

.policy-card + .policy-card {
  margin-top: var(--sp-4);
}

.side-note {
  position: sticky;
  top: 112px;
}

.site-footer {
  background: var(--bhs-brown);
  color: var(--fg-on-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, 0.46fr));
  gap: var(--sp-7);
  padding: var(--sp-8) 0 var(--sp-6);
}

.footer-logo {
  width: min(300px, 100%);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--fg-on-dark-mut);
}

.footer-grid a:hover {
  color: var(--fg-on-dark);
}

.footer-links {
  display: grid;
  gap: var(--sp-2);
}

.footer-links strong {
  display: block;
  margin-bottom: var(--sp-3);
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--fg-on-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

.not-found-actions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-3);
}

@media (max-width: 1020px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .nav > .btn {
    display: none;
  }

  .quick-panel,
  .feature-grid,
  .process-grid,
  .price-grid,
  .area-grid,
  .contact-grid,
  .not-found-actions {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 820px) {
  .container,
  .section,
  .nav {
    width: min(100% - 28px, 680px);
  }

  .section {
    padding: var(--sp-8) 0;
  }

  .section-head,
  .split,
  .split.reversed,
  .sub-hero .container,
  .cta-strip,
  .legal-content {
    grid-template-columns: 1fr;
  }

  .site-hero {
    min-height: 82vh;
  }

  .hero-content {
    padding: var(--sp-9) 0 var(--sp-7);
  }

  .sub-hero .container {
    padding: var(--sp-8) 0;
  }

  .image-story-grid,
  .gallery-preview {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .image-story-grid .large,
  .gallery-preview .wide {
    grid-column: span 2;
  }

  .side-note {
    position: static;
  }
}

@media (max-width: 620px) {
  h1,
  .h1,
  .h-display,
  h2,
  .h2 {
    text-wrap: wrap;
  }

  h1,
  .h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .h-display {
    font-size: clamp(40px, 11.5vw, 46px);
    line-height: 1.04;
  }

  .sub-hero h1 {
    font-size: clamp(33px, 9.7vw, 40px);
  }

  .site-hero h1,
  .sub-hero h1 {
    max-width: 12ch;
  }

  .site-hero .lead,
  .sub-hero .lead {
    max-width: 30ch;
  }

  .quick-panel span {
    max-width: 28ch;
  }

  .nav-logo {
    width: 178px;
  }

  .site-hero::before {
    background-position: center;
  }

  .site-hero::after {
    background:
      linear-gradient(90deg, rgba(63, 43, 31, 0.82), rgba(63, 43, 31, 0.46)),
      linear-gradient(0deg, rgba(63, 43, 31, 0.48), transparent 50%);
  }

  .button-row,
  .contact-row {
    align-items: stretch;
  }

  .btn,
  .contact-method {
    width: 100%;
  }

  .quick-panel,
  .feature-grid,
  .process-grid,
  .price-grid,
  .area-grid,
  .contact-grid,
  .footer-grid,
  .not-found-actions,
  .gallery-horizontal,
  .gallery-vertical {
    grid-template-columns: 1fr;
  }

  .image-story-grid,
  .gallery-preview {
    grid-template-columns: 1fr;
    grid-auto-rows: 245px;
  }

  .image-story-grid .large,
  .gallery-preview .wide,
  .gallery-preview .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
