/* =========================================================
   My Dog Is My Best Friend — Pacific Northwest Quiet Luxury
   ========================================================= */

:root {
  --ivory: #F7F2E9;
  --forest: #1B3A2F;
  --gold: #C4A35A;
  --charcoal: #1F1F1F;
  --sage: #D8E2D6;
  --clay: #B56B5C;
  --night: #0F241C;
  --white: #FFFFFF;
  --forest-soft: rgba(27, 58, 47, 0.08);
  --gold-soft: rgba(196, 163, 90, 0.18);
  --shadow-sm: 0 2px 12px rgba(15, 36, 28, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 36, 28, 0.10);
  --shadow-lg: 0 24px 64px rgba(15, 36, 28, 0.16);
  --radius: 4px;
  --radius-lg: 12px;
  --nav-h: 4.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --max: 72rem;
  --text: var(--charcoal);
  --muted: rgba(31, 31, 31, 0.68);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button,
input {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 9999;
  background: var(--forest);
  color: var(--ivory);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1rem;
}

.eyebrow--on-dark {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--forest);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
}

.section-title--light {
  color: var(--ivory);
}

.section-title--light em {
  color: var(--sage);
}

.lede {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 38rem;
}

.lede--light {
  color: rgba(247, 242, 233, 0.82);
}

.section-intro {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin-inline: auto;
}

.gold-rule {
  width: 3.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(196, 163, 90, 0.2));
  margin-bottom: 1.5rem;
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section--sage {
  background: var(--sage);
}

.section--dark {
  background: var(--night);
  color: rgba(247, 242, 233, 0.88);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-intro {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--forest);
  color: var(--ivory);
  border: 1px solid var(--forest);
  box-shadow: 0 4px 20px rgba(27, 58, 47, 0.22);
}

.btn--primary:hover {
  background: var(--night);
  border-color: var(--night);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15, 36, 28, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(247, 242, 233, 0.45);
}

.btn--ghost:hover {
  background: rgba(247, 242, 233, 0.1);
  border-color: var(--ivory);
  transform: translateY(-2px);
}

.btn--sm {
  min-height: 2.5rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.8125rem;
}

.btn--block {
  width: 100%;
}

.text-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.text-link:hover {
  border-bottom-color: var(--gold);
  color: var(--night);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(247, 242, 233, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(27, 58, 47, 0.08), var(--shadow-sm);
}

.site-header.is-scrolled .nav__logo-mark {
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  gap: 1.5rem;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 1002;
  max-width: min(52vw, 18rem);
}

.nav__logo-mark {
  height: 2.65rem;
  width: 2.65rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px rgba(196, 163, 90, 0.55);
  transition: filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--ivory);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s var(--ease);
}

.nav__logo-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(247, 242, 233, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s var(--ease);
}

.site-header.is-scrolled .nav__logo-name {
  color: var(--forest);
}

.site-header.is-scrolled .nav__logo-tag {
  color: var(--muted);
}

/* Transparent nav over dark hero: soft drop shadow on mark */
.site-header:not(.is-scrolled) .nav__logo-mark {
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.35));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.75rem;
}

.nav__links a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ivory);
  padding: 0.35rem 0;
  transition: color 0.3s var(--ease);
}

.site-header.is-scrolled .nav__links a {
  color: var(--forest);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  z-index: 1002;
  padding: 0.5rem;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ivory);
  border-radius: 1px;
  transition:
    transform 0.35s var(--ease),
    opacity 0.25s var(--ease),
    background 0.3s var(--ease);
  transform-origin: center;
}

.site-header.is-scrolled .nav__toggle-bar {
  background: var(--forest);
}

.site-header.nav-open .nav__toggle-bar {
  background: var(--forest);
}

.site-header.nav-open .nav__toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.site-header.nav-open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 2rem) 0 4.5rem;
  color: var(--ivory);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  will-change: transform;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 36, 28, 0.45) 0%,
      rgba(15, 36, 28, 0.25) 35%,
      rgba(15, 36, 28, 0.55) 70%,
      rgba(15, 36, 28, 0.88) 100%
    ),
    linear-gradient(
      90deg,
      rgba(15, 36, 28, 0.55) 0%,
      rgba(15, 36, 28, 0.15) 55%,
      transparent 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  max-width: 42rem;
  animation: heroIn 1.1s var(--ease) both;
}

