/* Chef Ciccio — design system
   Forest green · brass · warm marble
   Classy Italian-American, not chain-cookie-cutter */

:root {
  --ink: #0e1612;
  --forest: #173528;
  --forest-mid: #234a38;
  --forest-deep: #0a120e;
  --brass: #b8923e;
  --brass-light: #d4b56a;
  --brass-dark: #8a6a28;
  --marble: #f8f5ef;
  --marble-dim: #efe9df;
  --paper: #fffdf9;
  --muted: #5c675f;
  --line: rgba(23, 53, 40, 0.12);
  --line-strong: rgba(23, 53, 40, 0.22);
  --shadow: 0 24px 60px rgba(14, 22, 18, 0.18);
  --radius: 2px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--marble);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container-wide {
  width: min(1280px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 36rem;
}

/* ——— Atmosphere ——— */
.marble-bg {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(184, 146, 62, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(23, 53, 40, 0.06), transparent 45%),
    linear-gradient(180deg, var(--marble) 0%, var(--marble-dim) 100%);
}

.texture-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brass);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(184, 146, 62, 0.35);
}

.btn-primary:hover {
  background: var(--brass-light);
}

.btn-secondary {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 253, 249, 0.45);
}

.btn-secondary:hover {
  background: rgba(255, 253, 249, 0.1);
  border-color: var(--paper);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--paper);
}

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

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

a.btn-dark,
a.btn-dark:hover,
a.btn-dark:visited {
  color: var(--paper);
}

a.btn-outline:hover,
a.btn-outline:visited:hover {
  color: var(--paper);
}

a.btn-primary,
a.btn-primary:hover,
a.btn-primary:visited {
  color: var(--ink);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(14, 22, 18, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(184, 146, 62, 0.18);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
  color: var(--paper);
}

.logo-img {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  background: transparent;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-top: 0.28rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, 0.82);
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brass-light);
}

.nav-cta {
  padding: 0.65rem 1.1rem !important;
  background: var(--brass);
  color: var(--ink) !important;
  letter-spacing: 0.1em;
}

.nav-cta:hover {
  background: var(--brass-light) !important;
  color: var(--ink) !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 253, 249, 0.3);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
}

.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: 0;
  right: 0;
  z-index: 0;
  background: #0a120e;
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform-origin: 55% 40%;
  will-change: transform;
  animation: kenBurns 32s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from {
    transform: scale(1.08) translate3d(-1.8%, 0.6%, 0);
  }
  to {
    transform: scale(1.2) translate3d(2%, -1.8%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation: none;
    transform: scale(1.06);
  }

  .hero-media {
    top: 0;
    bottom: 0;
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 18, 14, 0.55) 0%, rgba(10, 18, 14, 0.35) 40%, rgba(10, 18, 14, 0.82) 100%),
    linear-gradient(90deg, rgba(10, 18, 14, 0.65) 0%, rgba(10, 18, 14, 0.25) 55%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
  max-width: 52rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 12vw, 8.5rem);
  font-weight: 500;
  line-height: 0.9;
  margin: 0 0 0.35rem;
  opacity: 0;
  animation: rise 1s var(--ease) 0.15s forwards;
}

.hero-sub {
  font-size: clamp(0.78rem, 1.8vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin: 0 0 1.5rem;
  opacity: 0;
  animation: rise 1s var(--ease) 0.28s forwards;
}

.hero-tag {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: rise 1s var(--ease) 0.3s forwards;
}

.hero-copy {
  max-width: 28rem;
  font-size: 1.15rem;
  color: rgba(255, 253, 249, 0.88);
  margin-bottom: 2rem;
  opacity: 0;
  animation: rise 1s var(--ease) 0.45s forwards;
}

.hero .btn-group {
  opacity: 0;
  animation: rise 1s var(--ease) 0.6s forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Page hero (inner) ——— */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4.5rem) 0 4rem;
  background: var(--forest-deep);
  color: var(--paper);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 85% 20%, rgba(184, 146, 62, 0.18), transparent 55%),
    linear-gradient(135deg, var(--forest-deep), var(--forest));
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  margin-bottom: 0.4rem;
}

.page-hero p {
  color: rgba(255, 253, 249, 0.78);
  max-width: 34rem;
  font-size: 1.15rem;
}

/* ——— Sections ——— */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-dark {
  background: var(--forest);
  color: var(--paper);
}

.section-dark .eyebrow {
  color: var(--brass-light);
}

.section-dark .lead,
.section-dark p {
  color: rgba(255, 253, 249, 0.78);
}

.section-dark label {
  color: rgba(255, 253, 249, 0.92);
}

.section-dark .form-note {
  color: rgba(255, 253, 249, 0.55);
}

.section-dark .form-success {
  background: rgba(255, 253, 249, 0.1);
  border-left-color: var(--brass-light);
  color: var(--paper);
}

.section-head {
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split.reverse .split-copy {
  order: 2;
}

.split-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(14, 22, 18, 0.35));
  pointer-events: none;
}

.split-media--plain::after {
  display: none;
}

.frame-accent {
  position: relative;
}

.frame-accent::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1px solid var(--brass);
  z-index: -1;
  opacity: 0.55;
}

/* ——— Signature gallery ——— */
.sig-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.sig-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #050505;
  aspect-ratio: 3 / 4;
}

