/* =========================================================================
   NIDDO — niddobond.com
   Brand Site Stylesheet
   ========================================================================= */

/* --- Brand tokens --------------------------------------------------------- */
:root {
  --obsidian: #1C1814;
  --linen:    #F7F2EA;
  --ember:    #BF7848;
  --stone:    #8C8279;
  --sand:     #D9CCBA;
  --paper:    #F7F2EA;

  --font-brand: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:  'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --maxw: 1280px;
  --gutter-d: 64px;
  --gutter-t: 40px;
  --gutter-m: 24px;
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--obsidian);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* --- Header --------------------------------------------------------------- */
.site-header {
  background: var(--linen);
  border-bottom: 1px solid rgba(28, 24, 20, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter-d);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
}
.nav-links a.is-active,
.nav-links a:hover {
  border-bottom-color: var(--obsidian);
  font-weight: 700;
}

.site-header__logo { display: flex; justify-content: center; align-items: center; }
.site-header__logo img { height: 62px; width: auto; }

.header-right {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 1.2px solid var(--obsidian);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--obsidian);
  transition: background 200ms ease, color 200ms ease;
}
.icon-btn:hover { background: var(--obsidian); color: var(--linen); }
.icon-btn:active { background: var(--ember); color: var(--linen); border-color: var(--ember); }
.icon-btn svg { display: block; }

/* nav-links__socials lives inside the mobile drawer; hidden on desktop */
.nav-links__socials { display: none; }

/* mobile nav */
.nav-toggle { display: none; }
@media (max-width: 880px) {
  .site-header__inner {
    /* 4 grid items on mobile: nav-toggle | nav (drawer host, 0px) | logo | header-right */
    grid-template-columns: auto 0 1fr auto;
    padding: 14px var(--gutter-m);
    gap: 12px;
  }
  .site-header__inner > nav { min-width: 0; }
  .site-header__logo { justify-content: center; min-width: 0; }
  .site-header__logo img {
    height: 44px;
    max-width: 100%;
    object-fit: contain;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 90;
    flex-direction: column;
    gap: 0;
    background: var(--linen);
    border-bottom: 1px solid rgba(28, 24, 20, 0.12);
    padding: 8px 0 24px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a:not(.icon-btn) {
    display: block;
    padding: 14px var(--gutter-m);
    border-bottom: none !important;
    font-size: 16px;
  }
  /* social icons inside mobile drawer */
  .nav-links__socials {
    display: flex !important;
    gap: 16px;
    padding: 16px var(--gutter-m) 20px;
    margin-top: 8px;
    border-top: 1px solid rgba(28, 24, 20, 0.08);
  }
  .nav-links__socials .icon-btn {
    width: 44px;
    height: 44px;
  }
  /* enlarge touch target on tap-toggle */
  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    order: -1;
    margin-left: -8px; /* visually align edge while keeping hit area */
  }
  .nav-toggle svg { width: 20px; height: 20px; }
  /* hide the desktop-row social icons on mobile (they live in the drawer instead) */
  .header-right__social { display: none; }
  /* keep the Amazon shop icon visible on mobile, enlarge for touch */
  .header-right .icon-btn:not(.header-right__social) {
    width: 44px;
    height: 44px;
  }
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}
.btn-primary { background: var(--obsidian); color: var(--linen); }
.btn-primary:hover { background: var(--ember); }
.btn-outline { background: transparent; color: var(--obsidian); border: 1.5px solid var(--obsidian); }
.btn-outline:hover { background: var(--obsidian); color: var(--linen); }

/* --- Type utilities ------------------------------------------------------- */
.label {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ember);
}
.label--ink { color: var(--obsidian); }
.label--stone { color: var(--stone); }

.eyebrow {
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--obsidian);
}

p { line-height: 1.65; color: var(--obsidian); }

