:root {
  --ink: #222126;
  --paper: #fffdf8;
  --white: #ffffff;
  --soft: #f4f1eb;
  --coral: #ef6e67;
  --coral-dark: #cf504e;
  --teal: #39a99d;
  --teal-dark: #177b74;
  --yellow: #e8ad42;
  --yellow-soft: #f1cf7a;
  --blue: #65a9cf;
  --purple: #7777aa;
  --line: #d9d4cb;
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  min-width: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Fredoka', sans-serif;
  font-weight: 400;
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
main { overflow: clip; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin-bottom: 18px; }
h1, h2, h3, .display {
  font-family: 'Fraunces', Georgia, serif;
  font-feature-settings: "dlig" 0, "liga" 0, "ss01" 0, "ss02" 0;
  font-variation-settings: "SOFT" 0, "WONK" 0;
  font-weight: 700;
  line-height: 1.04;
  text-wrap: balance;
}
h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  letter-spacing: -.045em;
}
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
section { padding: clamp(76px, 9vw, 124px) 0; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.rounded { border-radius: 30px; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 18px;
  z-index: 1000;
  padding: 11px 17px;
  border-radius: 0 0 10px 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.eyebrow, .kicker, .tag {
  margin-bottom: 15px;
  color: var(--coral-dark);
  font-family: 'Lato', sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .21em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow.light, .kicker.light { color: var(--white); }
.lead {
  max-width: 760px;
  color: #58545c;
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
}
.btn {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  padding: 13px 27px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 9px 22px rgba(45, 117, 157, .18);
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { background: var(--coral); box-shadow: 0 12px 28px rgba(207, 80, 78, .2); transform: translateY(-2px); }
.btn.dark { background: var(--ink); box-shadow: none; }
.btn.light { background: var(--white); box-shadow: none; color: var(--coral-dark); }
.btn.teal { background: var(--teal-dark); }
.text-link {
  display: inline-block;
  margin-top: 26px;
  border-bottom: 2px solid currentColor;
  color: var(--coral-dark);
  font-weight: 700;
  text-decoration: none;
}

/* Navigation */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 220;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 7px max(24px, 4vw);
  background: linear-gradient(to bottom, rgba(18, 20, 25, .58), transparent);
  transition: background-color .25s ease, box-shadow .25s ease;
}
.brandmark { position: relative; display: block; width: 168px; height: 78px; flex: 0 0 auto; }
.brandmark img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.logo-dark { opacity: 0; }
nav.scrolled { background: rgba(255, 253, 248, .97); box-shadow: 0 2px 16px rgba(23, 21, 26, .1); }
nav.scrolled .logo-light { opacity: 0; }
nav.scrolled .logo-dark { opacity: 1; }
nav ul, #menu { display: flex; align-items: center; gap: clamp(13px, 1.7vw, 26px); list-style: none; }
nav ul a, #menu a {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: clamp(.7rem, .82vw, .83rem);
  font-weight: 700;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
nav.scrolled ul a { color: var(--ink); }
nav ul a:hover, #menu a:hover { color: #ffd595; }
.nav-cta { padding: 10px 19px; border-radius: 999px; background: var(--coral); color: var(--white) !important; }
.burger {
  position: relative;
  z-index: 230;
  display: none;
  width: 48px;
  height: 48px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
  transition: background-color .2s ease, opacity .2s ease, transform .2s ease;
}
.scrolled .burger span { background: var(--ink); }
.burger.open span { background: var(--white) !important; }
.burger.open span:first-child { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:last-child { transform: translateY(-8px) rotate(-45deg); }

/* Home hero */
.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  background: #58a4d1;
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 30, 48, .24), transparent 32%, rgba(16, 30, 43, .12) 65%);
  content: '';
}
.hero-panels {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  min-height: 375px;
  grid-template-columns: .82fr 1.42fr .76fr;
  align-items: end;
}
.hero-panel { position: relative; display: flex; min-width: 0; flex-direction: column; justify-content: center; }
.hero-stat {
  min-height: 295px;
  align-items: center;
  padding: 70px 34px 44px;
  border-radius: 0 58% 0 0;
  background: var(--coral);
  text-align: center;
}
.hero-stat strong { font-family: 'Fraunces', Georgia, serif; font-size: clamp(4rem, 8vw, 7.5rem); line-height: .8; }
.hero-stat span { margin-top: 18px; font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero-message {
  min-height: 375px;
  padding: 72px clamp(35px, 5vw, 88px) 44px;
  border-radius: 48% 52% 0 0 / 25% 25% 0 0;
  background: var(--teal);
  text-align: center;
}
.hero-message::before {
  position: absolute;
  top: -34px;
  right: 14%;
  width: 106px;
  height: 68px;
  border-radius: 50%;
  background: var(--purple);
  content: '';
  transform: rotate(-13deg);
  z-index: -1;
}
.hero-message .display { margin-bottom: 15px; font-size: clamp(2.8rem, 5vw, 5.25rem); letter-spacing: -.055em; }
.hero-message .display em { color: #ffe0a0; font-weight: 500; }
.hero-message h1 {
  max-width: 660px;
  margin: 0 auto 22px;
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(.93rem, 1.35vw, 1.12rem);
  font-weight: 500;
  line-height: 1.5;
}
.hero-message .btn { background: var(--coral); }
.hero-note {
  min-height: 270px;
  align-items: center;
  padding: 62px 28px 42px;
  border-radius: 58% 0 0 0;
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
}
.hero-note strong { max-width: 200px; font-family: 'Fraunces', Georgia, serif; font-size: clamp(2rem, 3.4vw, 3.5rem); line-height: .95; }
.hero-note span { margin-top: 15px; font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.marquee { overflow: hidden; padding: 15px 0; background: var(--ink); color: var(--white); white-space: nowrap; }
.marquee-track { display: inline-block; min-width: max-content; animation: marquee 30s linear infinite; font-family: 'Fraunces', Georgia, serif; font-size: .86rem; letter-spacing: .11em; text-transform: uppercase; }
.marquee span { margin: 0 26px; }
.marquee i { color: var(--yellow); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Editorial home sections */
.approach { position: relative; background: var(--paper); }
.approach-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 72px; align-items: end; }
.approach-head .lead { padding-bottom: 4px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 58px; }
.feature { position: relative; min-height: 245px; overflow: hidden; padding: 36px 31px; border: 1px solid #e7e2da; border-radius: 28px; background: #f8f6f1; }
.feature::before { position: absolute; top: -70px; right: -55px; width: 150px; height: 150px; border-radius: 50%; content: ''; opacity: .28; }
.feature.coral::before { background: var(--coral); }
.feature.teal::before { background: var(--teal); }
.feature.yellow::before { background: var(--yellow); }
.feature > span { color: var(--purple); font-size: .82rem; font-weight: 800; }
.feature h3 { margin: 38px 0 11px; }
.feature p { margin: 0; color: #625e63; }

.package { position: relative; overflow: hidden; background: #f3f1eb; }
.package::before, .package::after { position: absolute; border-radius: 50%; content: ''; }
.package::before { top: -240px; left: -210px; width: 570px; height: 570px; background: var(--coral); }
.package::after { right: -210px; bottom: -260px; width: 590px; height: 590px; background: var(--teal); }
.bone-shell {
  position: relative;
  z-index: 1;
  min-height: 470px;
  padding: 4px;
  background: var(--ink);
  clip-path: polygon(8% 0, 15% 0, 20% 10%, 80% 10%, 85% 0, 92% 0, 100% 8%, 100% 20%, 92% 30%, 92% 70%, 100% 80%, 100% 92%, 92% 100%, 85% 100%, 80% 90%, 20% 90%, 15% 100%, 8% 100%, 0 92%, 0 80%, 8% 70%, 8% 30%, 0 20%, 0 8%);
}
.bone-card {
  display: grid;
  min-height: 462px;
  grid-template-columns: .9fr 1.15fr .68fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  padding: 76px clamp(80px, 9vw, 126px);
  background: var(--white);
  clip-path: inherit;
}
.crown { position: absolute; top: 34px; left: 50%; z-index: 3; color: var(--yellow); font-family: 'Fraunces', Georgia, serif; font-size: 2.6rem; line-height: 1; transform: translateX(-50%) rotate(-5deg); }
.package-card h2, .bone-card h2 { margin-bottom: 13px; font-size: clamp(2.15rem, 3.5vw, 3.5rem); }
.price { margin: 0; font-family: 'Fraunces', Georgia, serif; font-size: clamp(3rem, 5vw, 4.7rem); font-weight: 700; line-height: 1; }
.price small { font-family: 'Lato', sans-serif; font-size: .82rem; color: #6d6870; }
.package ul, .package-card ul, .checks { list-style: none; }
.package li, .package-card li, .checks li { position: relative; padding: 8px 0 8px 28px; }
.package li::before, .package-card li::before, .checks li::before { position: absolute; left: 0; color: var(--teal-dark); content: '✓'; font-weight: 800; }
.micro { margin: 15px 0 0; color: #5f5a61; font-size: .84rem; }
.package-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr .7fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
  border: 3px solid var(--coral);
  border-radius: 32px;
  background: var(--white);
}

.story-intro { background: var(--white); }
.story-intro .split { align-items: start; }
.story-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; transform: rotate(-1deg); }
.story-collage img { width: 100%; aspect-ratio: 1; border-radius: 24px; object-fit: cover; }
.story-collage img:nth-child(2), .story-collage img:nth-child(3) { transform: translateY(24px); }
.story-intro .split > :last-child { padding-top: 26px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 7vw, 88px); align-items: center; }
.about-home { background: var(--soft); }
.about-home .about-copy { max-width: 560px; }
.about-photo { position: relative; }
.about-photo::before { position: absolute; inset: -20px 20px 20px -20px; z-index: 0; border-radius: 36px; background: var(--yellow); content: ''; }
.about-photo img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; border-radius: 30px; object-fit: cover; }
.about-photo.coral-frame::before { background: var(--coral); }
.safe-space { background: var(--yellow); }
.safe-space .eyebrow { color: #704500; }
.safe-space img { width: 100%; aspect-ratio: 4 / 3; border-radius: 30px; object-fit: cover; object-position: center; }
.editorial-photo { padding: 0; background: var(--blue); }
.editorial-photo img { width: 100%; max-height: 690px; object-fit: cover; object-position: center 48%; }
.reviews { background: var(--paper); }
.review-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 46px; }
.review-grid blockquote { padding: 38px; border: 1px solid #e2ddd4; border-radius: 27px; background: var(--white); box-shadow: 0 10px 34px rgba(31, 27, 34, .055); }
.review-grid blockquote > div { color: var(--yellow); letter-spacing: 4px; }
.review-grid blockquote p { margin-top: 16px; font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.14rem, 1.7vw, 1.35rem); font-style: italic; }
.review-grid cite { color: #6c676d; font-size: .84rem; font-style: normal; }
.faq { background: var(--soft); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; min-height: 71px; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; cursor: pointer; font-family: 'Fraunces', Georgia, serif; font-size: 1.16rem; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { color: var(--coral-dark); content: '+'; font-family: 'Lato', sans-serif; font-size: 1.8rem; font-weight: 500; }
.faq details[open] summary::after { content: '−'; }
.faq details p { max-width: 700px; padding: 0 42px 20px 0; color: #5c585f; }
.social-strip { overflow: hidden; background: var(--paper); text-align: center; }
.social-grid { display: grid; width: min(1440px, calc(100% - 24px)); margin: 34px auto 0; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.social-grid img { width: 100%; aspect-ratio: 4 / 5; border-radius: 14px; object-fit: cover; }
.social-strip .btn { margin-top: 28px; }
.final-cta, .cta-band, .ctaband { background: var(--yellow); color: var(--white); text-align: center; }
.final-cta img { width: min(340px, 82%); height: auto; margin: 0 auto 18px; }
.final-cta h2, .cta-band h2, .ctaband h2 { color: var(--white); }
.final-cta p { font-size: 1.08rem; }
.ctaband h2 + .btn { margin-top: 28px; }

/* Interior page heroes */
.page-hero {
  position: relative;
  display: flex;
  min-height: 640px;
  align-items: flex-end;
  overflow: hidden;
  background: #395c70;
  color: var(--white);
}
.page-hero .ph-bg, .page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero > img { object-position: center; }
.page-hero .ph-bg { background-position: center; background-size: cover; }
.page-hero::after, .ph-bg::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21, 21, 26, .74) 0%, rgba(21, 21, 26, .38) 52%, rgba(21, 21, 26, .08) 78%); content: ''; }
.ph-inner { position: relative; z-index: 2; width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 170px 0 78px; }
.ph-inner h1 { max-width: 900px; margin-bottom: 20px; font-size: clamp(3.2rem, 7vw, 6.8rem); letter-spacing: -.055em; }
.ph-inner > p:last-child { max-width: 650px; font-size: clamp(1rem, 1.6vw, 1.17rem); }
.crumbs { margin-bottom: 11px; font-size: .79rem; }
.crumbs a { text-underline-offset: 3px; }
.page-hero.gallery-hero > img { object-position: center 58%; }
.page-hero.blog-hero > img { object-position: center 47%; }
.page-hero.blog-hero > img, .page-hero.about-hero > img { left: 0; width: 116%; }
.page-hero.coral-hero { background: var(--coral); }
.page-hero.coral-hero::before { position: absolute; inset: 0 0 0 55%; z-index: 1; background: linear-gradient(90deg, var(--coral), transparent 50%); content: ''; }
.page-hero.coral-hero > img { left: 43%; width: 57%; object-position: center 42%; }

.gallery-section { padding-bottom: clamp(62px, 7vw, 90px); background: var(--paper); }
.gallery-wall {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 115px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-wall figure { overflow: hidden; border-radius: 24px; background: var(--soft); }
.gallery-wall figure:nth-child(1), .gallery-wall figure:nth-child(4), .gallery-wall figure:nth-child(8) { grid-row: span 4; }
.gallery-wall figure:nth-child(2), .gallery-wall figure:nth-child(5), .gallery-wall figure:nth-child(7), .gallery-wall figure:nth-child(9) { grid-row: span 3; }
.gallery-wall figure:nth-child(3), .gallery-wall figure:nth-child(6), .gallery-wall figure:nth-child(10) { grid-row: span 5; }
.gallery-wall img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-wall figure:hover img { transform: scale(1.025); }

.blog-intro { padding-bottom: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.bcard { display: block; overflow: hidden; border: 1px solid #e6e1d9; border-radius: 23px; background: var(--white); box-shadow: 0 10px 32px rgba(31, 27, 34, .055); text-decoration: none; transition: box-shadow .22s ease, transform .22s ease; }
.bcard:hover { box-shadow: 0 14px 38px rgba(31, 27, 34, .1); transform: translateY(-4px); }
.bcard img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.bcard .pad { min-height: 190px; padding: 24px; }
.bcard h3 { margin-top: 9px; font-size: 1.45rem; }
.bcard .tag { display: inline-block; margin: 0; }
.pricing-notes { background: var(--paper); }
.note-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 44px; }
.note-grid article { padding-top: 20px; border-top: 2px solid var(--coral); }
.note-grid h3 { margin-bottom: 12px; }

.about-page-intro { background: var(--paper); }
.about-page-intro .portrait { width: 100%; aspect-ratio: 4 / 3; border-radius: 30px; object-fit: cover; }
.values-band { background: var(--teal); color: var(--white); }
.values-band h2 { color: var(--white); }
.values-band .feature { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.11); }
.values-band .feature p { color: rgba(255,255,255,.9); }
.values-band .feature > span { color: #ffdc9a; }
.photo-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo-row img { width: 100%; aspect-ratio: 4 / 3; border-radius: 21px; object-fit: cover; }
.session-strip { background: var(--soft); }

/* Legacy content pages */
.contact-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 65px; align-items: start; }
.contact-box { padding: 34px; border-top: 5px solid var(--coral); border-radius: 24px; background: var(--soft); }
.contact-box h3 { margin-bottom: 18px; }
.contact-box hr { margin: 25px 0; border: 0; border-top: 1px solid var(--line); }
.simple-head { padding: 170px 0 70px; background: var(--coral); color: var(--white); }
.simple-head h1 { font-size: clamp(3rem, 8vw, 6rem); }
.not-found { padding: 220px 0 150px; text-align: center; }
.not-found h1 { margin-bottom: 20px; font-size: clamp(3rem, 8vw, 6rem); }
.prose { max-width: 800px; }
.prose h2 { margin-top: 45px; }
.prose h3 { margin-top: 28px; }
.prose p, .prose li { color: #4f4b52; }
.prose ul, .prose ol { margin: 16px 0 16px 24px; }
.breed-links { display: flex; gap: 10px; flex-wrap: wrap; }
.breed-links a { padding: 8px 16px; border: 1px solid; border-radius: 999px; text-decoration: none; }
.post-meta { color: #777; font-size: .85rem; }
.bg-gallery-party { background-image: url('/assets/gallery-party.webp'); }
.bg-session-coral { background-image: url('/assets/session-coral.webp'); }
.bg-gallery-yellow { background-image: url('/assets/gallery-yellow.webp'); }
.bg-session-blue { background-image: url('/assets/session-blue.webp'); }
.bg-hero { background-image: url('/assets/hero.webp'); }
.bg-blog-park { background-image: url('/assets/blog-park.webp'); }
.bg-blog-patio { background-image: url('/assets/blog-patio.webp'); }
.bg-blog-indoor { background-image: url('/assets/blog-indoor.webp'); }
.bg-blog-hike { background-image: url('/assets/blog-hike.webp'); }
.bg-blog-winter { background-image: url('/assets/blog-winter.webp'); }
.bg-blog-water { background-image: url('/assets/blog-water.webp'); }

footer { padding: 58px 0; background: #1c1a1f; color: rgba(255,255,255,.7); font-size: .85rem; }
.footer-grid { display: grid !important; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.footer-logo { width: 230px; height: auto; margin-bottom: 10px; }
footer strong { color: var(--white); font-size: .75rem; letter-spacing: .11em; text-transform: uppercase; }
footer ul { margin-top: 12px; list-style: none; }
footer li { margin: 7px 0; }
footer a { color: rgba(255,255,255,.8); text-decoration: none; }
footer a:hover { color: var(--white); }

@media (max-width: 1040px) {
  nav ul, #menu { gap: 13px; }
  .bone-card { padding-inline: 76px; gap: 26px; }
  .hero-panels { grid-template-columns: .7fr 1.5fr .7fr; }
}

@media (max-width: 900px) {
  nav { min-height: 78px; padding: 3px 16px; z-index: 220; }
  .brandmark { width: 142px; height: 70px; }
  .burger { display: block; }
  nav ul, nav #menu, #menu { display: none; }
  body > #menu.open {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: flex;
    min-height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 92px 32px 44px;
    background: #201e23;
    list-style: none;
  }
  body > #menu.open a {
    color: var(--white) !important;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.85rem, 7vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.1;
    text-decoration: none;
    text-transform: none;
  }
  body > #menu.open .nav-cta { display: inline-flex; margin-top: 10px; padding: 11px 22px; font-family: 'Lato', sans-serif; font-size: 1rem; letter-spacing: 0; }
  .hero { min-height: 820px; }
  .hero-panels { grid-template-columns: .68fr 1.5fr; }
  .hero-note { display: none; }
  .approach-head { grid-template-columns: 1fr; gap: 15px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: 0; }
  .bone-shell { min-height: 0; padding: 3px; clip-path: none; border-radius: 30px; }
  .bone-card { min-height: 0; grid-template-columns: 1fr; padding: 60px 34px 36px; border-radius: 27px; clip-path: none; }
  .crown { top: 15px; }
  .split, .contact-layout { grid-template-columns: 1fr; gap: 45px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .note-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .social-grid img:nth-child(n+4) { display: none; }
  .package-card { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 650px) {
  .wrap, .ph-inner { width: min(var(--max), calc(100% - 32px)); }
  section { padding: 58px 0; }
  h2 { font-size: clamp(2.25rem, 12vw, 3.4rem); }
  .hero { min-height: 640px; }
  .hero-media img { object-position: center 20%; }
  .hero-panels { display: block; min-height: 0; }
  .hero-stat, .hero-note { display: none; }
  .hero-message { min-height: 282px; padding: 47px 20px 26px; border-radius: 42% 42% 0 0 / 14% 14% 0 0; }
  .hero-message::before { top: -20px; width: 74px; height: 44px; }
  .hero-message .display { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-message h1 { font-size: .9rem; line-height: 1.42; }
  .marquee { padding: 12px 0; }
  .marquee-track { display: flex; width: 100%; min-width: 0; justify-content: center; animation: none; }
  .marquee-track > * { display: none; }
  .marquee-track > span:first-child { display: block; margin: 0; }
  .feature-grid { margin-top: 36px; }
  .feature { padding: 28px 25px; border-radius: 22px; }
  .feature h3 { margin-top: 28px; }
  .bone-card { padding: 58px 24px 30px; }
  .package::before { top: -190px; left: -280px; }
  .package::after { right: -300px; bottom: -330px; }
  .story-collage { gap: 8px; }
  .story-collage img { border-radius: 15px; }
  .story-collage img:nth-child(2), .story-collage img:nth-child(3) { transform: translateY(12px); }
  .story-intro .split > :last-child { padding-top: 0; }
  .about-photo::before { inset: -10px 10px 10px -10px; }
  .review-head { display: block; }
  .review-grid { grid-template-columns: 1fr; margin-top: 30px; }
  .review-grid blockquote { padding: 28px 23px; }
  .social-grid { width: calc(100% - 16px); gap: 5px; }
  .social-grid img { border-radius: 8px; }
  .page-hero { min-height: 530px; }
  .page-hero::after, .ph-bg::after { background: linear-gradient(to top, rgba(20, 20, 24, .83), rgba(20, 20, 24, .05) 82%); }
  .ph-inner { padding: 125px 0 42px; }
  .ph-inner h1 { font-size: clamp(2.85rem, 13vw, 4.4rem); }
  .page-hero.coral-hero::before { inset: 0; background: linear-gradient(to top, rgba(101, 27, 32, .85), transparent 75%); }
  .page-hero.coral-hero > img { left: 0; width: 100%; }
  .gallery-wall { grid-auto-rows: 82px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .gallery-wall figure { border-radius: 12px; }
  .gallery-wall figure:nth-child(1), .gallery-wall figure:nth-child(4), .gallery-wall figure:nth-child(8) { grid-row: span 3; }
  .gallery-wall figure:nth-child(2), .gallery-wall figure:nth-child(5), .gallery-wall figure:nth-child(7), .gallery-wall figure:nth-child(9) { grid-row: span 2; }
  .gallery-wall figure:nth-child(3), .gallery-wall figure:nth-child(6), .gallery-wall figure:nth-child(10) { grid-row: span 4; }
  .blog-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
  .bcard .pad { min-height: 0; padding: 21px; }
  .footer-grid { grid-template-columns: 1fr; gap: 27px; }
  .photo-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .photo-row img { border-radius: 13px; }
  .package-card { padding: 28px 22px; border-radius: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .btn, .bcard, .gallery-wall img, .burger span, nav { transition: none; }
}
