/* ===================================================
   InnerSprings — shared stylesheet
   =================================================== */
:root {
  --forest: #055601;
  --forest-dark: #023a00;
  --forest-deeper: #022b00;
  --gold: #E8CC03;
  --gold-soft: #F3E27A;
  --cream: #FAF6EA;
  --cream-2: #F2EBD8;
  --ink: #15200D;
  --ink-soft: #3B4632;
  --sage: #E7EEDA;
  --line: rgba(21, 32, 13, 0.12);
  --line-on-dark: rgba(255, 255, 255, 0.18);
  --radius-s: 4px;
  --radius-m: 10px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

h1,
h2,
h3,
h4 {
  font-family: 'Lora', serif;
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

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

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

ul {
  margin: 0;
}

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 234, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.brand .mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest);
}

.nav-cta {
  background: var(--forest);
  color: var(--cream);
  padding: 11px 22px;
  border-radius: var(--radius-s);
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid var(--forest);
}

.nav-cta:hover {
  background: var(--forest-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--forest);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg {
  width: 28px;
  height: 28px;
}

@media (max-width:860px) {
  .nav .wrap {
    flex-wrap: wrap;
  }
  .nav-toggle {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    padding-bottom: 24px;
    align-items: flex-start;
  }
  .nav-links.is-active {
    display: flex;
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--forest-deeper);
}

.btn-gold:hover {
  background: #fff;
}

.btn-outline-light {
  border-color: rgba(250, 246, 234, 0.5);
  color: var(--cream);
}

.btn-outline-light:hover {
  border-color: var(--cream);
  background: rgba(250, 246, 234, 0.08);
}

.btn-forest {
  background: var(--forest);
  color: var(--cream);
}

.btn-forest:hover {
  background: var(--forest-dark);
}

.btn-outline-dark {
  border-color: var(--line);
  color: var(--ink);
}

.btn-outline-dark:hover {
  border-color: var(--forest);
  color: var(--forest);
}

/* ---------- PHOTO HERO (used by hero + page-hero) ----------
   Set the photo per-page with an inline style:
   style="--hero-photo:url('images/hero-home.jpg')"
   Until a real photo is added, a forest gradient shows instead,
   so the page never looks broken while images/ is empty.        */
.hero,
.page-hero {
  --hero-photo: none;
  position: relative;
  color: var(--cream);
  overflow: hidden;
  background-color: var(--forest);
  background-image:
    linear-gradient(120deg, rgba(4, 58, 0, 0.94) 0%, rgba(5, 86, 1, 0.72) 45%, rgba(2, 43, 0, 0.90) 100%),
    var(--hero-photo);
  background-size: cover;
  background-position: center;
}

.hero {
  padding: 220px 0 110px;
}

.page-hero {
  padding: 64px 0 84px;
}

.hero-ring-accent {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 420px;
  height: 420px;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.page-hero .hero-inner {
  max-width: 620px;
}

.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.eyebrow-line .dash {
  width: 38px;
  height: 2px;
  background: var(--gold);
}

.eyebrow-line span {
  font-size: 14.5px;
  color: var(--gold-soft);
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 60px);
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(32px, 4.6vw, 48px);
  color: #fff;
}

.hero h1 em,
.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero p.lede,
.page-hero p.lede {
  margin-top: 22px;
  font-size: 17.5px;
  color: rgba(250, 246, 234, 0.86);
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* sector strip (home only) */
.sectors {
  margin-top: 80px;
  padding-top: 36px;
  padding-bottom: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.sectors-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sectors-label::after {
  content: '';
  height: 1px;
  flex-grow: 1;
  background: linear-gradient(90deg, rgba(232, 204, 3, 0.35), transparent);
}

.sectors-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sector-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.sector-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 204, 3, 0.6);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ---------- SECTION HEADINGS ---------- */
.section {
  padding: 96px 0;
}

.section.tight {
  padding: 76px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
}

.section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
}

.on-sage {
  background: var(--sage);
}

.on-forest {
  background: var(--forest);
  color: var(--cream);
}

.on-forest .section-head h2 {
  color: #fff;
}

.on-forest .section-head p {
  color: rgba(250, 246, 234, 0.82);
}

/* ---------- PROBLEM (home) ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width:860px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.problem-text h2 {
  font-size: clamp(32px, 4vw, 44px);
  max-width: 480px;
  line-height: 1.15;
  color: var(--forest-deeper);
}

.text-highlight {
  background: linear-gradient(180deg, transparent 65%, rgba(232, 204, 3, 0.5) 65%);
  display: inline;
  padding-bottom: 2px;
}

.problem-text .lead-text {
  margin-top: 24px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 440px;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  line-height: 1.6;
}

.problem-text .lead-text em {
  color: var(--forest);
  font-style: italic;
  font-weight: 500;
}

.strain-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strain-item {
  display: flex;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.strain-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
  border-color: var(--forest);
}

.strain-item .num {
  font-family: 'Lora', serif;
  font-size: 15px;
  color: var(--gold-soft);
  background: var(--forest);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strain-item h4 {
  font-size: 16.5px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 4px;
}

.strain-item p {
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ---------- CARD GRIDS (services, solutions) ---------- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

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

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

.sol-card {
  padding: 32px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sol-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
  border-color: var(--forest);
}

.sol-card.lead {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.sol-card.lead h3 {
  color: #fff;
}

.sol-card.lead p {
  color: rgba(250, 246, 234, 0.8);
}

.sol-icon {
  width: 34px;
  height: 34px;
  color: var(--forest);
}

.sol-card.lead .sol-icon {
  color: var(--gold);
}

.sol-card h3 {
  font-size: 19px;
  font-weight: 500;
}

.sol-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
}

.sol-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sol-card.lead .sol-link {
  color: var(--gold);
}

/* ---------- SERVICE DETAIL BLOCKS ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 64px;
  background: #fff;
  border-radius: 20px;
  /* var(--radius-l) equivalent */
  border: 1px solid var(--line);
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(5, 86, 1, 0.08);
  border-color: rgba(5, 86, 1, 0.25);
}