/* --- Image placeholder --------------------------------------------------- */
.ph {
  position: relative;
  background: linear-gradient(135deg, #cdc3b3 0%, #b9ad99 50%, #cdc3b3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2px;
}
.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(28,24,20,0.04) 0 1px, transparent 1px 16px);
  pointer-events: none;
}
.ph__hint {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28, 24, 20, 0.55);
  text-align: center;
  padding: 12px 16px;
  position: relative;
  z-index: 1;
}
.ph__hint span { display: block; }
.ph__hint .ph__icon {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  border: 1.4px solid rgba(28, 24, 20, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
}
.hero__media {
  height: clamp(380px, 58vh, 580px);
  width: 100%;
  border-radius: 0;
}
/* keep the placeholder hint anchored near the top so it never sits behind
   the bottom title card (placeholder-phase only — gone once a photo loads) */
.hero__media.ph { align-items: flex-start; }
.hero__media .ph__hint { padding-top: 40px; }
.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px var(--gutter-d);
  pointer-events: none;
}
.hero__overlay > * { pointer-events: auto; }
.hero__title-card {
  background: rgba(251, 248, 242, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 22px 26px;
  max-width: 560px;
  border-left: 3px solid var(--ember);
}
.hero__label {
  margin-bottom: 14px;
  text-shadow: 0 0 12px var(--linen);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero__cta { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .hero__overlay { padding: 32px var(--gutter-m); }
  .hero__title-card { padding: 20px 22px; }
  .hero h1 { font-size: clamp(30px, 8vw, 44px); }
}

/* --- Pull quote ---------------------------------------------------------- */
.pullquote {
  padding: 72px var(--gutter-d) 60px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.pullquote__dot {
  width: 8px; height: 8px;
  background: var(--ember);
  border-radius: 50%;
  margin: 0 auto 24px;
}
.pullquote p {
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.3;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 28px;
  color: var(--obsidian);
  text-wrap: balance;
}
.pullquote__attr {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--stone);
}

/* --- Featured product ---------------------------------------------------- */
.featured {
  border-top: 1px solid var(--obsidian);
  border-bottom: 1px solid var(--obsidian);
  background: var(--paper);
  padding: 68px var(--gutter-d);
}
.featured__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.featured__copy .label { display: inline-block; margin-bottom: 16px; }
.featured__copy h2 {
  font-size: clamp(25px, 3vw, 36px);
  margin-bottom: 24px;
}
.featured__copy p { font-size: 16px; margin-bottom: 18px; max-width: 520px; }
.featured__cta { margin-top: 16px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.featured__price { font-size: 13px; color: var(--stone); letter-spacing: 0.05em; }
.featured__media { aspect-ratio: 4/5; max-height: clamp(380px, 56vh, 560px); }

@media (max-width: 880px) {
  .featured { padding: 56px var(--gutter-m); }
  .featured__grid { grid-template-columns: 1fr; gap: 32px; }
  .featured__media { aspect-ratio: 4/3; }
}

/* --- Moments ------------------------------------------------------------- */
.moments {
  padding: 72px var(--gutter-d);
  max-width: var(--maxw);
  margin: 0 auto;
}
.moments__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.moments h2 {
  font-size: clamp(22px, 2.2vw, 27px);
  max-width: 520px;
}
.moments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.moment__media { aspect-ratio: 4/5; margin-bottom: 18px; }
.moment .label { display: block; margin-bottom: 10px; font-size: 10px; }
.moment p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--obsidian);
  text-wrap: pretty;
}

@media (max-width: 1000px) {
  .moments { padding: 72px var(--gutter-t); }
  .moments__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .moments { padding: 56px var(--gutter-m); }
  .moments__grid { grid-template-columns: 1fr; }
}

/* --- Brand close (homepage closer) --------------------------------------- */
.close {
  background: var(--obsidian);
  color: var(--linen);
  padding: 84px var(--gutter-d);
  text-align: center;
}
.close__inner {
  max-width: 760px;
  margin: 0 auto;
}
.close__eyebrow {
  color: var(--ember);
  display: inline-block;
  margin-bottom: 24px;
}
.close h2 {
  color: var(--linen);
  font-size: clamp(25px, 3vw, 37px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 40px;
  text-wrap: balance;
}
.close__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.close__follow {
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sand);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 200ms ease;
}
.close__follow strong { color: var(--linen); font-weight: 600; }
.close__follow:hover { color: var(--ember); }
.close__follow:hover strong { color: var(--ember); }

.btn-primary-inverse {
  background: var(--linen);
  color: var(--obsidian);
}
.btn-primary-inverse:hover { background: var(--ember); color: var(--linen); }

@media (max-width: 880px) {
  .close { padding: 80px var(--gutter-m); }
}

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  padding: 64px var(--gutter-d) 32px;
  background: var(--linen);
  border-top: 1px solid rgba(28, 24, 20, 0.12);
}
.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p {
  font-size: 13px;
  color: var(--stone);
  max-width: 320px;
  letter-spacing: 0.02em;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--obsidian);
  transition: color 200ms ease;
}
.footer-col a:hover { color: var(--ember); }

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(28, 24, 20, 0.1);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--stone);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .site-footer { padding: 48px var(--gutter-m) 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* --- About-page-specific ------------------------------------------------- */
.about-hero {
  padding: 72px var(--gutter-d) 48px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.about-hero h1 {
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.about-hero p {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--stone);
  max-width: 640px;
  margin: 0 auto;
}

.about-bigphoto {
  width: 100%;
  height: clamp(360px, 50vh, 500px);
}

.story-block {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px var(--gutter-d);
}
.story-block .label { display: inline-block; margin-bottom: 24px; }
.story-block h2 {
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.15;
  margin-bottom: 28px;
}
.story-block p { font-size: 17px; line-height: 1.7; color: var(--obsidian); margin-bottom: 18px; text-wrap: pretty; }

.story-block--inverse {
  background: var(--obsidian);
  max-width: none;
  padding: 72px var(--gutter-d);
}
.story-block--inverse .inner { max-width: 760px; margin: 0 auto; }
.story-block--inverse h2, .story-block--inverse p { color: var(--linen); }
.story-block--inverse .label--stone { color: var(--ember); }

.moments-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--gutter-d);
}
.moments-list__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(247, 242, 234, 0.18);
}
.moments-list__row:first-child { border-top: none; }
.moments-list__num {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ember);
  padding-top: 6px;
}
.moments-list__txt {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--linen);
}

