/* harmonyfoods.in — one stylesheet. Brand values come from the old site's Elementor kit:
   ink #212529 · brown #5E4537 · gold #BE9760 · bronze #896738 · Poppins · 1320px container. */

@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 300; font-display: swap; src: url('/fonts/poppins-300.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: italic; font-weight: 400; font-display: swap; src: url('/fonts/poppins-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/poppins-700.woff2') format('woff2'); }

:root {
  color-scheme: light;
  --ink: #212529;
  --brown: #5E4537;
  --gold: #BE9760;
  --gold-dark: #A37F4A;
  --bronze: #896738;
  --cream: #FAF5EC;
  --line: #EADFCC;
  --paper: #FFFFFF;
  --muted: #6A5D52;
  --wa: #25D366;
  --wrap: 1320px;
  --gutter: clamp(16px, 4vw, 32px);
  --radius: 14px;
  --shadow: 0 10px 30px rgba(94, 69, 55, 0.12);
  --font: 'Poppins', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 16px/1.75 var(--font); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bronze); text-underline-offset: 3px; }
a:hover { color: var(--brown); }
h1, h2, h3 { color: var(--brown); line-height: 1.2; margin: 0 0 0.6em; text-wrap: balance; }
h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; }
h2 { font-size: clamp(24px, 3.2vw, 36px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 600; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--brown); outline-offset: 3px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--brown); color: #fff; padding: 10px 16px; border-radius: 6px; z-index: 100; }
.skip-link:focus { top: 12px; }
.icon { width: 1.25em; height: 1.25em; flex: none; }
.center { text-align: center; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 860px; }
.narrow-p { max-width: 860px; }
.kicker { font-size: 15px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.3em; }
.section { padding-block: clamp(40px, 6vw, 72px); }
.tint { background: var(--cream); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--bronze); color: #fff; border: 2px solid var(--bronze); padding: 12px 26px;
  border-radius: 6px; font: 600 14px/1.2 var(--font); letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; cursor: pointer; }
.btn:hover { background: #6E5130; border-color: #6E5130; color: #fff; }
.btn-outline { background: transparent; color: var(--brown); border-color: var(--bronze); }
.btn-outline:hover { background: var(--cream); color: var(--brown); border-color: #6E5130; }
.btn-small { padding: 8px 18px; font-size: 13px; }

/* header + navigation (mobile first: the menu is a panel opened by the Menu button; #menu works without JS) */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: relative; z-index: 20; }
.header-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 84px; }
.brand img { width: 200px; height: auto; }
.menu-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 8px;
  color: var(--brown); font-weight: 600; text-decoration: none; background: #fff; }
.site-nav { display: none; }
.site-nav:target, .menu-open .site-nav { display: block; position: fixed; inset: 0; z-index: 50; background: #fff; overflow-y: auto;
  padding: calc(16px + env(safe-area-inset-top, 0px)) var(--gutter) calc(32px + env(safe-area-inset-bottom, 0px)); }
.menu-close { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; padding: 10px 14px; border: 1px solid var(--line);
  border-radius: 8px; color: var(--brown); font-weight: 600; text-decoration: none; float: right; }
.nav-list { list-style: none; margin: 56px 0 0; padding: 0; clear: both; }
.nav-list > li { border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; }
.nav-list a { display: block; padding: 14px 4px; color: var(--brown); font-weight: 500; text-transform: uppercase; letter-spacing: 0.03em; text-decoration: none; flex: 1; }
.nav-list a[aria-current="page"], .nav-list .is-current > .sub-parent { color: var(--ink); font-weight: 600; }
.sub-toggle { display: none; }
.sub { list-style: none; margin: 0 0 10px; padding: 0 0 0 14px; width: 100%; }
.sub a { padding: 9px 4px; font-size: 14px; text-transform: none; font-weight: 400; }

@media (min-width: 1024px) {
  .header-bar { min-height: 100px; }
  .brand img { width: 261px; }
  .menu-toggle, .menu-close { display: none; }
  .site-nav, .site-nav:target, .menu-open .site-nav { display: block; position: static; padding: 0; overflow: visible; background: none; }
  .nav-list { display: flex; gap: 6px; margin: 0; }
  .nav-list > li { border: 0; position: relative; flex-wrap: nowrap; }
  .nav-list > li > a { padding: 10px 12px; font-size: 15px; }
  .nav-list > li > a:hover { color: var(--ink); }
  .has-sub > .sub-parent { padding-right: 2px; }
  .sub-toggle { display: inline-flex; background: none; border: 0; padding: 6px; color: var(--brown); cursor: pointer; }
  .sub { display: none; position: absolute; top: 100%; left: 0; min-width: 230px; background: #fff; box-shadow: var(--shadow);
    border-top: 3px solid var(--gold); padding: 8px 0; margin: 0; z-index: 30; }
  .has-sub:hover > .sub, .has-sub:focus-within > .sub, .has-sub.open > .sub { display: block; }
  .sub a { padding: 9px 20px; color: var(--brown); font-size: 14px; }
  .sub a:hover { background: var(--cream); color: var(--ink); }
}

