
  :root {
    --cream: #fdf3dd;
    --ink: #1c2b2e;
    --sand: #c8b89a;
    --muted: #5a6e72;
    --orange: #B84A09;
    --ink-light: rgba(28,43,46,0.08);
    --font-size-body--default: 0.89rem;
    --font-size-eyebrow: 18px;
    --font-size-nav: 0.78rem;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Marcellus', Georgia, serif;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: rgba(253,243,221,0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--sand);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
  }

  .nav-logo-mark {
    width: 50px;
    height: 40px;
    flex-shrink: 0;
  }

  .nav-wordmark {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .nav-wordmark-main {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 18px;
    letter-spacing: 0.22em;
    color: var(--ink);
    line-height: 1;
  }

  .nav-wordmark-sub {
    font-family: system-ui, sans-serif;
    font-size: var(--font-size-nav);
    letter-spacing: 0.3em;
    color: var(--muted);
    text-transform: uppercase;
    line-height: 1;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-family: system-ui, sans-serif;
    font-size: var(--font-size-nav);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-item--dropdown {
    position: relative;
    display: flex;
    align-items: center;
  }

  .nav-dropdown__trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(16px, 2vw, 18px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
  line-height: 1; 
  vertical-align: middle; 
}

.nav-dropdown__trigger:hover {
  opacity: 0.87;
}

.nav-dropdown__chevron {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-item--dropdown[data-open="true"] .nav-dropdown__chevron {
  transform: rotate(90deg);
}

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  list-style: none;
  padding: 12px 0;
  margin: 0;
  
  background: rgba(253, 243, 221, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--orange);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  
  z-index: 100;
}

.nav-item--dropdown[data-open="true"] .nav-dropdown__menu {
  display: block;
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 24px;
  font-family: system-ui, sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-dropdown__menu a:hover {
  opacity: 0.6;
}

.nav-dropdown__menu a::after {
  display: none;
}


  .nav-links a:hover { color: var(--ink); }

  .nav-book {
    font-family: system-ui, sans-serif;
    font-size: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream) !important;
    background: var(--ink);
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .nav-book:hover { opacity: 0.8; }

  .nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-hamburger__bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* X state */
.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── FAQ ── */
.faq-list {
  margin-top: 8px;
}

.faq-item {
  border-top: 0.5px solid var(--sand);
  padding: 28px 0;
}

.faq-item:last-child {
  border-bottom: 0.5px solid var(--sand);
}

.faq-q {
  font-family: 'Marcellus', Georgia, serif;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 14px;
}

.faq-a p {
  font-family: system-ui, sans-serif;
  font-size: var(--font-size-body--default);
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 10px;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

.faq-list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.faq-list-inline li {
  font-family: system-ui, sans-serif;
  font-size: var(--font-size-body--default);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 0.5px solid var(--sand);
  padding: 6px 14px;
  border-radius: 999px;
}

.faq-list-items {
  padding-left: 0;
  list-style: none;
  margin: 12px 0;
}

.faq-list-items li {
  font-family: system-ui, sans-serif;
  font-size: var(--font-size-body--default);
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: var(--muted);
  padding: 6px 0 6px 16px;
  border-left: 1.5px solid var(--sand);
  margin-bottom: 6px;
}

/* ── TERMS ── */
.terms-section {
  background: var(--cream);
}

.terms-list {
  margin-top: 8px;
}

.terms-item {
  border-top: 0.5px solid var(--sand);
  padding: 28px 0;
}

.terms-item:last-child {
  border-bottom: 0.5px solid var(--sand);
}

.terms-h {
  font-family: 'Marcellus', Georgia, serif;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0 0 12px;
}

.terms-item p {
  font-family: system-ui, sans-serif;
  font-size: var(--font-size-body--default);
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 10px;
}

.terms-item p:last-child {
  margin-bottom: 0;
}

.terms-item ul {
  padding-left: 0;
  list-style: none;
  margin: 12px 0;
}

.terms-item ul li {
  font-family: system-ui, sans-serif;
  font-size: var(--font-size-body--default);
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: var(--muted);
  padding: 6px 0 6px 16px;
  border-left: 1.5px solid var(--sand);
  margin-bottom: 6px;
}

.booking-form-wrap {
  margin-top: 40px;
  border: 0.5px solid var(--sand);
  border-radius: 4px;
  width: 100%;
  max-width: 720px;
}

.booking-form-wrap iframe {
  display: block;
  width: 100%;
  border: none;
  height: 1350px;
}

.btn-primary--sm {
  font-size: 13px;
  padding: 11px 24px;
  letter-spacing: 0.18em;
}

@media (max-width: 680px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(253, 243, 221, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--sand);
    padding: 12px 24px 24px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    padding: 14px 0;
    border-bottom: 0.5px solid var(--sand);
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding-top: 20px;
  }

  .nav-links a,
  .nav-links button {
    font-size: 14px !important;
    letter-spacing: 0.18em;
  }

  .nav-book {
    width: 100%;
    text-align: center;
    padding: 14px 0 !important;
  }

  
}

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 48px 80px;
    text-align: center;
  }

  .hero-dog {
    width: 120px;
    height: 96px;
    margin-bottom: 32px;
  }

  .hero-rule {
    width: 200px;
    height: 0.5px;
    background: var(--sand);
    margin: 0 auto 28px;
  }

  .hero-wordmark {
    font-weight: 400;
    font-family: 'Marcellus', Georgia, serif;
    font-size: clamp(28px, 5vw, 52px);
    letter-spacing: 0.28em;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .hero-sub {
    font-family: system-ui, sans-serif;
    font-size: 16px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 28px;
  }

  .hero-rule-bottom {
    width: 200px;
    height: 0.5px;
    background: var(--sand);
    margin: 0 auto 48px;
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    line-height: 1.25;
    max-width: 600px;
    margin: 0 auto 24px;
    letter-spacing: 0.02em;
  }

  .hero-credentials {
    font-family: system-ui, sans-serif;
    font-size: 16px;
    letter-spacing: 0.12em;
    color: var(--muted);
    line-height: 2;
    margin-bottom: 48px;
  }

  .hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary {
    font-family: system-ui, sans-serif;
    font-size: 16px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--ink);
    padding: 16px 40px;
    border-radius: 999px;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .btn-primary:hover { opacity: 0.82; }

  .hero-offer {
    font-family: system-ui, sans-serif;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-top: 20px;
  }

  /* ── SECTION SHELL ── */
  .section {
    padding: 100px 48px;
    border-top: 0.5px solid var(--sand);
  }

  .section-inner {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 3rem;
  }

  .eyebrow {
    font-family: system-ui, sans-serif;
    font-size: 18px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    font-weight: 400;
  }

  .section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 48px;
    letter-spacing: 0.01em;
  }

  /* ── RATES ── */
  .rates-table {
    width: 100%;
    border-collapse: collapse;
  }

  .rates-table tr {
    border-top: 0.5px solid var(--sand);
  }

  .rates-table tr:last-child {
    border-bottom: 0.5px solid var(--sand);
  }

  .rates-table td {
    padding: 20px 0;
    vertical-align: middle;
  }

  .rate-name {
    font-family: 'Marcellus', Georgia, serif;
    font-size: var(--font-size-body--default);
    letter-spacing: 0.04em;
    color: var(--ink);
  }

  .rate-detail {
    font-family: system-ui, sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-top: 4px;
  }

  .rate-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--ink);
    text-align: right;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .rate-price.addon {
    font-size: 20px;
    color: var(--muted);
  }

  .rates-footnote {
    margin-top: 32px;
    font-family: system-ui, sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    color: var(--muted);
    line-height: 1.8;
  }

  .inline-link {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-family: 'Marcellus', Georgia, serif;
    font-size: 14px;
    letter-spacing: 0.06em;
  }

  .service-links {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .service-link {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 15px;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 0.5px solid var(--sand);
    padding-bottom: 3px;
    transition: border-color 0.2s;
  }

  .service-link:hover { border-color: var(--ink); }

  /* ── SERVICE AREA ── */
  .hood-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }

  .hood-chip {
    font-family: system-ui, sans-serif;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    border: 0.5px solid var(--sand);
    padding: 7px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.15s;
    background: transparent;
  }

  .hood-chip:hover {
    border-color: var(--ink);
    color: var(--ink);
  }

  .map-frame {
    width: 100%;
    height: 380px;
    border-radius: 4px;
    border: 0.5px solid var(--sand);
    overflow: hidden;
    margin-bottom: 32px;
  }

  .map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  .checker-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
  }

  .checker-input {
    flex: 1;
    font-family: 'Marcellus', Georgia, serif;
    font-size: 15px;
    letter-spacing: 0.04em;
    color: var(--ink);
    background: transparent;
    border: 0.5px solid var(--sand);
    border-radius: 4px;
    padding: 13px 18px;
    outline: none;
    transition: border-color 0.2s;
  }

  .checker-input:focus { border-color: var(--ink); }
  .checker-input::placeholder { color: var(--muted); }

  .checker-btn {
    font-family: system-ui, sans-serif;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--ink);
    border: none;
    padding: 0 28px;
    border-radius: 999px;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .checker-btn:hover { opacity: 0.82; }

  /* ── FOOTER ── */
  footer {
    border-top: 0.5px solid var(--sand);
    padding: 60px 48px 40px;
  }

  .footer-dog{
     width: 50px;
    height: 40px;
  }

  .footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 48px;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .footer-name {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--ink);
    display: block;
    margin-bottom: 4px;
  }

  .footer-tagline {
    font-family: system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col-label {
    font-family: system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
  }

  .footer-col a {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    color: var(--ink);
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .footer-col a:hover { opacity: 0.6; }

  .footer-bottom {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 0.5px solid var(--sand);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--muted);
  }

  .footer-policy {
    display: flex;
    gap: 20px;
  }

  .footer-policy a {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* ── FLOATING CTA ── */
  .float-cta {
    position: fixed;
    bottom: 80px;
    right: 28px;
    z-index: 200;
    font-family: system-ui, sans-serif;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--ink);
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(28,43,46,0.18);
    transition: transform 0.2s, opacity 0.2s;
  }

  .float-cta:hover { transform: translateY(-2px); opacity: 0.88; }

  .cta-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 999;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 40px; /*12px 16px*/
  border-radius: 999px; /*999px*/

  font-family: "Marcellus", Georgia, serif;
  font-size: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;

  color: var(--ink);
  background: rgba(253, 243, 221, 0.35);
  border: 1px solid rgba(55, 61, 59, 0.14);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.cta-float:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.cta-float:active {
  transform: translateY(0);
}

.cta-meet {
  bottom: 7rem;
  border-color: var(--orange);
}

.service-hero__body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 36px;
  letter-spacing: 0.02em;
}