.craft-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px var(--gutter-d);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.craft-grid--reverse .craft__copy { order: 2; }
.craft-grid--reverse .craft__media { order: 1; }
.craft__media { aspect-ratio: 4/5; max-height: clamp(380px, 56vh, 560px); }
.craft__copy h2 { font-size: clamp(25px, 2.6vw, 32px); margin-bottom: 24px; line-height: 1.15; }
.craft__copy p { font-size: 16px; margin-bottom: 16px; max-width: 480px; }

@media (max-width: 880px) {
  .story-block, .story-block--inverse { padding: 64px var(--gutter-m); }
  .moments-list { padding: 0 var(--gutter-m); }
  .craft-grid { padding: 64px var(--gutter-m); grid-template-columns: 1fr; gap: 32px; }
  .craft-grid--reverse .craft__copy { order: 0; }
  .craft-grid--reverse .craft__media { order: 0; }
  .about-hero { padding: 64px var(--gutter-m) 40px; }
}

.founder {
  max-width: 880px;
  margin: 0 auto;
  padding: 72px var(--gutter-d);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: start;
}
.founder__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
}
.founder__photo .ph { height: 100%; border-radius: 50%; }
.founder p { font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
.founder__sig {
  font-family: var(--font-brand);
  font-size: 16px;
  font-style: italic;
  color: var(--stone);
  margin-top: 18px;
}

@media (max-width: 720px) {
  .founder { padding: 64px var(--gutter-m); grid-template-columns: 1fr; gap: 24px; }
  .founder__photo { margin: 0 auto; }
}

.cta-banner {
  background: var(--paper);
  border-top: 1px solid var(--obsidian);
  padding: 64px var(--gutter-d);
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.25;
  max-width: 700px;
  margin: 0 auto 28px;
}
.cta-banner h2 strong { font-weight: 700; }

/* --- Two modes (homepage) ----------------------------------------------- */
.modes {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px var(--gutter-d);
  border-top: 1px solid rgba(28, 24, 20, 0.12);
}
.modes__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.modes__head .label { display: inline-block; margin-bottom: 16px; }
.modes__head h2 {
  font-size: clamp(25px, 3vw, 36px);
  margin-bottom: 16px;
}
.modes__head p {
  font-size: 16px;
  color: var(--stone);
  max-width: 520px;
  margin: 0 auto;
}
.modes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.mode__media { aspect-ratio: 1/1; margin-bottom: 24px; }
.mode .label { display: block; margin-bottom: 10px; }
.mode h3 {
  font-size: clamp(20px, 1.9vw, 24px);
  margin-bottom: 12px;
  line-height: 1.2;
}
.mode p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--obsidian);
  max-width: 460px;
}