/* banner for inner pages */
.banner { background: var(--cream) url('/img/bg-banner.webp') center / cover no-repeat; text-align: center; padding-block: clamp(40px, 7vw, 64px); }
.banner h1 { margin: 0; color: var(--ink); text-transform: uppercase; letter-spacing: 0.02em; }
.banner-kicker { margin: 0 0 6px; font-size: clamp(22px, 3vw, 32px); font-weight: 600; color: var(--bronze); text-transform: uppercase; }
.banner-sub { margin: 6px 0 0; color: var(--bronze); font-size: 18px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

/* home: hero carousel */
.hero { padding-block: 20px 8px; overflow: hidden; }
.hero-track { --slide: 88vw; list-style: none; margin: 0; display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 calc((100vw - var(--slide)) / 2); scrollbar-width: none; overscroll-behavior-x: contain; }
.hero-track::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 var(--slide); scroll-snap-align: center; border-radius: 20px; overflow: hidden; aspect-ratio: 1600 / 841; background: var(--cream); }
.slide a, .slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-dots { display: flex; justify-content: center; gap: 10px; padding-top: 14px; }
.dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--bronze); background: transparent; padding: 0; cursor: pointer; }
.dot[aria-current="true"] { background: var(--bronze); }
@media (min-width: 1024px) { .hero-track { --slide: min(66vw, 960px); gap: 28px; } }

