/* ==========================================================================
   Artham Agritech — Design System
   Palette: forest green + marigold (from brand mark) with a restrained
   "Jodhpur blue" signature accent, on a warm stone-paper ground.
   Type: Newsreader (display serif) / Work Sans (body) / IBM Plex Mono (data)
   ========================================================================== */

:root {
  /* Color */
  --paper: #F7F4EC;
  --paper-deep: #EFEADB;
  --ink: #16241C;
  --ink-soft: #3E4A41;
  --forest: #1F4D36;
  --forest-dark: #123023;
  --forest-tint: #E7EEE8;
  --marigold: #E0921F;
  --marigold-light: #F3B65B;
  --marigold-tint: #FBEBD2;
  --jodhpur: #2C6E8E;
  --jodhpur-dark: #1D4C63;
  --jodhpur-tint: #E4EFF3;
  --sand: #DED2B4;
  --sand-line: #E4DAC4;
  --white: #FFFFFF;

  /* Type */
  --font-display: "Newsreader", "Iowan Old Style", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;

  /* Layout */
  --maxw: 1200px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;
  --shadow-soft: 0 12px 32px -18px rgba(18, 48, 35, 0.35);
  --shadow-card: 0 2px 0 rgba(22, 36, 28, 0.05), 0 18px 36px -24px rgba(22, 36, 28, 0.28);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  color: var(--forest-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 560; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }

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

section { padding: 96px 0; }
@media (max-width: 720px) {
  section { padding: 64px 0; }
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--marigold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--marigold);
  display: inline-block;
}

.lede {
  font-size: 1.15rem;
  max-width: 60ch;
  color: var(--ink-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--forest-dark); border-color: rgba(18,48,35,0.28); }
.btn-ghost:hover { border-color: var(--forest-dark); transform: translateY(-1px); }
.btn-on-dark { background: var(--marigold); color: var(--forest-dark); }
.btn-on-dark:hover { background: var(--marigold-light); transform: translateY(-1px); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--sand-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 52px; width: auto; }
.brand-wordmark { display: none; }

.nav-primary {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-primary a {
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.16s ease, color 0.16s ease;
}
.nav-primary a:hover { background: var(--forest-tint); color: var(--forest-dark); }
.nav-primary a.active { color: var(--forest-dark); font-weight: 700; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 11px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-dark);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .brand-wordmark { display: none; }
  .nav-toggle { display: block; }
  .nav-primary {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--sand-line);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 22px;
    display: none;
    gap: 2px;
  }
  .nav-primary.open { display: flex; }
  .nav-primary a { padding: 13px 10px; }
  .header-actions .btn-ghost { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 0;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy h1 em {
  font-style: italic;
  color: var(--forest);
}
.hero-copy .lede { margin-bottom: 34px; }

.hero-media {
  position: relative;
}
.hero-media .steam-line {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  opacity: 0.55;
  z-index: 0;
}
.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 4.6;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(23, 36, 28, 0.72);
  color: var(--white);
  backdrop-filter: blur(6px);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.trust-strip {
  margin-top: 64px;
  border-top: 1px solid var(--sand-line);
  padding: 22px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  justify-content: space-between;
}
.trust-strip span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-strip span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--marigold);
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; }
}

/* ==========================================================================
   Section variants
   ========================================================================== */
.section-alt { background: var(--forest-tint); }
.section-dark {
  background: var(--forest-dark);
  color: var(--paper);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(247, 244, 236, 0.78); }
.section-dark .eyebrow { color: var(--marigold-light); }
.section-dark .eyebrow::before { background: var(--marigold-light); }

.section-head {
  max-width: 760px;
  margin-bottom: 52px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Two-column intro (About snippet, etc.) */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   Cards: USP / Why steam
   ========================================================================== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand-line);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.usp-card {
  background: var(--paper);
  padding: 36px 26px;
}
.usp-card .icon {
  width: 46px;
  height: 46px;
  color: var(--forest);
  margin-bottom: 20px;
}
.usp-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.usp-card p { font-size: 0.92rem; margin: 0; }

@media (max-width: 860px) {
  .usp-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .usp-grid { grid-template-columns: 1fr; }
}

/* Spec strip (temperature / pressure / time) */
.spec-strip {
  margin-top: 40px;
  border: 1px solid var(--sand-line);
  border-radius: 999px;
  background: var(--paper);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 22px 36px;
  gap: 18px 30px;
}
.spec-item { display: flex; align-items: center; gap: 12px; }
.spec-item .icon { width: 26px; height: 26px; color: var(--marigold); flex-shrink: 0; }
.spec-item .label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
}
.spec-item .value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest-dark);
}
.section-dark .spec-strip { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.14); }
.section-dark .spec-item .value { color: var(--white); }
.section-dark .spec-item .label { color: rgba(247,244,236,0.6); }

/* ==========================================================================
   Process steps
   ========================================================================== */
.process-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}
.process-rail::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--sand) 0 8px, transparent 8px 14px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  text-align: center;
}
.process-step .num {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  border: 5px solid var(--paper);
}
.process-step h3 { font-size: 0.98rem; margin-bottom: 6px; }
.process-step p { font-size: 0.84rem; margin: 0; }