@media (max-width: 880px) {
  .modes { padding: 64px var(--gutter-m); }
  .modes__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- FAQ ----------------------------------------------------------------- */
.faq {
  max-width: 880px;
  margin: 0 auto;
  padding: 72px var(--gutter-d);
}
.faq__head { margin-bottom: 48px; }
.faq__head .label { display: inline-block; margin-bottom: 16px; }
.faq__head h2 {
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.15;
}
.faq__list {
  border-top: 1px solid rgba(28, 24, 20, 0.18);
}
.faq__item {
  border-bottom: 1px solid rgba(28, 24, 20, 0.18);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 500;
  color: var(--obsidian);
  transition: color 200ms ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--ember); }
.faq__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--obsidian);
  transition: transform 240ms ease, background 200ms ease;
}
.faq__icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.4px;
  transform: translateY(-50%);
}
.faq__icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.4px;
  transform: translateX(-50%);
}
.faq__item[open] .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
}
.faq__item:hover .faq__icon::before,
.faq__item:hover .faq__icon::after {
  background: var(--ember);
}
.faq__answer {
  padding: 0 0 24px;
  max-width: 680px;
}
.faq__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--stone);
}
.faq__answer a {
  color: var(--ember);
  border-bottom: 1px solid currentColor;
}

@media (max-width: 720px) {
  .faq { padding: 64px var(--gutter-m); }
  .faq__item summary { padding: 20px 0; }
}

/* FAQ tap feedback on mobile (no hover) */
.faq__item summary:active { color: var(--ember); }
.faq__item summary:active .faq__icon::before,
.faq__item summary:active .faq__icon::after { background: var(--ember); }

/* --- Problem framing ----------------------------------------------------- */
.problem {
  background: var(--linen);
  padding: 72px var(--gutter-d);
  border-bottom: 1px solid rgba(28, 24, 20, 0.08);
}
.problem__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.problem__inner .label { display: inline-block; margin-bottom: 20px; }
.problem h2 {
  font-size: clamp(25px, 3vw, 37px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.problem p {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--stone);
  max-width: 620px;
  margin: 0 auto;
  text-wrap: pretty;
}
@media (max-width: 880px) {
  .problem { padding: 64px var(--gutter-m); }
}

/* --- Specs strip --------------------------------------------------------- */
.specs {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px var(--gutter-d);
  border-top: 1px solid rgba(28, 24, 20, 0.12);
  border-bottom: 1px solid rgba(28, 24, 20, 0.12);
}
.specs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.specs__item { padding: 0; }
.specs__label {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 14px;
}
.specs__value {
  font-family: var(--font-brand);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--obsidian);
  margin-bottom: 8px;
  line-height: 1.15;
}
.specs__caption {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.45;
}
@media (max-width: 880px) {
  .specs { padding: 48px var(--gutter-m); }
  .specs__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}

