/* ==========================================================================
   Coast India Agro LLP — site.css
   Design system: coastal green + sand + brass. Mobile-first.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --brand:        #0f5d47;
  --brand-700:    #0b4a38;
  --brand-900:    #06291f;
  --brand-50:     #eaf3ef;
  --accent:       #c2872f;
  --accent-soft:  #f4e6cd;

  --ink:          #12241d;
  --body:         #3f5149;
  --muted:        #6d7f76;

  --cream:        #fffdf9;
  --sand:         #f7f3ea;
  --sand-2:       #efe8dc;
  --line:         #e3dccf;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(18,36,29,.05), 0 2px 8px rgba(18,36,29,.05);
  --shadow:    0 6px 18px rgba(18,36,29,.08), 0 2px 6px rgba(18,36,29,.05);
  --shadow-lg: 0 24px 60px rgba(18,36,29,.16);

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section: clamp(4.5rem, 9vw, 8rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0125rem;
  line-height: 1.72;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
button { font: inherit; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-family: var(--serif); font-weight: 600; line-height: 1.14; letter-spacing: -.02em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- 3. Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--sand { background: var(--sand); }
.section--tint { background: var(--brand-50); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* min() guard stops a track exceeding the container on 320px-class phones,
   which would otherwise cause horizontal scrolling. */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(min(275px, 100%), 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); }

.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--wide { grid-template-columns: 1.15fr .85fr; } }

