/* ============================================================
   BOTANICAL HOUSES — SHARED PAGE STYLES
   Used by: about, faq, shipping, privacy, terms, subscribe, booklet
   ============================================================ */

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

:root {
  --sh-dark:       #1a1008;
  --sh-dark-mid:   #1f1509;
  --sh-dark-light: #261808;
  --sh-cream-bg:   #f5f0e8;
  --sh-cream-alt:  #ede8e0;
  --sh-gold:       #C9A84C;
  --sh-gold-lt:    #e8c870;
  --sh-gold-dim:   #7a6030;
  --sh-text:       #f0e8d8;
  --sh-text-dim:   #8a7060;
  --sh-ink:        #1a1008;
  --sh-ink-mid:    #3a2810;
  --sh-ink-dim:    #6a5040;

  --body-font:     'Libre Baskerville', Georgia, serif;
  --serif-font:    'IM Fell English', Georgia, serif;
  --container-w:   1100px;
  --space-section: clamp(4rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  background-color: var(--sh-dark);
  color: var(--sh-text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--sh-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--sh-gold-lt); }

/* ── Container ────────────────────────────────────────────── */
.sh-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── Navigation ───────────────────────────────────────────── */
.sh-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(to bottom, rgba(26,16,8,0.96) 0%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.sh-nav__back,
.sh-nav__sister {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sh-text-dim);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sh-nav__back:hover,
.sh-nav__sister:hover { color: var(--sh-gold); }

.sh-nav__shop {
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.35rem 1.1rem;
}

.sh-nav__shop:hover {
  color: var(--sh-gold);
  border-color: rgba(201,168,76,0.75);
  background: rgba(201,168,76,0.06);
}

/* ── Hero ─────────────────────────────────────────────────── */
.sh-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.04) 0%, transparent 65%),
    var(--sh-dark);
  overflow: hidden;
}

.sh-hero--tall { min-height: 72vh; }

.sh-hero__texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.04) 3px,
      rgba(0,0,0,0.04) 4px
    );
  opacity: 0.45;
  pointer-events: none;
}

.sh-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(6rem, 12vw, 10rem) 2rem 4rem;
  max-width: 740px;
  margin: 0 auto;
}

.sh-hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--sh-gold);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.sh-hero__heading {
  font-family: var(--serif-font);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--sh-text);
  text-shadow:
    0 0 60px rgba(201,168,76,0.1),
    0 2px 12px rgba(0,0,0,0.85);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.sh-hero__heading--medium {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.sh-hero__subheading {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-style: italic;
  color: rgba(240,220,190,0.58);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.sh-hero__rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sh-gold), transparent);
  margin: 1.5rem auto 0;
}

/* ── Section base ─────────────────────────────────────────── */
.sh-section {
  padding: var(--space-section) 0;
}

.sh-section--dark {
  background-color: var(--sh-dark);
  --heading-col: var(--sh-text);
  --sub-col: rgba(240,220,190,0.58);
  --body-col: rgba(240,220,190,0.72);
  --rule-col: rgba(201,168,76,0.1);
}

.sh-section--dark-alt {
  background-color: var(--sh-dark-mid);
  --heading-col: var(--sh-text);
  --sub-col: rgba(240,220,190,0.58);
  --body-col: rgba(240,220,190,0.72);
  --rule-col: rgba(201,168,76,0.1);
}

.sh-section--cream {
  background-color: var(--sh-cream-bg);
  --heading-col: var(--sh-ink);
  --sub-col: var(--sh-ink-dim);
  --body-col: var(--sh-ink-mid);
  --rule-col: rgba(26,16,8,0.1);
}

.sh-section--cream a {
  color: var(--sh-gold-dim);
}

.sh-section--cream a:hover {
  color: var(--sh-gold);
}

.sh-section__label {
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--sh-gold);
  opacity: 0.55;
  text-align: center;
  margin-bottom: 1.25rem;
}

.sh-section__heading {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--heading-col);
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.sh-section__sub {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-style: italic;
  color: var(--sub-col);
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.sh-section__body {
  max-width: 68ch;
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--body-col);
  line-height: 1.88;
}

.sh-section__body p + p {
  margin-top: 1.5rem;
}

/* ── Ornament divider ─────────────────────────────────────── */
.sh-ornament-divider {
  text-align: center;
  color: var(--sh-gold);
  opacity: 0.2;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  padding: 0.5rem 0;
  background: var(--sh-dark);
}

/* ── Two-column house blocks ──────────────────────────────── */
.sh-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.sh-house-block {
  padding: 2.5rem;
  border: 1px solid rgba(26,16,8,0.12);
}

.sh-house-block__heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sh-ink);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.sh-house-block__body {
  font-size: 0.92rem;
  color: var(--sh-ink-mid);
  line-height: 1.82;
  margin-bottom: 1.5rem;
}

.sh-house-block__link {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sh-gold-dim);
  transition: color 0.2s ease;
}

.sh-house-block__link:hover { color: var(--sh-gold); }

