/* =========================================================
   CAVALIER KING CHARLES SPANIEL PUPPIES — "Royal Editorial" design system v2.
   Structure modeled on a full-bleed luxury-boutique layout language
   (fixed navbar, hero + stat rail, marquee, numbered services, pet
   cards with badge/wishlist, testimonial wall, delivery-option
   pricing cards, editorial footer, page-hero inner pages, sticky
   filter/listing, horizontal numbered contract stepper) — recolored
   for a fixed, single off-white surface with the brand's chestnut /
   tan heritage palette instead of a dark theme.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap');

:root {
  --bg: #FAF6F0;              /* off-white — the one fixed surface */
  --bg-warm: #F5EDE4;         /* warm white / dividers / alt sections */
  --bg-card: #FFFFFF;
  --ink: #241F1D;             /* jet black text/headings */
  --primary: #9C3D28;         /* chestnut red — CTA / accent */
  --primary-hover: #7A2E2E;   /* deep ruby — hover */
  --primary-pale: rgba(156, 61, 40, 0.06);
  --primary-border: rgba(156, 61, 40, 0.22);
  --primary-glow: rgba(156, 61, 40, 0.14);
  --tan: #B8763E;             /* secondary accent */
  --tan-soft: #D9A66C;        /* soft tan — cards/borders/tags */
  --ink-soft: #6b5f57;
  --ink-muted: #a89a8d;
  --white: #ffffff;
  --border: rgba(36, 31, 29, 0.09);
  --shadow: 0 10px 40px rgba(36, 31, 29, 0.10);
  --shadow-lg: 0 24px 70px rgba(36, 31, 29, 0.16);
  --shadow-glow: 0 0 60px rgba(156, 61, 40, 0.10);
  --radius: 18px;
  --radius-sm: 10px;
  --r-btn: 10px;
  --r-xl: 28px;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'DM Mono', 'SFMono-Regular', Consolas, monospace;
  --container: 1280px;
  --gutter: 28px;
  --section-py: 112px;
  --ease: cubic-bezier(.25,.46,.45,.94);
  --dur: .3s;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 15px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 880px; }
section { padding: var(--section-py) 0; }
@media (max-width: 900px) { section { padding: 64px 0; } :root { --section-py: 72px; --gutter: 20px; } }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--ink); line-height: 1.12; margin: 0 0 16px; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }
p { margin: 0 0 16px; color: var(--ink); }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 640px; }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Kickers / eyebrows / section heads ---------- */
.numeral {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-style: italic; color: var(--tan);
  font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.numeral::before { content: ""; width: 30px; height: 1px; background: var(--tan-soft); }
.kicker {
  display: inline-block; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); font-weight: 700; margin-bottom: 14px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--primary); }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-soft); }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head-row .section-head { margin-bottom: 0; }
.title-rule { display: block; width: 64px; height: 1px; background: linear-gradient(90deg, var(--tan), transparent); margin: 18px 0; }
.title-rule.center { margin-left: auto; margin-right: auto; width: 90px; background: linear-gradient(90deg, transparent, var(--tan), transparent); }
em { font-style: italic; color: var(--primary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: var(--r-btn); font-weight: 700; font-size: 0.95rem;
  border: 1.5px solid transparent; transition: all 0.25s var(--ease); cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--bg); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-cream { background: var(--bg-warm); color: var(--ink); border-color: var(--tan-soft); }
.btn-cream:hover { background: var(--tan-soft); color: var(--white); }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: #000; }
.btn-ghost { background: transparent; color: var(--ink-soft); padding: 15px 4px; }
.btn-ghost:hover { color: var(--primary); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---------- Fixed navbar (full-width, transparent-to-solid) ---------- */
.nav-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 500; padding: 22px 0; transition: all 0.35s var(--ease); }
.nav-wrap.scrolled { padding: 12px 0; }
.nav-capsule {
  display: flex; align-items: center; gap: 6px;
  max-width: var(--container); width: 100%; margin: 0 auto; padding: 0 var(--gutter);
  background: transparent; border: 1px solid transparent; border-radius: 0;
  transition: all 0.35s var(--ease);
}
.nav-wrap.scrolled .nav-capsule {
  background: rgba(250, 246, 240, 0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 999px; padding: 8px 10px 8px 18px; box-shadow: var(--shadow);
  max-width: calc(var(--container) - 40px);
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: 6px; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; object-fit: contain; transition: width 0.3s ease, height 0.3s ease; }
.nav-wrap.scrolled .brand img { width: 38px; height: 38px; }
@media (max-width: 980px) { .brand img { width: 40px; height: 40px; } }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.01em; }
.brand-text span { font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tan); }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-link {
  padding: 10px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; color: var(--ink);
  position: relative; transition: background 0.2s ease, color 0.2s ease;
}
.nav-link:hover, .nav-link.active { background: var(--primary); color: var(--bg); }
.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--bg-warm); border-radius: 14px; padding: 10px;
  min-width: 220px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: all 0.22s ease; z-index: 40;
}
.dropdown li a { display: block; padding: 10px 14px; border-radius: 9px; font-size: 0.88rem; font-weight: 600; }
.dropdown li a:hover { background: var(--bg-warm); color: var(--primary); }
.nav-cta { flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; padding: 10px; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-capsule { justify-content: space-between; }
}

