:root {
  --navy: #07344f;
  --navy-deep: #041e30;
  --blue: #124f79;
  --pink: #f20f68;
  --pink-dark: #c80850;
  --cyan: #55cadb;
  --red: #ef214d;
  --ink: #102836;
  --muted: #58707d;
  --line: #cfe0e7;
  --mist: #eff8fb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(4, 30, 48, 0.14);
  --radius: 26px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", Avenir, "Trebuchet MS", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.lightbox-open { overflow: hidden; }

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

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

.shell { width: var(--shell); margin-inline: auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: white;
  background: var(--navy-deep);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  color: var(--navy);
  transition: background-color .25s ease, box-shadow .25s ease;
}

.site-header.is-stuck {
  position: fixed;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 30px rgba(4, 30, 48, .09);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  text-decoration: none;
  line-height: 1;
}

.brand-four {
  color: var(--red);
  font-size: 2.9rem;
  font-weight: 950;
  letter-spacing: -.12em;
  text-shadow: 2px 2px 0 white, 3px 3px 0 var(--navy);
}

.brand-copy { display: grid; gap: 4px; }
.brand-copy > span { font-size: 1.12rem; font-weight: 900; letter-spacing: -.035em; }
.brand-copy small { color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.brand-g { color: var(--pink); font-size: 1.14em; }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { font-size: .93rem; font-weight: 800; text-decoration: none; }
.site-nav a:not(.nav-book):hover { color: var(--pink); }

.nav-book {
  padding: 11px 18px;
  color: white;
  background: var(--pink);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(242, 15, 104, .2);
}
.nav-book:hover { background: var(--pink-dark); }

.menu-button { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f8fbfc;
}

.hero-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: #fff url("./assets/whitney-and-dog-background.jpg") right center / auto 100% no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.95) 31%, rgba(255,255,255,.56) 50%, rgba(255,255,255,.06) 72%);
}

.hero-inner { padding: 146px 0 86px; }
.hero-copy { width: min(610px, 54%); }

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink-dark);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1, h2 {
  color: var(--navy-deep);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .98;
}

h1 { margin-bottom: 24px; font-size: clamp(3.4rem, 6.3vw, 6.3rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.65rem, 5vw, 4.75rem); }

.hero-lede {
  max-width: 570px;
  margin-bottom: 30px;
  color: #294756;
  font-size: 1.16rem;
  line-height: 1.65;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: .98rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--pink); box-shadow: 0 14px 28px rgba(242, 15, 104, .24); }
.button-primary:hover { background: var(--pink-dark); }
.button-secondary { color: var(--navy); background: rgba(255,255,255,.78); border-color: var(--navy); }
.button-secondary:hover { color: white; background: var(--navy); }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li { position: relative; padding-left: 18px; color: var(--navy); font-size: .88rem; font-weight: 800; }
.trust-list li::before { content: "♥"; position: absolute; left: 0; color: var(--pink); }

