/* ==========================================================================
   The Oak & Ivy — stylesheet
   Palette: forest (#0f5c43), white, parchment, brass, ink
   Type: Fraunces (display) + Public Sans (body) + IM Fell English SC (labels/prices)
   ========================================================================== */

:root {
  --forest: #0f5c43;
  --forest-dark: #08392a;
  --forest-deep: #062219;
  --white: #ffffff;
  --parchment: #f2e8d3;
  --parchment-dark: #e6d8b8;
  --brass: #b8863a;
  --brass-light: #d9ac5c;
  --ink: #1b201c;
  --ink-soft: #3a4640;

  --font-display: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --font-body: "Public Sans", -apple-system, "Segoe UI", sans-serif;
  --font-label: "IM Fell English SC", "Iowan Old Style", "Georgia", serif;

  --max-width: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.5em;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

em, .accent-italic {
  font-style: italic;
  font-weight: 500;
}

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-block;
  margin-bottom: 0.9em;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ---------------------------------------------------------------------- */
/* Skip link                                                              */
/* ---------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--forest-dark);
  color: var(--white);
  padding: 10px 16px;
  z-index: 1000;
  border-radius: var(--radius);
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }

/* ---------------------------------------------------------------------- */
/* Header / Nav                                                          */
/* ---------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--forest-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* On the homepage the header floats transparent over the hero, then
   solidifies to forest green once the visitor scrolls past it. */
body.is-home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
}
body.is-home .site-header.scrolled {
  background: var(--forest-dark);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
  transition: padding 0.35s ease;
}
.site-header.scrolled .nav { padding: 8px 32px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  height: 88px;
  width: 88px;
  object-fit: contain;
  transition: height 0.35s ease, width 0.35s ease;
}
.site-header.scrolled .brand img { height: 52px; width: 52px; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.brand-word em { color: var(--brass-light); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.nav-links.nav-right { justify-content: flex-end; }

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.94rem;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--brass-light);
}

/* Dropdown — "Our Team" under About Us */
.has-dropdown { position: relative; }
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.has-dropdown > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  opacity: 0.75;
}
.dropdown {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 170px;
  background: var(--forest-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(0,0,0,0.28);
  display: none;
  z-index: 600;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
}
.dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.92rem;
  border-bottom: none;
}
.dropdown li a:hover,
.dropdown li a:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Mobile combined menu (hidden on desktop) */
.nav-mobile { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 2px;
}

.btn-brass {
  background: var(--brass);
  color: var(--forest-deep);
  font-weight: 700;
}
.btn-brass:hover { background: var(--brass-light); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-outline-forest {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline-forest:hover { background: var(--forest); color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                   */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(6,34,25,0.92) 0%, rgba(6,34,25,0.55) 42%, rgba(6,34,25,0.25) 68%, rgba(6,34,25,0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 100%;
  padding: 0 32px 72px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 18px;
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 0.25em;
}
.hero-title em { color: var(--parchment); font-style: italic; }

.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: rgba(255,255,255,0.86);
  max-width: 46ch;
  margin-bottom: 34px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------------------------------------------------------------------- */
/* Ivy divider — signature element                                       */
/* ---------------------------------------------------------------------- */
.ivy-divider {
  display: block;
  width: 100%;
  height: 56px;
  color: var(--forest);
}
.ivy-divider .ivy-stem { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }
.ivy-divider .ivy-leaf path:first-child { fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linejoin: round; }
.ivy-divider .ivy-vein { fill: none; stroke: currentColor; stroke-width: 0.9; opacity: 0.65; }
.ivy-divider circle { fill: currentColor; opacity: 0.85; }
.ivy-divider.on-forest { color: var(--brass-light); }
.ivy-divider.small { height: 38px; opacity: 0.85; }

/* ---------------------------------------------------------------------- */
/* Sections                                                               */
/* ---------------------------------------------------------------------- */
section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.section-forest {
  background: var(--forest);
  color: var(--white);
}
.section-forest h2 { color: var(--white); }
.section-forest .eyebrow { color: var(--parchment); }

.section-parchment { background: var(--parchment); }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 60ch;
}
.section-forest .lede { color: rgba(255,255,255,0.85); }

/* ---------------------------------------------------------------------- */
/* How to join — carved plaque steps                                     */
/* ---------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step {
  background: var(--white);
  border: 1px solid var(--parchment-dark);
  border-top: 3px solid var(--brass);
  padding: 30px 24px 26px;
  border-radius: var(--radius);
  position: relative;
}

.step-mark {
  font-family: var(--font-label);
  font-size: 0.78rem;
  color: var(--brass);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------------------------------------------------------------------- */
/* Cards / teasers                                                        */
/* ---------------------------------------------------------------------- */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.teaser {
  border: 1px solid var(--parchment-dark);
  padding: 34px 28px;
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.teaser:hover { border-color: var(--forest); transform: translateY(-2px); }

.teaser h3 { font-size: 1.35rem; margin-bottom: 10px; }
.teaser p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 18px; }
.teaser a { font-family: var(--font-label); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); border-bottom: 1px solid var(--forest); padding-bottom: 2px; }

/* ---------------------------------------------------------------------- */
/* About page specifics                                                   */
/* ---------------------------------------------------------------------- */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.pillar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
.pillar-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}
.pillar-name {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--brass);
  text-transform: uppercase;
  padding-top: 4px;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.role-card {
  background: var(--forest-dark);
  color: var(--white);
  padding: 26px 22px;
  border-radius: var(--radius);
}
.role-card .eyebrow { color: var(--brass-light); }
.role-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.role-card p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin: 0; }