/* ---------- Mobile drawer ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(36,31,29,0.55); z-index: 600; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.nav-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(340px, 86vw); background: var(--ink); color: var(--bg);
  z-index: 601; transform: translateX(100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1); padding: 30px 26px; overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.drawer-close { background: none; border: 1px solid rgba(250,246,240,0.3); color: var(--bg); width: 38px; height: 38px; border-radius: 50%; font-size: 1rem; margin-bottom: 24px; }
.nav-drawer ul li a, .nav-drawer ul li button.drawer-parent { display: block; padding: 14px 4px; font-family: var(--serif); font-size: 1.3rem; border-bottom: 1px solid rgba(250,246,240,0.12); color: var(--bg); background: none; border-left: none; border-right: none; border-top: none; width: 100%; text-align: left; }
.drawer-sub { padding-left: 14px; display: none; }
.drawer-sub.open { display: block; }
.drawer-sub li a { font-size: 1rem !important; font-family: var(--sans) !important; color: var(--tan-soft) !important; padding: 10px 4px !important; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 178px 0 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; padding-bottom: 70px; }
.hero-crest { position: absolute; top: -140px; right: -140px; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(184,118,62,0.25); }
.hero-crest::after { content: ""; position: absolute; inset: 40px; border-radius: 50%; border: 1px solid rgba(184,118,62,0.2); }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { color: var(--primary); font-style: italic; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 15px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--bg-warm); font-size: 0.8rem; font-weight: 700; color: var(--ink);
}
.hero-badge .ic-svg { width: 15px; height: 15px; color: var(--primary); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* Hero stat rail — border-topped row under the hero copy, count-up numbers */
.hero-stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.h-stat-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--primary); line-height: 1; }
.h-stat-lbl { font-size: 0.72rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 5px; }

.hero-stack { position: relative; height: 480px; }
.hero-stack img { position: absolute; border-radius: 20px; object-fit: cover; border: 8px solid var(--white); box-shadow: var(--shadow-lg); }
.hero-stack .s1 { width: 62%; height: 74%; top: 0; left: 0; z-index: 3; }
.hero-stack .s2 { width: 52%; height: 52%; bottom: 0; right: 0; z-index: 2; transform: rotate(4deg); }
.hero-stack .s3 { width: 40%; height: 40%; top: 18%; right: 6%; z-index: 4; transform: rotate(-6deg); border-color: var(--tan-soft); }
.hero-seal {
  position: absolute; left: -18px; bottom: 40px; z-index: 5; background: var(--primary); color: var(--bg);
  width: 108px; height: 108px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-align: center; font-family: var(--serif); font-size: 0.8rem; line-height: 1.2; box-shadow: var(--shadow-lg);
  border: 3px solid var(--bg);
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-bottom: 50px; }
  .hero { padding: 140px 0 0; }
  .hero-stack { height: 340px; margin-top: 20px; }
  .hero-seal { width: 84px; height: 84px; font-size: 0.68rem; left: -6px; }
  .hero-stats { gap: 26px; }
}

