:root {
  --ink: #28241f;
  --muted: #736c62;
  --cream: #f7f3ec;
  --paper: #fffdf9;
  --sand: #e8dfd2;
  --gold: #b58a50;
  --dark: #24211d;
  --white: #fff;
  --line: rgba(40, 36, 31, .14);
  --shadow: 0 24px 60px rgba(30, 25, 20, .12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
section { scroll-margin-top: 90px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 clamp(22px, 5vw, 72px);
  color: var(--white);
  transition: .35s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 249, .94);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(30,25,20,.08);
  backdrop-filter: blur(16px);
}
.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 17px;
}
.brand strong, .footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}
.brand small, .footer-brand small {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .7;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
}
.main-nav a { opacity: .92; transition: .2s; }
.main-nav a:hover { opacity: 1; }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: #43372e;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(22,18,14,.7) 0%, rgba(22,18,14,.35) 45%, rgba(22,18,14,.08) 100%),
    url("https://images.squarespace-cdn.com/content/v1/6a9ef04178ce7e0c734abf41/52c584d4-bb43-4ed9-8812-616daac578db/1000062319_1.JPG") center 40% / cover no-repeat;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  z-index: -1;
  background: linear-gradient(transparent, rgba(10,8,6,.68));
}
.hero-content {
  width: min(800px, 90%);
  padding: 170px 0 100px clamp(24px, 9vw, 140px);
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #e9cf9d; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.025em;
}
h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(58px, 8vw, 110px);
}
h1 em, h2 em { font-weight: 500; }
.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255,255,255,.86);
}
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--ink); background: var(--white); }
.button-dark { color: var(--white); background: var(--dark); }
.text-link { font-size: 12px; font-weight: 700; }
.text-link span { margin-left: 8px; transition: .2s; }
.text-link:hover span { margin-left: 14px; }
.light { color: var(--white); }
.hero-note {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: 42px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .75;
}