/* ---------------------------------------------------------------------- */
/* Our Team — chain-of-command diagram                                   */
/* ---------------------------------------------------------------------- */
.team-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
}

.team-node {
  width: 260px;
  background: var(--forest-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: center;
}
.team-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--forest);
  border: 2px solid var(--brass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-avatar svg { width: 38px; height: 38px; }
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
/* Avatars start showing a generic icon; once main.js resolves the Roblox
   headshot and loads it successfully, .has-photo swaps the icon for the
   real photo. If the lookup fails (offline, blocked, etc.) the icon stays. */
.team-avatar img[data-roblox-id] { display: none; }
.team-avatar.has-photo img[data-roblox-id] { display: block; }
.team-avatar.has-photo .team-avatar-fallback { display: none; }
.team-node .eyebrow { color: var(--brass-light); margin-bottom: 4px; }
.team-node h3 { font-size: 1.1rem; margin-bottom: 8px; }
.team-node p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }

.team-connector {
  width: 2px;
  height: 40px;
  background: var(--brass);
}

/* A row of peer nodes*/
.team-branch {
  position: relative;
  display: flex;
  width: 100%;
  padding-top: 40px;
}
.team-branch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 2px;
  background: var(--brass);
}
.team-branch[data-count="3"]::before { left: 16.6%; right: 16.6%; }

.team-branch-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
  padding: 0 30px;
}
.team-branch-item::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  width: 2px;
  height: 40px;
  background: var(--brass);
  transform: translateX(-50%);
}

/* Convergence — draws a bar OUT of the bottom of a branch's items, pulling
   them together into a single trunk that feeds the shared row below.
   Used to merge the 2 Architects down into the shared Operations row. */
.team-branch.converges { padding-bottom: 40px; }
.team-branch.converges::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  right: 25%;
  height: 2px;
  background: var(--brass);
}
.team-branch-item.merges-down::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 2px;
  height: 40px;
  background: var(--brass);
  transform: translateX(-50%);
}

/* Scroll-triggered fade-in — toggles both ways as the chart scrolls in/out */
.reveal {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; }

.team-node.reveal { transform: translateY(26px); }
.team-node.reveal.is-visible { transform: translateY(0); }