.quick-contact { color: white; background: var(--navy); }
.quick-contact-grid { min-height: 112px; display: grid; grid-template-columns: 1.35fr .75fr 1.2fr; align-items: center; }
.quick-contact-grid > * { min-width: 0; padding: 20px 34px; border-left: 1px solid rgba(255,255,255,.18); text-decoration: none; }
.quick-contact-grid > *:first-child { padding-left: 0; border-left: 0; }
.quick-contact-grid > a:hover strong { color: var(--cyan); }
.quick-label { display: block; margin-bottom: 2px; color: #a9dfe8; font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.quick-contact strong { display: block; overflow-wrap: anywhere; font-size: .96rem; }

.section { padding: 116px 0; }

.intro-section { background: linear-gradient(180deg, #fff 0%, var(--mist) 100%); }
.intro-grid { display: grid; grid-template-columns: .97fr 1.03fr; gap: clamp(52px, 7vw, 96px); align-items: center; }

.van-card { position: relative; }
.van-card::before { content: ""; position: absolute; z-index: -1; inset: -18px 26px 26px -18px; background: var(--pink); border-radius: 36px; transform: rotate(-2deg); }
.van-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; border: 8px solid white; border-radius: 30px; box-shadow: var(--shadow); }
.van-sticker { position: absolute; right: -20px; bottom: 34px; padding: 13px 20px; color: white; background: var(--navy); border: 4px solid white; border-radius: 999px; font-size: .9rem; font-weight: 900; transform: rotate(-3deg); box-shadow: 0 10px 30px rgba(4,30,48,.18); }

.intro-copy > p:not(.eyebrow) { max-width: 570px; color: var(--muted); font-size: 1.08rem; }
.service-points { display: grid; gap: 1px; margin-top: 34px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-points article { display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding: 19px 0; background: var(--mist); }
.service-points article > span { width: 38px; height: 38px; display: grid; place-items: center; color: white; background: var(--pink); border-radius: 50%; font-size: .75rem; font-weight: 900; }
.service-points h3 { margin-bottom: 2px; color: var(--navy); font-size: 1.08rem; line-height: 1.3; }
.service-points p { margin: 0; color: var(--muted); font-size: .94rem; }

.pricing-section { background: var(--navy-deep); }
.pricing-section h2 { color: white; }
.pricing-section .eyebrow { color: #ff6aa5; }

.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; margin-bottom: 44px; }
.section-heading p:last-child { max-width: 480px; margin: 0; color: #a9bfca; }

.pricing-card { overflow: hidden; background: white; border-radius: var(--radius); box-shadow: 0 24px 70px rgba(0,0,0,.22); }
.pricing-tabs { display: flex; overflow-x: auto; padding: 8px; background: #dfeef3; scrollbar-width: thin; }
.pricing-tabs button { min-width: max-content; flex: 1; padding: 14px 17px; color: #3a5968; background: transparent; border: 0; border-radius: 14px; font-size: .86rem; font-weight: 900; cursor: pointer; }
.pricing-tabs button[aria-selected="true"] { color: white; background: var(--pink); box-shadow: 0 8px 18px rgba(242,15,104,.24); }
.pricing-tabs button:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }

.price-panel { padding: 42px; }
.price-panel[hidden] { display: none; }
.price-panel-copy { display: flex; justify-content: space-between; gap: 40px; align-items: start; margin-bottom: 32px; }
.price-panel-copy h3 { margin: 0; color: var(--navy); font-size: 1.75rem; line-height: 1.2; }
.price-panel-copy p { max-width: 580px; margin: 0; color: var(--muted); }
.price-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.price-grid div { padding: 23px 16px; text-align: center; border-left: 1px solid var(--line); background: #f8fcfd; }
.price-grid div:first-child { border-left: 0; }
.price-grid span { display: block; margin-bottom: 4px; color: var(--muted); font-size: .82rem; font-weight: 800; }
.price-grid strong { display: block; color: var(--navy); font-size: 1.55rem; }

.pricing-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.pricing-notes > div { display: grid; gap: 3px; padding: 24px 42px; background: var(--mist); }
.pricing-notes strong { color: var(--pink-dark); }
.pricing-notes span { color: var(--muted); font-size: .9rem; }

.fee-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 18px; }
.fee-grid article { min-height: 145px; display: grid; align-content: space-between; gap: 15px; padding: 22px; color: white; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.13); border-radius: 18px; }
.fee-grid strong { color: #ff71aa; font-size: 1.4rem; }
.fee-grid span { color: #c5d5dc; font-size: .88rem; line-height: 1.45; }
.pricing-fine-print { max-width: 840px; margin: 20px 0 0; color: #93aab5; font-size: .82rem; }

.gallery-section { background: #f6fbfd; }
.gallery-heading p:last-child { color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 390px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; background: var(--navy); border: 0; border-radius: 22px; cursor: zoom-in; box-shadow: 0 10px 30px rgba(4,30,48,.1); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(4,30,48,.82)); pointer-events: none; }
.gallery-item > span { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 19px; color: white; font-size: 1.18rem; font-weight: 900; text-align: left; pointer-events: none; }
.gallery-item small { display: block; color: #bfe9ef; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.035); }
.gallery-item:focus-visible { outline: 4px solid var(--pink); outline-offset: 3px; }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f20f68 0%, #d80958 58%, #ae0646 100%);
}

.contact-section::before { content: "doGs"; position: absolute; right: -40px; bottom: -85px; color: rgba(255,255,255,.07); font-size: 15rem; font-weight: 950; letter-spacing: -.1em; line-height: 1; }
.contact-card { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; color: white; }
.contact-section .eyebrow { color: #ffd5e6; }
.contact-section h2 { color: white; }
.contact-copy > p:not(.eyebrow) { max-width: 640px; color: #ffe8f1; }
.button-light { margin-top: 12px; color: var(--pink-dark); background: white; }
.button-light:hover { color: var(--navy); }
.contact-details { overflow: hidden; background: white; border-radius: 24px; box-shadow: var(--shadow); }
.contact-details > a, .contact-details > div:not(.social-row) { display: grid; gap: 3px; padding: 22px 26px; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-details > a:hover strong { color: var(--pink); }
.contact-details span { color: var(--muted); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-details strong { color: var(--navy); overflow-wrap: anywhere; font-size: .96rem; }
.social-row { display: grid; grid-template-columns: 1fr 1fr; }
.social-row a { padding: 18px; color: white; background: var(--navy); font-weight: 900; text-align: center; text-decoration: none; }
.social-row a + a { background: var(--blue); }
.social-row a:hover { background: var(--pink); }

.site-footer { padding: 45px 0 95px; color: #b8ccd5; background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.2fr .7fr; gap: 40px; align-items: center; }
.brand-footer { color: white; }
.brand-footer .brand-copy small { color: #a9dfe8; }
.footer-grid p { margin: 0; font-size: .84rem; }
.footer-grid p:last-child { text-align: right; }

.mobile-book { display: none; }

.lightbox {
  width: min(820px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}
.lightbox::backdrop { background: rgba(2, 18, 28, .9); backdrop-filter: blur(5px); }
.lightbox img { max-width: 100%; max-height: calc(100vh - 32px); margin: auto; object-fit: contain; border: 6px solid white; border-radius: 20px; }
.lightbox-close { position: absolute; z-index: 2; top: -14px; right: -14px; width: 44px; height: 44px; display: grid; place-items: center; color: white; background: var(--pink); border: 3px solid white; border-radius: 50%; font-size: 1.8rem; line-height: 1; cursor: pointer; }

.reveal { opacity: 1; transform: none; }
.reveal.reveal-ready { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.reveal-ready.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }

  .header-inner { min-height: 76px; }
  .menu-button { width: 46px; height: 46px; display: grid; align-content: center; gap: 5px; padding: 10px; background: white; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
  .menu-button span:not(.sr-only) { width: 100%; height: 2px; display: block; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: absolute; top: 72px; left: 16px; right: 16px; display: none; align-items: stretch; padding: 14px; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 11px 12px; }
  .site-nav .nav-book { text-align: center; }

  .hero { min-height: 800px; align-items: end; }
  .hero-backdrop { background-position: 58% center; }
  .hero::after { background: linear-gradient(180deg, rgba(255,255,255,.05) 5%, rgba(255,255,255,.2) 28%, rgba(255,255,255,.92) 56%, rgba(255,255,255,1) 77%); }
  .hero-inner { padding: 360px 0 68px; }
  .hero-copy { width: 100%; }
  h1 { font-size: clamp(3rem, 12vw, 5.2rem); }

  .quick-contact-grid { grid-template-columns: 1fr; padding: 14px 0; }
  .quick-contact-grid > * { padding: 15px 0; border-top: 1px solid rgba(255,255,255,.16); border-left: 0; }
  .quick-contact-grid > *:first-child { border-top: 0; }

  .section { padding: 86px 0; }
  .intro-grid { grid-template-columns: 1fr; }
  .van-card { width: min(560px, 96%); margin-inline: auto; }
  .van-sticker { right: -8px; }

  .section-heading { grid-template-columns: 1fr; gap: 8px; }
  .price-panel-copy { display: grid; gap: 8px; }
  .price-grid { grid-template-columns: repeat(5, minmax(112px, 1fr)); overflow-x: auto; }
  .pricing-notes { grid-template-columns: 1fr; }
  .fee-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 350px; }
  .gallery-tall { grid-row: span 1; }
  .gallery-wide { grid-column: span 2; }

  .contact-card { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid p:last-child { text-align: left; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); --radius: 20px; }

  .brand-four { font-size: 2.45rem; }
  .brand-copy > span { font-size: 1rem; }
  .brand-copy small { font-size: .59rem; }

  .hero { min-height: 775px; }
  .hero-backdrop { background-size: auto 520px; background-position: center top; background-color: white; }
  .hero::after { background: linear-gradient(180deg, rgba(255,255,255,0) 2%, rgba(255,255,255,.06) 34%, rgba(255,255,255,.92) 53%, #fff 66%); }
  .hero-inner { padding-top: 380px; padding-bottom: 46px; }
  h1 { margin-bottom: 18px; font-size: clamp(2.85rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .hero-lede { font-size: 1rem; line-height: 1.55; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { padding-inline: 14px; }
  .trust-list { gap: 8px 15px; }

  .section { padding: 72px 0; }
  .van-card::before { inset: -10px 18px 20px -10px; }
  .van-sticker { bottom: 22px; font-size: .78rem; }

  .pricing-card { border-radius: 18px; }
  .pricing-tabs { padding: 6px; }
  .pricing-tabs button { padding: 11px 14px; }
  .price-panel { padding: 28px 18px; }
  .price-panel-copy h3 { font-size: 1.45rem; }
  .price-grid { grid-template-columns: repeat(5, minmax(98px, 1fr)); }
  .price-grid div { padding: 18px 11px; }
  .price-grid strong { font-size: 1.3rem; }
  .pricing-notes > div { padding: 20px 18px; }
  .fee-grid { grid-template-columns: 1fr; }
  .fee-grid article { min-height: auto; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 12px; }
  .gallery-item { aspect-ratio: 4 / 5; }
  .gallery-wide { grid-column: span 1; }

  .contact-section::before { font-size: 8rem; }
  .contact-details > a, .contact-details > div:not(.social-row) { padding: 19px; }
  .social-row { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 110px; }

  .mobile-book {
    position: fixed;
    z-index: 30;
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 54px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--pink);
    border: 2px solid white;
    border-radius: 999px;
    box-shadow: 0 13px 34px rgba(4,30,48,.34);
    font-weight: 900;
    text-decoration: none;
  }
}

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