.section { padding: clamp(90px, 11vw, 170px) clamp(24px, 7vw, 110px); }
.section-grid {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(130px, .25fr) 1fr;
  gap: clamp(30px, 7vw, 110px);
}
.section-label {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.section-label span {
  font-family: var(--serif);
  font-size: 28px;
}
.section-label p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.intro { background: var(--paper); }
.intro-copy { max-width: 780px; }
h2 { font-size: clamp(50px, 6vw, 82px); margin-bottom: 30px; }
.large-copy { font-size: clamp(19px, 2vw, 27px); line-height: 1.45; }
.intro-copy > p:not(.eyebrow) { color: var(--muted); max-width: 700px; }
.breed-grid {
  width: min(1180px, 100%);
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.breed-card { padding: 35px 32px 15px 0; }
.breed-card + .breed-card { padding-left: 32px; border-left: 1px solid var(--line); }
.breed-number { color: var(--gold); font-size: 11px; font-weight: 700; }
.breed-card h3 { margin: 24px 0 12px; font-family: var(--serif); font-size: 34px; }
.breed-card p { color: var(--muted); max-width: 300px; }

.section-dark { color: var(--white); background: var(--dark); }
.section-dark .eyebrow { color: #d7b980; }
.section-dark .section-heading > p { color: rgba(255,255,255,.62); }
.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 70px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 410px; margin-bottom: 5px; }
.parent-grid {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.parent-card { background: #302c27; }
.parent-image { aspect-ratio: 1 / .88; overflow: hidden; }
.parent-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.parent-card:hover .parent-image img { transform: scale(1.035); }
.parent-info { padding: 30px 32px 36px; }
.parent-info .eyebrow { margin-bottom: 7px; }
.parent-info h3 { font-family: var(--serif); font-size: 48px; margin-bottom: 12px; }
.parent-info p:last-child { color: rgba(255,255,255,.67); max-width: 520px; }

.puppies { background: var(--cream); }
.availability-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #76906a; }
.puppy-grid {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
}
.puppy-card { min-width: 0; }
.puppy-image {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  background: var(--sand);
  cursor: pointer;
}
.puppy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s, filter .4s;
}
.puppy-image:hover img { transform: scale(1.04); filter: brightness(.83); }
.image-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 11px;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.view-details {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 20px);
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  transition: .3s;
  white-space: nowrap;
}
.puppy-image:hover .view-details { opacity: 1; transform: translate(-50%, 0); }
.puppy-info { padding: 18px 2px 8px; }
.puppy-info > div { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; }
.puppy-info h3 { margin: 0; font-family: var(--serif); font-size: 34px; }
.puppy-info span { font-size: 13px; font-weight: 700; }
.puppy-info p { margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.puppy-footnote {
  width: min(1180px, 100%);
  margin: 55px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.process { background: var(--paper); }
.process-content { max-width: 850px; }
.steps { margin-top: 75px; border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.step > span { color: var(--gold); font-size: 11px; font-weight: 700; }
.step h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 30px; }
.step p { margin: 0; color: var(--muted); max-width: 600px; }

.service-area { padding: 105px 24px; color: var(--white); background: #8a6d4c; text-align: center; }
.service-inner { width: min(1100px, 100%); margin: auto; }
.service-area .eyebrow { color: #f2ddba; }
.service-area h2 { margin-bottom: 35px; }
.locations {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-family: var(--serif);
  font-size: clamp(21px, 3vw, 30px);
}
.locations i { font-family: var(--sans); font-size: 9px; opacity: .65; }

.contact { background: var(--cream); }
.contact-card {
  width: min(1180px, 100%);
  margin: auto;
  padding: clamp(35px, 6vw, 75px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-card h2 { margin-bottom: 22px; }
.contact-card > div:first-child > p:last-child { max-width: 560px; color: var(--muted); }
.contact-actions { display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.contact-line { padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.contact-line small { display: block; margin-bottom: 4px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-line strong { font-size: clamp(18px, 2vw, 24px); }
.contact-actions .button { align-self: flex-start; margin-top: 8px; }

.footer {
  padding: 35px clamp(24px, 7vw, 110px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: var(--dark);
  color: var(--white);
}
.footer-brand strong { font-size: 18px; }
.footer p { margin: 0; color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: .25s;
}
.modal.open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15,12,9,.76); backdrop-filter: blur(7px); }
.modal-window {
  position: relative;
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0,0,0,.3);
  transform: translateY(20px) scale(.98);
  transition: .3s;
}
.modal.open .modal-window { transform: none; }
.modal-window > img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.modal-copy { align-self: center; padding: clamp(28px, 5vw, 55px); }
.modal-copy h2 { margin-bottom: 18px; }
.modal-copy p:not(.eyebrow) { color: var(--muted); margin-bottom: 30px; }
.modal-close {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 850px) {
  .site-header { height: 72px; }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { width: 100%; height: 1.5px; background: currentColor; }
  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    padding: 22px 24px 30px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 20px 35px rgba(20,15,10,.1);
    transform: translateY(-120%);
    transition: .3s;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { text-align: center; margin-top: 14px; border: 1px solid var(--ink); }
  .hero-content { padding: 145px 24px 95px; }
  .hero-note { display: none; }
  .section-grid { grid-template-columns: 1fr; gap: 25px; }
  .section-label { display: flex; gap: 15px; align-items: baseline; }
  .section-label p { margin: 0; }
  .breed-grid, .puppy-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 50px; }
  .contact-card { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(50px, 15vw, 75px); }
  h2 { font-size: 52px; }
  .hero { min-height: 88svh; }
  .hero-image { background-position: 60% center; }
  .hero-copy { font-size: 16px; }
  .breed-grid, .puppy-grid, .parent-grid { grid-template-columns: 1fr; }
  .breed-card, .breed-card + .breed-card { padding: 28px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .breed-card:last-child { border-bottom: 0; }
  .parent-image { aspect-ratio: 1 / 1; }
  .puppy-grid { gap: 40px 0; }
  .puppy-image { aspect-ratio: 1 / 1; }
  .puppy-footnote { justify-content: flex-start; }
  .modal-window { grid-template-columns: 1fr; max-height: 90vh; overflow: auto; }
  .modal-window > img { min-height: 330px; max-height: 48vh; }
  .modal-copy { padding: 30px; }
  .footer { align-items: flex-start; flex-direction: column; }
}