/* home: blinkit */
.blinkit { padding-block: clamp(32px, 5vw, 60px); }
.blinkit-grid { display: grid; gap: clamp(24px, 4vw, 48px); align-items: center; }
.blinkit-art img { border-radius: var(--radius); margin-inline: auto; width: min(520px, 100%); }
.blinkit h2 { font-size: clamp(26px, 3vw, 32px); }
.blinkit-word { color: #000; }
.lead { font-size: 17px; }
@media (min-width: 900px) { .blinkit-grid { grid-template-columns: 5fr 7fr; } }

/* home: why choose */
.why { padding-block: clamp(40px, 6vw, 70px); background: url('/img/bg-circle.webp') center / contain no-repeat; }
.why h2 { margin-bottom: 1.2em; }
.why-grid { display: grid; gap: 24px; align-items: center; }
.why-col { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.why-item { display: flex; align-items: center; gap: 16px; font-weight: 500; font-size: 17px; line-height: 1.4; }
.why-item img { width: 64px; height: 64px; }
.why-centre img { margin-inline: auto; width: min(150px, 40vw); }
@media (min-width: 900px) { .why-centre img { width: 292px; } }
@media (min-width: 900px) {
  .why-grid { grid-template-columns: 1fr auto 1fr; gap: 40px; }
  .why-left { flex-direction: row-reverse; text-align: right; }
}

/* home: intro */
.intro { position: relative; padding-block: clamp(40px, 6vw, 70px); }
.intro-grid { display: grid; gap: 32px; align-items: center; }
.intro-sub { color: var(--bronze); font-weight: 600; }
.intro-art img { margin-inline: auto; }
@media (min-width: 900px) { .intro-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.leaf { position: absolute; width: clamp(90px, 12vw, 180px); opacity: 0.9; pointer-events: none; }
.leaf-r { right: 0; bottom: -60px; }
.leaf-l { left: 0; top: -40px; }
@media (max-width: 899px) { .leaf { display: none; } }

/* product cards + rails + grids */
.products-home { position: relative; padding-block: clamp(40px, 6vw, 64px); background: var(--cream) url('/img/bg-products.webp') center / cover no-repeat; }
.product-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.product-card-link { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 18px 16px 22px; height: 100%; text-decoration: none; }
.product-card img { width: 100%; max-width: 240px; aspect-ratio: 1135 / 1423; object-fit: contain; }
.product-card-title { font-size: 16px; font-weight: 600; text-transform: uppercase; color: var(--ink); margin: 0; letter-spacing: 0.02em; line-height: 1.35; }
.product-card-link:hover .product-card-title { color: var(--brown); }
.product-card-link .btn { margin-top: auto; }
.rail { position: relative; }
.rail-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 72%); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 4px 20px; scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
.rail-track > * { scroll-snap-align: start; }
@media (min-width: 640px) { .rail-track { grid-auto-columns: calc((100% - 40px) / 3); } }
@media (min-width: 1024px) { .rail-track { grid-auto-columns: calc((100% - 60px) / 4); } }
.rail-btn { display: none; }
.js .rail-btn { display: grid; place-items: center; position: absolute; top: 40%; width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: var(--brown); color: #fff; box-shadow: var(--shadow); cursor: pointer; z-index: 2; }
.js .rail-btn.prev { left: -8px; }
.js .rail-btn.next { right: -8px; }
.rail-btn[disabled] { opacity: 0.35; cursor: default; }
/* flex-wrap, centred: 6 or 7 products never leave one card stranded at the left of a last row */
.product-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.product-grid > * { flex: 0 1 280px; }
.product-grid.small > * { flex-basis: 220px; }

/* home: plant photos, stats, clients */
.plant { padding-block: clamp(40px, 6vw, 64px); }
.photo-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
/* five plant photos: one large + four small fills the grid exactly (2 cols: 1 wide + 2x2; 4 cols: 2x2 + 2x2) */
.photo-grid.mosaic li:first-child { grid-column: span 2; }
@media (min-width: 900px) {
  .photo-grid.mosaic { grid-template-columns: repeat(4, 1fr); }
  .photo-grid.mosaic li:first-child { grid-row: span 2; }
  .photo-grid.mosaic li:first-child a, .photo-grid.mosaic li:first-child img { height: 100%; }
}
.photo-grid a { display: block; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.photo-grid img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.4s ease; }
.photo-grid a:hover img { transform: scale(1.03); }
/* seven certificates: centred rows (4 + 3 on desktop) so the last row never strands one on the left */
.photo-grid.certs { display: flex; flex-wrap: wrap; justify-content: center; }
.photo-grid.certs > li { flex: 0 1 calc(50% - 8px); }
@media (min-width: 900px) { .photo-grid.certs > li { flex-basis: calc(25% - 12px); } }
.photo-grid.certs img { aspect-ratio: 636 / 846; object-fit: contain; background: #fff; }
.stats { background: var(--brown); color: #fff; padding-block: 18px; }
.stats-grid { list-style: none; margin: 0 auto; display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.stats-grid li { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: center; padding: 10px 0; }
.stats-grid img { grid-row: span 2; width: 52px; height: 52px; }
.stats-grid strong { font-size: clamp(22px, 3vw, 30px); line-height: 1.1; }
.stats-grid span { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: #F1E6D6; }
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.clients { padding-block: clamp(40px, 6vw, 64px); background: var(--cream) url('/img/bg-clients.webp') center / cover no-repeat; }
.client-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
@media (min-width: 1100px) { .client-grid { grid-template-columns: repeat(9, 1fr); } }
.client-grid li { background: #fff; border-radius: 10px; box-shadow: var(--shadow); padding: 8px; }
.client-grid img { width: 100%; aspect-ratio: 2 / 1; object-fit: contain; }

/* inner pages */
.timeline { list-style: none; margin: 24px 0 0; padding: 0; border-left: 3px solid var(--gold); }
.timeline li { position: relative; padding: 0 0 26px 28px; }
.timeline li::before { content: ''; position: absolute; left: -10px; top: 6px; width: 17px; height: 17px; border-radius: 50%; background: #fff; border: 3px solid var(--gold); }
.timeline .year { display: inline-block; font-weight: 700; font-size: 22px; color: var(--brown); margin-bottom: 4px; }
.two-up { display: grid; gap: 24px; }
@media (min-width: 900px) { .two-up { grid-template-columns: 1fr 1fr; } }
.icon-card { display: flex; gap: 18px; background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.icon-card > .icon { width: 44px; height: 44px; color: var(--bronze); }
.icon-card h2 { font-size: 22px; color: var(--bronze); text-transform: uppercase; }
.promise { border-top: 3px solid var(--gold); padding-top: 16px; }
.promise h3 { color: var(--bronze); text-transform: uppercase; }
.people { display: grid; gap: 24px; margin-top: 16px; }
.people-compact { grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr)); margin-block: 16px 28px; }
.person { display: grid; grid-template-columns: 96px 1fr; gap: 20px; align-items: start; background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.person-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.person h3 { color: var(--bronze); margin-bottom: 2px; }
.person .role { font-weight: 600; margin-bottom: 8px; }
.person p:last-child { margin-bottom: 0; }
@media (min-width: 640px) { .person { grid-template-columns: 120px 1fr; } .person-photo { width: 120px; height: 120px; } }
.closing { font-style: italic; }
.prose p, .prose li { font-size: 17px; }
.prose ul { margin: 0 0 1em; }

/* product page */
.product-grid-2 { display: grid; gap: 32px; align-items: center; }
.product-shot img { margin-inline: auto; width: min(460px, 100%); }
.chip a { display: inline-block; background: var(--cream); color: var(--brown); border: 1px solid var(--line); padding: 4px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em; }
.more-info { font-size: 20px; color: var(--ink); text-transform: uppercase; margin-top: 1.4em; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 900px) { .product-grid-2 { grid-template-columns: 5fr 7fr; gap: 56px; } }

/* contact + forms */
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.contact-info h2 { color: var(--bronze); font-size: 24px; }
.contact-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 12px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-list .icon { color: var(--gold); margin-top: 4px; }
.sister-kicker { margin: 36px 0 4px; font-size: 16px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); }
.enquiry { display: grid; gap: 14px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 4vw, 32px); }
.enquiry h2 { font-size: 24px; margin: 0; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 500; }
.req { color: #B3261E; }
.opt { color: var(--muted); font-weight: 400; font-size: 14px; }
.enquiry input, .enquiry textarea { width: 100%; font: inherit; color: var(--ink); background: #fff; border: 1px solid #857259; border-radius: 8px; padding: 11px 12px; }
.enquiry input:focus, .enquiry textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.enquiry .btn { justify-self: start; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0; font-weight: 500; min-height: 1.5em; }
.form-status.ok { color: #1E6B34; }
.form-status.err { color: #B3261E; }
.enquire-dialog { border: 0; border-radius: var(--radius); padding: 0; width: min(560px, calc(100vw - 32px)); max-height: calc(100dvh - 32px); overflow: auto; box-shadow: var(--shadow); }
.enquire-dialog::backdrop { background: rgba(33, 37, 41, 0.55); }
.enquire-dialog .enquiry { border: 0; border-radius: 0; }
.dialog-close { position: absolute; right: 10px; top: 10px; background: #fff; border: 1px solid var(--line); border-radius: 50%; width: 40px; height: 40px;
  display: grid; place-items: center; color: var(--brown); cursor: pointer; z-index: 1; }

/* lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 96vw; max-height: 96dvh; }
.lightbox::backdrop { background: rgba(0, 0, 0, 0.85); }
.lightbox img { max-width: 96vw; max-height: 88dvh; width: auto; height: auto; border-radius: 8px; }
.lightbox .dialog-close { right: 8px; top: 8px; }

/* footer */
.site-footer { margin-top: 0; color: #fff; }
.footer-top { background: var(--gold); padding-block: 18px; }
.footer-top-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 22px; }
.footer-links a { color: #2B1F17; text-decoration: none; text-transform: uppercase; font-weight: 600; letter-spacing: 0.04em; font-size: 14px; }
.footer-links a:hover { text-decoration: underline; color: #2B1F17; }
.footer-logo { width: 200px; }
.footer-bottom { background: var(--bronze); padding-block: 28px calc(28px + env(safe-area-inset-bottom, 0px)); }
.footer-bottom-inner { display: grid; gap: 24px; }
@media (min-width: 900px) { .footer-bottom-inner { grid-template-columns: 1.4fr 1fr; align-items: end; } .footer-meta { text-align: right; } .social { justify-content: flex-end; } }
.footer-address { display: flex; gap: 12px; }
.footer-address .icon { margin-top: 4px; }
.footer-address p { margin: 0 0 4px; }
.footer-name { font-weight: 600; }
.footer-contact a, .footer-meta a { color: #fff; }
.small { font-size: 14px; color: #fff; margin: 4px 0 0; }
.social { list-style: none; margin: 0 0 8px; padding: 0; display: flex; gap: 10px; }
.social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.16); color: #fff; }
.social a:hover { background: rgba(255, 255, 255, 0.3); }
.social .icon { width: 20px; height: 20px; }

/* floating WhatsApp */
.wa-float { position: fixed; right: 15px; bottom: calc(15px + env(safe-area-inset-bottom, 0px)); z-index: 40; width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25); }
.wa-float .icon { width: 30px; height: 30px; }
.wa-float:hover { color: #fff; filter: brightness(1.05); }
.menu-open .wa-float, body:has(#menu:target) .wa-float { display: none; }

/* captions, downloads, intros and onward links */
address { font-style: normal; }
figure { margin: 0; }
figcaption { margin-top: 10px; font-size: 15px; font-weight: 500; text-align: center; color: var(--brown); }
.photo-grid.certs a { box-shadow: var(--shadow); }
.photo-strip { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .photo-strip { grid-template-columns: repeat(3, 1fr); } }
.photo-strip a { display: block; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.photo-strip img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.pdf-heading { font-size: 22px; margin-top: 40px; }
.pdf-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pdf-list a { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.cat-intro { max-width: 860px; margin: 0 auto 32px; text-align: center; font-size: 17px; }
.next-links, .rail-links { margin-top: 20px; font-weight: 500; }

/* no-JS form reply page (served by the Worker) */
.reply { max-width: 560px; margin: 12vh auto; padding: 24px var(--gutter); text-align: center; }
.reply img { margin: 0 auto 24px; width: 220px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
