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

:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --color-gold:  #C9A97A;
  --color-cream: #D8CEB8;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.9; }
}

html, body { width: 100%; height: 100%; overflow: hidden; background: #080808; touch-action: none; }

#viewport { position: fixed; inset: 0; overflow: hidden; }

#track {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

.section {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.62);
  z-index: 1;
}

/* ── Navigation arrows ── */
.nav-arrow {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  background: none; border: none; cursor: pointer;
  padding: 0.5rem;
  color: var(--color-gold);
  font-size: 1.8rem;
  z-index: 10;
  animation: bob 2.4s ease-in-out infinite;
  line-height: 1;
}
.nav-arrow.up   { top: 1rem; }
.nav-arrow.down { bottom: 1rem; }
.nav-arrow:hover { opacity: 1 !important; }

/* ── Home link ── */
.home-nav {
  position: fixed; top: 1.25rem; left: 1.5rem; z-index: 50;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(216,206,184,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.home-nav:hover { color: var(--color-gold); }

/* ── Shared headings — match homepage exactly ── */
.site-h2 {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.4vw, 1.1rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.3;
  color: rgba(216,206,184,0.6);
  margin: 0 0 0.4rem;
  text-align: center;
}

.site-h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  font-weight: 600;
  font-style: italic;
  color: rgba(216,206,184,0.85);
  line-height: 1.4;
  margin: 0;
  text-align: center;
  text-shadow: 0 0 4px rgba(216,206,184,0.5), 0 0 8px rgba(216,206,184,0.35), 0 0 12px rgba(216,206,184,0.25);
}

/* ── Hero ── */
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 0.75rem;
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  color: var(--color-cream);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-rule { width: 48px; height: 1px; background: rgba(216,206,184,0.2); margin: 0.5rem 0; }

/* ── Section content + card ── */
.section-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem;
}

.card-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

.text-card {
  background: rgba(21,14,1,0.65);
  border: 0.25px solid rgba(118,88,19,0.4);
  padding: 3rem 4rem;
  width: 75vw;
  display: flex; flex-direction: column;
  gap: 1.2rem;
  text-align: center;
}

.card-headings { display: flex; flex-direction: column; gap: 0.35rem; }

/* ── Body text — match homepage Inter style ── */
.welcome-body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(216,206,184,0.8);
  margin: 0;
  text-align: center;
}

.body-italic {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(216,206,184,0.75);
  line-height: 1.6;
  text-align: center;
}

/* ── Price ── */
.reading-price {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: rgba(216,206,184,0.7);
  text-transform: uppercase;
}

/* ── Button — matches homepage .section-cta-btn exactly ── */
.btn-primary {
  display: inline-block;
  background: rgba(216,206,184,0.92);
  color: #080808;
  border: none;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  align-self: center;
  margin-top: 0.75rem;
  transition: background 0.25s ease;
}
.btn-primary:hover { background: rgba(216,206,184,1); }

/* ── Simple bullet list (mobile) ── */
.list-items { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.list-items li {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(216,206,184,0.8);
  text-align: center;
}

/* ── Detailed list with descriptions (desktop) ── */
.list-items-desc { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.list-items-desc li {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(216,206,184,0.8);
  text-align: center;
}
.list-items-desc li strong { font-weight: 600; color: var(--color-cream); }

/* ── Sample reading grid ── */
.sample-grid { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.sample-item {
  width: clamp(140px, 16vw, 200px);
  border: 1px solid rgba(201,169,122,0.18);
  padding: 1.75rem 1.25rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.85rem;
}
.sample-num {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,169,122,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 0.58rem;
  color: var(--color-gold); letter-spacing: 0.2em;
}
.dog-name { font-family: var(--font-sans); font-size: 0.58rem; color: rgba(216,206,184,0.5); letter-spacing: 0.1em; text-transform: uppercase; text-align: center; }
.coming-soon { font-family: var(--font-sans); font-size: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(216,206,184,0.25); }

/* ── Responsive content show/hide ── */
.m-only { display: none; }
.d-only { display: block; }

@media (max-width: 768px) {
  .m-only { display: block; }
  .d-only { display: none; }
  .site-h2 { font-size: 0.85rem; line-height: 1.65; }
  .site-h3 { font-size: clamp(1.2rem, 5vw, 1.6rem); padding: 0 1rem; }
  .text-card { width: 92vw; padding: 1.75rem 1.5rem; gap: 1rem; }
  .welcome-body { font-size: 1rem; line-height: 1.7; }
  .list-items li { font-size: 1rem; line-height: 1.7; }
  .list-items-desc li { font-size: 1rem; }
  .sample-grid { gap: 0.75rem; }
  .sample-item { width: clamp(120px, 36vw, 160px); padding: 1.25rem 1rem; }
}
