/* =========================================================================
   Bully Bear Kennels - editorial dark luxury for an XL American Bully line.
   Palette anchors the existing gold "BB" mark on a warm-noir base.
   ========================================================================= */

:root {
  --bg-base: #0B0907;
  --bg-elev: #15110D;
  --bg-raised: #1F1A14;
  --bg-card: #18130E;
  --border: #2A2218;
  --border-strong: #3D3225;

  --text-primary: #F4EDE0;
  --text-secondary: #B5A795;
  --text-tertiary: #948575;  /* WCAG AA on bg-base for 12-14px labels */
  --text-quiet: #93826E;  /* WCAG AA on bg-base */

  --gold: #C9A664;
  --gold-light: #E5CB91;
  --gold-deep: #8C7340;
  --gold-glow: rgba(201,166,100,0.18);

  --max: 1280px;
  --max-prose: 720px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.35);
  --shadow-md: 0 8px 24px rgba(0,0,0,.45);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.55);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 22px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* Subtle film-grain background for warmth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 0%, rgba(201,166,100,0.08), transparent 55%),
                    radial-gradient(circle at 80% 100%, rgba(201,166,100,0.05), transparent 55%);
  z-index: 0;
}

/* Skip link */
.skip {
  position: absolute; left: -10000px; top: 0;
  background: var(--gold); color: var(--bg-base);
  padding: 12px 16px; font-weight: 600;
  z-index: 1000;
}
.skip:focus { left: 16px; top: 16px; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative; z-index: 1;
}
.container--prose { max-width: var(--max-prose); }

/* =========== TYPOGRAPHY =========== */
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--text-primary);
  margin: 0;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0 0 16px;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--light { color: var(--text-secondary); }

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 60ch;
}

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease-out), background .25s, border-color .25s, color .25s, box-shadow .25s;
  will-change: transform;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--bg-base);
  box-shadow: 0 6px 18px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(201,166,100,.32), inset 0 1px 0 rgba(255,255,255,.35); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

/* =========== NAV =========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11,9,7,0.72);
  border-bottom: 1px solid rgba(42,34,24,0.6);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}
.nav__brand-mark {
  width: 42px; height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
  position: relative;
  background: linear-gradient(135deg, rgba(201,166,100,0.06), rgba(201,166,100,0.02));
}
.nav__brand-mark span:nth-child(1) { position: relative; right: -2px; }
.nav__brand-mark span:nth-child(2) { transform: scaleX(-1); position: relative; left: -2px; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav__brand-sub {
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav__links {
  display: flex;
  gap: 28px;
}
.nav__links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav__cta:hover { background: var(--gold); color: var(--bg-base); }

.nav__menu {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  width: 44px; height: 44px;
  border-radius: 8px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav__menu span {
  width: 18px; height: 1.5px;
  background: var(--text-primary);
  display: block;
  transition: transform .2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 32px;
  gap: 4px;
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
}
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}
.mobile-nav__cta {
  margin-top: 12px;
  text-align: center;
  background: var(--gold);
  color: var(--bg-base) !important;
  border-radius: 999px;
  border: none !important;
  font-weight: 600;
}
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__menu { display: flex; }
  .mobile-nav:not([hidden]) { display: flex; }
}
.mobile-nav[hidden] { display: none !important; }

/* =========== HERO =========== */
.hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: flex;
  align-items: flex-end;
  padding: 120px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.05) saturate(1.05);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,9,7,0.55) 0%, rgba(11,9,7,0.4) 30%, rgba(11,9,7,0.85) 80%, rgba(11,9,7,1) 100%),
    radial-gradient(circle at 20% 90%, rgba(201,166,100,0.15), transparent 60%);
}
.hero__inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.hero__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.hero__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-primary);
  max-width: 60ch;
  margin: 0 0 32px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}
