:root {
  --ink: #251b1a;
  --muted: #6d5f5b;
  --cream: #f6f0e6;
  --cream-deep: #eadfcf;
  --paper: #fffaf2;
  --wine: #6d2530;
  --wine-deep: #3d171c;
  --gold: #b38a45;
  --gold-light: #d8bd7b;
  --forest: #17231d;
  --line: rgba(109, 37, 48, 0.18);
  --shadow: 0 28px 70px rgba(29, 15, 15, 0.18);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.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: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: #fff;
  background: var(--wine-deep);
  border-radius: 999px;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 120px 0; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(250, 245, 237, 0.93);
  box-shadow: 0 10px 40px rgba(36, 19, 18, .09);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.brand-mark {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 189, 123, .85);
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.04em;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
}
.brand-copy small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.button) {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.site-nav > a:hover::after,
.site-nav > a:focus-visible::after { right: 0; }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), #8f3a48);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(83, 26, 35, .24);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .025em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(83, 26, 35, .31);
  filter: saturate(1.08);
}
.button-small { min-height: 40px; padding: 9px 18px; }
.button-full { width: 100%; border: 0; }
.text-link {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #221a18;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 21% 28%, rgba(179,138,69,.16), transparent 28%),
    linear-gradient(90deg, rgba(21,15,14,.96) 0%, rgba(28,19,18,.82) 45%, rgba(21,15,14,.44) 100%);
}
.hero-backdrop {
  position: absolute;
  inset: -30px;
  background-image: url('/images/mountain-backdrop.webp');
  background-size: cover;
  background-position: center;
  opacity: .52;
  filter: saturate(.7);
  transform: scale(1.04);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  align-items: center;
  gap: clamp(46px, 7vw, 100px);
  padding: 138px 0 88px;
}
.hero-copy { max-width: 660px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .98;
  text-wrap: balance;
}
h1 { font-size: clamp(56px, 6.8vw, 96px); font-weight: 500; letter-spacing: -.045em; }
h2 { font-size: clamp(44px, 5.4vw, 72px); font-weight: 500; letter-spacing: -.035em; }
h3 { font-size: 28px; font-weight: 600; line-height: 1.12; }
.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.78);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.4;
}
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 36px; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}
.trust-list li::before { content: "✦"; margin-right: 8px; color: var(--gold-light); }
.poster-wrap {
  position: relative;
  margin: 0;
  isolation: isolate;
}
.poster-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(216,189,123,.48);
  border-radius: 5px;
}
.poster-wrap img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  box-shadow: 0 34px 80px rgba(0,0,0,.46);
}
.poster-wrap figcaption {
  margin-top: 24px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .19em;
  text-align: center;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  width: 30px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 99px;
  transform: translateX(-50%);
}
.scroll-cue span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 99px;
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue { 0%,100% { transform: translate(-50%,0); opacity: .45; } 50% { transform: translate(-50%,14px); opacity: 1; } }