.includes-list {
  margin: 0;
  padding: 0;
}

.includes-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 0.5px solid var(--sand);
  align-items: baseline;
}

.includes-row:last-child {
  border-bottom: 0.5px solid var(--sand);
}

.includes-row dt {
  font-family: 'Marcellus', Georgia, serif;
  font-size: var(--font-size-body--default);
  letter-spacing: 0.04em;
  color: var(--ink);
}

.includes-row dd {
  font-family: system-ui, sans-serif;
  font-size: var(--font-size-body--default);
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.service-area__body {
  font-family: 'Marcellus', Georgia, serif;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.about-founder {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 8px;
}

.about-founder__photo-wrap {
  position: sticky;
  top: 100px;
  border-radius: 4px;
  overflow: hidden;
  border: 0.5px solid var(--sand);
}

.about-founder__photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-founder__bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-founder__bio p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.02em;
}

.about-founder__sign-off {
  font-family: 'Marcellus', Georgia, serif !important;
  font-size: clamp(16px, 1.6vw, 18px) !important;
  color: var(--ink) !important;
  padding-top: 20px;
  border-top: 0.5px solid var(--sand);
}


  /* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { padding: 120px 24px 60px; }
  .section { padding: 72px 24px; }
  footer { padding: 48px 24px 32px; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .checker-row { flex-direction: column; }
  .checker-btn { padding: 14px; border-radius: 8px; }
  .service-links { flex-direction: column; gap: 16px; }
  .rates-table tr { display: flex; flex-direction: column; padding: 16px 0; }
  .rates-table td { padding: 2px 0; }
  .rate-price { text-align: left; }
  .cta-float {
    padding: 15px 28px;
    font-size: 18px;
    letter-spacing: 0.10em;
  }

  .includes-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .about-founder {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-founder__photo-wrap {
      position: static;
      max-width: 260px;
  }

  .btn-primary{
    padding: 16px 10px;

  }

   .service-hero {
    padding: 0 24px;
  }

  .service-hero .section-inner {
    padding-top: 110px !important; /* tighten nav offset on mobile */
  }

  .btn-primary--sm {
    padding: 11px 24px; /* override the mobile rule that stretches btn-primary */
    width: auto;
    display: inline-flex;
    margin-bottom: 32px;
  }

}

.about-founder--reverse {
  grid-template-columns: 1fr 280px;
}

.about-founder--reverse .about-founder__photo-wrap {
  order: 2;
}

.about-founder--reverse .about-founder__bio {
  order: 1;
}