/* ---------- 4. Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow--light { color: var(--accent-soft); }
.eyebrow--light::before { background: var(--accent-soft); }

h1, .h1 { font-size: clamp(2.35rem, 5.6vw, 4rem); }
h2, .h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3, .h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); line-height: 1.28; }
h4, .h4 { font-size: 1.02rem; line-height: 1.35; }

.lede { font-size: clamp(1.06rem, 1.5vw, 1.22rem); line-height: 1.68; color: var(--body); }
.muted { color: var(--muted); }
.small { font-size: .875rem; line-height: 1.6; }
.measure { max-width: 62ch; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.stack > * + * { margin-top: 1.1rem; }
.section-head { max-width: 720px; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .92rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  font-size: .935rem; font-weight: 600; letter-spacing: .01em; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(15,93,71,.24); }
.btn--primary:hover { background: var(--brand-700); box-shadow: 0 12px 26px rgba(15,93,71,.3); }
.btn--accent { background: var(--accent); color: #211505; box-shadow: 0 8px 20px rgba(194,135,47,.28); }
.btn--accent:hover { background: #b0782a; }
.btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--outline { border-color: var(--line); color: var(--brand); background: #fff; }
.btn--outline:hover { border-color: var(--brand); background: var(--brand-50); }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row.center { justify-content: center; }

.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .93rem; color: var(--brand); }
.link-arrow svg { transition: transform .22s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 6. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,253,249,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(18,36,29,.07); }
.topbar { display: none; background: var(--brand-900); color: #cfe0d9; font-size: .8rem; }
@media (min-width: 720px) { .topbar { display: block; } }
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .35rem 1.6rem; align-items: center; justify-content: space-between; padding-block: .55rem; }
.topbar a { color: #eaf3ef; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar span { display: inline-flex; align-items: center; gap: .45rem; }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: .85rem; }
.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand img { width: 40px; height: 40px; }
.brand b { display: block; font-family: var(--serif); font-size: 1.08rem; font-weight: 600; color: var(--ink); line-height: 1.1; letter-spacing: -.01em; }
.brand small { display: block; font-size: .63rem; letter-spacing: .17em; text-transform: uppercase; color: var(--muted); }

.nav-links { display: none; align-items: center; gap: .2rem; list-style: none; }
@media (min-width: 1080px) { .nav-links { display: flex; } }
.nav-links > li { position: relative; }
.nav-links a {
  display: block; padding: .6rem .8rem; border-radius: 999px;
  font-size: .9rem; font-weight: 500; color: var(--ink);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav-links a:hover { background: var(--brand-50); color: var(--brand); }
.nav-links a[aria-current="page"] { color: var(--brand); font-weight: 600; }
.nav-cta { display: none; }
@media (min-width: 1080px) { .nav-cta { display: inline-flex; } }

.has-sub > a::after { content: "▾"; font-size: .62em; margin-left: .4em; opacity: .55; }
.subnav {
  position: absolute; top: calc(100% + .35rem); left: 0; min-width: 272px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .5rem; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.has-sub:hover .subnav, .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav a { padding: .62rem .8rem; border-radius: 9px; font-size: .9rem; }
.subnav a span { display: block; font-size: .76rem; color: var(--muted); font-weight: 400; margin-top: .1rem; }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line); cursor: pointer;
}
@media (min-width: 1080px) { .burger { display: none; } }
.burger i { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--cream); padding: 1.1rem var(--gutter) 3rem;
  overflow-y: auto; display: none;
}
.drawer.is-open { display: block; animation: fade .22s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(-8px); } }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.drawer ul { list-style: none; }
.drawer > ul > li { border-bottom: 1px solid var(--line); }
.drawer > ul > li > a { display: block; padding: .95rem 0; font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.drawer .sub { padding: 0 0 1rem .2rem; }
.drawer .sub a { display: block; padding: .42rem 0; font-size: .95rem; color: var(--body); }
.drawer .btn { width: 100%; margin-top: 1.6rem; }

/* ---------- 7. Hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.04) contrast(1.02); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(6,41,31,.93) 0%, rgba(6,41,31,.78) 42%, rgba(6,41,31,.34) 100%),
    linear-gradient(to top, rgba(6,41,31,.6), transparent 55%);
}
.hero__inner { padding-block: clamp(5rem, 13vw, 9.5rem); max-width: 760px; }
.hero h1 { color: #fff; text-wrap: balance; }
.hero .lede { color: #d5e5de; margin-top: 1.35rem; max-width: 56ch; }
.hero .btn-row { margin-top: 2.1rem; }
.hero--page .hero__inner { padding-block: clamp(3.75rem, 9vw, 6.5rem); }
.hero--page h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }

.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; font-size: .82rem; color: #a9c4ba; margin-bottom: 1.15rem; }
.breadcrumb a { color: #cde0d8; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li + li::before { content: "/"; margin-right: .45rem; opacity: .5; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2.1rem; }
.hero-badges span {
  font-size: .78rem; font-weight: 500; letter-spacing: .02em; color: #dcebe5;
  border: 1px solid rgba(255,255,255,.26); border-radius: 999px; padding: .42rem .95rem;
  background: rgba(255,255,255,.07);
}

/* ---------- 8. Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.5rem 1.5rem 1.65rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.card__body p { font-size: .93rem; }
.card .link-arrow { margin-top: auto; padding-top: .35rem; }

.tag {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  background: rgba(255,253,249,.94); color: var(--brand-700);
  font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  padding: .38rem .72rem; border-radius: 999px;
}

/* Category card (large) */
.cat-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; display: flex; color: #fff; isolation: isolate; }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s var(--ease); }
.cat-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(6,41,31,.94) 8%, rgba(6,41,31,.55) 48%, rgba(6,41,31,.15) 100%); }
.cat-card:hover img { transform: scale(1.06); }
.cat-card__body { margin-top: auto; width: 100%; padding: 1.75rem; }
.cat-card h3 { color: #fff; }
.cat-card ul { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: .9rem 0 1.15rem; }
.cat-card li { font-size: .77rem; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: .28rem .7rem; color: #dcebe5; }
.cat-card .link-arrow { color: #fff; }

/* Feature / icon card */
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.6rem; height: 100%; transition: transform .26s var(--ease), box-shadow .26s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand); margin-bottom: 1.1rem; }
.feature .ic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.12rem; margin-bottom: .55rem; }
.feature p { font-size: .93rem; margin: 0; }
.feature--num .ic { background: var(--accent-soft); color: #7a5210; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }

/* Spec list */
.spec { list-style: none; display: grid; gap: .6rem; }
.spec li { display: grid; grid-template-columns: 20px 1fr; gap: .7rem; font-size: .93rem; align-items: start; }
.spec li::before {
  content: ""; width: 18px; height: 18px; margin-top: .29em; border-radius: 50%;
  background: var(--brand-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f5d47' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.spec--light li::before { background-color: rgba(255,255,255,.16); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }

/* Data table */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.data { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 560px; }
table.data th, table.data td { text-align: left; padding: .9rem 1.15rem; border-bottom: 1px solid var(--line); vertical-align: top; }
table.data thead th { background: var(--sand); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-700); font-weight: 700; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: #fbfaf6; }

/* Media frame */
.frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.frame--tall img { aspect-ratio: 3/4; }
.frame--wide img { aspect-ratio: 16/10; }
.media-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.media-duo .frame:first-child { margin-top: 2rem; }

.badge-float {
  position: absolute; right: -.5rem; bottom: -.5rem; background: var(--brand); color: #fff;
  padding: 1.15rem 1.35rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); max-width: 220px;
}
.badge-float b { display: block; font-family: var(--serif); font-size: 1.75rem; line-height: 1; margin-bottom: .3rem; }
.badge-float span { font-size: .78rem; color: #bcd6cc; }

/* ---------- 9. Stats ---------- */
.stats { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr)); }
.stat { text-align: center; padding: 1.25rem .5rem; }
.stat b { display: block; font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--brand); line-height: 1; }
.stat span { display: block; margin-top: .55rem; font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.stats--light .stat b { color: #fff; }
.stats--light .stat span { color: #a9c4ba; }

/* ---------- 10. CTA band ---------- */
.cta-band { position: relative; isolation: isolate; color: #fff; overflow: hidden; background: var(--brand-900); }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; opacity: .3; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, rgba(6,41,31,.95), rgba(11,74,56,.75)); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfe0d9; }

/* ---------- 11. Accordion ---------- */
.acc { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.acc + .acc { margin-top: .75rem; }
.acc summary {
  cursor: pointer; list-style: none; padding: 1.15rem 3.2rem 1.15rem 1.35rem;
  font-family: var(--serif); font-size: 1.05rem; color: var(--ink); position: relative;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+"; position: absolute; right: 1.3rem; top: 50%; translate: 0 -50%;
  font-family: var(--sans); font-size: 1.4rem; color: var(--brand); transition: transform .22s var(--ease);
}
.acc[open] summary::after { transform: rotate(45deg); }
.acc .acc-body { padding: 0 1.35rem 1.4rem; font-size: .95rem; }

/* ---------- 12. Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3.5vw, 2.6rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: .42rem; }
.field .req { color: #b3261e; }
.field input, .field select, .field textarea {
  width: 100%; padding: .82rem 1rem; font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 10px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d7f76' stroke-width='2.4' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; background-size: 16px; padding-right: 2.5rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(15,93,71,.1); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #d1584f; }
.field-row { display: grid; gap: 0 1.15rem; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }
.check { display: grid; grid-template-columns: 20px 1fr; gap: .7rem; align-items: start; font-size: .84rem; color: var(--muted); line-height: 1.55; }
.check input { width: 18px; height: 18px; margin-top: .18rem; accent-color: var(--brand); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-note { font-size: .8rem; color: var(--muted); margin-top: 1rem; }
.form-status { display: none; margin-top: 1.1rem; padding: .95rem 1.15rem; border-radius: 10px; font-size: .9rem; }
.form-status.is-visible { display: block; }
.form-status.ok { background: var(--brand-50); color: var(--brand-700); border: 1px solid #bcd8cd; }
.form-status.err { background: #fdecea; color: #8c2b23; border: 1px solid #f2c2bd; }

/* ---------- 13. Contact blocks ---------- */
.info-list { list-style: none; display: grid; gap: 1.5rem; }
.info-list li { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; }
.info-list .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-50); color: var(--brand); display: grid; place-items: center; }
.info-list .ic svg { width: 20px; height: 20px; }
.info-list h4 { margin-bottom: .25rem; font-family: var(--sans); font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.info-list address { font-style: normal; font-size: .95rem; color: var(--ink); line-height: 1.65; }
.info-list a { color: var(--ink); }
.info-list a:hover { color: var(--brand); }

/* ---------- 14. Footer ---------- */
.site-footer { background: var(--brand-900); color: #a9c4ba; padding-block: clamp(3.5rem, 7vw, 5rem) 0; font-size: .92rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a { color: #c3d8d0; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1020px) { .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1.2fr; } }
.footer-brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.15rem; }
.footer-brand img { width: 42px; height: 42px; }
.footer-brand b { color: #fff; font-family: var(--serif); font-size: 1.12rem; display: block; }
.footer-brand small { font-size: .63rem; letter-spacing: .17em; text-transform: uppercase; color: #7fa094; display: block; }
.site-footer ul { list-style: none; display: grid; gap: .6rem; }
.site-footer address { font-style: normal; line-height: 1.75; }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  align-items: center; justify-content: space-between; font-size: .82rem; color: #7fa094;
}
.footer-bottom ul { display: flex; gap: 1.25rem; }

/* ---------- 15. Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- 16. Utilities ---------- */
.hr { height: 1px; background: var(--line); border: 0; margin-block: clamp(2.5rem, 5vw, 4rem); }
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { font-size: .78rem; font-weight: 500; color: var(--brand-700); background: var(--brand-50); border-radius: 999px; padding: .38rem .85rem; }
.pill--accent { color: #7a5210; background: var(--accent-soft); }
.notice { background: var(--accent-soft); border: 1px solid #e6d0a8; border-radius: var(--radius); padding: 1.15rem 1.35rem; font-size: .88rem; color: #6b4a11; }
.notice b { color: #4d340a; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.no-scroll { overflow: hidden; }