@media (max-width:980px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px;
  }
}

@media (max-width:600px) {
  .service-block {
    padding: 32px 24px;
  }
}

.service-block .tag {
  display: inline-block;
  font-size: 13.5px;
  color: var(--gold);
  background: var(--forest-deeper);
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-block h3 {
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.15;
  color: var(--forest-deeper);
}

.service-block .desc {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 440px;
}

.service-block .btn {
  margin-top: 32px;
}

/* Service Block Right Column Styling */
.service-block .right-col {
  background: rgba(250, 246, 234, 0.5);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(21, 32, 13, 0.04);
}

.on-sage .service-block .right-col {
  background: rgba(255, 255, 255, 0.5);
}

.service-block h5.col-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-pill {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 100px;
  background: #fff;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.tag-pill:hover {
  border-color: var(--gold);
  color: var(--forest-deeper);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 204, 3, 0.15);
}

/* ---------- WHY US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.why-grid .photo-panel {
  aspect-ratio: 1 / 1;
}

@media (max-width:860px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width:640px) {
  .why-list {
    grid-template-columns: 1fr;
  }
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #fff;
  padding: 18px 20px;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(5, 86, 1, 0.08);
  border-color: var(--forest);
}

.why-item .check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(5, 86, 1, 0.08);
  color: var(--forest);
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.why-item:hover .check-icon {
  background: var(--forest);
  color: var(--gold);
  transform: scale(1.1);
}

.why-item .check-icon svg {
  width: 16px;
  height: 16px;
}

.why-item p {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.why-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--forest);
  position: relative;
}

/* ---------- PHOTO PANEL (about / values imagery) ----------
   Same swap-in-a-photo pattern as the hero, smaller and square-ish. */
.photo-panel {
  --panel-photo: none;
  aspect-ratio: 4/5;
  border-radius: var(--radius-m);
  overflow: hidden;
  position: relative;
  background-color: var(--forest);
  background-image: linear-gradient(180deg, rgba(2, 43, 0, 0.05) 0%, rgba(2, 43, 0, 0.55) 100%), var(--panel-photo);
  background-size: cover;
  background-position: center;
}

