/* SPECIALIST CATERING SERVICES — shared styles */

:root {
  --ink: #1a1a18;
  --ink-soft: #3d3d38;
  --muted: #6b6b64;
  --paper: #f9f8f5;
  --paper-deep: #efece6;
  --forest: #1a2e24;
  --forest-mid: #2a4538;
  --brass: #c4a574;
  --brass-deep: #a8874f;
  --white: #ffffff;
  --line: rgba(26, 46, 36, 0.12);
  --shadow: 0 18px 40px rgba(26, 46, 36, 0.08);
  --radius: 4px;
  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --header-h: 76px;
  --container: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: var(--white);
}

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

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 0.75rem;
}

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

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 1rem;
}

.section__intro {
  max-width: 54ch;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}

.section--dark .section__intro {
  color: rgba(249, 248, 245, 0.78);
}

.section__header {
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.55rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

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

.btn--primary:hover {
  background: #d4b788;
}

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

.btn--secondary:hover {
  border-color: var(--paper);
  background: rgba(249, 248, 245, 0.08);
}

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

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

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--forest);
  max-width: 14rem;
}

.logo span {
  display: block;
  color: var(--brass-deep);
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

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

.nav__cta {
  padding: 0.55rem 1rem;
  background: var(--forest);
  color: var(--paper) !important;
  border-radius: var(--radius);
}

.nav__cta:hover {
  background: var(--forest-mid);
  color: var(--paper) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--forest);
  transition: transform 0.25s var(--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: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  color: var(--paper);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 46, 36, 0.35) 0%, rgba(26, 46, 36, 0.72) 48%, rgba(26, 46, 36, 0.92) 100%),
    linear-gradient(90deg, rgba(26, 46, 36, 0.55) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 4.5rem;
  max-width: 40rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.1s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.15rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.25s forwards;
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(249, 248, 245, 0.88);
  max-width: 38ch;
  margin-bottom: 1.85rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.55s forwards;
}

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

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

/* Services */
.service-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  display: grid;
  gap: 1.15rem;
}

.service-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

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

.service-card:hover .service-card__image img {
  transform: scale(1.04);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Industries */
.industry-grid {
  display: grid;
  gap: 1.25rem;
}

.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 220px;
  color: var(--paper);
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card__body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  background: linear-gradient(180deg, transparent 20%, rgba(26, 46, 36, 0.88) 100%);
}

.industry-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.industry-card p {
  font-size: 0.92rem;
  color: rgba(249, 248, 245, 0.82);
}

/* Process */
.process-grid {
  display: grid;
  gap: 1.5rem;
}

.process-step {
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.process-step__icon {
  width: 44px;
  height: 44px;
  color: var(--brass-deep);
}

.process-step__icon svg {
  width: 100%;
  height: 100%;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.process-step p {
  color: var(--ink-soft);
  max-width: 42ch;
}

.process-step__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

/* Case studies */
.case-grid {
  display: grid;
  gap: 2rem;
}

.case-card {
  display: grid;
  gap: 1.25rem;
}

.case-card__image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: var(--radius);
}

.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__meta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 0.4rem;
}

.case-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.case-card dl {
  display: grid;
  gap: 0.65rem;
}

.case-card dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.case-card dd {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.case-card .result {
  color: var(--forest);
  font-weight: 600;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(249, 248, 245, 0.15);
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 0.95rem;
}

.testimonial cite span {
  display: block;
  color: var(--brass);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-grid__image {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid h2 {
  max-width: none;
}

.about-grid .mission {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.about-grid .mission strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--forest);
}

.director {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--paper);
  border-left: 3px solid var(--brass);
}

.director h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.director p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Achievements */
.achieve-grid {
  display: grid;
  gap: 1.25rem;
}

.achieve-item {
  text-align: left;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(249, 248, 245, 0.15);
}

.achieve-item__icon {
  width: 40px;
  height: 40px;
  color: var(--brass);
  margin-bottom: 1rem;
}

.achieve-item__icon svg {
  width: 100%;
  height: 100%;
}

.achieve-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.achieve-item p {
  color: rgba(249, 248, 245, 0.75);
  font-size: 0.95rem;
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 1.75rem;
}

.blog-card {
  display: grid;
  gap: 1rem;
}

.blog-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}