@media (max-width: 900px) {
  .process-rail { grid-template-columns: repeat(2, 1fr); gap: 32px 12px; }
  .process-rail::before { display: none; }
}

.ipqc-banner {
  margin-top: 52px;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ipqc-banner .icon { width: 40px; height: 40px; color: var(--marigold-light); flex-shrink: 0; }
.ipqc-banner strong { display: block; font-size: 1.05rem; margin-bottom: 2px; }
.ipqc-banner span { font-size: 0.9rem; color: rgba(255,255,255,0.82); }

/* ==========================================================================
   Product categories (home teaser + products page)
   ========================================================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.category-card .icon {
  width: 40px;
  height: 40px;
  color: var(--jodhpur);
  margin-bottom: 22px;
}
.category-card h3 { margin-bottom: 10px; }
.category-card ul {
  list-style: none;
  margin: 16px 0 22px;
  padding: 0;
  border-top: 1px solid var(--sand-line);
  padding-top: 16px;
}
.category-card li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.category-card li span.forms {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--jodhpur-dark);
  background: var(--jodhpur-tint);
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
  align-self: center;
}
.category-card .cta {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 900px) {
  .category-grid { grid-template-columns: 1fr; }
}

.forms-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: var(--marigold-tint);
  color: var(--forest-dark);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* ==========================================================================
   Product listing (products.html)
   ========================================================================== */
.product-section + .product-section { margin-top: 76px; }
.product-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid var(--forest-dark);
  padding-bottom: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.product-section-head h2 { margin-bottom: 0; }
.product-section-head .count {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.product-card {
  border: 1px solid var(--sand-line);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.product-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
  border-color: transparent;
}
.product-card .icon {
  width: 34px;
  height: 34px;
  color: var(--forest);
  margin-bottom: 16px;
}
.product-card h4 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin: 0 0 10px;
  color: var(--forest-dark);
  font-weight: 600;
}
.product-card .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--forest-tint);
  color: var(--forest-dark);
}
.tag.blue { background: var(--jodhpur-tint); color: var(--jodhpur-dark); }
.tag.gold { background: var(--marigold-tint); color: #7A4E0C; }

/* ==========================================================================
   Certifications
   ========================================================================== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  text-align: center;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--marigold-tint);
  margin-bottom: 18px;
}
.cert-badge .icon { width: 30px; height: 30px; color: var(--marigold); }
.cert-card h3 { margin-bottom: 4px; }
.cert-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--jodhpur);
  margin-bottom: 14px;
}
.cert-card p { font-size: 0.9rem; margin: 0; }
@media (max-width: 860px) { .cert-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Values grid (about)
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card {
  padding: 28px 4px;
  border-top: 3px solid var(--forest);
}
.value-card h3 { font-size: 1.08rem; }
.value-card p { font-size: 0.92rem; }
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Quote / stat band
   ========================================================================== */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-band .stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--marigold-light);
  margin-bottom: 6px;
}
.stat-band .stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(247,244,236,0.7);
}
@media (max-width: 720px) { .stat-band { grid-template-columns: 1fr 1fr; gap: 30px 16px; } }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(247,244,236,0.8); margin-bottom: 0; max-width: 46ch; }
.cta-banner .btn-row { flex-shrink: 0; }
@media (max-width: 760px) { .cta-banner { padding: 44px 28px; } }

/* ==========================================================================
   Resource / backlink list
   ========================================================================== */
.resource-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.resource-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  background: var(--white);
  transition: border-color 0.16s ease, transform 0.16s ease;
}
.resource-list a:hover { border-color: var(--forest); transform: translateY(-1px); }
.resource-list .name { font-weight: 600; color: var(--forest-dark); display: block; font-size: 0.98rem; }
.resource-list .desc { font-size: 0.82rem; color: var(--ink-soft); }
.resource-list .arrow { color: var(--marigold); flex-shrink: 0; }
@media (max-width: 700px) { .resource-list { grid-template-columns: 1fr; } }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 18px;
}
.contact-card .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--jodhpur);
  display: block;
  margin-bottom: 8px;
}
.contact-card a.value, .contact-card .value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest-dark);
  text-decoration: none;
}

form.contact-form {
  display: grid;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--forest);
  outline-offset: 1px;
  border-color: var(--forest);
}
.field textarea { resize: vertical; min-height: 130px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--forest-dark);
  color: rgba(247,244,236,0.8);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247,244,236,0.14);
}
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-brand p { color: rgba(247,244,236,0.68); font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: rgba(247,244,236,0.78); text-decoration: none; font-size: 0.94rem; }
.footer-col a:hover { color: var(--marigold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(247,244,236,0.55);
}
.footer-bottom .addr { font-family: var(--font-mono); font-size: 0.76rem; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  padding: 64px 0 20px;
  border-bottom: 1px solid var(--sand-line);
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 18px; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--forest); }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.inline-cta {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--forest);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.16s ease, gap 0.16s ease;
}
.inline-cta:hover { border-color: var(--forest); gap: 11px; }

/* Utility */
.mt-0 { margin-top: 0; }
.center-text { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
:focus-visible {
  outline: 2px solid var(--jodhpur);
  outline-offset: 2px;
}
