/* ============================================
   Olive & Oak
   Global Stylesheet — Mobile-First
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* REPLACE: Brand colours */
  --color-bg: #FBF8F1;
  --color-bg-warm: #F5EFE3;
  --color-primary: #4A5D23;
  --color-primary-dark: #3A4B1B;
  --color-primary-light: #6B8236;
  --color-accent: #C2703E;
  --color-accent-dark: #A85E33;
  --color-accent-light: #D4956A;
  --color-text: #2C1810;
  --color-text-mid: #5C4A3E;
  --color-text-light: #8A7A6E;
  --color-white: #FFFFFF;
  --color-border: #E6DFD2;
  --color-border-light: #EDE8DD;

  /* REPLACE: Fonts */
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", "Source Sans Pro", sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-width: 1100px;
  --max-width-narrow: 680px;
  --header-height: 72px;
  --radius: 4px;
  --radius-lg: 8px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--color-primary);
  color: var(--color-bg);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  font-style: italic;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

em, i {
  font-style: italic;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: var(--space-xl) 0;
}

.section--lg {
  padding: var(--space-2xl) 0;
}

.text-center {
  text-align: center;
}

.section__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.section__heading {
  margin-bottom: var(--space-md);
}

.section__subtext {
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  color: var(--color-text-mid);
  font-size: 1.0625rem;
}

/* Decorative rule */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: var(--space-md) auto;
}

.ornament__line {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.ornament__leaf {
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(74, 93, 35, 0.25);
}

.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn--accent:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(194, 112, 62, 0.25);
}

.btn--outline {
  background-color: transparent;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--outline-light {
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.btn--outline-light:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(251, 248, 241, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration) var(--ease);
}

.header--scrolled {
  border-bottom-color: var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.header__logo span {
  color: var(--color-primary);
  font-weight: 400;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-mid);
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-accent);
  transition: width var(--duration) var(--ease);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-text);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 0.5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-text);
  border-radius: 1px;
  transition: all var(--duration) var(--ease);
  transform-origin: center;
}

.hamburger--active .hamburger__line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger--active .hamburger__line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-bg);
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
    transition: right var(--duration) var(--ease);
    box-shadow: -8px 0 30px rgba(44, 24, 16, 0.08);
    overflow-y: auto;
  }

  .nav--open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .nav__link {
    font-size: 1rem;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-sm);
    width: 100%;
  }

  .nav__cta .btn {
    width: 100%;
    text-align: center;
  }

  .nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 24, 16, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration) var(--ease), visibility var(--duration) var(--ease);
  }

  .nav__overlay--visible {
    opacity: 1;
    visibility: visible;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  background: linear-gradient(170deg, rgba(74,93,35,0.85) 0%, rgba(94,116,48,0.82) 20%, rgba(139,155,90,0.78) 45%, rgba(194,165,122,0.8) 65%, var(--color-bg) 100%), url('../../assets/images/hero-restaurant.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(194, 112, 62, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle organic shape */
.hero__decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
  background: var(--color-white);
}

.hero__decor--1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -120px;
}

.hero__decor--2 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: -60px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-sm);
}

.hero__heading {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: var(--space-md) auto;
}

.hero__ornament-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.hero__ornament-leaf {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1;
}

