/* ============================================================
   Discount Forever Postage — styles.css
   Light & airy, Apple-inspired. Palette and spacing live in
   :root below — adjust there to re-theme the whole site.
   ============================================================ */

:root {
  /* Colors — subtle postal red/white/blue */
  --bg:           #fcfcfb;   /* clean warm-white background */
  --bg-alt:       #f3f5f8;   /* subtle blue-gray panel for alternating sections */
  --surface:      #ffffff;   /* cards */
  --ink:          #1f2329;   /* charcoal text */
  --ink-soft:     #5f6671;   /* secondary text */
  --navy:         #15366b;   /* deep postal blue (primary accent) */
  --navy-hover:   #1b427f;
  --red:          #b22234;   /* refined Old-Glory red (sparing accent) */
  --red-hover:    #97202f;
  --border:       #e6e6e0;   /* soft gray border */
  --border-strong:#d6d6cf;
  --accent-tint:  #eaf0f8;   /* blue-tinted surface */

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Shape & layout */
  --radius:    20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --maxw: 1160px;
  --shadow-sm: 0 1px 2px rgba(26,39,64,.05);
  --shadow:    0 2px 4px rgba(26,39,64,.04), 0 22px 48px -30px rgba(26,39,64,.30);
  --ease: cubic-bezier(.2,.65,.2,1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 .5em;
  color: var(--ink);
}

p { margin: 0 0 1em; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow { max-width: 780px; }

/* ---------- Reveal-on-scroll (added by script.js) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: inherit;
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  padding: .9rem 1.6rem;
  border-radius: 980px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-hover); color: #fff; }

.btn-outline { background: var(--surface); color: var(--navy); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--navy); }

.btn-link { background: transparent; color: var(--navy); padding-left: .4rem; padding-right: .4rem; }
.btn-link:hover { text-decoration: underline; }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252,251,249,.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--navy);
  font-weight: 600;
}
.brand:hover { text-decoration: none; opacity: .9; }
/* Header logo — fixed height, auto width keeps the aspect ratio (no distortion).
   logo.png has a transparent background, so it blends on the header with no box. */
.brand-logo { height: 48px; width: auto; display: block; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--navy);
  color: #fff;
}
.brand-text { font-size: 1.02rem; letter-spacing: -0.02em; }

.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a { color: var(--ink-soft); font-size: .95rem; font-weight: 500; letter-spacing: -0.01em; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-cta {
  color: #fff !important;
  background: var(--navy);
  border: 1px solid var(--navy);
  padding: .55rem 1.25rem;
  border-radius: 980px;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.nav-cta:hover { background: var(--navy-hover); border-color: var(--navy-hover); }

/* ---------- Announcement strip (buying & selling) ---------- */
.announce {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.announce p {
  margin: 0;
  padding: .6rem 0;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .03em;
}
.announce a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announce a:hover { opacity: .85; }

/* ---------- Sections ---------- */
.section { padding: 120px 0; }
.section-head { max-width: 720px; margin-bottom: 3.5rem; }
.section-title { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.section-sub {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 400;
  max-width: 56ch;
  margin-bottom: 0;
  letter-spacing: -0.012em;
}

/* ---------- Hero ---------- */
.hero {
  padding: 132px 0 116px;
  /* REPLACE HERO BACKGROUND: images/hero-collage.jpg
     A soft stack of outgoing business mail. Two Forever stamps are
     framed intentionally — one near center (~56%), one toward the
     right (~84%) — without clipping either. The gradient keeps strong
     cream behind the headline (left) for contrast, then opens up so
     the stamps and letter stack read clearly toward center-right. */
  background:
    linear-gradient(to right,
      rgba(252,251,249,0.96) 0%,
      rgba(252,251,249,0.95) 42%,
      rgba(252,251,249,0.42) 58%,
      rgba(252,251,249,0.30) 100%),
    url("images/hero-collage.jpg");
  /* The collage already composes cream on the left and the fan of letters
     on the right, so position: center keeps it balanced at any width.
     cover always fills. Want the letters lower/higher, adjust the Y value. */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #faf7f1;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-inner { display: block; }
.hero-copy { max-width: 46ch; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1.6rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.038em;
  max-width: 18ch;
}
/* short red accent rule under the headline (subtle patriotic cue) */
.accent-rule {
  width: 56px;
  height: 3px;
  border-radius: 4px;
  background: var(--red);
  margin: 1.8rem 0 0;
}
.lede {
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 44ch;
  margin-top: 1.8rem;
  letter-spacing: -0.012em;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.6rem; margin-top: 2.8rem; }

.hero-visual { display: flex; justify-content: center; align-items: center; }

/* Product frame — holds the hero graphic OR your real photo.
   Drop an <img> inside .product-frame and it fills nicely. */
.product-frame {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.product-frame img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.product-frame .stamp-roll {
  width: 100%;
  height: auto;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero-trust {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.4rem;
  list-style: none;
  padding: 1.6rem 0 0;
  margin: .6rem 0 0;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: .96rem;
}
.hero-trust li { position: relative; padding-left: 1.5rem; }
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0; top: .58em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--navy);
}

/* ---------- Audience ----------
   Kept clean (no background image) so envelope/letter imagery isn't
   repeated too often — the hero and the gallery carry that visual. */
.audience {
  border-bottom: 1px solid var(--border);
}

/* ---------- Gallery (real correspondence) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.gallery-item { margin: 0; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: block;
}
.gallery-item figcaption {
  margin-top: .8rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- Audience chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .7rem; }
.chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 980px;
  padding: .65rem 1.25rem;
  font-size: .98rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* ---------- Product spotlight ---------- */
.product-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.product-media { display: flex; justify-content: center; }
.product-card {
  margin: 0;
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--shadow);
}
.product-card img { width: 100%; height: auto; display: block; }
.product-copy { max-width: 46ch; }
.product-body {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  margin-top: 1.3rem;
  letter-spacing: -0.01em;
}

/* ---------- Pricing ---------- */
.pricing { background: var(--bg-alt); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 46px 38px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(26,39,64,.04), 0 26px 50px -36px rgba(26,39,64,.22);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 1px 3px rgba(26,39,64,.05), 0 36px 64px -38px rgba(26,39,64,.32); }
.price-card.featured {
  border: 1.5px solid var(--navy);
  box-shadow: 0 1px 3px rgba(26,39,64,.06), 0 40px 70px -40px rgba(26,39,64,.4);
}
.badge {
  position: absolute;
  top: -12px; left: 38px;
  background: var(--navy);
  color: #fff;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .42rem .9rem;
  border-radius: 980px;
}
.price-name { font-size: 1.18rem; font-weight: 600; margin-bottom: .25rem; letter-spacing: -0.02em; }
.price-qty { color: var(--ink-soft); font-size: .94rem; margin-bottom: 1.5rem; }
.price-amount {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin: 0;
}
.price-amount--quote { font-size: 2.2rem; }
.price-currency { font-size: 1.7rem; vertical-align: super; margin-right: 2px; font-weight: 500; }
.price-unit { color: var(--ink-soft); font-size: .92rem; margin: .4rem 0 1.6rem; }
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: .7rem;
  color: var(--ink);
  font-size: .98rem;
}
.price-features li { position: relative; padding-left: 1.7rem; }
.price-features li::before {
  content: "";
  position: absolute;
  left: 0; top: .12rem;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: var(--accent-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2740' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / .74rem no-repeat;
}
.price-cta { margin-top: auto; width: 100%; }
.pricing-note {
  margin: 2.4rem 0 0;
  color: var(--ink-soft);
  font-size: .9rem;
  text-align: center;
}
.pricing-note--fine {
  margin-top: .55rem;
  font-size: .82rem;
  opacity: .82;
}

/* ---------- Value / why buy now ---------- */
.value { background: var(--accent-tint); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.value-card:nth-child(2) { border-top-color: var(--red); }
.value-card h3 { font-size: 1.22rem; letter-spacing: -0.02em; }
.value-card p { color: var(--ink-soft); margin: 0; }
.value-note {
  margin: 2.2rem 0 0;
  color: var(--ink-soft);
  font-size: .9rem;
  text-align: center;
}
/* understated aside — kept light so it never reads as political/official */
.value-note-soft { display: block; margin-top: .35rem; font-style: italic; opacity: .72; }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: var(--navy);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.step h3 { font-size: 1.24rem; letter-spacing: -0.02em; }
.step p { color: var(--ink-soft); margin: 0; }

/* ---------- Delivery ---------- */
.delivery { background: var(--bg-alt); }
.delivery-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.delivery-copy p { color: var(--ink-soft); font-size: 1.08rem; }
.delivery-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: .55rem;
}
.delivery-list li { position: relative; padding-left: 1.4rem; font-weight: 500; color: var(--ink); }
.delivery-list li::before {
  content: "";
  position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--navy);
}
.muted { color: var(--ink-soft); font-size: .95rem; }
.delivery-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 42px 38px;
  display: grid;
  gap: 24px;
  box-shadow: var(--shadow);
}
.delivery-stat { display: grid; gap: .25rem; }
.stat-num { font-size: 2.9rem; font-weight: 600; line-height: 1; letter-spacing: -0.03em; }
.stat-label { color: rgba(255,255,255,.72); font-size: .92rem; }
.delivery-divider { height: 1px; background: rgba(255,255,255,.14); }

/* ---------- FAQ ---------- */
.accordion { display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 24px 26px;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.faq-icon { position: relative; flex: 0 0 auto; width: 18px; height: 18px; }
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); opacity: 0; }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { margin: 0; padding: 0 26px 26px; color: var(--ink-soft); }

/* ---------- America 250 anniversary banner (remove-safe) ---------- */
.anniversary {
  background: #f6f1e8; /* soft warm cream that complements the banner */
  padding: 88px 0;
}
.anniversary-banner {
  margin: 0 auto;
  max-width: 1000px;
}
.anniversary-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(26,39,64,.05), 0 30px 56px -36px rgba(26,39,64,.28);
}

/* ---------- We also buy (sell-to-us) ---------- */
.sellto { background: var(--bg-alt); }
.sellto-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  text-align: center;
  box-shadow: var(--shadow);
}
.sellto-card .eyebrow { margin-bottom: .9rem; }
.sellto-card .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.sellto-body {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 52ch;
  margin: 1.1rem auto 1.8rem;
}