.hero__strip {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 32px;
  border-top: 1px solid rgba(245,237,224,0.12);
  max-width: 720px;
}
.hero__strip li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__strip span {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}
.hero__strip small {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 40px; height: 60px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 10px;
  opacity: 0.6;
}
.hero__scroll span {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s var(--ease-out) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}
@media (max-width: 700px) {
  .hero__scroll { display: none; }
  .hero__strip { grid-template-columns: 1fr; }
  .hero__strip li { flex-direction: row; align-items: baseline; gap: 12px; }
  .hero__strip span { font-size: 18px; }
}

/* =========== SECTIONS =========== */
.section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}
.section--alt {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .section { padding: 128px 0; }
}
@media (min-width: 1200px) {
  .section { padding: 160px 0; }
}
.section__title {
  font-size: clamp(32px, 5vw, 56px);
  margin: 0 0 16px;
}
.section__lede {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 60ch;
  margin: 0 0 40px;
}

/* =========== ABOUT / PHILOSOPHY =========== */
.section--about {
  background: linear-gradient(180deg, var(--bg-base), var(--bg-elev));
}
.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 56px auto 80px;
  align-items: center;
}
@media (min-width: 900px) {
  .philosophy__grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}
.philosophy__copy p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 1.2em;
}
.philosophy__copy em { color: var(--gold-light); font-style: italic; font-family: 'Fraunces', serif; font-weight: 500; }
.philosophy__media {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}
.philosophy__media img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.philosophy__media figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(11,9,7,0.7);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.pillars {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.pillars li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: border-color .25s, transform .25s var(--ease-out);
}
.pillars li:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.pillars__num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  font-weight: 500;
}
.pillars h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--text-primary);
}
.pillars p { font-size: 15px; line-height: 1.6; color: var(--text-secondary); margin: 0; }

/* =========== ROSTER (sires + dams) =========== */
.section--roster .container:first-child { margin-bottom: 48px; }
.roster {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .roster { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .roster { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .roster--dense { grid-template-columns: repeat(3, 1fr); }
}

.dog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .3s var(--ease-out), box-shadow .3s;
  position: relative;
}
.dog-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.dog-card--featured {
  grid-column: 1 / -1;
}
@media (min-width: 1024px) {
  .dog-card--featured {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: stretch;
  }
  .dog-card--featured .dog-card__media {
    flex: 1.1;
    min-height: 540px;
  }
  .dog-card--featured .dog-card__body {
    flex: 1;
    padding: 56px 56px;
    align-self: center;
  }
}
.dog-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-raised), var(--bg-elev));
}
.dog-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.dog-card:hover .dog-card__media img { transform: scale(1.04); }
.dog-card__media--mark {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(201,166,100,0.08), transparent 60%),
    linear-gradient(135deg, var(--bg-raised), var(--bg-elev));
}
.dog-card__media--mark::before,
.dog-card__media--mark::after {
  content: ""; position: absolute;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  opacity: 0.25;
}
.dog-card__media--mark::before { inset: 14%; }
.dog-card__media--mark::after { inset: 28%; opacity: 0.15; }

.monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px; height: 96px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 38px;
  color: var(--gold);
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
  background: rgba(11,9,7,0.4);
  backdrop-filter: blur(2px);
}
.monogram span:nth-child(1) { position: relative; right: -3px; }
.monogram span:nth-child(2) { transform: scaleX(-1); position: relative; left: -3px; }

.dog-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--bg-base);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}

.dog-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.dog-card__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.dog-card__name {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1;
}
.dog-card__tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--gold-light);
  margin: 0 0 16px;
  font-variation-settings: "SOFT" 100;
}
.dog-card__bio {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.dog-card__photo-pending {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-quiet);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.dog-card__stats {
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px 12px;
}
.dog-card__stats > div { display: flex; flex-direction: column; gap: 2px; }
.dog-card__stats dt {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 600;
}
.dog-card__stats dd {
  margin: 0;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
}

/* =========== PROCESS =========== */
.section--process {
  background: var(--bg-base);
}
.section--process .container:first-child { margin-bottom: 56px; }
.steps ol {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  counter-reset: step;
}
@media (min-width: 768px) {
  .steps ol { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1100px) {
  .steps ol { grid-template-columns: repeat(4, 1fr); }
}
.steps li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.steps li::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 24px; height: 1px;
  background: var(--gold);
}
.steps__num {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}
.steps h3 { font-size: 22px; margin: 0 0 12px; }
.steps p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; margin: 0; }

