/* ============================================================
   TheDoggFather — elegant editorial doorstep grooming
   Palette: gold #FFC700 · ink #0B0B0B · paper #FFF · cream #F7F6F1
   Type: Poppins (everywhere)
   ============================================================ */
:root {
  --gold: #FFC700;
  --gold-deep: #E0AD00;
  --gold-text: #B8900F;
  --ink: #0B0B0B;
  --ink-2: #111111;
  --paper: #FFFFFF;
  --cream: #F7F6F1;
  --cream-2: #FFFDF5;
  --muted: #555555;
  --muted-2: #777777;
  --line: #ECECEC;
  --serif: 'Poppins', sans-serif;
  --sans: 'Poppins', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
::selection { background: var(--gold); color: var(--ink-2); }

/* ---------- shared atoms ---------- */
.display { font-family: var(--serif); font-weight: 800; font-size: clamp(42px, 4.4vw, 64px); line-height: 1.05; letter-spacing: -0.02em; margin: 22px 0 0; color: var(--ink-2); }
.display em { font-style: italic; color: var(--ink-2); }
.display--light { color: #F9F9F9; }
.display--light em { color: var(--gold); }
.section-lead { font-size: 17px; line-height: 1.65; color: var(--muted); margin: 20px 0 0; max-width: 560px; text-wrap: pretty; }

.kicker { display: flex; align-items: center; gap: 10px; }
.kicker--center { justify-content: center; }
.kicker__line { width: 22px; height: 3px; background: var(--gold); display: inline-block; flex: none; }
.kicker__text { font-size: 12px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2); }
.kicker__text--dim { color: rgba(249,249,249,0.55); }

.hl { background: linear-gradient(transparent 58%, var(--gold) 58%, var(--gold) 92%, transparent 92%); padding: 0 4px; }

.btn {
  display: inline-block; font-family: var(--sans); font-weight: 800; font-size: 15px;
  padding: 17px 32px; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent;
  text-align: center; transition: all 0.35s var(--ease); white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--ink-2); box-shadow: 0 12px 32px rgba(255,199,0,0.38); }