/* ---------- Marquee ribbon ---------- */
.marquee-sec { padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; background: var(--bg-warm); }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; animation: marquee-move 34s linear infinite; width: max-content; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); flex-shrink: 0; }
.marquee-item::before { content: '◆'; color: var(--tan); font-size: 0.5rem; }
@keyframes marquee-move { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stats band ---------- */
.stats-band { padding: 68px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 10px 40px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: clamp(2.2rem, 3.6vw, 3.4rem); font-weight: 700; color: var(--primary); line-height: 1; }
.stat-lbl { font-size: 0.75rem; letter-spacing: 0.11em; text-transform: uppercase; color: var(--ink-soft); margin-top: 12px; font-weight: 600; }
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 22px; }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ---------- Coat colour legend strip ---------- */
.coat-legend { background: var(--ink); border-radius: 24px; padding: 44px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.coat-swatch { text-align: center; color: var(--bg); }
.coat-dot { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 14px; border: 3px solid rgba(250,246,240,0.25); }
.coat-dot.blenheim { background: linear-gradient(135deg, #C97B45 50%, #fff 50%); }
.coat-dot.ruby { background: #8C2F1D; }
.coat-dot.tricolor { background: conic-gradient(#151212 0turn 0.33turn, #fff 0.33turn 0.66turn, #C97B45 0.66turn 1turn); }
.coat-dot.blacktan { background: linear-gradient(135deg, #151212 55%, #A9662E 55%); }
.coat-swatch b { display: block; font-family: var(--serif); font-size: 1.15rem; margin-bottom: 4px; }
.coat-swatch span { font-size: 0.8rem; color: var(--tan-soft); }
@media (max-width: 760px) { .coat-legend { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Puppy cards (badge + wishlist + tags, structure per Cute Pets pet-card) ----------
   Listing layout, same on Home and Available Puppies: 3 columns
   desktop, 2 columns tablet, 1 column mobile — a plain wrapping
   grid, never a horizontal slider. */
.puppy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 1024px) { .puppy-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 640px) { .puppy-grid { grid-template-columns: 1fr; gap: 20px; } }

.puppy-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all var(--dur) var(--ease); position: relative;
}
.puppy-card:hover { border-color: var(--tan-soft); box-shadow: var(--shadow-lg); }
.puppy-card-media {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  margin: 16px 16px 0; border-radius: 22px; border: 10px solid var(--white); box-shadow: var(--shadow-lg);
  background: linear-gradient(155deg, var(--bg-warm), #efe2d2);
}
.puppy-card-media img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 1%; box-sizing: border-box; }
.puppy-card.is-sold .puppy-card-media img { filter: grayscale(0.45); opacity: 0.92; }
.puppy-card-badge {
  position: absolute; top: 14px; right: 14px; padding: 4px 12px; font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 999px;
}
.puppy-card-badge.available { background: var(--primary); color: var(--bg); }
.puppy-card-badge.sold { background: var(--ink); color: var(--tan-soft); }
.puppy-heart {
  position: absolute; top: 14px; left: 14px; width: 34px; height: 34px; background: rgba(250,246,240,0.85);
  border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--ink-soft); cursor: pointer; transition: all var(--dur); backdrop-filter: blur(6px);
}
.puppy-heart:hover, .puppy-heart.on { border-color: var(--primary-border); color: var(--primary); }
.puppy-coat-tag {
  position: absolute; bottom: 14px; left: 14px; padding: 4px 12px; font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; border-radius: 999px; background: rgba(250,246,240,0.9); color: var(--ink);
}
.puppy-card-body { padding: 22px; }
.puppy-card-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 4px; }
.puppy-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--ink); }
.puppy-price { font-family: var(--mono); font-size: 1rem; color: var(--primary); font-weight: 500; white-space: nowrap; }
.puppy-price.sold { color: var(--ink-soft); }
.was-price { text-decoration: line-through; color: var(--ink-muted); font-weight: 500; margin-right: 6px; }
.puppy-breed { font-size: 0.72rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; display: flex; align-items: center; gap: 5px; }
.puppy-breed .ic-svg { width: 12px; height: 12px; color: var(--primary); }
.puppy-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }
.puppy-tag-pill { padding: 3px 10px; background: var(--bg-warm); border: 1px solid var(--border); border-radius: 100px; font-size: 0.66rem; font-weight: 700; color: var(--ink-soft); }
.puppy-sold-note { font-size: 0.78rem; color: var(--ink-soft); margin: -6px 0 14px; }
.puppy-card-actions { display: flex; gap: 8px; }
.puppy-card-actions .btn { flex: 1; padding: 11px 12px; font-size: 0.82rem; }

/* ---------- Filter pills + sticky filter panel ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-pill {
  padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--border); background: var(--white);
  font-size: 0.84rem; font-weight: 700; color: var(--ink-soft); transition: all 0.2s ease;
}
.filter-pill.active, .filter-pill:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }

.listing-layout { display: grid; grid-template-columns: 270px 1fr; gap: 40px; align-items: start; }
.filter-panel { position: sticky; top: 110px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.fp-title { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin: 20px 0 14px; }
.fp-title:first-child { margin-top: 0; }
.listing-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.listing-count { font-size: 0.85rem; color: var(--ink-soft); }
@media (max-width: 1000px) { .listing-layout { grid-template-columns: 1fr; } .filter-panel { position: static; } }

/* ---------- Bento feature grid ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.bento-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.bento-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.bento-card.big { grid-column: span 4; }
.bento-card.small { grid-column: span 2; }
.bento-card.dark { background: var(--ink); color: var(--bg); }
.bento-card.dark h3, .bento-card.dark p { color: var(--bg); }
.bento-card.tan { background: var(--tan-soft); }
.bento-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--bg-warm); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--primary); }
.bento-card.dark .bento-icon { background: rgba(250,246,240,0.12); color: var(--tan-soft); }
.bento-icon .ic-svg { width: 24px; height: 24px; }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } .bento-card.big, .bento-card.small { grid-column: span 2; } }

/* ---------- Two column ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }
.img-frame { border-radius: 22px; overflow: hidden; border: 10px solid var(--white); box-shadow: var(--shadow-lg); }
.icon-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.icon-list .bubble { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; background: var(--bg-warm); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.icon-list .bubble .ic-svg { width: 20px; height: 20px; }

/* ---------- Services — numbered 3-col grid ---------- */
.services-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.svc-card { background: var(--bg-card); padding: 44px 36px; transition: background var(--dur); position: relative; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0; transition: opacity var(--dur); }
.svc-card:hover { background: var(--primary-pale); }
.svc-card:hover::after { opacity: 1; }
.svc-num { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tan); margin-bottom: 12px; }
.svc-icon { display: flex; margin-bottom: 18px; color: var(--primary); }
.svc-icon .ic-svg { width: 30px; height: 30px; }
.svc-title { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-bottom: 10px; }
.svc-desc { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 0; }
.svc-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 16px; transition: gap var(--dur); }
.svc-link:hover { gap: 12px; }
@media (max-width: 900px) { .services-wrap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .services-wrap { grid-template-columns: 1fr; } }

/* ---------- Values — 2-col icon cards ---------- */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card { display: flex; gap: 18px; padding: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color var(--dur); }
.value-card:hover { border-color: var(--tan-soft); }
.value-icon { flex-shrink: 0; width: 46px; height: 46px; background: var(--primary-pale); border: 1px solid var(--primary-border); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.value-icon .ic-svg { width: 21px; height: 21px; }
.value-title { font-family: var(--serif); font-size: 1.18rem; color: var(--ink); margin-bottom: 6px; }
.value-desc { font-size: 0.87rem; color: var(--ink-soft); line-height: 1.7; margin: 0; }
@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Bg alt section ---------- */
.bg-alt-section { background: var(--bg-warm); }
.bg-ink-section { background: var(--ink); color: var(--bg); }
.bg-ink-section h2, .bg-ink-section h3, .bg-ink-section p { color: var(--bg); }
.bg-ink-section .section-head p { color: var(--tan-soft); }
.bg-ink-section .eyebrow { color: var(--tan-soft); }
.bg-ink-section .eyebrow::before { background: var(--tan-soft); }

/* ---------- Testimonials teaser (3-col, homepage) ---------- */
.testi-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: relative; transition: border-color var(--dur); }
.testi-card:hover { border-color: var(--tan-soft); }
.testi-card::before { content: '\201C'; font-family: var(--serif); font-size: 4.4rem; line-height: 0; color: var(--tan-soft); opacity: 0.5; position: absolute; top: 26px; left: 22px; }
.testi-stars { color: var(--tan); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 18px; position: relative; }
.testi-text { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--ink); line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; background: var(--tan-soft); color: var(--white); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 800; font-size: 0.9rem; }
.testi-av img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--ink); }
.testi-loc { font-size: 0.74rem; color: var(--ink-soft); margin-top: 1px; }
@media (max-width: 900px) { .testi-wrap { grid-template-columns: 1fr; } }