/* ---------- HOW IT WORKS / STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media (max-width:980px) {
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width:520px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.step {
  position: relative;
  padding: 36px 28px;
  background: var(--forest-deeper);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-m);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.step:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8CC03' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

@media (max-width:980px) {
  .step:not(:last-child)::after {
    display: none;
  }
}

.step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232, 204, 3, 0.12);
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
}

.step h4 {
  color: #fff;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 500;
}

.step p {
  color: rgba(250, 246, 234, 0.78);
  font-size: 14.5px;
  margin-top: 10px;
}

/* ---------- VALUES CARDS (about) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

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

.value-card {
  padding: 32px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.015);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5, 86, 1, 0.06);
  border-color: rgba(5, 86, 1, 0.2);
}

.value-card h4 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--forest-deeper);
}

.value-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- FOUNDER (about) ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.founder-grid .photo-panel {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  max-width: 420px;
  width: 100%;
  justify-self: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

@media (max-width:860px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.founder-grid h3 {
  font-size: clamp(28px, 3.5vw, 36px);
  color: #fff;
}

.founder-grid .role {
  font-size: 15.5px;
  color: var(--gold);
  margin-top: 6px;
  font-weight: 500;
}

.founder-grid p.bio {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250, 246, 234, 0.85);
  max-width: 500px;
}

/* ---------- CORPORATE / CONTACT CTA BANNER ---------- */
.corp-cta {
  background: var(--gold);
  border-radius: var(--radius-m);
  padding: 56px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.corp-cta h3 {
  font-size: clamp(24px, 3vw, 32px);
  max-width: 480px;
  color: var(--forest-deeper);
}

.corp-cta p {
  margin-top: 10px;
  color: var(--forest-dark);
  font-size: 15px;
  max-width: 420px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  text-align: left;
  padding: 110px 0;
  background: var(--forest);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.final-cta .wrap {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(30px, 4.4vw, 48px);
  color: #fff;
  max-width: 640px;
}

.final-cta .btn {
  margin-top: 34px;
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width:860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.contact-info-item:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-info-item .icon {
  width: 22px;
  height: 22px;
  color: var(--forest);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h4 {
  font-size: 15.5px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 3px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 14.5px;
  color: var(--ink-soft);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fdfdfc;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(5, 86, 1, 0.08);
  background: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width:520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-form-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(5, 86, 1, 0.06);
  border-color: rgba(5, 86, 1, 0.2);
}

@media (max-width:600px) {
  .contact-form-card {
    padding: 32px 24px;
  }
}

/* ---------- NEWSLETTER ---------- */
.newsletter-section {
  background: var(--cream);
  padding: 80px 0 60px;
}

.newsletter-box {
  background: #FFD500;
  /* A stronger, more vibrant gold */
  border: none;
  border-radius: var(--radius-m);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 12px 32px rgba(255, 213, 0, 0.35);
  /* Updated shadow to match */
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-text {
  flex: 1;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.newsletter-text h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  color: var(--forest-deeper);
}

.newsletter-text p {
  margin-top: 14px;
  color: var(--forest-dark);
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 480px;
  position: relative;
  z-index: 2;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  font-family: 'DM Sans', sans-serif;
  font-size: 15.5px;
  background: #fdfdfc;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(5, 86, 1, 0.1);
  background: #fff;
}

.newsletter-form button {
  white-space: nowrap;
  padding: 16px 32px;
}

@media (max-width: 860px) {
  .newsletter-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
    gap: 28px;
  }

  .newsletter-form {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
  }
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--forest-deeper);
  color: rgba(250, 246, 234, 0.72);
  padding: 64px 0 32px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

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

.foot-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
}

.foot-grid h5 {
  font-size: 13px;
  color: rgba(250, 246, 234, 0.5);
  margin-bottom: 16px;
  font-weight: 600;
}

.foot-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-grid a {
  font-size: 14.5px;
}

.foot-grid a:hover {
  color: #fff;
}

.foot-bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--line-on-dark);
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  flex-wrap: wrap;
  gap: 12px;
}