.blog-card time {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0.35rem 0 0.5rem;
}

.blog-card h3 a:hover {
  color: var(--forest-mid);
}

.blog-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  width: 100%;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
  margin-top: -4px;
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
  margin-top: 4px;
}

.faq-item .faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--ink-soft);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-copy p {
  max-width: 42ch;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-details li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-details svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--brass-deep);
  margin-top: 2px;
}

.contact-details a:hover {
  color: var(--forest-mid);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest-mid);
  box-shadow: 0 0 0 3px rgba(42, 69, 56, 0.12);
}

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

.form-status {
  font-size: 0.92rem;
  color: var(--forest);
  min-height: 1.2em;
}

/* Footer */
.site-footer {
  background: #121c17;
  color: rgba(249, 248, 245, 0.78);
  padding: 3.5rem 0 1.75rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--paper);
  margin-bottom: 0.75rem;
}

.footer__brand span {
  display: block;
  color: var(--brass);
  font-size: 0.75em;
  margin-top: 0.2rem;
}

.footer__col h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--paper);
  margin-bottom: 0.85rem;
}

.footer__col ul {
  display: grid;
  gap: 0.5rem;
}

.footer__col a:hover {
  color: var(--brass);
}

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(249, 248, 245, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.88rem;
}

.footer__bottom a {
  color: var(--brass);
}

.footer__bottom a:hover {
  color: #d4b788;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 200;
  max-width: 480px;
  padding: 1.25rem;
  background: var(--forest);
  color: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: fadeUp 0.45s var(--ease);
}

.cookie-banner p {
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: rgba(249, 248, 245, 0.88);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

/* Legal page */
.legal-hero {
  padding: 3.5rem 0 2rem;
  background: var(--forest);
  color: var(--paper);
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.legal-hero p {
  color: rgba(249, 248, 245, 0.75);
  max-width: 48ch;
}

.legal-content {
  padding: 3rem 0 4.5rem;
}

.legal-content article {
  max-width: 720px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
  color: var(--forest);
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  list-style: disc;
}

.legal-content address {
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 1rem 0;
}

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

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

/* ========== Responsive: tablet ========== */
@media (min-width: 768px) {
  .section {
    padding: 5.5rem 0;
  }

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

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

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

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

  .case-card {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 2rem;
  }

  .case-card:nth-child(even) .case-card__image {
    order: 2;
  }

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

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .faq-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .cookie-banner {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

/* ========== Responsive: desktop ========== */
@media (min-width: 1024px) {
  .container {
    width: min(100% - 3rem, var(--container));
  }

  .section {
    padding: 6.5rem 0;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid .service-card:nth-child(4),
  .service-grid .service-card:nth-child(5) {
    grid-column: span 1;
  }

  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }

  .process-step {
    border-top: none;
    border-left: 1px solid var(--line);
    padding: 0 0 0 1.25rem;
  }

  .process-step:first-child {
    border-left: none;
    padding-left: 0;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .testimonial {
    border-top: none;
    border-left: 1px solid rgba(249, 248, 245, 0.15);
    padding: 0 0 0 1.5rem;
  }

  .testimonial:first-child {
    border-left: none;
    padding-left: 0;
  }

  .achieve-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .achieve-item {
    border-top: none;
    border-left: 1px solid rgba(249, 248, 245, 0.15);
    padding: 0 0 0 1.25rem;
  }

  .achieve-item:first-child {
    border-left: none;
    padding-left: 0;
  }

  .blog-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .faq-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }

  .hero__content {
    padding: 5rem 0 5.5rem;
  }
}

/* ========== Mobile nav ========== */
@media (max-width: 767px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s ease;
  }

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

  .nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav__cta {
    margin-top: 0.5rem;
    text-align: center;
    border-bottom: none;
  }

  .hero {
    min-height: 78svh;
  }

  .hero__content {
    padding: 3rem 0 3.25rem;
  }
}

/* Tablet nav still shows full links */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav {
    gap: 1rem;
  }

  .nav a:not(.nav__cta) {
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero__media img {
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