.team-connector.reveal {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.team-connector.reveal.is-visible { transform: scaleY(1); }

.team-branch.reveal::before {
  transform: scaleX(0);
  transition: transform 0.5s ease 0.1s;
}
.team-branch.reveal.is-visible::before { transform: scaleX(1); }

.team-branch.reveal.converges::after {
  transform: scaleX(0);
  transition: transform 0.5s ease 0.1s;
}
.team-branch.reveal.is-visible.converges::after { transform: scaleX(1); }

.team-branch-item.reveal { transform: translateY(26px); }
.team-branch-item.reveal.is-visible { transform: translateY(0); }
.team-branch-item.reveal::before {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease 0.15s;
}
.team-branch-item.reveal.is-visible::before { transform: scaleY(1); }
.team-branch-item.reveal.merges-down::after {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease 0.15s;
}
.team-branch-item.reveal.is-visible.merges-down::after { transform: scaleY(1); }

.team-branch-item:nth-child(1) { transition-delay: 0s; }
.team-branch-item:nth-child(2) { transition-delay: 0.15s; }
.team-branch-item:nth-child(3) { transition-delay: 0.3s; }

@media (max-width: 720px) {
  .team-branch {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .team-branch::before,
  .team-branch.converges::after { display: none; }
  .team-branch-item { padding: 0; }
  .team-branch-item::before,
  .team-branch-item.merges-down::after { display: none; }
  .team-connector { height: 24px; }
  .team-node { width: 100%; max-width: 320px; }
}

/* ---------------------------------------------------------------------- */
/* Menu page — chalkboard-style listings                                 */
/* ---------------------------------------------------------------------- */
.menu-note {
  background: var(--parchment);
  border: 1px dashed var(--brass);
  padding: 18px 22px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 56px;
}

/* Flowing multi-column layout — categories pack in wherever they fit
   (like masonry) instead of being pinned to a rigid 2-up grid, so an odd
   number of categories of different lengths never leaves a gap. */
.menu-board {
  columns: 2;
  column-gap: 48px;
}

.menu-category {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-bottom: 40px;
}

.menu-category h3 {
  font-size: 1.5rem;
  color: var(--forest);
  border-bottom: 2px solid var(--brass);
  padding-bottom: 12px;
  margin-bottom: 22px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--parchment-dark);
}
.menu-item:last-child { border-bottom: none; }

.menu-item-name { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; }
.veg-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  border-radius: 50%;
  border: 1px solid var(--forest);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.menu-item-desc { font-size: 0.88rem; color: var(--ink-soft); margin-top: 3px; }
.menu-item-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.menu-item-logos img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ---------------------------------------------------------------------- */
/* Contact page                                                           */
/* ---------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-grid-single {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.contact-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  border: 1px solid var(--parchment-dark);
  border-top: 3px solid var(--brass);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--white);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.contact-card:hover { border-color: var(--forest); transform: translateY(-2px); }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-icon svg { width: 22px; height: 22px; fill: var(--parchment); }
.contact-card .eyebrow { margin-bottom: 4px; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.contact-card a.contact-link {
  font-family: var(--font-display);
  font-size: 1.08rem;
  border-bottom: 1px solid transparent;
  display: inline-block;
  margin-bottom: 10px;
}
.contact-card a.contact-link:hover { border-bottom-color: var(--forest); }
.contact-card p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

@media (max-width: 900px) {
  .contact-cards { grid-template-columns: 1fr; }
}

.discord-icon { fill: currentColor; }

/* ---------------------------------------------------------------------- */
/* 404 page                                                               */
/* ---------------------------------------------------------------------- */
.error-page {
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--forest-deep);
  color: var(--white);
  padding: 96px 32px;
}
.error-page .eyebrow { color: var(--brass-light); }
.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 8rem);
  color: var(--parchment);
  margin: 0 0 0.1em;
  line-height: 1;
}
.error-page h1 { color: var(--white); margin-bottom: 0.4em; }
.error-page p.lede { color: rgba(255,255,255,0.8); margin: 0 auto 34px; }
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.error-inner { max-width: 560px; margin: 0 auto; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                 */
/* ---------------------------------------------------------------------- */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 34px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .brand-word { font-size: 1.4rem; }
.footer-logo { height: 56px; width: 56px; object-fit: contain; }
.footer-brand p { margin-top: 14px; font-size: 0.92rem; max-width: 34ch; color: rgba(255,255,255,0.6); }

.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ---------------------------------------------------------------------- */
/* Responsive                                                             */
/* ---------------------------------------------------------------------- */
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .teaser-grid { grid-template-columns: 1fr; }
  .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .roles-grid { grid-template-columns: 1fr; }
  .menu-board { columns: 1; }
  .menu-category { margin-bottom: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav { justify-content: center; }
  .nav-links.nav-left,
  .nav-links.nav-right { display: none; }
  .nav-toggle {
    display: flex;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--forest-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 32px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    list-style: none;
    margin: 0;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile > li { width: 100%; }
  .nav-mobile a {
    display: block;
    color: rgba(255,255,255,0.85);
    padding: 12px 2px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-mobile a[aria-current="page"] { color: var(--brass-light); }
  .nav-mobile .nav-sub {
    list-style: none;
    margin: 0 0 4px;
    padding: 0 0 0 18px;
  }
  .nav-mobile .nav-sub a { font-size: 0.92rem; color: rgba(255,255,255,0.68); border-bottom: none; padding: 8px 2px; }
  .nav-mobile .btn-brass { display: inline-flex; margin-top: 10px; }

  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}