/* ── Format / Pricing cards ───────────────────────────────── */
.sh-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.sh-card {
  background: var(--sh-dark-light);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.sh-card:hover {
  border-color: rgba(201,168,76,0.28);
  transform: translateY(-2px);
}

.sh-card--featured {
  border-color: rgba(201,168,76,0.28);
}

.sh-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sh-gold);
  border: 1px solid var(--sh-gold);
  padding: 0.2rem 0.5rem;
  opacity: 0.85;
}

.sh-card__format {
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--sh-gold);
  opacity: 0.6;
  margin-bottom: 1rem;
  display: block;
}

.sh-card__price {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--sh-text);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.sh-card__price-period {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.6;
  margin-left: 0.2rem;
}

.sh-card__desc {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(240,220,190,0.58);
  line-height: 1.65;
  margin-bottom: 2rem;
  margin-top: 0.75rem;
}

.sh-card__footer {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 1.25rem;
}

/* ── Button ───────────────────────────────────────────────── */
.sh-btn {
  display: block;
  width: 100%;
  font-family: var(--body-font);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--sh-gold);
  padding: 0.75rem 1.25rem;
  background: transparent;
  color: var(--sh-gold);
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
  text-align: center;
}

.sh-btn:hover,
.sh-btn:focus-visible {
  background: var(--sh-gold);
  color: var(--sh-dark);
  outline: none;
}

/* ── Feature list ─────────────────────────────────────────── */
.sh-feature-list {
  list-style: none;
  max-width: 560px;
  margin: 2rem auto 0;
}

.sh-feature-list li {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  font-size: 0.92rem;
  color: rgba(240,220,190,0.78);
  line-height: 1.5;
}

.sh-feature-list li:last-child { border-bottom: none; }

.sh-feature-list li::before {
  content: '·';
  color: var(--sh-gold);
  flex-shrink: 0;
  opacity: 0.6;
  font-size: 1.1rem;
}

/* ── What's Inside two-col ────────────────────────────────── */
.sh-contents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  max-width: 700px;
  margin: 2.5rem auto 0;
}

.sh-contents-list {
  list-style: none;
}

.sh-contents-list li {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  font-size: 0.9rem;
  color: rgba(240,220,190,0.75);
  line-height: 1.5;
}

.sh-contents-list li:last-child { border-bottom: none; }

.sh-contents-list li::before {
  content: '—';
  color: var(--sh-gold);
  opacity: 0.4;
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* ── Illustration preview grid ────────────────────────────── */
.sh-illus-section {
  padding: var(--space-section) 0;
  background: var(--sh-dark-mid);
}

.sh-illus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.sh-illus-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.08);
  padding: 1.5rem;
  transition: border-color 0.3s ease;
}

.sh-illus-item:hover { border-color: rgba(201,168,76,0.2); }

.sh-illus-item img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.88;
  filter: brightness(0.92) contrast(1.04);
  transition: opacity 0.3s ease;
}

.sh-illus-item:hover img { opacity: 1; }

/* ── Pull quote ───────────────────────────────────────────── */
.sh-pullquote {
  padding: var(--space-section) 0;
  background: var(--sh-dark);
  text-align: center;
}

.sh-pullquote__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sh-pullquote__mark {
  font-family: var(--serif-font);
  font-size: 2.5rem;
  color: var(--sh-gold);
  opacity: 0.3;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sh-pullquote__text {
  font-family: var(--serif-font);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-style: italic;
  color: rgba(240,220,190,0.72);
  line-height: 1.72;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.sh-faq-section {
  padding: var(--space-section) 0;
  background: var(--sh-dark);
}

.sh-faq-group {
  margin-bottom: 3.5rem;
}

.sh-faq-group:last-child { margin-bottom: 0; }

.sh-faq-group__title {
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--sh-gold);
  opacity: 0.55;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  margin-bottom: 0;
}

.sh-faq-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.06);
}

.sh-faq-q {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--sh-gold);
  margin-bottom: 0.75rem;
  line-height: 1.45;
}

.sh-faq-a {
  font-size: 0.9rem;
  color: rgba(240,220,190,0.7);
  line-height: 1.88;
}

/* ── Legal content ────────────────────────────────────────── */
.sh-legal {
  padding: var(--space-section) 0;
  background: var(--sh-cream-bg);
}

.sh-legal__container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.sh-legal__section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(26,16,8,0.09);
}

.sh-legal__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sh-legal__heading {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--sh-gold-dim);
  margin-bottom: 1.25rem;
  display: block;
}

.sh-legal__body {
  font-size: 0.95rem;
  color: var(--sh-ink-mid);
  line-height: 1.88;
}

.sh-legal__body p + p { margin-top: 0.9rem; }

.sh-legal__body a {
  color: var(--sh-ink);
  text-decoration: underline;
  text-decoration-color: rgba(26,16,8,0.25);
  text-underline-offset: 2px;
}

.sh-legal__body a:hover {
  text-decoration-color: var(--sh-gold);
  color: var(--sh-gold-dim);
}

