/* ==========================================================================
   BRINDAVAN SILVER CRAFT — DESIGN TOKENS
   Ivory & warm silver, premium & minimal
   Display: Fraunces (warm, old-style serif) · Body: Manrope
   Signature element: the "hallmark seal" — a nod to the assay stamp
   pressed into every piece of genuine silver.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --ivory: #FAF6EE;
  --ivory-deep: #F0E7D6;
  --warm-silver: #C3BAA7;
  --warm-silver-line: #DED4BE;
  --ink: #26221C;
  --ink-soft: #3A3428;
  --bronze: #93693A;
  --bronze-deep: #74532C;
  --muted: #7C7462;
  --card: #FFFFFF;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-display-italic: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --shadow-soft: 0 1px 2px rgba(38,34,28,0.04), 0 20px 44px -28px rgba(38,34,28,0.22);
  --transition: all .35s cubic-bezier(.4,0,.2,1);

  /* Aliases used across inner pages */
  --border: var(--warm-silver-line);
  --silver: var(--warm-silver);
  --graphite: #201C17;
  --emerald: var(--bronze);
  --emerald-deep: var(--bronze-deep);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: hidden;
}

main { width: 100%; overflow-x: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0;
  line-height: 1.12;
}

p { color: var(--muted); margin: 0; }

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

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

.container-xl.container-narrow { max-width: 1220px; }

.section-py { padding: 70px 0; }
@media (max-width: 767px) { 
    .why-card{
            display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    }
    .collection-card h3{
        font-size:1rem;
    }
    .section-py { padding: 50px 0; } }

.bg-ivory-deep { background: var(--ivory-deep); }
.bg-ink { background: var(--ivory-deep); }

/* ---- Eyebrow + hallmark seal ------------------------------------------ */

.eyebrow-row { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze-deep);
}
.eyebrow-light { color: rgba(250,246,238,0.62); }

.seal {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}
.seal circle { fill: none; stroke: currentColor; }
.seal .seal-outer { stroke-width: 1.1; opacity: .55; }
.seal .seal-inner { stroke-width: 1.1; }
.seal .seal-mark { fill: currentColor; }
.seal-bronze { color: var(--bronze); }
.seal-ivory { color: rgba(250,246,238,0.85); }

.section-head {
  max-width: 46rem;
}
.section-head.centered { margin: 0 auto; text-align: center; }
.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin-top: 14px;
}
.section-title em { font-style: italic; color: var(--bronze); font-weight: 300; }
.section-sub {
  margin-top: 16px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
}
.rule {
  width: 3.25rem;
  height: 1px;
  background: var(--warm-silver);
  margin-top: 28px;
}
.centered .rule { margin-left: auto; margin-right: auto; }

/* ---- Buttons ----------------------------------------------------------- */

.btn-luxe {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  padding: 15px 32px;
  background: var(--ink);
  color: var(--ivory) !important;
  border: 1px solid var(--ink);
  transition: var(--transition);
  display: inline-block;
}
.btn-luxe:hover { background: var(--bronze-deep); border-color: var(--bronze-deep); color: var(--ivory) !important; }

.btn-luxe-outline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  padding: 14px 30px;
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--ink);
  transition: var(--transition);
  display: inline-block;
}
.btn-luxe-outline:hover { background: var(--ink); color: var(--ivory) !important; }

.btn-luxe-ivory {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  padding: 14px 30px;
  background: transparent;
  color: var(--ivory) !important;
  border: 1px solid rgba(250,246,238,0.4);
  transition: var(--transition);
  display: inline-block;
}
.btn-luxe-ivory:hover { background: var(--ivory); color: var(--ink) !important; border-color: var(--ivory); }