.sig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
  padding: 0;
}

.sig-card img[src$=".png"] {
  object-fit: contain;
  padding: 0.75rem;
}

.sig-card:hover img {
  transform: scale(1.05);
}

.sig-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 1.1rem 1.1rem;
  background: linear-gradient(transparent, rgba(10, 18, 14, 0.92));
  color: var(--paper);
}

.sig-card h3 {
  font-size: 1.45rem;
  margin: 0 0 0.2rem;
  color: var(--paper);
}

.sig-card p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 253, 249, 0.72);
}

@media (max-width: 960px) {
  .sig-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ——— Menu grid ——— */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.menu-item {
  display: block;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-item:nth-child(odd) {
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}

.menu-item:nth-child(even) {
  padding-left: 2rem;
}

.menu-item h3 {
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.55rem;
}

.tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--line-strong);
  color: var(--muted);
}

.menu-category {
  margin-bottom: 3.5rem;
}

.menu-category h2 {
  font-size: 2.4rem;
  margin-bottom: 0.25rem;
}

.menu-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ——— Feature rows (order / ship products) ——— */
.feature-list {
  display: grid;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr auto;
  gap: 1.75rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-row:first-child {
  border-top: 1px solid var(--line-strong);
}

.feature-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #050505;
}

.feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.feature-thumb img[src$=".png"] {
  object-fit: contain;
  padding: 0.5rem;
}

.feature-row:hover .feature-thumb img {
  transform: scale(1.05);
}

.feature-copy h3 {
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

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

.feature-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.feature-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--forest);
}

.draft-banner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: rgba(184, 146, 62, 0.12);
  border-left: 3px solid var(--brass);
  margin-bottom: 2.5rem;
}

.draft-banner strong {
  color: var(--forest);
}

/* ——— Highlight strip ——— */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 253, 249, 0.15);
  border-bottom: 1px solid rgba(255, 253, 249, 0.15);
}

.highlight {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255, 253, 249, 0.15);
}

.highlight:last-child {
  border-right: none;
}

.highlight h3 {
  font-size: 1.8rem;
  color: var(--brass-light);
  margin-bottom: 0.5rem;
}

.highlight p {
  margin: 0;
  font-size: 0.98rem;
}

/* ——— Pathways / order partners ——— */
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.path-grid.order-partners {
  grid-template-columns: repeat(2, 1fr);
}

.path {
  position: relative;
  padding: 2.25rem 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.path:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
}

.path-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 1rem;
}

.path-logo {
  width: auto;
  max-width: 9.5rem;
  height: 2rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.path-logo img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.path h3 {
  font-size: 1.7rem;
}

.path p {
  color: var(--muted);
  flex: 1;
}

.path .link-arrow {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

.link-arrow::after {
  content: " →";
  transition: margin-left 0.3s var(--ease);
}

.path:hover .link-arrow::after {
  margin-left: 0.35rem;
}

/* ——— Quote ——— */
.quote-block {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.quote-block blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-style: italic;
  line-height: 1.25;
  color: var(--paper);
}

.quote-block cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
}

/* ——— Forms ——— */
.form-grid {
  display: grid;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(184, 146, 62, 0.18);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(23, 53, 40, 0.08);
  border-left: 3px solid var(--forest);
  margin-top: 1rem;
}

.form-success.is-visible {
  display: block;
}

/* ——— Location / contact ——— */
.info-stack {
  display: grid;
  gap: 1.75rem;
}

.info-block h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.info-block p,
.info-block a:not(.btn):not(.social-link) {
  color: var(--muted);
}

.info-block a:not(.btn):not(.social-link):hover {
  color: var(--forest);
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line-strong);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
}

a.social-link:visited {
  color: var(--forest);
}

a.social-link:hover,
a.social-link:focus-visible {
  color: var(--paper);
}

/* ——— Franchise / content blocks ——— */
.content-block {
  max-width: 42rem;
}

.content-block h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.75rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--brass);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.stat {
  padding-top: 1.25rem;
  border-top: 2px solid var(--brass);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.section-dark .stat strong {
  color: var(--brass-light);
}

.section-dark .stat span {
  color: rgba(255, 253, 249, 0.7);
}

.section-dark .stat {
  border-top-color: var(--brass);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 253, 249, 0.72);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-mark {
  font-size: 2rem;
  color: var(--paper);
}

.footer-brand .logo-img {
  width: 3.25rem;
  height: 3.25rem;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 22rem;
  font-size: 0.95rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-col a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 253, 249, 0.1);
  font-size: 0.85rem;
}

/* ——— Reveal on scroll ——— */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ——— Mobile ——— */
@media (max-width: 960px) {
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy {
    order: 0;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-item:nth-child(odd),
  .menu-item:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: none;
  }

  .highlights,
  .path-grid,
  .stat-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .highlight {
    border-right: none;
    border-bottom: 1px solid rgba(255, 253, 249, 0.15);
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-meta {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(14, 22, 18, 0.97);
    padding: 1rem 0 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.95rem 1.25rem;
    border-bottom: 1px solid rgba(255, 253, 249, 0.08);
  }

  .nav-cta {
    margin: 0.75rem 1.25rem 0;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding-bottom: 3.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .split-media,
  .split-media img {
    min-height: 280px;
  }
}