/* ── Email form ───────────────────────────────────────────── */
.sh-email-section {
  padding: var(--space-section) 0;
  background: var(--sh-dark-light);
  border-top: 1px solid rgba(201,168,76,0.07);
  border-bottom: 1px solid rgba(201,168,76,0.07);
}

.sh-email-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.sh-email-form__heading {
  font-family: var(--serif-font);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--sh-text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.sh-email-form__sub {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(240,220,190,0.55);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.sh-email-form__row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  max-width: 400px;
  margin: 0 auto 0.85rem;
}

.sh-email-form__input {
  width: 100%;
  height: 44px;
  font-family: var(--body-font);
  font-size: 0.85rem;
  padding: 0 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--sh-text);
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.sh-email-form__input:focus {
  border-color: rgba(201,168,76,0.45);
}

.sh-email-form__input::placeholder {
  color: rgba(200,175,140,0.32);
}

.sh-email-form__btn {
  font-family: var(--body-font);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 2rem;
  height: 44px;
  width: 100%;
  background: var(--sh-gold);
  border: 1px solid var(--sh-gold);
  color: var(--sh-dark);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
  box-sizing: border-box;
}

.sh-email-form__btn:hover {
  background: var(--sh-gold-lt);
  border-color: var(--sh-gold-lt);
}

.sh-email-form__note {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(200,175,140,0.32);
}

/* ── Closing statement ────────────────────────────────────── */
.sh-closing-statement {
  padding: 4rem 0 5rem;
  text-align: center;
  background: var(--sh-dark);
}

.sh-closing-statement__text {
  font-family: var(--serif-font);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: rgba(240,220,190,0.55);
  letter-spacing: 0.04em;
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Cross link ───────────────────────────────────────────── */
.sh-crosslink {
  padding: 4.5rem 0;
  text-align: center;
  background: var(--sh-dark-light);
  border-top: 1px solid rgba(201,168,76,0.07);
}

/* ── Reveal animation ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

/* ═══════════════════════════════════════════════════════════
   SITE FOOTER — shared across all pages
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid rgba(201,168,76,0.07);
  padding: 3.5rem clamp(1.25rem, 5vw, 3rem) 2.5rem;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__col a {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(160,140,110,0.48);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__col a:hover { color: #C9A84C; }

.site-footer__col--right {
  text-align: right;
  align-items: flex-end;
}

.site-footer__centre {
  text-align: center;
  padding: 0 1.5rem;
}

.site-footer__copy {
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  color: rgba(140,120,90,0.4);
  margin-bottom: 0.4rem;
}

.site-footer__motto {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(201,168,76,0.33);
  font-style: italic;
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 860px) {
  .sh-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

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

  .sh-two-col {
    grid-template-columns: 1fr;
  }

  .sh-contents-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 640px) {
  .sh-nav__sister:not(.sh-nav__shop) { display: none; }

  .sh-card-grid,
  .sh-card-grid--two {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__col--right {
    text-align: center;
    align-items: center;
  }

  .site-footer__centre {
    padding: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.07);
    margin-bottom: 0.25rem;
    order: -1;
  }
}

/* ── Subscribe receive list (ornamental) ─────────────────── */
.sh-receive-list {
  max-width: 540px;
  margin: 2rem auto 0;
}

.sh-receive-item {
  padding: 1.5rem 0;
  text-align: center;
}

.sh-receive-item__text {
  font-family: 'Cormorant Garamond', 'IM Fell English', Georgia, serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  color: var(--sh-gold);
  opacity: 0.82;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.sh-receive-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.22), transparent);
  margin: 0 2rem;
}

/* ── Start here heading (booklet + paris booklet section) ─── */
.sh-start-here {
  font-family: 'IM Fell English', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--sh-gold);
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  a,
  .sh-card,
  .sh-btn,
  .sh-illus-item,
  .sh-illus-item img {
    transition: none;
  }
}

.emdash { display: inline; white-space: nowrap; }

/* ── Notify-me form (products not yet available) ── */
.notify-form { display: flex; gap: 0.35rem; width: 100%; }
.notify-form__input {
  flex: 1; min-width: 0;
  padding: 0.4rem 0.55rem;
  background: transparent;
  border: 1px solid var(--sh-text-dim);
  color: var(--sh-text);
  font-family: inherit;
  font-size: 0.78rem;
}
.notify-form__input::placeholder { color: var(--sh-text-dim); }
.notify-form__btn {
  padding: 0.4rem 0.75rem;
  background: transparent;
  border: 1px solid var(--sh-gold);
  color: var(--sh-gold);
  font-family: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.notify-form__btn:hover { background: var(--sh-gold); color: var(--sh-dark); }

/* ── NVWA product notice ── */
.sh-nvwa {
  font-size: 0.64rem;
  color: var(--sh-text-dim);
  opacity: 0.65;
  margin-top: 0.35rem;
  line-height: 1.5;
}

/* ── 390px fixes ── */
@media (max-width: 390px) {
  .notify-form {
    flex-direction: column;
  }
  .notify-form__btn {
    width: 100%;
  }
  .sh-hero__heading {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
}