/* --- Story snippet (homepage → about) ------------------------------------ */
.story-snippet {
  padding: 72px var(--gutter-d);
  background: var(--sand);
}
.story-snippet__inner {
  max-width: 760px;
  margin: 0 auto;
}
.story-snippet__inner .label { display: inline-block; margin-bottom: 20px; }
.story-snippet h2 {
  font-size: clamp(23px, 2.7vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.story-snippet p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--obsidian);
  margin-bottom: 18px;
  text-wrap: pretty;
}
.story-snippet__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--obsidian);
  border-bottom: 1px solid var(--obsidian);
  padding-bottom: 4px;
  transition: color 200ms ease, border-color 200ms ease, gap 200ms ease;
}
.story-snippet__link:hover {
  color: var(--ember);
  border-color: var(--ember);
  gap: 14px;
}
@media (max-width: 880px) {
  .story-snippet { padding: 64px var(--gutter-m); }
}

/* --- Motion: scroll reveals, hero entrance, header condense -------------- */
/* Hidden states apply only when JS confirms motion is allowed (html.js-anim),
   so there is no flash of hidden content and reduced-motion users are unaffected. */
html.js-anim .problem__inner,
html.js-anim .pullquote,
html.js-anim .featured__copy,
html.js-anim .featured__media,
html.js-anim .modes__head,
html.js-anim .modes__grid > .mode,
html.js-anim .specs__grid > .specs__item,
html.js-anim .moments__head,
html.js-anim .moments__grid > .moment,
html.js-anim .story-snippet__inner,
html.js-anim .faq__head,
html.js-anim .faq__list,
html.js-anim .close__inner,
html.js-anim .rescue-cta__inner,
html.js-anim .about-hero,
html.js-anim .story-block,
html.js-anim .story-block--inverse,
html.js-anim .craft__copy,
html.js-anim .craft__media,
html.js-anim .moments-list__row,
html.js-anim .cta-banner {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
html.js-anim .is-visible {
  opacity: 1 !important;
  transform: none !important;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
html.js-anim .hero__label {
  animation: heroIn 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.15s;
}
html.js-anim .hero__title-card {
  animation: heroIn 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.3s;
}

.site-header { transition: box-shadow 0.28s ease; }
.site-header__inner { transition: padding 0.28s ease; }
.site-header__logo img { transition: height 0.28s ease; }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(28, 24, 20, 0.06); }
.site-header.is-scrolled .site-header__inner { padding-top: 11px; padding-bottom: 11px; }
.site-header.is-scrolled .site-header__logo img { height: 50px; }
@media (max-width: 880px) {
  .site-header.is-scrolled .site-header__logo img { height: 38px; }
}

/* --- Rescue of the Month: homepage teaser -------------------------------- */
.rescue-cta {
  padding: 72px var(--gutter-d);
  text-align: center;
  border-top: 1px solid rgba(28, 24, 20, 0.12);
}
.rescue-cta__inner { max-width: 680px; margin: 0 auto; }
.rescue-cta .label { display: inline-block; margin-bottom: 20px; }
.rescue-cta h2 {
  font-size: clamp(23px, 2.7vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.rescue-cta p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--stone);
  max-width: 540px;
  margin: 0 auto 28px;
  text-wrap: pretty;
}
@media (max-width: 880px) {
  .rescue-cta { padding: 64px var(--gutter-m); }
}

/* --- Rescue page (standalone QR landing) --------------------------------- */
/* Scoped under .rescue-page so the bare input/button/label rules never leak
   onto the rest of the site. */
body.rescue-page { padding: 56px 24px 80px; }
.rescue-page .container { max-width: 480px; margin: 0 auto; width: 100%; }

.rescue-page .brand { text-align: center; margin-bottom: 56px; }
.rescue-page .logo { width: 280px; max-width: 100%; height: auto; display: block; margin: 0 auto; }

.rescue-page .eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 18px;
  font-weight: 500;
  text-align: center;
}