.hero__eyebrow {
  color: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: rgba(247, 242, 233, 0.88);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-chips li {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(196, 163, 90, 0.45);
  border-radius: 999px;
  color: rgba(247, 242, 233, 0.9);
  background: rgba(15, 36, 28, 0.25);
  backdrop-filter: blur(6px);
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Proof strip ---------- */
.proof-strip {
  background: var(--forest);
  color: var(--ivory);
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(196, 163, 90, 0.25);
}

.proof-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 3rem;
  text-align: center;
}

.proof-strip__item {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.proof-strip__mark {
  color: var(--gold);
  font-size: 0.65rem;
}

/* ---------- Promise ---------- */
.promise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.promise__copy p {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 34rem;
}

.promise__copy .lede {
  color: var(--charcoal);
  opacity: 0.85;
}

.promise__figure {
  position: relative;
}

.promise__figure img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.promise__caption {
  margin-top: 0.85rem;
  font-size: 0.875rem;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- Products ---------- */
.collection {
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.collection:last-of-type {
  margin-bottom: 2rem;
}

.collection__intro {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.collection__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--white);
  border: 1px solid rgba(27, 58, 47, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.collection__badge--gold {
  color: var(--night);
  background: var(--gold-soft);
  border-color: rgba(196, 163, 90, 0.45);
}

.collection__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.65rem;
}

.collection__desc {
  color: var(--muted);
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 58, 47, 0.06);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-md);
}

.product-card--dark {
  background: var(--ivory);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ebe4d8;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.product-card__media--alt img {
  object-position: center 40%;
}

.product-card__media--warm {
  background: #e8dfd0;
}

.product-card__status {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(247, 242, 233, 0.92);
  color: var(--forest);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 163, 90, 0.35);
}

.product-card__body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.product-card__meta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.product-card__copy {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(27, 58, 47, 0.08);
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
}

.safety-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ---------- Craft ---------- */
.craft-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  counter-reset: none;
}

.craft-step {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(27, 58, 47, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.craft-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.craft-step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
  display: block;
  margin-bottom: 1rem;
}

.craft-step__icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--forest);
  margin-bottom: 1rem;
}

.craft-step__icon svg {
  width: 100%;
  height: 100%;
}

.craft-step__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.65rem;
}

.craft-step__copy {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

.craft-quote {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(196, 163, 90, 0.4);
  border-bottom: 1px solid rgba(196, 163, 90, 0.4);
}

.craft-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--forest);
}

/* ---------- Founder ---------- */
.founder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.founder__photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.founder__copy p {
  margin-bottom: 1rem;
  color: rgba(247, 242, 233, 0.78);
}

.founder__quote {
  margin-top: 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(196, 163, 90, 0.35);
}

.founder__quote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ivory);
  margin-bottom: 0.85rem;
}

.founder__quote cite {
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Sourcing ---------- */
.sourcing {
  position: relative;
  min-height: 28rem;
  display: flex;
  align-items: center;
  padding: clamp(5rem, 12vw, 8rem) 0;
  color: var(--ivory);
  overflow: hidden;
}

.sourcing__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sourcing__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sourcing__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 36, 28, 0.55) 0%,
      rgba(15, 36, 28, 0.72) 100%
    );
}

.sourcing__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.sourcing__lede {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(247, 242, 233, 0.88);
  margin-bottom: 2rem;
}

.sourcing__cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.sourcing__cities li {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(196, 163, 90, 0.5);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(15, 36, 28, 0.3);
  backdrop-filter: blur(6px);
}

/* ---------- Guarantees ---------- */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.guarantee-card {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(27, 58, 47, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.guarantee-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.guarantee-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--gold);
  margin-bottom: 1.15rem;
}

.guarantee-card__icon svg {
  width: 100%;
  height: 100%;
}

.guarantee-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.55rem;
}

.guarantee-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Waitlist ---------- */
.waitlist__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

.waitlist__perks {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.waitlist__perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--charcoal);
}

.waitlist__perk-mark {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--ivory);
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

.waitlist__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(27, 58, 47, 0.08);
  position: relative;
  min-height: 22rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--forest);
}