.btn-bronze {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  padding: 15px 32px;
  background: var(--bronze);
  color: var(--ivory) !important;
  border: 1px solid var(--bronze);
  transition: var(--transition);
  display: inline-block;
}
.btn-bronze:hover { background: var(--bronze-deep); border-color: var(--bronze-deep); }

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,246,238,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--warm-silver-line);
  box-shadow: 0 1px 0 rgba(38,34,28,0.02);
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.wordmark-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.wordmark-text em {
  font-style: italic;
  color: var(--bronze);
  font-weight: 400;
}
.wordmark small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  display: block;
  margin-top: 3px;
}



.main-nav a {
      font-size: 0.86rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .7px;
    opacity: 0.8;
    color: var(--ink-soft);
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--bronze-deep); border-bottom-color: var(--bronze); }

.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--warm-silver-line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.mobile-nav a.active { color: var(--bronze-deep); }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero-home {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--ivory-deep) url('../img/banner.webp') center/cover no-repeat;
  margin-top: -1px;
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(250,246,238,0.88) 0%, rgba(250,246,238,0.72) 30%, rgba(250,246,238,0.22) 55%, rgba(250,246,238,0.06) 75%);
}
.hero-home .container-xl { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.hero-copy { max-width: 34rem; padding: 60px 0; }
.hero-copy p.hero-desc {
  margin-top: 22px;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 30rem;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 3.7rem);
  margin-top: 18px;
}
.hero-copy h1 em { font-style: italic; color: var(--bronze); font-weight: 300; }

.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; }

@media (max-width: 767px) {
  .hero-home { min-height: auto; padding: 120px 0 60px; }
  .hero-home::before { background: linear-gradient(180deg, rgba(250,246,238,0.92) 0%, rgba(250,246,238,0.8) 45%, rgba(250,246,238,0.55) 100%); }
  .hero-copy { padding: 0; max-width: 100%; }
}

.hero-est {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 26px;
  border-top: 1px solid var(--warm-silver-line);
  max-width: 30rem;
}
.hero-est strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--ink);
}
.hero-est span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ==========================================================================
   WHY CHOOSE — seal-ring badges
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--warm-silver-line);
  border: 1px solid var(--warm-silver-line);
}
@media (max-width: 991px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--ivory);
  padding: 44px 34px;
  transition: var(--transition);
}
.why-card:hover { background: var(--card); }

.seal-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--warm-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.seal-ring::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--warm-silver-line);
  border-radius: 50%;
}
.seal-ring i { font-size: 1.15rem; color: var(--bronze); position: relative; z-index: 1; }

.why-card h3 { font-size: 1.25rem; margin-top: 22px; }
.why-card p { margin-top: 10px; font-size: 0.92rem; line-height: 1.7; }

/* ==========================================================================
   COLLECTIONS
   ========================================================================== */

.collection-card { display: block; }
.collection-frame {
  position: relative;
  overflow: hidden;
  background: var(--ivory-deep);
}
.collection-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.16,1,.3,1);
}
.collection-card:hover .collection-frame img { transform: scale(1.06); }

.collection-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(250,246,238,0.92);
  backdrop-filter: blur(4px);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  padding: 7px 13px;
}

.collection-card h3 { font-size: 1.32rem; margin-top: 20px; }
.collection-card p { margin-top: 8px; font-size: 0.9rem; line-height: 1.7; }

/* ==========================================================================
   CORPORATE GIFTING — dark contrast panel
   ========================================================================== */

.corp-visual { position: relative; overflow: hidden; }
.corp-visual img { width: 100%; height: 560px; object-fit: cover; }
@media (max-width: 767px) { .corp-visual img { height: 340px; } }

.corp-copy h2 { color: var(--ink); }
.corp-copy p { color: var(--muted); }

.corp-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.corp-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--warm-silver-line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.corp-list li i { color: var(--bronze); font-size: .95rem; }
@media (max-width: 575px) { .corp-list { grid-template-columns: 1fr; } }