.rescue-page .rescue { text-align: center; margin-bottom: 80px; }
.rescue-page .rescue h1 {
  font-family: var(--font-brand);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin-bottom: 16px;
  color: var(--obsidian);
}
.rescue-page .rescue-body {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--obsidian);
  text-wrap: pretty;
}
.rescue-page .rescue-photo {
  background: var(--sand);
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
}
.rescue-page .rescue-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rescue-page .rescue-link { margin-bottom: 28px; }
.rescue-page .rescue-link a {
  color: var(--ember);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--ember);
  padding-bottom: 3px;
  transition: opacity 200ms ease;
}
.rescue-page .rescue-link a:hover { opacity: 0.7; }
.rescue-page .rescue-footer {
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.05em;
  line-height: 1.55;
}

.rescue-page .form-section { padding-top: 56px; border-top: 1px solid var(--sand); }
.rescue-page .form-section h2 {
  font-family: var(--font-brand);
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin-bottom: 14px;
  color: var(--obsidian);
  text-align: center;
}
.rescue-page .form-section .subhead {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 36px;
  color: var(--obsidian);
  text-wrap: pretty;
  text-align: center;
}
.rescue-page form { display: flex; flex-direction: column; gap: 18px; }
.rescue-page .field { display: flex; flex-direction: column; }
.rescue-page label {
  font-size: 12px;
  font-weight: 500;
  color: var(--stone);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rescue-page input[type="text"],
.rescue-page input[type="email"] {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-family: inherit;
  font-weight: 400;
  color: var(--obsidian);
  background: transparent;
  border: 1px solid var(--sand);
  border-radius: 0;
  outline: none;
  transition: border-color 200ms ease;
  min-height: 48px;
}
.rescue-page input[type="text"]:focus,
.rescue-page input[type="email"]:focus { border-color: var(--obsidian); }
.rescue-page button {
  margin-top: 10px;
  padding: 16px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 600;
  color: var(--linen);
  background: var(--obsidian);
  border: none;
  border-radius: 0;
  cursor: pointer;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 200ms ease;
  min-height: 48px;
}
.rescue-page button:hover,
.rescue-page button:focus { background: var(--ember); outline: none; }
.rescue-page .footnote {
  margin-top: 32px;
  font-size: 13px;
  color: var(--stone);
  text-align: center;
  line-height: 1.6;
}
.rescue-page .footnote a { color: var(--stone); text-decoration: underline; text-underline-offset: 2px; }
.rescue-page .footnote a:hover { color: var(--ember); }
.rescue-page .success { display: none; text-align: center; padding: 32px 0; }
.rescue-page .success h2 {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--obsidian);
}
.rescue-page .success p { font-size: 15px; color: var(--obsidian); line-height: 1.55; }
.rescue-page .success.is-visible { display: block; }

@media (max-width: 480px) {
  body.rescue-page { padding: 36px 20px 56px; }
  .rescue-page .brand { margin-bottom: 40px; }
  .rescue-page .logo { width: 260px; }
  .rescue-page .rescue { margin-bottom: 64px; }
  .rescue-page .rescue h1 { font-size: 24px; }
  .rescue-page .rescue-body { font-size: 15px; }
  .rescue-page .form-section { padding-top: 44px; }
  .rescue-page .form-section h2 { font-size: 22px; }
  .rescue-page .form-section .subhead { font-size: 14px; margin-bottom: 28px; }
}

/* --- Accessibility: reduced motion --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
}