/* ---------- Reviews wall (full Reviews page) ---------- */
.review-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
.review-stat { text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 20px; }
.review-stat .num { font-family: var(--serif); font-size: 2.6rem; color: var(--primary); font-weight: 700; }
.review-stat .lbl { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
@media (max-width: 700px) { .review-stats { grid-template-columns: 1fr; } }

.rating-bar-row { display: grid; grid-template-columns: 46px 1fr 40px; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); }
.rating-bar-track { height: 8px; background: var(--bg-warm); border-radius: 999px; overflow: hidden; }
.rating-bar-fill { display: block; height: 100%; background: var(--tan); width: 0; border-radius: 999px; transition: width 1.1s ease; }

.review-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .review-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .review-grid-3 { grid-template-columns: 1fr; } }

.review-wall { columns: 3 280px; column-gap: 24px; }
.review-wall .review-card { break-inside: avoid; margin-bottom: 24px; }
@media (max-width: 900px) { .review-wall { columns: 2 240px; } }
@media (max-width: 560px) { .review-wall { columns: 1; } }

.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: border-color var(--dur); }
.review-card:hover { border-color: var(--tan-soft); }
.review-card.with-photo { padding: 0; overflow: hidden; }
.review-photo-sq { width: 100%; aspect-ratio: 1/1; overflow: hidden; }
.review-photo-sq img { width: 100%; height: 100%; object-fit: cover; }
.review-card.with-photo .review-photo-sq + div { padding: 22px 24px 26px; }
.review-stars { color: var(--tan); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.95rem; }
.review-quote { font-family: var(--serif); font-size: 1.12rem; font-style: italic; color: var(--ink); margin-bottom: 16px; }
.review-person { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--tan-soft); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 0.9rem; }
.review-loc { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- Delivery / pricing cards (3-col, middle highlighted) ---------- */
.pricing-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; transition: all var(--dur) var(--ease); }
.price-card.highlight { background: linear-gradient(155deg, var(--primary-pale), transparent); border-color: var(--primary-border); position: relative; }
.price-card.highlight::before {
  content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 18px; background: var(--primary); color: var(--bg); font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; border-radius: 999px; white-space: nowrap;
}
.price-card:hover { border-color: var(--tan-soft); transform: translateY(-4px); box-shadow: var(--shadow); }
.price-tier { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.price-amount { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.price-amount sup { font-size: 1.2rem; vertical-align: top; margin-top: 6px; }
.price-note { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 22px; line-height: 1.6; }
.price-sep { height: 1px; background: var(--border); margin-bottom: 22px; }
.price-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; color: var(--ink-soft); }
.price-list li::before { content: '✓'; color: var(--primary); flex-shrink: 0; font-weight: 700; }
@media (max-width: 900px) { .pricing-wrap { grid-template-columns: 1fr; } }

/* ---------- Newsletter box ---------- */
.newsletter-box { background: linear-gradient(155deg, var(--primary-pale), var(--bg-warm)); border: 1px solid var(--primary-border); border-radius: var(--r-xl); padding: 68px; text-align: center; }
.nl-form { display: flex; gap: 10px; max-width: 460px; margin: 26px auto 0; }
.nl-input { flex: 1; padding: 14px 18px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-btn); color: var(--ink); font-size: 0.92rem; outline: none; transition: border-color var(--dur); }
.nl-input:focus { border-color: var(--tan); box-shadow: 0 0 0 3px var(--primary-glow); }
.nl-input::placeholder { color: var(--ink-muted); }
@media (max-width: 640px) { .newsletter-box { padding: 40px 22px; } .nl-form { flex-direction: column; } }