/* =========== AVAILABILITY =========== */
.section--available {
  background: linear-gradient(180deg, var(--bg-base), var(--bg-elev));
}
.available {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .available { grid-template-columns: 1.4fr 1fr; gap: 56px; }
}
.available__list {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.available__list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
}
.available__list strong {
  color: var(--text-primary);
  min-width: 140px;
  font-weight: 600;
}
.available__card {
  background: var(--bg-card);
  border: 1px solid var(--gold-deep);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  background-image: radial-gradient(circle at 100% 0%, rgba(201,166,100,0.12), transparent 60%);
}
.available__status {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 600;
}
.available__pill {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.available__sub {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* =========== FAQ =========== */
.section--faq {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
}
.faq { margin-top: 40px; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq details:first-child { border-top: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  gap: 24px;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s var(--ease-out);
  width: 24px;
  text-align: center;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold-light); }
.faq details p {
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  max-width: 65ch;
}

/* =========== RESERVE / CONTACT =========== */
.section--reserve {
  background: var(--bg-base);
  background-image: radial-gradient(circle at 100% 100%, rgba(201,166,100,0.08), transparent 60%);
}
.reserve {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .reserve { grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
}
.reserve__copy { position: sticky; top: 96px; }
@media (max-width: 1023px) { .reserve__copy { position: static; } }
.reserve__contact {
  list-style: none;
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 16px;
}
.reserve__contact li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reserve__contact span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 600;
}
.reserve__contact strong {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
}

/* =========== FORM =========== */
.reserve__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .reserve__form { padding: 48px; }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; gap: 20px; }
}
.form-row--single { grid-template-columns: 1fr; }

.form-row label,
.form-row--single,
.reserve__form > label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row label > span,
.form-row--single > span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 600;
}
.form-row label > span em {
  color: var(--gold);
  font-style: normal;
  margin-left: 4px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: inherit;
  font-size: 15px;
  background: var(--bg-base);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 14px 16px;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
}
textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  line-height: 1.5;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-elev);
  box-shadow: 0 0 0 3px rgba(201,166,100,0.15);
}
input::placeholder, textarea::placeholder { color: var(--text-quiet); }

.form-pills {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-pills legend {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 600;
  margin-bottom: 4px;
}
.form-pills > div, .form-pills__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-pills label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  cursor: pointer;
  background: var(--bg-base);
  font-size: 14px;
  color: var(--text-secondary);
  transition: border-color .2s, color .2s, background .2s;
  user-select: none;
}
.form-pills input { accent-color: var(--gold); margin: 0; }
.form-pills label:has(input:checked) {
  border-color: var(--gold);
  color: var(--text-primary);
  background: rgba(201,166,100,0.08);
}
.form-pills label:hover { border-color: var(--gold-deep); }

.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.form-checkbox input { margin-top: 4px; accent-color: var(--gold); }

.form-fineprint {
  font-size: 12px;
  color: var(--text-tertiary);
  margin: 4px 0 0;
  text-align: center;
}

/* =========== FOOTER =========== */
.footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  position: relative; z-index: 1;
}
.footer__inner {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1.2fr; gap: 48px; align-items: start; }
}
.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.footer__mark {
  width: 52px; height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.footer__mark span:nth-child(1) { position: relative; right: -2px; }
.footer__mark span:nth-child(2) { transform: scaleX(-1); position: relative; left: -2px; }
.footer__name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.footer__sub {
  color: var(--text-tertiary);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}
.footer__links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__legal {
  font-size: 12px;
  color: var(--text-quiet);
  line-height: 1.7;
  margin: 0;
}

/* =========== UTILITIES =========== */
::selection { background: var(--gold); color: var(--bg-base); }

@media (prefers-reduced-motion: reduce) {
  .dog-card, .dog-card__media img, .pillars li { transition: none !important; transform: none !important; }
  .hero__scroll span { animation: none; }
}