.corp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 30px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.corp-meta span { display: inline-flex; align-items: center; gap: 8px; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonial-card {
  padding: 40px 8px 0;
  border-top: 1px solid var(--warm-silver-line);
}
.testimonial-card .quote-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}
.testimonial-person { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.avatar-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--warm-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--bronze-deep);
}
.testimonial-person strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.testimonial-person .role { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ==========================================================================
   CTA PANEL
   ========================================================================== */

.cta-panel {
  text-align: center;
  padding: 76px 40px;
  border: 1px solid var(--warm-silver-line);
  background: var(--card);
}
.cta-panel h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-top: 22px; }
.cta-panel p { margin-top: 14px; }
.cta-panel .seal-ring { margin: 0 auto; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer { background: var(--ivory-deep); color: var(--ink-soft); border-top: 1px solid var(--warm-silver-line); }
.site-footer h6 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-bottom: 22px;
}
.site-footer .footer-desc { font-size: 0.9rem; line-height: 1.75; color: var(--muted); margin-top: 18px; max-width: 24rem; }
.footer-links { list-style: none; padding: 0; margin: 0; font-size: 0.9rem; }
.footer-links li { margin-bottom: 13px; }
.footer-links a { color: var(--ink-soft); transition: var(--transition); }
.footer-links a:hover { color: var(--bronze-deep); }

.footer-social { display: flex; gap: 14px; margin-top: 24px; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--warm-silver-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: var(--transition);
}
.social-icon:hover { border-color: var(--bronze); color: var(--bronze); }

.footer-contact { list-style: none; padding: 0; margin: 0; font-size: 0.9rem; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 18px; color: var(--ink-soft); }
.footer-contact a { color: var(--ink-soft); }
.footer-contact a:hover { color: var(--bronze-deep); }

.footer-map { border: 1px solid var(--warm-silver-line); overflow: hidden; }
.footer-map iframe { width: 100%; height: 160px; border: 0; filter: grayscale(.4) contrast(1.05); }

.footer-bottom-links a { color: var(--muted); margin-right: 18px; font-size: 0.8rem; }
.footer-bottom-links a:hover { color: var(--bronze-deep); }

/* Mobile call button */
.mobile-call-btn {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  background: var(--ink);
  color: var(--ivory);
  padding: 13px 26px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   UTILITY / COLOR ALIASES (used across inner pages)
   ========================================================================== */

.text-charcoal { color: var(--ink); }
.text-muted-custom { color: var(--muted); }
.text-emerald { color: var(--emerald); }
.text-primary-foreground { color: var(--ivory); }
.font-display { font-family: var(--font-display); }

.bg-white { background: var(--card); }
.bg-silver-light { background: var(--ivory-deep); }
.bg-graphite { background: var(--ivory-deep); }
.bg-graphite h2, .bg-graphite h3 { color: var(--ivory); }

.btn-emerald {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  padding: 15px 32px;
  background: var(--emerald);
  color: var(--ivory) !important;
  border: 1px solid var(--emerald);
  transition: var(--transition);
  display: inline-block;
}
.btn-emerald:hover { background: var(--emerald-deep); border-color: var(--emerald-deep); }

.btn-luxe-ghost {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  padding: 14px 30px;
  background: transparent;
  color: var(--ivory) !important;
  border: 1px solid rgba(250,246,238,0.35);
  transition: var(--transition);
  display: inline-block;
}
.btn-luxe-ghost:hover { background: var(--ivory); color: var(--ink) !important; border-color: var(--ivory); }

.shadow-soft { box-shadow: var(--shadow-soft); }

.silver-rule { width: 3.25rem; height: 1px; background: var(--warm-silver); }

/* ==========================================================================
   INNER-PAGE HERO (about / collections / contact / corporate-gifting /
   gallery / legal pages) — was previously unstyled, causing left-aligned,
   unpadded hero text on every inner page.
   ========================================================================== */

.page-hero {
  padding: 150px 0 72px;
  background: var(--ivory-deep);
  text-align: center;
}
.page-hero > div { margin-left: auto; margin-right: auto; }
@media (max-width: 767px) { .page-hero { padding: 128px 0 56px; } }

.animate-fade, .animate-rise {
  opacity: 0;
  animation: heroFadeUp .7s cubic-bezier(.4,0,.2,1) forwards;
}
.animate-fade { animation-delay: .05s; }
.animate-rise { animation-delay: .15s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .animate-fade, .animate-rise { animation: none; opacity: 1; transform: none; }
}

/* ==========================================================================
   COLLECTIONS — inner listing page (tabs removed, fixed image height)
   ========================================================================== */

.collection-frame-tall img {
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 280px;
}

/* ==========================================================================
   ASSURANCE STRIP (Collections page)
   ========================================================================== */

.assurance-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 767px) { .assurance-strip { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }

.assurance-item { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--warm-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--card);
}
.icon-badge i { font-size: 1.15rem; }
.bg-graphite .icon-badge, .bg-ink .icon-badge { background: var(--card); border-color: var(--warm-silver-line); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--warm-silver-line);
  background: var(--card);
}