.field__optional {
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.req {
  color: var(--clay);
}

.field input {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  background: var(--ivory);
  border: 1px solid rgba(27, 58, 47, 0.15);
  border-radius: var(--radius);
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}

.field input::placeholder {
  color: rgba(31, 31, 31, 0.4);
}

.field input:hover {
  border-color: rgba(27, 58, 47, 0.3);
}

.field input:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(27, 58, 47, 0.12);
  background: var(--white);
}

.field input.is-invalid {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(181, 107, 92, 0.15);
}

.field__error {
  font-size: 0.8125rem;
  color: var(--clay);
  min-height: 1.1em;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
  margin-top: -0.25rem;
}

/* Success state */
.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  min-height: 18rem;
  animation: fadeUp 0.6s var(--ease) both;
}

.waitlist-success[hidden] {
  display: none;
}

.waitlist-success__mark {
  width: 4rem;
  height: 4rem;
  color: var(--forest);
  margin-bottom: 1.25rem;
}

.waitlist-success__mark svg {
  width: 100%;
  height: 100%;
}

.waitlist-success__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.waitlist-success__copy {
  color: var(--muted);
  max-width: 22rem;
  margin-bottom: 0.75rem;
}

.waitlist-success__dog {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-top: 0.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--night);
  color: rgba(247, 242, 233, 0.78);
  padding-top: 3.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__logo {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 1rem;
  background: var(--ivory);
  padding: 0.35rem;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.35rem;
}

.footer__slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.5rem;
}

.footer__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(247, 242, 233, 0.75);
  transition: color 0.3s var(--ease);
  width: fit-content;
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__meta {
  padding-top: 0.5rem;
  font-size: 0.9rem;
}

.footer__meta a {
  color: var(--ivory);
  border-bottom: 1px solid rgba(196, 163, 90, 0.4);
  transition: border-color 0.3s var(--ease);
}

.footer__meta a:hover {
  border-bottom-color: var(--gold);
}

.footer__safety {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: rgba(247, 242, 233, 0.5);
  font-style: italic;
}

.footer__bottom {
  border-top: 1px solid rgba(247, 242, 233, 0.1);
  padding: 1.25rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(247, 242, 233, 0.5);
}

.footer__quiet {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(196, 163, 90, 0.7);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal--delay-2 {
  transition-delay: 0.22s;
}

.reveal--delay-3 {
  transition-delay: 0.32s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__img {
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .craft-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid .product-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(247, 242, 233, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.4s var(--ease),
      visibility 0.4s var(--ease);
    z-index: 1001;
  }

  .site-header.nav-open .nav__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__links {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .nav__links a {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--forest) !important;
    letter-spacing: 0.02em;
    padding: 0.5rem 1rem;
  }

  .nav__cta {
    margin-top: 0.5rem;
  }

  /* On mobile, logo always readable */
  .site-header:not(.is-scrolled) .nav__logo-mark {
    filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.45));
  }

  .nav__logo-tag {
    display: none;
  }

  .promise__grid,
  .founder__grid,
  .waitlist__layout {
    grid-template-columns: 1fr;
  }

  .founder__photo {
    order: -1;
  }

  .hero {
    align-items: flex-end;
    min-height: 92vh;
    min-height: 92dvh;
    padding-bottom: 3rem;
  }

  .hero__title {
    font-size: clamp(2.4rem, 10vw, 3.25rem);
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 1.75rem, var(--max));
  }

  .product-grid,
  .craft-steps,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .product-grid .product-card:last-child {
    max-width: none;
    grid-column: auto;
  }

  .form-row--split {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .proof-strip__inner {
    gap: 0.75rem 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .trust-chips {
    gap: 0.5rem;
  }

  .trust-chips li {
    font-size: 0.65rem;
    padding: 0.4rem 0.7rem;
  }

  .nav__logo-mark {
    height: 2.25rem;
    width: 2.25rem;
  }

  .nav__logo-name {
    font-size: 0.92rem;
  }
}

/* High-contrast tweak for hero CTAs on very light images */
@supports (color: color-mix(in srgb, white 50%, black)) {
  .btn--ghost {
    background: color-mix(in srgb, var(--night) 25%, transparent);
  }
}