.hero__subheading {
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  max-width: 460px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.hero__actions .btn--primary {
  background: var(--color-white);
  color: var(--color-primary-dark);
}

.hero__actions .btn--primary:hover {
  background: var(--color-bg);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

/* --- Image Placeholders --- */
.img-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder--food {
  background: linear-gradient(135deg, #6B5240 0%, #8B7355 30%, #A89070 60%, #6B5240 100%);
}

.img-placeholder--interior {
  background: linear-gradient(135deg, #4A5D23 0%, #6B7A44 30%, #8B9B5A 60%, #3A4B1B 100%);
}

.img-placeholder--warm {
  background: linear-gradient(135deg, #C2703E 0%, #D4956A 30%, #C2A57A 60%, #A85E33 100%);
}

.img-placeholder::after {
  content: attr(data-alt);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  padding: var(--space-sm);
}

.img-placeholder--landscape {
  aspect-ratio: 16 / 10;
}

.img-placeholder--portrait {
  aspect-ratio: 3 / 4;
}

.img-placeholder--square {
  aspect-ratio: 1;
}

/* --- Featured Dishes --- */
.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .dishes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dish-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: all var(--duration) var(--ease);
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 24, 16, 0.08);
}

.dish-card__image {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.dish-card__body {
  padding: var(--space-md);
}

.dish-card__category {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.dish-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.dish-card__desc {
  color: var(--color-text-mid);
  font-size: 0.9375rem;
  margin-bottom: var(--space-xs);
}

.dish-card__price {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* --- About Teaser --- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-teaser {
    grid-template-columns: 1fr 1fr;
  }
}

.about-teaser__text p {
  color: var(--color-text-mid);
  font-size: 1.0625rem;
}

/* --- Hours & Location --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-info__item {
  margin-bottom: var(--space-md);
}

.location-info__label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.location-info__value {
  font-size: 1rem;
  color: var(--color-text-mid);
  line-height: 1.6;
}

.location-info__value a:hover {
  color: var(--color-accent);
}

/* --- Map --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 100%;
  min-height: 280px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- About Page --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content__text p {
  color: var(--color-text-mid);
  font-size: 1.0625rem;
}

.about-content__text p + p {
  margin-top: var(--space-sm);
}

/* Suppliers */
.suppliers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .suppliers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.supplier-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: border-color var(--duration) var(--ease);
}

.supplier-card:hover {
  border-color: var(--color-primary);
}

.supplier-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 93, 35, 0.08), rgba(194, 112, 62, 0.08));
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.supplier-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.supplier-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.supplier-card__desc {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* --- Menu Page --- */
.menu-section {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.menu-section + .menu-section {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.menu-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  font-style: italic;
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-sm) 0;
  border-bottom: 1px dotted var(--color-border);
  gap: var(--space-sm);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__info {
  flex: 1;
}

.menu-item__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.125rem;
}

.menu-item__desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.menu-item__tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.menu-item__price {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-accent);
  flex-shrink: 0;
}

.menu-note {
  text-align: center;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--color-text-light);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 300px;
  height: 300px;
  background: rgba(194, 112, 62, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner__heading {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.cta-banner__text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  font-size: 1.0625rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.cta-banner .btn--primary:hover {
  background: var(--color-accent-dark);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-mid);
}

.form__input,
.form__select,
.form__textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  width: 100%;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 93, 35, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-light);
}

.form__textarea {
  min-height: 100px;
  resize: vertical;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%238A7A6E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__note {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--color-text-light);
  margin-top: var(--space-sm);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info__item {
  margin-bottom: var(--space-md);
}

.contact-info__label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 1rem;
  color: var(--color-text-mid);
}

.contact-info__value a:hover {
  color: var(--color-accent);
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
  text-align: center;
  background: linear-gradient(170deg, rgba(74, 93, 35, 0.06) 0%, var(--color-bg) 100%);
}

.page-header__heading {
  margin-bottom: var(--space-xs);
}

.page-header__sub {
  color: var(--color-text-mid);
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto;
}

/* --- Footer --- */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer__brand span {
  font-weight: 400;
  color: var(--color-accent-light);
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-sm);
}

.footer__links li + li {
  margin-top: 0.5rem;
}

.footer__links a {
  font-size: 0.875rem;
  transition: color var(--duration) var(--ease);
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.75rem;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.25s; }

/* --- Responsive --- */
@media (min-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }

  .section--lg {
    padding: calc(var(--space-2xl) * 1.25) 0;
  }
}

/* --- Print --- */
@media print {
  .header,
  .hamburger,
  .nav__overlay,
  .cta-banner,
  .map-container,
  .hero__decor {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    background: none;
  }

  .hero__heading,
  .hero__subheading,
  .hero__eyebrow {
    color: #000;
  }
}