.intro { background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
}
.section-heading h2 { max-width: 720px; }
.script-kicker,
.dog-name,
.champion-name,
.footer-brand {
  margin: 0;
  color: var(--wine);
  font-family: "Allura", cursive;
  font-size: 54px;
  line-height: .9;
}
.intro-copy { padding-bottom: 8px; }
.intro-copy p { margin: 0 0 22px; color: var(--muted); }
.intro-copy .lead {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  line-height: 1.42;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 78px;
}
.feature-card {
  min-height: 300px;
  padding: 34px;
  background: linear-gradient(145deg, #f8f1e8, #efe4d5);
  border: 1px solid rgba(109,37,48,.1);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(63, 41, 34, .07);
}
.feature-number {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
}
.feature-card h3 { margin-bottom: 18px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

.parents-section { background: #201817; color: #fff; }
.section-heading-centered { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-heading-centered p:last-child { color: rgba(255,255,255,.62); }
.parents-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.dog-card {
  overflow: hidden;
  background: #2c201f;
  border: 1px solid rgba(216,189,123,.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}
.dog-image { position: relative; aspect-ratio: 1.15 / 1; overflow: hidden; }
.dog-image::after { content: ""; position: absolute; inset: auto 0 0; height: 38%; background: linear-gradient(transparent, rgba(44,32,31,.93)); }
.dog-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.dog-card:hover .dog-image img { transform: scale(1.035); }
.role-label {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(24,15,15,.6);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.dog-copy { padding: 32px 34px 38px; }
.dog-name { color: #c87b86; font-size: 55px; }
.dog-copy h3 { margin: 12px 0 18px; font-size: clamp(27px, 3vw, 38px); }
.dog-copy p:last-child { margin: 0; color: rgba(255,255,255,.61); font-size: 14px; }

.lineage-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(179,138,69,.17), transparent 26%),
    linear-gradient(135deg, #ece0cf, #f8f2e9 58%, #e9dac5);
}
.lineage-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}
.lineage-image { display: grid; place-items: center; }
.oval-frame {
  position: relative;
  width: min(390px, 100%);
  padding: 12px;
  border: 2px solid var(--gold);
  border-radius: 50% / 43%;
  box-shadow: 0 28px 60px rgba(65, 36, 31, .18);
}
.oval-frame::before,
.oval-frame::after {
  content: "✦";
  position: absolute;
  z-index: 2;
  top: 50%;
  color: var(--wine);
  font-size: 22px;
  transform: translateY(-50%);
}
.oval-frame::before { left: -14px; }
.oval-frame::after { right: -14px; }
.oval-frame img { width: 100%; aspect-ratio: .78; object-fit: cover; border-radius: 50% / 43%; }
.lineage-copy > p:not(.script-kicker) { max-width: 670px; color: var(--muted); }
.champion-list { display: grid; gap: 18px; margin-top: 38px; }
.champion-list article { padding: 26px 0; border-top: 1px solid var(--line); }
.champion-name { font-size: 42px; }
.champion-list h3 { max-width: 680px; margin-top: 7px; font-size: clamp(25px, 3vw, 34px); }

.inquiry-section { color: #fff; background: #171e19; }
.inquiry-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.inquiry-copy h2 { max-width: 600px; }
.inquiry-copy > p:not(.eyebrow) { max-width: 560px; color: rgba(255,255,255,.64); }
.direct-contact {
  display: grid;
  gap: 8px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.direct-contact span { color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.direct-contact a { width: fit-content; font-family: "Cormorant Garamond", serif; font-size: clamp(25px, 3vw, 34px); text-decoration-thickness: 1px; text-underline-offset: 7px; }
.copy-button {
  width: fit-content;
  margin-top: 8px;
  padding: 0;
  color: rgba(255,255,255,.64);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.inquiry-form {
  padding: clamp(26px, 5vw, 48px);
  background: #fffaf2;
  border: 1px solid rgba(216,189,123,.24);
  border-radius: var(--radius);
  box-shadow: 0 34px 80px rgba(0,0,0,.28);
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.inquiry-form label { display: grid; gap: 9px; margin-bottom: 18px; color: var(--ink); }
.inquiry-form label > span { font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.inquiry-form small { color: var(--muted); font-weight: 500; }
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dacdbd;
  border-radius: 12px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.inquiry-form input { height: 52px; padding: 0 15px; }
.inquiry-form textarea { padding: 14px 15px; resize: vertical; }
.inquiry-form input:focus,
.inquiry-form textarea:focus { border-color: var(--wine); box-shadow: 0 0 0 4px rgba(109,37,48,.1); }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

.site-footer { padding: 34px 0; color: rgba(255,255,255,.58); background: #0f1411; }
.footer-inner { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.footer-inner p { margin: 0; font-size: 11px; }
.footer-brand { color: #c87b86; font-size: 34px !important; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .section { padding: 90px 0; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { max-width: 760px; }
  .poster-wrap { width: min(540px, 92%); margin: 20px auto 40px; }
  .poster-wrap img { max-height: none; }
  .intro-grid,
  .lineage-grid,
  .inquiry-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .feature-number { margin-bottom: 24px; }
  .lineage-grid { gap: 70px; }
  .lineage-image { order: 2; }
}

@media (max-width: 760px) {
  .header-inner { min-height: 72px; }
  .brand-copy strong { font-size: 21px; }
  .brand-mark { width: 40px; }
  .nav-toggle {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
  }
  .nav-toggle span:not(.sr-only) { width: 18px; height: 1px; display: block; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 28px;
    color: #fff;
    background: rgba(30,20,19,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a:not(.button) { font-family: "Cormorant Garamond", serif; font-size: 34px; text-align: center; }
  .hero::after { background: linear-gradient(rgba(19,14,13,.88), rgba(22,15,15,.72)); }
  .hero-grid { padding-top: 128px; gap: 46px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .trust-list { display: grid; }
  .poster-wrap { width: calc(100% - 18px); }
  .scroll-cue { display: none; }
  .parents-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  :root { --shell: calc(100% - 24px); }
  .section { padding: 76px 0; }
  h1 { font-size: 52px; }
  h2 { font-size: 45px; }
  .hero-lead { font-size: 21px; }
  .feature-card,
  .dog-copy { padding: 28px; }
  .poster-wrap::before { inset: 10px -10px -10px 10px; }
  .inquiry-form { border-radius: 20px; }
}

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