/* ---------- FAQ accordion ---------- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 4px; display: flex; justify-content: space-between; align-items: center; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.faq-q .plus { transition: transform 0.3s ease; color: var(--primary); width: 18px; height: 18px; flex-shrink: 0; }
.faq-q[aria-expanded="true"] .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 4px 22px; color: var(--ink-soft); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--primary); border-radius: var(--r-xl); padding: 64px 50px; text-align: center; color: var(--bg);
  position: relative; overflow: hidden;
}
.cta-banner::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(250,246,240,0.15); top: -120px; left: -80px; }
.cta-banner h2, .cta-banner p { color: var(--bg); position: relative; }
.cta-banner p { max-width: 520px; margin-left: auto; margin-right: auto; opacity: 0.9; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 20px; position: relative; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  padding: 13px 15px; border: 1.5px solid var(--border); border-radius: var(--r-btn); background: var(--bg);
  color: var(--ink); transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--tan); box-shadow: 0 0 0 3px var(--primary-glow); }
.field textarea { min-height: 110px; resize: vertical; }
.field.error input, .field.error select, .field.error textarea { border-color: var(--primary); }
.field-error-msg { font-size: 0.76rem; color: var(--primary); display: none; }
.field.error .field-error-msg { display: block; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 24px; } }

.form-status { margin-top: 14px; font-size: 0.88rem; font-weight: 600; min-height: 20px; }
.form-status.success { color: #3d7a3d; }
.form-status.error { color: var(--primary); }

/* ---------- Inquiry modal ---------- */
.drawer-scrim { position: fixed; inset: 0; background: rgba(36,31,29,0.55); z-index: 700; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.drawer-scrim.open { opacity: 1; visibility: visible; }
.inquire-drawer {
  position: fixed; top: 50%; left: 50%; height: auto; max-height: 90vh; width: min(460px, calc(100vw - 32px));
  background: var(--bg); border-radius: var(--radius); z-index: 701;
  transform: translate(-50%, -50%) scale(0.94); opacity: 0; visibility: hidden;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s ease, visibility 0.3s ease;
  padding: 34px 30px; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.inquire-drawer.open { transform: translate(-50%, -50%) scale(1); opacity: 1; visibility: visible; }
.inquire-drawer-close { position: absolute; top: 26px; right: 26px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); }
.inquire-drawer .numeral { margin-top: 20px; }

/* ---------- Puppy detail lightbox-ish panel (contract picker) ---------- */
.puppy-pick { display: flex; align-items: center; gap: 12px; padding: 12px; border: 1.5px solid var(--border); border-radius: 14px; cursor: pointer; transition: all 0.2s ease; position: relative; }
.puppy-pick:hover { border-color: var(--tan-soft); }
.puppy-pick img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; }
.puppy-pick .pn { font-weight: 700; }
.puppy-pick .pp { font-size: 0.8rem; color: var(--ink-soft); }
.puppy-pick input { position: absolute; top: 10px; right: 10px; accent-color: var(--primary); }
.puppy-pick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-height: 400px; overflow-y: auto; padding-right: 4px; }
@media (max-width: 500px) { .puppy-pick-grid { grid-template-columns: 1fr; } }

/* ---------- Contract: horizontal numbered stepper ---------- */
.stepper { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-bottom: 70px; padding-top: 10px; }
.step-item { display: flex; align-items: flex-start; flex: 1; position: relative; cursor: pointer; }
.step-circle {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700;
  color: var(--ink-muted); background: var(--bg-card); transition: all 0.3s ease; position: relative; z-index: 1; margin: 0 auto;
}
.step-item.active .step-circle { border-color: var(--primary); color: var(--primary); background: var(--primary-pale); box-shadow: 0 0 0 5px var(--primary-glow); }
.step-item.done .step-circle { background: var(--tan-soft); border-color: var(--tan-soft); color: var(--white); }
.step-connector { flex: 1; height: 1px; background: var(--border); margin-top: 20px; transition: background 0.4s ease; }
.step-item.done .step-connector, .step-item.done + .step-item .step-connector { background: var(--tan-soft); }
.step-label { position: absolute; top: 48px; left: 50%; transform: translateX(-50%); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); white-space: nowrap; text-align: center; }
.step-item.active .step-label { color: var(--primary); font-weight: 700; }
@media (max-width: 900px) {
  .stepper { overflow-x: auto; justify-content: flex-start; padding-bottom: 30px; }
  .step-label { display: none; }
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeStep 0.4s ease; }
@keyframes fadeStep { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.panel-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
@media (max-width: 640px) { .panel-card { padding: 22px; } }

.shipping-option { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border: 1.5px solid var(--border); border-radius: 14px; margin-bottom: 12px; cursor: pointer; transition: all 0.2s ease; }
.shipping-option:hover { border-color: var(--tan-soft); }
.shipping-option input { margin-top: 4px; accent-color: var(--primary); }
.shipping-option .so-title { font-weight: 800; }
.shipping-option .so-fee { color: var(--primary); font-weight: 800; float: right; }
.shipping-option .so-desc { font-size: 0.85rem; color: var(--ink-soft); margin-top: 4px; }

.checkbox-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; }
.checkbox-row input { accent-color: var(--primary); width: 18px; height: 18px; }

.total-box { background: var(--ink); color: var(--bg); border-radius: 18px; padding: 26px 30px; display: flex; justify-content: space-between; align-items: center; margin: 26px 0; flex-wrap: wrap; gap: 10px; }
.total-box .tl { font-family: var(--mono); font-size: 0.72rem; color: var(--tan-soft); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.total-box .ta { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; }

.sig-pad-wrap { border: 1.5px dashed var(--tan-soft); border-radius: 14px; background: var(--white); position: relative; }
#sig-pad { width: 100%; height: 180px; display: block; touch-action: none; border-radius: 14px; }
.sig-actions { display: flex; justify-content: space-between; margin-top: 10px; }
.sig-hint { font-size: 0.78rem; color: var(--ink-soft); }

.agreement-clause { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; }
.agreement-clause summary { padding: 14px 18px; font-weight: 700; cursor: pointer; }
.agreement-clause div { padding: 0 18px 16px; font-size: 0.9rem; color: var(--ink-soft); }

.step-nav { display: flex; justify-content: space-between; margin-top: 30px; gap: 12px; }

#agreement-preview { display: none; margin-top: 30px; }
#preview-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
#preview-sig-img { max-width: 220px; border: 1px solid var(--border); border-radius: 8px; margin-top: 10px; }

.success-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--primary-pale); border: 2px solid var(--primary-border); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 24px; color: var(--primary); }

/* ---------- Policy pages ---------- */
.policy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 60px; align-items: flex-start; }
@media (max-width: 900px) { .policy-layout { grid-template-columns: 1fr; } }
.jump-nav { position: sticky; top: 110px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.jump-nav h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--tan); margin-bottom: 14px; }
.jump-nav li a { display: block; padding: 8px 0; font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); border-bottom: 1px solid var(--border); }
.jump-nav li:last-child a { border-bottom: none; }
.jump-nav li a:hover { color: var(--primary); }
.policy-section { margin-bottom: 46px; scroll-margin-top: 120px; }
.policy-num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--primary); color: var(--bg); font-family: var(--serif); font-size: 0.9rem; margin-right: 10px; }
.policy-date { font-family: var(--mono); font-size: 0.68rem; color: var(--primary); letter-spacing: 0.12em; margin-bottom: 24px; text-transform: uppercase; }
.callout { display: flex; gap: 16px; background: var(--bg-warm); border-radius: 14px; padding: 22px; align-items: flex-start; }
.table-wrap { overflow-x: auto; margin: 20px 0; }
.data-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 14px; overflow: hidden; }
.data-table th { background: var(--ink); color: var(--bg); text-align: left; padding: 14px 18px; font-family: var(--serif); font-weight: 600; font-size: 1rem; }
.data-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.check-yes { color: #3d7a3d; font-weight: 800; margin-right: 6px; }
.check-no { color: var(--primary); font-weight: 800; margin-right: 6px; }
.compare-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 26px; }
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr 1fr; } }
.compare-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 24px 18px; text-align: center; position: relative; }
.compare-card.highlight { border-color: var(--primary); }
.compare-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--bg); font-size: 0.65rem; font-weight: 800; padding: 4px 12px; border-radius: 999px; text-transform: uppercase; }
.compare-fee { font-family: var(--serif); font-size: 1.7rem; color: var(--primary); font-weight: 700; margin: 8px 0; }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 20px; }
@media (max-width: 760px) { .timeline { grid-template-columns: 1fr; } }
.timeline-item { border-left: 3px solid var(--tan-soft); padding-left: 18px; }
.timeline-year { font-family: var(--serif); font-style: italic; color: var(--primary); font-weight: 700; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 170px 0 70px; background: radial-gradient(ellipse 55% 60% at 50% 0%, var(--primary-pale), transparent); text-align: center; border-bottom: 1px solid var(--border); margin-bottom: 80px; position: relative; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.74rem; color: var(--ink-muted); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--ink-soft); }
.page-hero h1 { margin-bottom: 6px; }
.page-hero .lede { margin: 14px auto 0; }
@media (max-width: 760px) { .page-hero { padding: 140px 0 50px; margin-bottom: 56px; } }

/* ---------- Contact layout ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; }
.cinfo-card { display: flex; gap: 18px; padding: 26px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 16px; transition: border-color var(--dur); }
.cinfo-card:hover { border-color: var(--tan-soft); }
.cinfo-icon { flex-shrink: 0; width: 42px; height: 42px; background: var(--primary-pale); border: 1px solid var(--primary-border); border-radius: var(--r-btn); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.cinfo-icon .ic-svg { width: 18px; height: 18px; }
.cinfo-lbl { font-family: var(--mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--primary); margin-bottom: 4px; }
.cinfo-val { font-size: 0.92rem; color: var(--ink); font-weight: 700; }
.cinfo-sub { font-size: 0.8rem; color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 1000px) { .contact-layout { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--bg); padding: 80px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 150px; height: 150px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { color: var(--tan-soft); font-size: 0.9rem; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(250,246,240,0.2); display: flex; align-items: center; justify-content: center; transition: all var(--dur); }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); }
.footer-col h4 { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tan-soft); margin-bottom: 20px; font-weight: 500; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a, .footer-contact li { font-size: 0.9rem; color: rgba(250,246,240,0.85); display: flex; gap: 10px; align-items: flex-start; transition: color var(--dur); }
.footer-col ul li a:hover { color: var(--tan-soft); }
.footer-contact .ic-svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--tan-soft); }
.footer-bottom { border-top: 1px solid rgba(250,246,240,0.12); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: rgba(250,246,240,0.6); }
.back-top { background: none; border: 1px solid rgba(250,246,240,0.2); color: var(--bg); padding: 8px 16px; border-radius: 999px; font-size: 0.8rem; display: flex; align-items: center; gap: 6px; }

/* ---------- Floating action buttons ---------- */
.back-top-fab {
  position: fixed; right: 24px; z-index: 400; box-shadow: var(--shadow-lg); border: none; transition: all 0.3s ease;
  bottom: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--bg); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(10px);
}
.back-top-fab.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Toast notifications ---------- */
.toast-wrap { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 9px; pointer-events: none; }
.toast { min-width: 270px; max-width: 340px; padding: 13px 16px; background: var(--white); border: 1px solid var(--primary-border); border-radius: var(--radius); color: var(--ink); font-size: 0.85rem; display: flex; align-items: center; gap: 11px; box-shadow: var(--shadow-lg); animation: toast-in 0.3s var(--ease) both; pointer-events: auto; }
.toast.success { border-color: rgba(61,122,61,0.35); }
.toast.error { border-color: var(--primary-border); }
.toast-ic { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--primary-pale); border: 1px solid var(--primary-border); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--primary); }
@keyframes toast-in { from { transform: translateX(18px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toast-out { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(18px); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .1s; } .rd2 { transition-delay: .2s; } .rd3 { transition-delay: .3s; } .rd4 { transition-delay: .4s; }

/* ---------- Icons ---------- */
.ic-svg { width: 18px; height: 18px; display: inline-block; vertical-align: middle; }
.ic-svg svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Misc ---------- */
.speech-bubble { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.pill-note { display: inline-block; background: var(--bg-warm); color: var(--ink); padding: 8px 16px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; }
hr.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

.stagger > * { transition-delay: calc(var(--i, 0) * 0.08s); }

/* ---------- 404 ---------- */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 180px 20px 100px; }
.error-page .code { font-family: var(--serif); font-size: 7rem; color: var(--tan-soft); line-height: 1; }

/* ---------- Admin dashboard ---------- */
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; background: var(--bg-warm); }
.admin-login-box { max-width: 420px; width: 100%; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 44px 36px; text-align: center; }
.admin-login-box img { height: 64px; margin: 0 auto 18px; }

.admin-bar { background: var(--ink); padding: 16px 0; position: sticky; top: 0; z-index: 100; }
.admin-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.admin-bar img { height: 40px; }
.admin-bar-brand { display: flex; align-items: center; gap: 10px; color: var(--bg); }
.admin-bar-brand b { font-family: var(--serif); font-size: 1.05rem; }
.admin-bar-brand span { display: block; font-size: 0.7rem; color: var(--tan-soft); letter-spacing: 0.06em; text-transform: uppercase; }

.admin-tabs { display: flex; gap: 4px; margin: 28px 0 30px; border-bottom: 1px solid var(--border); overflow-x: auto; }
.admin-tab-btn { background: none; border: none; padding: 12px 18px; font-weight: 700; color: var(--ink-soft); border-bottom: 3px solid transparent; white-space: nowrap; font-size: 0.92rem; }
.admin-tab-btn:hover { color: var(--ink); }
.admin-tab-btn.active { color: var(--primary); border-color: var(--primary); }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.admin-toolbar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center; margin-bottom: 22px; }

.admin-item-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.admin-item-card .admin-item-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 10px; flex-wrap: wrap; }
.admin-item-head h4 { margin: 0; }
.admin-item-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-preview-slot { margin-top: 16px; max-width: 340px; }

.admin-clause-item { background: var(--bg-warm); border-radius: 14px; padding: 18px; margin-bottom: 14px; }
.admin-shipping-item { background: var(--bg-warm); border-radius: 14px; padding: 18px; margin-bottom: 14px; }
.admin-review-item { background: var(--bg-warm); border-radius: 14px; padding: 18px; margin-bottom: 14px; }

.admin-save-strip {
  position: sticky; bottom: 0; background: var(--white); border-top: 1px solid var(--border); padding: 14px 0;
  margin-top: 20px; display: flex; justify-content: flex-end; gap: 10px; box-shadow: 0 -6px 20px rgba(36,31,29,0.06);
}
.admin-status-msg { font-size: 0.85rem; font-weight: 700; color: #3d7a3d; align-self: center; margin-right: auto; }

/* ---------- Quick-start banner ---------- */
.admin-howto { background: var(--primary-pale); border: 1px solid var(--primary-border); border-radius: var(--radius); padding: 22px 26px; margin: 22px 0 28px; }
.admin-howto h3 { margin: 0 0 4px; font-size: 1.05rem; }
.admin-howto-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 14px; }
@media (max-width: 900px) { .admin-howto-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .admin-howto-steps { grid-template-columns: 1fr; } }
.admin-howto-step { display: flex; gap: 10px; align-items: flex-start; }
.admin-howto-num {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 0.85rem;
}
.admin-howto-step p { margin: 0; font-size: 0.82rem; color: var(--ink-soft); line-height: 1.4; }
.admin-howto-step strong { display: block; font-size: 0.86rem; color: var(--ink); margin-bottom: 2px; }

/* ---------- Panel intro strip ---------- */
.admin-panel-intro { display: flex; align-items: flex-start; gap: 10px; background: var(--bg-warm); border-radius: 14px; padding: 14px 18px; margin-bottom: 20px; font-size: 0.86rem; color: var(--ink-soft); }
.admin-panel-intro b { color: var(--ink); }

/* ---------- Autosave toast ---------- */
.admin-toast {
  position: fixed; bottom: 24px; right: 24px; background: var(--ink); color: var(--bg); padding: 12px 20px; border-radius: 100px;
  font-size: 0.84rem; font-weight: 700; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 8px;
  z-index: 900; opacity: 0; transform: translateY(10px); transition: opacity 0.25s ease, transform 0.25s ease; pointer-events: none;
}
.admin-toast.show { opacity: 1; transform: translateY(0); }
.admin-toast::before { content: "✓"; color: #7fd08a; font-weight: 900; }

/* ---------- Photo thumbnails in the editor ---------- */
.admin-thumb-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.admin-thumb {
  flex-shrink: 0; width: 84px; height: 84px; border-radius: 12px; object-fit: cover; background: var(--bg-warm);
  border: 1.5px solid var(--border); display: block;
}
.admin-thumb-placeholder {
  flex-shrink: 0; width: 84px; height: 84px; border-radius: 12px; background: var(--bg-warm); border: 1.5px dashed var(--ink-muted);
  display: flex; align-items: center; justify-content: center; text-align: center; font-size: 0.62rem; color: var(--ink-muted); padding: 6px; line-height: 1.3;
}
.admin-thumb-status { font-size: 0.74rem; font-weight: 700; margin-top: 6px; }
.admin-thumb-status.ok { color: #3d7a3d; }
.admin-thumb-status.warn { color: var(--primary); }

/* ---------- Inline field validation ---------- */
.admin-inline-warn { font-size: 0.76rem; color: var(--primary); font-weight: 600; margin-top: 4px; display: none; }
.field.admin-missing input, .field.admin-missing textarea { border-color: var(--primary); }
.field.admin-missing .admin-inline-warn { display: block; }

/* ---------- Status pill on item cards ---------- */
.admin-item-pill { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.admin-item-pill.available { background: rgba(61,122,61,0.12); color: #3d7a3d; }
.admin-item-pill.sold { background: var(--primary-pale); color: var(--primary); }

/* ---------- Home tab: live mini previews ---------- */
.admin-mini-hero { background: var(--ink); color: var(--bg); border-radius: var(--radius); padding: 26px 24px; margin-top: 14px; }
.admin-mini-hero .kicker { color: var(--tan-soft); }
.admin-mini-hero h4 { color: var(--bg); font-size: 1.4rem; margin: 8px 0; line-height: 1.15; }
.admin-mini-hero h4 em { color: var(--tan-soft); font-style: italic; }
.admin-mini-hero p { color: rgba(250,246,240,0.75); font-size: 0.86rem; margin: 0; }
.admin-featured-strip { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.admin-featured-thumb { width: 90px; text-align: center; }
.admin-featured-thumb img, .admin-featured-thumb .admin-thumb-placeholder { width: 90px; height: 90px; }
.admin-featured-thumb span { display: block; font-size: 0.72rem; font-weight: 700; margin-top: 6px; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