/* ---------- Inquiry form ---------- */
.inquiry-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.field { display: grid; gap: .5rem; }
.field--full { margin-top: 22px; }
.field > span { font-size: .88rem; font-weight: 500; color: var(--ink); }
.req { color: var(--red); font-weight: 600; }
.form-note { margin: 0 0 18px; font-size: .85rem; color: var(--ink-soft); }
.form-note .req { margin-right: 2px; }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: .85rem .95rem;
  width: 100%;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(26,39,64,.10);
}
.form-footer { margin-top: 26px; display: grid; gap: 1rem; }
.form-status { margin: 0; font-size: .95rem; color: var(--navy); font-weight: 500; min-height: 1.2em; }
.form-alt { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #e9e9ec; padding: 60px 0 38px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .brand-text { color: #fff; font-size: 1.18rem; }
/* Full-color logo on a small white panel so the brand colors show on the dark footer. */
.footer-logo {
  display: inline-block;
  background: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 30px -18px rgba(0,0,0,.5);
}
.footer-logo img { height: 46px; width: auto; display: block; }
.footer-tag { color: rgba(255,255,255,.62); margin: .9rem 0 0; max-width: 34ch; }
.footer-contact { display: grid; gap: .55rem; align-content: start; }
.footer-contact a { color: #cfd4de; }
.footer-contact a:hover { color: #fff; }
.footer-legal { padding-top: 24px; }
.disclaimer { color: rgba(255,255,255,.58); font-size: .85rem; max-width: 72ch; margin: 0 0 .5rem; }
.copyright { color: rgba(255,255,255,.42); font-size: .82rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero-visual { order: -1; }
  .stamp-roll { max-width: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .product-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-media { order: -1; }
  .product-copy { max-width: none; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .value-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .delivery-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 680px) {
  .section { padding: 80px 0; }
  .hero {
    padding: 44px 0 56px;
    /* Mobile: vertical fade keeps the headline crisp at the top and lets the
       correspondence read as a soft texture lower down. cover + 66% 24%
       pushes the image toward the lower-right behind the text. */
    background:
      linear-gradient(to bottom,
        rgba(252,251,249,0.95) 0%,
        rgba(252,251,249,0.90) 46%,
        rgba(252,251,249,0.66) 100%),
      url("images/hero-collage.jpg");
    background-size: cover;
    background-position: 70% 38%;
    background-color: #faf7f1;
  }
  .nav-links { gap: .9rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .field-grid { grid-template-columns: 1fr; }
  .anniversary { padding: 52px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .inquiry-form { padding: 26px; }
  .brand-text { font-size: .95rem; }
  .brand-logo { height: 40px; }
}

@media (max-width: 380px) {
  .container { padding: 0 20px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .stamp-roll { animation: none; }
  * { transition: none !important; }
}