.btn--gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 44px rgba(255,199,0,0.5); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(11,11,11,0.35); }
.btn--ink-gold { background: var(--ink); color: var(--gold); }
.btn--ink-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(11,11,11,0.35); }
.btn--outline { background: transparent; color: var(--ink-2); border-color: var(--ink-2); }
.btn--outline:hover { background: var(--ink-2); color: #fff; transform: translateY(-3px); }
.btn--outline-light { color: #F9F9F9; border-color: rgba(249,249,249,0.5); }
.btn--outline-light:hover { background: var(--gold); color: var(--ink-2); border-color: var(--gold); }
.btn--ghostline { background: transparent; color: var(--ink-2); border: 1.5px solid var(--ink-2); padding: 14px 0; width: 100%; font-weight: 700; font-size: 14px; }
.btn--ghostline:hover { background: var(--ink-2); color: #fff; }
.btn--block { width: 100%; }

/* ---------- reveal (JS toggles .in) ---------- */
.reveal { opacity: 0; transform: translateY(42px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px; background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17,17,17,0.07);
}
.nav__brand { display: flex; align-items: center; gap: 11px; color: var(--ink-2); }
.nav__brand img { width: 38px; height: 38px; object-fit: contain; }
.nav__brand span { font-family: var(--serif); font-weight: 800; font-size: 22px; letter-spacing: -0.5px; white-space: nowrap; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #555; white-space: nowrap; transition: color 0.25s; }
.nav__links a:hover { color: var(--ink-2); }
.nav__cta { font-size: 13px !important; font-weight: 700; color: #fff !important; background: var(--ink); padding: 11px 22px; border-radius: 999px; letter-spacing: 0 !important; text-transform: none !important; transition: all 0.3s var(--ease); }
.nav__cta:hover { background: var(--gold); color: var(--ink-2) !important; transform: translateY(-2px); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2.5px; background: var(--ink-2); border-radius: 2px; transition: 0.3s; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
  align-items: center; gap: 48px; padding: 130px 6vw 70px; overflow: hidden;
}
.hero__glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__glow--a { top: 12%; left: -120px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(255,199,0,0.35), rgba(255,199,0,0)); filter: blur(40px); }
.hero__glow--b { bottom: -40px; right: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,199,0,0.45), rgba(255,199,0,0)); filter: blur(50px); }
.hero__copy { max-width: 640px; }
.hero__title { font-family: var(--serif); font-weight: 800; font-size: clamp(54px, 6.2vw, 92px); line-height: 1.02; letter-spacing: -0.02em; margin: 26px 0 0; color: var(--ink-2); text-wrap: balance; }
.hero__title em { display: block; font-style: italic; font-weight: 700; }
.hero__sub { font-size: 18px; line-height: 1.65; color: var(--muted); max-width: 520px; margin: 26px 0 0; text-wrap: pretty; }
.hero__btns { display: flex; align-items: center; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.hero__btns .btn--gold { padding: 18px 34px; }
.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 44px; }
.hero__trust span { font-size: 13.5px; font-weight: 600; color: var(--muted-2); }
.avatars { display: flex; }
.avatars img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; background: #eee; }
.avatars img + img { margin-left: -10px; }

.hero__stage { position: relative; justify-self: center; width: min(100%, 560px); }
.hero__photo { position: relative; border-radius: 28px; overflow: hidden; box-shadow: 0 30px 80px rgba(11,11,11,0.22); background: #EFEBE2; }
.hero__photo img { width: 100%; height: 66vh; min-height: 440px; object-fit: cover; }
.hero__photo-grad { position: absolute; inset: 0; background: linear-gradient(200deg, rgba(11,11,11,0) 55%, rgba(11,11,11,0.45)); }
.hero__badge-card { position: absolute; left: 20px; bottom: 20px; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-radius: 16px; padding: 12px 18px; }
.hero__badge-card .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(255,199,0,0.25); flex: none; }
.hero__badge-title { font-weight: 800; font-size: 13.5px; color: var(--ink-2); }
.hero__badge-sub { font-size: 12px; color: var(--muted-2); font-weight: 600; }
.hero__seal { position: absolute; top: -34px; right: -16px; width: 128px; height: 128px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; box-shadow: 0 16px 40px rgba(11,11,11,0.3); }
.hero__seal-text { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 22s linear infinite; }
.hero__seal-text text { font-size: 10.2px; font-weight: 700; letter-spacing: 2.4px; fill: var(--gold); font-family: var(--sans); }
.hero__seal img { width: 54px; height: 54px; object-fit: contain; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ MARQUEE ============ */
.marquee { background: var(--ink); overflow: hidden; padding: 18px 0; border-top: 1px solid #1c1c1c; }
.marquee__track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee__row { display: flex; align-items: center; gap: 36px; padding-right: 36px; }
.marquee__row span { font-family: var(--serif); font-style: italic; font-size: 18px; color: #F9F9F9; }
.marquee__row i { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ STORY (scroll narrative) ============ */
.story { position: relative; height: 380vh; background: var(--ink); }
.story__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.story__scene { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; }
.story__scene.is-on { opacity: 1; }
.story__bg { position: absolute; inset: 0; background: #1a1a1a; }
.story__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 0.4s linear; }
.story__scene.is-on .story__bg img { transform: scale(1.02); }
.story__grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,11,0.35) 0%, rgba(11,11,11,0.15) 45%, rgba(11,11,11,0.78) 100%); }
.story__text { position: absolute; left: 6vw; bottom: 12vh; max-width: 560px; transform: translateY(28px); transition: transform 0.7s var(--ease); }
.story__scene.is-on .story__text { transform: none; }
.story__num { font-family: var(--serif); font-style: italic; font-weight: 800; font-size: 96px; line-height: 1; color: var(--gold); }
.story__text h2 { font-family: var(--serif); font-weight: 800; font-size: clamp(36px, 3.6vw, 54px); color: #F9F9F9; margin: 10px 0 14px; letter-spacing: -0.01em; }
.story__text p { font-size: 17px; line-height: 1.7; color: rgba(249,249,249,0.78); margin: 0; text-wrap: pretty; }
.story__chrome { position: absolute; top: 96px; left: 6vw; z-index: 4; display: flex; align-items: center; gap: 10px; }
.story__chrome-text { font-size: 11.5px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(249,249,249,0.65); }
.story__progress { position: absolute; bottom: 5vh; left: 50%; transform: translateX(-50%); z-index: 4; width: 240px; height: 3px; background: rgba(249,249,249,0.18); border-radius: 999px; overflow: hidden; }
.story__bar { height: 100%; width: 0; background: var(--gold); transform-origin: left; }

/* ============ PROMISE (manifesto) ============ */
.promise { position: relative; background: var(--cream); padding: 150px 6vw; overflow: hidden; }
.promise__glow { position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 600px; height: 360px; background: radial-gradient(circle, rgba(255,199,0,0.22), rgba(255,199,0,0)); filter: blur(60px); pointer-events: none; }
.promise__inner { position: relative; max-width: 980px; margin: 0 auto; text-align: center; }
.promise__lead { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--gold-text); margin: 30px 0 8px; }
.promise__quote { font-family: var(--serif); font-weight: 800; font-size: clamp(30px, 3.8vw, 52px); line-height: 1.22; letter-spacing: -0.015em; color: var(--ink-2); margin: 8px 0 0; text-wrap: balance; }
.promise__quote em { font-style: italic; color: var(--gold-text); }
.promise__sign { font-size: 13px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-top: 34px; }
.promise__pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 72px; text-align: left; }
.promise__pillar { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 32px 28px; transition: all 0.4s var(--ease); }
.promise__pillar:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(11,11,11,0.08); }
.promise__icon { font-size: 30px; }
.promise__pillar h3 { font-family: var(--serif); font-weight: 800; font-size: 22px; margin: 14px 0 8px; color: var(--ink-2); }
.promise__pillar p { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ============ PACKAGES ============ */
.pkg { position: relative; background: #fff; padding: 140px 6vw; overflow: hidden; }
.pkg__glow { position: absolute; top: 60px; right: -140px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(255,199,0,0.22), rgba(255,199,0,0)); filter: blur(50px); pointer-events: none; }
.pkg__head { position: relative; max-width: 720px; }
.pkg__tabs { display: flex; gap: 6px; background: #F4F3EE; border-radius: 999px; padding: 6px; margin-top: 48px; width: max-content; }
.pkg__tab { border: none; cursor: pointer; font-family: var(--sans); font-weight: 800; font-size: 14px; padding: 13px 32px; border-radius: 999px; white-space: nowrap; transition: all 0.3s var(--ease); background: transparent; color: var(--muted-2); }
.pkg__tab.is-active { background: var(--ink); color: var(--gold); box-shadow: 0 8px 20px rgba(11,11,11,0.25); }
.pkg__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 22px; margin-top: 44px; align-items: stretch; }
.pkg__grid--cats { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); max-width: 980px; }
.is-hidden { display: none !important; }

.pcard { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 32px 28px; transition: all 0.4s var(--ease); }
.pcard:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(11,11,11,0.1); border-color: #DDD; }
.pcard--gold { background: var(--gold); border-color: transparent; box-shadow: 0 20px 50px rgba(255,199,0,0.35); }
.pcard--gold:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 30px 70px rgba(255,199,0,0.5); }
.pcard--ink { background: var(--ink); border-color: transparent; }
.pcard--ink:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(11,11,11,0.45); border-color: transparent; }
.pcard--builder { background: var(--cream-2); border: 2px dashed #E5C435; }
.pcard--builder:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(229,196,53,0.25); border-color: #E5C435; }
.pcard--note { background: var(--cream-2); border: 2px dashed #E5C435; justify-content: center; gap: 14px; }
.pcard--note:hover { transform: none; box-shadow: none; }

.pcard__ribbon { position: absolute; top: -13px; left: 28px; background: var(--ink); color: var(--gold); font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; white-space: nowrap; }
.pcard__ribbon--gold { background: var(--gold); color: var(--ink-2); }
.pcard__eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #999; }
.pcard__eyebrow--mute { color: rgba(17,17,17,0.55); }
.pcard__eyebrow--gold { color: var(--gold); }
.pcard__eyebrow--amber { color: var(--gold-text); }
.pcard__name { font-family: var(--serif); font-weight: 800; font-size: 27px; margin: 12px 0 4px; color: var(--ink-2); }
.pcard__name--light { color: #F9F9F9; }
.pcard__name em { font-style: italic; color: var(--gold); }
.pcard__price { font-family: var(--serif); font-weight: 800; font-size: 44px; color: var(--ink-2); margin: 14px 0 4px; }
.pcard__price--light { color: #F9F9F9; }
.pcard__per { font-size: 12.5px; font-weight: 600; color: #999; }
.pcard__per--mute { color: rgba(17,17,17,0.55); }
.pcard__per--dim { color: rgba(249,249,249,0.5); }
.pcard__list { display: flex; flex-direction: column; gap: 13px; margin: 26px 0; flex: 1; }
.feat { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.45; color: #444; font-weight: 500; }
.feat--strong { color: var(--ink-2); font-weight: 600; }
.feat--light { color: rgba(249,249,249,0.85); }
.tick { flex: none; width: 19px; height: 19px; border-radius: 50%; font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.tick--soft { background: #FFF4CC; color: var(--gold-text); }
.tick--ink { background: var(--ink); color: var(--gold); }
.tick--glass { background: rgba(255,199,0,0.16); color: var(--gold); }
.pcard__cta { margin-top: auto; }

.pcard__buildersub { font-size: 13px; color: #888; font-weight: 600; margin-top: 6px; }
.builder__list { display: flex; flex-direction: column; gap: 6px; margin: 20px 0 6px; flex: 1; }
.builder__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 10px; margin: 0 -10px; border-radius: 12px; cursor: pointer; transition: background 0.25s; }
.builder__row:hover { background: rgba(255,199,0,0.12); }
.builder__name { font-size: 14px; font-weight: 700; color: #666; transition: color 0.25s; }
.builder__row.on .builder__name { color: var(--ink-2); }
.builder__price { font-size: 12px; font-weight: 600; color: #AAA; }
.builder__switch { flex: none; width: 44px; height: 24px; border-radius: 999px; background: #E4E4E4; transition: background 0.3s; position: relative; }
.builder__row.on .builder__switch { background: var(--gold); }
.builder__knob { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(11,11,11,0.25); transition: transform 0.3s var(--ease); }
.builder__row.on .builder__knob { transform: translateX(20px); }
.builder__total { border-top: 1.5px solid rgba(184,144,15,0.25); margin-top: 8px; padding-top: 16px; display: flex; align-items: baseline; justify-content: space-between; }
.builder__total-label { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #999; }
.builder__total-val { font-family: var(--serif); font-weight: 800; font-size: 36px; color: var(--ink-2); display: inline-block; }
.builder__total-val.pop { animation: pricePop 0.45s var(--ease); }
@keyframes pricePop { 0% { opacity: 0; transform: translateY(12px) scale(0.9); } 100% { opacity: 1; transform: none; } }
#builderBook { margin-top: 16px; }

.pcard__notequote { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 22px; color: var(--ink-2); line-height: 1.35; }
.pcard__notep { font-size: 14.5px; line-height: 1.65; color: #666; margin: 0; }

/* prep notes */
.prep { background: var(--cream); border-radius: 26px; padding: 48px 44px; margin-top: 72px; }
.prep__head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.prep__head h3 { margin: 0; font-size: 30px; }
.prep__tag { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-text); }
.prep__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px 36px; margin-top: 30px; }
.prep__item { display: flex; gap: 13px; align-items: flex-start; font-size: 14.5px; line-height: 1.6; color: #444; font-weight: 500; }
.prep__item span { flex: none; }

/* ============ ABOUT ============ */
.about { position: relative; background: var(--ink); padding: 140px 6vw; overflow: hidden; }
.about__glow { position: absolute; top: 80px; right: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,199,0,0.18), rgba(255,199,0,0)); filter: blur(50px); pointer-events: none; }
.about__grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 64px; align-items: center; max-width: 1280px; }
.about__p { font-size: 16.5px; line-height: 1.75; color: rgba(249,249,249,0.72); margin: 22px 0 0; text-wrap: pretty; }
.about__quote { border-left: 3px solid var(--gold); padding: 4px 0 4px 22px; margin: 30px 0 0; }
.about__quote p { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.6; color: #F9F9F9; margin: 0; text-wrap: pretty; }
.about__quote cite { display: block; font-style: normal; font-size: 12.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(249,249,249,0.5); margin-top: 14px; }
.about__pets { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.petcard { margin: 0; border-radius: 22px; overflow: hidden; background: #1a1a1a; }
.petcard--offset { transform: translateY(26px); }
.petcard img { width: 100%; height: 340px; object-fit: cover; }
.petcard figcaption { padding: 16px 18px; }
.petcard__name { font-family: var(--serif); font-weight: 700; font-size: 18px; color: #F9F9F9; }
.petcard__role { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }

/* ============ FAMILY ALBUM ============ */
.album { background: #fff; padding: 140px 6vw; }
.album__head { max-width: 720px; }
.album__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 18px; margin-top: 60px; }
.album__tile { position: relative; margin: 0; border-radius: 22px; overflow: hidden; background: #eee; }
.album__tile--tall { grid-row: span 2; }
.album__tile--wide { grid-column: span 2; }
.album__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.album__tile:hover img { transform: scale(1.06); }
.album__tile figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; background: linear-gradient(transparent, rgba(11,11,11,0.78)); color: #fff; }
.album__tile figcaption b { font-family: var(--serif); font-size: 20px; display: block; }
.album__tile figcaption span { font-size: 13px; color: rgba(255,255,255,0.82); font-style: italic; }

/* ============ NOTICE ============ */
.notice { background: var(--gold); padding: 110px 6vw; }
.notice__inner { max-width: 860px; margin: 0 auto; text-align: center; }
.notice__logo { width: 64px; height: 64px; object-fit: contain; margin: 0 auto; }
.notice__title { font-family: var(--serif); font-weight: 800; font-size: clamp(32px, 3.4vw, 46px); line-height: 1.15; letter-spacing: -0.01em; color: var(--ink-2); margin: 26px 0 0; text-wrap: balance; }
.notice__title em { font-style: italic; }
.notice__p { font-size: 16.5px; line-height: 1.7; color: rgba(17,17,17,0.75); margin: 24px auto 0; max-width: 640px; font-weight: 500; text-wrap: pretty; }
.notice__warn { font-size: 15px; line-height: 1.6; color: var(--ink-2); font-weight: 700; margin: 18px auto 0; max-width: 640px; }
.notice__btns { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

/* ============ BOUTIQUE ============ */
.boutique { background: var(--ink); padding: 140px 0 150px; overflow: hidden; }
.boutique__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; padding: 0 6vw; flex-wrap: wrap; }
.boutique__sub { font-size: 17px; line-height: 1.65; color: rgba(249,249,249,0.62); margin: 18px 0 0; max-width: 620px; text-wrap: pretty; }
.boutique__hint { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(249,249,249,0.4); padding-bottom: 8px; white-space: nowrap; }
.boutique__rail { display: flex; gap: 24px; overflow-x: auto; padding: 56px 6vw 30px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.boutique__rail::-webkit-scrollbar { display: none; }
.shop { flex: none; width: 330px; scroll-snap-align: start; background: #141414; border: 1px solid #242424; border-radius: 20px; overflow: hidden; transition: all 0.4s var(--ease); cursor: pointer; }
.shop:hover { transform: translateY(-8px); border-color: #3a3a3a; box-shadow: 0 28px 60px rgba(0,0,0,0.55); }
.shop__img { position: relative; height: 280px; overflow: hidden; background: #1d1d1d; }
.shop__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.shop:hover .shop__img img { transform: scale(1.07); }
.shop__cta { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; gap: 10px; opacity: 0; transform: translateY(14px); transition: opacity 0.35s, transform 0.45s var(--ease); }
.shop:hover .shop__cta { opacity: 1; transform: none; }
.shop__add { flex: 1; text-align: center; background: var(--gold); color: var(--ink-2); font-weight: 800; font-size: 13px; padding: 12px 0; border-radius: 999px; border: none; cursor: pointer; font-family: var(--sans); transition: filter .2s; }
.shop__add:hover { filter: brightness(.95); }
.shop__vidtag { position: absolute; top: 12px; right: 12px; background: rgba(11,11,11,.7); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.nav__cart { margin-left: 2px; color: var(--ink-2); }
.accbtn { display: grid; place-items: center; padding: 6px; color: var(--ink-2); transition: color .2s; }
.accbtn svg { width: 23px; height: 23px; }
.accbtn:hover { color: var(--gold); }
.nav__acc { margin-left: auto; }
.shop__view { flex: none; text-align: center; background: rgba(11,11,11,0.75); backdrop-filter: blur(6px); color: #F9F9F9; font-weight: 700; font-size: 13px; padding: 12px 18px; border-radius: 999px; border: 1px solid rgba(249,249,249,0.25); }
.shop__body { padding: 22px 22px 24px; }
.shop__cat { font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(249,249,249,0.4); }
.shop__body h3 { font-family: var(--serif); font-weight: 700; font-size: 21px; color: #F9F9F9; margin: 8px 0 6px; }
.shop__body p { font-size: 13.5px; line-height: 1.55; color: rgba(249,249,249,0.55); margin: 0 0 14px; }
.shop__price { font-weight: 800; font-size: 17px; color: var(--gold); }

/* ============ REVIEWS ============ */
.reviews { position: relative; background: #fff; padding: 140px 6vw; overflow: hidden; }
.reviews__glow { position: absolute; bottom: 40px; left: -130px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(255,199,0,0.2), rgba(255,199,0,0)); filter: blur(50px); pointer-events: none; }
.reviews__head { position: relative; max-width: 720px; }
.reviews__masonry { column-count: 3; column-gap: 22px; column-width: 300px; margin-top: 60px; }
.review { break-inside: avoid; margin-bottom: 22px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px; transition: all 0.4s var(--ease); }
.review:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(11,11,11,0.1); border-color: #DDD; }
.review--ink { background: var(--ink); border-color: transparent; }
.review--ink:hover { box-shadow: 0 24px 56px rgba(11,11,11,0.35); }
.review--ink p { color: rgba(249,249,249,0.85); }
.review--ink b { color: #F9F9F9; }
.review--ink span { color: var(--gold); }
.review--cream { background: #FFF8E0; border-color: #F2E3A8; }
.review--cream:hover { box-shadow: 0 20px 48px rgba(229,196,53,0.25); }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; }
.stars--amber { color: var(--gold-deep); }
.review p { font-size: 15px; line-height: 1.7; color: #333; margin: 16px 0 20px; text-wrap: pretty; }
.review__by { display: flex; align-items: center; gap: 12px; }
.review__by img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: #eee; }
.review__by b { font-weight: 800; font-size: 14px; color: var(--ink-2); display: block; }
.review__by span { font-size: 12px; font-weight: 700; color: var(--gold-text); }

/* ============ BOOK ============ */
.book { background: var(--ink); padding: 140px 6vw; }
.book__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: start; max-width: 1280px; margin: 0 auto; }
.book__lead { font-size: 17px; line-height: 1.7; color: rgba(249,249,249,0.7); margin: 22px 0 0; text-wrap: pretty; }
.book__perks { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.book__perks li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: rgba(249,249,249,0.85); }
.book__perks span { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,199,0,0.16); color: var(--gold); font-size: 12px; font-weight: 800; display: grid; place-items: center; }
.book__alt { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.book__form { background: var(--cream-2); border-radius: 26px; padding: 36px; display: grid; gap: 16px; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.book__form label { font-size: 12.5px; font-weight: 800; letter-spacing: 0.04em; color: var(--ink-2); display: grid; gap: 7px; }
.book__form input, .book__form select, .book__form textarea {
  font-family: var(--sans); font-size: 15px; font-weight: 500; padding: 13px 15px;
  border: 1.5px solid #E2DFD4; border-radius: 13px; background: #fff; width: 100%; color: var(--ink-2);
}
.book__form input:focus, .book__form select:focus, .book__form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,199,0,0.22); }
.book__form textarea { resize: vertical; }
.form__status { min-height: 22px; text-align: center; font-weight: 700; font-size: 14px; margin: 2px 0 0; }
.form__status.ok { color: #1c7d3a; }
.form__status.err { color: #c62828; }

/* ============ BOOK CTA BAND ============ */
.bookcta { background: var(--ink); padding: 130px 6vw; text-align: center; }
.bookcta__inner { max-width: 760px; margin: 0 auto; }
.bookcta__lead { font-size: 17px; line-height: 1.7; color: rgba(249,249,249,0.7); margin: 22px auto 0; max-width: 600px; text-wrap: pretty; }
.bookcta__perks { list-style: none; padding: 0; margin: 28px 0 0; display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.bookcta__perks li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: rgba(249,249,249,0.85); }
.bookcta__perks span { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,199,0,0.16); color: var(--gold); font-size: 12px; font-weight: 800; display: grid; place-items: center; }
.bookcta__btns { display: flex; gap: 14px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.bookcta__btns .btn--gold { padding: 18px 38px; }

/* ============ FOOTER ============ */
.footer { background: var(--ink); padding: 110px 6vw 40px; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 56px; max-width: 1280px; }
.footer__brand { display: flex; align-items: center; gap: 13px; }
.footer__brand img { width: 48px; height: 48px; object-fit: contain; }
.footer__brand span { font-family: var(--serif); font-weight: 800; font-size: 26px; letter-spacing: -0.5px; color: #F9F9F9; white-space: nowrap; }
.footer__tag { font-family: var(--serif); font-style: italic; font-size: 16px; color: rgba(249,249,249,0.6); margin: 16px 0 26px; line-height: 1.6; }
.footer__contact { font-size: 14px; line-height: 1.9; color: rgba(249,249,249,0.55); font-weight: 500; }
.footer__contact a { color: rgba(249,249,249,0.75); }
.footer__contact a:hover { color: var(--gold); }
.footer__h { font-size: 11.5px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer__links { display: flex; flex-direction: column; gap: 13px; }
.footer__links a, .footer__links span { font-size: 14.5px; font-weight: 600; color: rgba(249,249,249,0.7); transition: color 0.25s; }
.footer__links a:hover { color: var(--gold); }
.footer__news p { font-size: 14px; color: rgba(249,249,249,0.55); margin: 0 0 18px; line-height: 1.6; }
.footer__form { display: flex; gap: 10px; }
.footer__form input { flex: 1; min-width: 0; background: #161616; border: 1px solid #2A2A2A; border-radius: 999px; padding: 14px 20px; color: #F9F9F9; font-family: var(--sans); font-size: 13.5px; font-weight: 500; outline: none; }
.footer__form input:focus { border-color: var(--gold); }
.footer__form button { flex: none; background: var(--gold); color: var(--ink-2); border: none; font-family: var(--sans); font-weight: 800; font-size: 13.5px; padding: 14px 22px; border-radius: 999px; cursor: pointer; white-space: nowrap; box-shadow: 0 10px 26px rgba(255,199,0,0.3); transition: all 0.3s; }
.footer__form button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,199,0,0.45); }
.footer__base { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-top: 1px solid #1E1E1E; margin-top: 80px; padding-top: 28px; }
.footer__base span { font-size: 12.5px; font-weight: 600; color: rgba(249,249,249,0.4); }
.footer__base-italic { font-family: var(--serif); font-style: italic; font-size: 13px !important; }

/* ============ FAB ============ */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,0.45); transition: transform 0.3s var(--ease); }
.fab:hover { transform: scale(1.08); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .album__grid { grid-template-columns: repeat(2, 1fr); }
  .album__tile--wide { grid-column: span 2; }
  .album__tile--tall { grid-row: span 1; }
}
@media (max-width: 920px) {
  .nav { padding: 14px 24px; }
  .nav__links { position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 320px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px; background: var(--paper); padding: 40px; transform: translateX(100%); transition: transform 0.4s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,0.12); }
  .nav.open .nav__links { transform: none; }
  .nav__burger { display: flex; z-index: 101; }
  .nav.open .nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .book__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  .hero { padding: 120px 24px 50px; gap: 36px; grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(44px, 12vw, 60px); }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__pets { grid-template-columns: 1fr 1fr; }
  .petcard--offset { transform: none; }
  .promise, .pkg, .about, .album, .reviews, .book { padding-left: 24px; padding-right: 24px; }
  .notice { padding-left: 24px; padding-right: 24px; }
  .reviews__masonry { column-count: 1; }
  .album__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .album__tile--wide { grid-column: span 1; }
  .prep { padding: 36px 26px; }
  .frow { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 46px; }
  .hero__photo img { height: 56vh; min-height: 360px; }
  .pkg__tabs { width: 100%; }
  .pkg__tab { flex: 1; padding: 13px 0; }
}