.map-embed {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(.25) contrast(1.03);
}
@media (max-width: 575px) { .map-embed { height: 280px; } }

/* ---- Form fields -------------------------------------------------------- */

.form-label-sm {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-underline {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--warm-silver-line);
  border-radius: 0;
  background: transparent;
  padding: 10px 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: var(--transition);
}
.form-underline:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: var(--bronze);
}
.form-underline.is-invalid { border-bottom-color: #b3462c; }
.form-underline::placeholder { color: var(--warm-silver); }
textarea.form-underline { resize: vertical; }

.form-feedback { font-size: 0.88rem; padding: 14px 16px; }
.form-feedback.alert-success { background: rgba(147,105,58,0.1); color: var(--bronze-deep); }
.form-feedback.alert-danger { background: rgba(179,70,44,0.1); color: #8a3320; }

/* ==========================================================================
   GALLERY
   ========================================================================== */

.gallery-columns {
  columns: 3 220px;
  column-gap: 20px;
}
@media (max-width: 767px) { .gallery-columns { columns: 2 160px; } }
@media (max-width: 480px) { .gallery-columns { columns: 1; } }

.gallery-figure {
  position: relative;
  margin: 0 0 20px;
  break-inside: avoid;
  overflow: hidden;
  background: var(--ivory-deep);
}
.gallery-figure img { width: 100%; display: block; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.gallery-figure:hover img { transform: scale(1.05); }
.gallery-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  background: linear-gradient(to top, rgba(38,34,28,0.75), transparent);
}

/* ==========================================================================
   ABOUT — timeline
   ========================================================================== */

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 42rem;
}
.timeline li {
  padding: 30px 0 30px 30px;
  border-left: 1px solid var(--warm-silver-line);
  position: relative;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 34px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bronze);
}
.timeline li:first-child { padding-top: 0; }
.timeline li:first-child::before { top: 4px; }
.timeline .year {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-deep);
}

/* ==========================================================================
   LEGAL PAGES (Terms, Privacy, Shipping, Cancellation & Refunds)
   ========================================================================== */

.legal-intro p { margin-bottom: 14px; }
.legal-intro p:last-child { margin-bottom: 0; }

.legal-toc {
  position: sticky;
  top: 100px;
  padding: 26px 24px;
  border: 1px solid var(--warm-silver-line);
  background: var(--card);
}
.legal-toc nav a {
  display: block;
  padding: 9px 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  border-bottom: 1px solid var(--warm-silver-line);
  transition: var(--transition);
}
.legal-toc nav a:last-child { border-bottom: none; }
.legal-toc nav a:hover { color: var(--bronze-deep); }

.legal-section { scroll-margin-top: 100px; }
.legal-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bronze);
  flex-shrink: 0;
  min-width: 2ch;
}
.legal-body p { margin-bottom: 14px; }
.legal-body p:last-child { margin-bottom: 0; }

.legal-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.legal-list:last-child { margin-bottom: 0; }
.legal-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  border-bottom: 1px solid var(--warm-silver-line);
}
.legal-list li:last-child { border-bottom: none; }
.legal-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }
