/* ==========================================================================
   JT Burgers — Wolverhampton burger kitchen
   Single-page marketing site stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Type */
  --font-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  /* Colour system — charred grill, cream bun, chilli + mustard accents */
  --char: #1a1310;
  --char-2: #241a15;
  --ink: #2a1e18;
  --ink-soft: #4a3b31;
  --cream: #fdf6ec;
  --surface: #fffaf3;
  --surface-2: #f6ead9;

  --flame: #bf400f;
  --flame-deep: #9c3309;
  --gold: #f2a83b;
  --gold-soft: #f7c877;

  --line: rgba(42, 30, 24, 0.12);
  --line-strong: rgba(42, 30, 24, 0.2);
  --line-dark: rgba(253, 246, 236, 0.16);

  /* Layout */
  --container: 1100px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 4.25rem;

  /* Radii */
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 22px 40px -26px rgba(26, 19, 16, 0.55);
  --shadow-form: 0 30px 60px -50px rgba(26, 19, 16, 0.95);

  /* Fluid type scale */
  --fs-eyebrow: 0.78rem;
  --fs-small: 0.92rem;
  --fs-body: 1rem;
  --fs-h3: 1.15rem;
  --fs-h2: clamp(2.1rem, 6.5vw, 3.4rem);
  --fs-hero: clamp(3.2rem, 13vw, 7.5rem);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
p,
ul,
figure {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

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

section[id] {
  scroll-margin-top: 5.5rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -120px;
  left: 0.75rem;
  z-index: 200;
  padding: 0.8rem 1.15rem;
  background-color: var(--flame);
  color: #fffaf3;
  font-size: var(--fs-small);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   3. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(253, 246, 236, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: var(--container);
  min-height: var(--header-h);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Wordmark */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  line-height: 1;
}

.wordmark-jt {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--cream);
  background-color: var(--flame);
  padding: 0.2em 0.36em 0.1em;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.wordmark-burgers {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--char);
}

.wordmark:hover .wordmark-jt,
.wordmark:focus-visible .wordmark-jt {
  background-color: var(--flame-deep);
}

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background-color: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  background-color: rgba(191, 64, 15, 0.07);
  border-color: rgba(191, 64, 15, 0.4);
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--char);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}

#site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

#site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav panel */
.primary-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  max-height: 0;
  visibility: hidden;
  background-color: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px -30px rgba(26, 19, 16, 0.6);
  transition: max-height 0.38s var(--ease-out), visibility 0.38s;
}

#site-header.nav-open .primary-nav {
  max-height: 34rem;
  visibility: visible;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.75rem var(--gutter) 1.35rem;
}

.nav-link {
  display: block;
  padding: 0.85rem 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--flame-deep);
  padding-left: 0.65rem;
}

.nav-list > li:last-child .nav-link {
  border-bottom: 0;
}

.nav-link-cta {
  margin-top: 0.6rem;
  padding: 0.85rem 1.25rem;
  text-align: center;
  color: var(--cream);
  background-color: var(--flame);
  border-bottom: 0;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.nav-link-cta:hover,
.nav-link-cta:focus-visible {
  color: var(--cream);
  background-color: var(--flame-deep);
  padding-left: 1.25rem;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, transform 0.2s var(--ease-out),
    box-shadow 0.2s ease;
}

.btn-primary {
  color: #fffaf3;
  background-color: var(--flame);
  box-shadow: 0 12px 24px -14px rgba(191, 64, 15, 0.95);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: #fffaf3;
  background-color: var(--flame-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -16px rgba(191, 64, 15, 1);
}

.btn-ghost {
  color: var(--cream);
  background-color: transparent;
  border-color: rgba(253, 246, 236, 0.45);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--char);
  background-color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: clamp(30rem, 80vh, 46rem);
  padding: clamp(3.5rem, 10vw, 6rem) 0 clamp(3.25rem, 8vw, 5.5rem);
  background-color: var(--char);
  color: var(--cream);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 130%;
  background-image: radial-gradient(
      45% 60% at 14% 18%,
      rgba(242, 168, 59, 0.3),
      transparent 70%
    ),
    radial-gradient(42% 58% at 86% 8%, rgba(191, 64, 15, 0.45), transparent 72%),
    radial-gradient(60% 70% at 50% 118%, rgba(191, 64, 15, 0.28), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(253, 246, 236, 0.055) 0 1px,
    transparent 1px 28px
  );
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero-eyebrow {
  margin-bottom: 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-hero);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.35rem;
  text-wrap: balance;
}

.hero-lede {
  max-width: 48ch;
  margin-bottom: 2.25rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  line-height: 1.6;
  color: rgba(253, 246, 236, 0.84);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.9rem;
  margin-top: 2.75rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
}

.hero-point {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(253, 246, 236, 0.92);
}

.hero-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 168, 59, 0.22);
}

/* --------------------------------------------------------------------------
   6. Shared section furniture
   -------------------------------------------------------------------------- */
.section-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--gutter);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--flame-deep);
}

.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background-color: currentColor;
  opacity: 0.65;
}

.section-heading {
  max-width: 24ch;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h2);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--char);
  text-wrap: balance;
}

.section-lede {
  max-width: 62ch;
  margin-bottom: 2.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   7. About
   -------------------------------------------------------------------------- */
.about {
  background-color: var(--surface);
}

.about-text {
  max-width: 62ch;
}

.about-paragraph {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   8. Services / menu cards
   -------------------------------------------------------------------------- */
.services {
  background-color: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1.75rem 1.5rem 1.9rem;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-image: linear-gradient(90deg, var(--flame), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(191, 64, 15, 0.35);
  box-shadow: var(--shadow-card);
}

.card:hover::after,
.card:focus-within::after {
  transform: scaleX(1);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  border-radius: 16px;
  color: var(--flame-deep);
  background-image: linear-gradient(
    140deg,
    rgba(242, 168, 59, 0.28),
    rgba(191, 64, 15, 0.16)
  );
}

.card-title {
  margin-bottom: 0.5rem;
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--char);
}

.card-text {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   9. Why choose us
   -------------------------------------------------------------------------- */
.why-choose-us {
  position: relative;
  overflow: hidden;
  background-color: var(--char);
  color: var(--cream);
}

.why-choose-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      42% 62% at 100% 0%,
      rgba(191, 64, 15, 0.38),
      transparent 70%
    ),
    radial-gradient(48% 60% at 0% 100%, rgba(242, 168, 59, 0.14), transparent 70%),
    repeating-linear-gradient(
      115deg,
      rgba(253, 246, 236, 0.04) 0 1px,
      transparent 1px 32px
    );
  pointer-events: none;
}

.why-choose-us .section-inner {
  position: relative;
  z-index: 1;
}

.why-choose-us .section-eyebrow {
  color: var(--gold);
}

.why-choose-us .section-heading {
  color: var(--cream);
}

.why-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 0.5rem;
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 1.05rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}

.why-icon {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--gold);
  background-color: rgba(242, 168, 59, 0.14);
  border: 1px solid rgba(242, 168, 59, 0.32);
}

.why-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--cream);
}

.why-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(253, 246, 236, 0.74);
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   10. Contact
   -------------------------------------------------------------------------- */
.contact {
  background-color: var(--surface);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: start;
}

.contact-lede {
  max-width: 46ch;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.contact-meta {
  display: grid;
  gap: 1.1rem;
}

.contact-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
}

.contact-meta-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--flame-deep);
  background-color: rgba(191, 64, 15, 0.1);
}

.contact-meta-text {
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--ink);
}

.contact-meta-label {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  background-color: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, transform 0.2s var(--ease-out);
}

.social-link:hover,
.social-link:focus-visible {
  color: #fffaf3;
  background-color: var(--flame);
  border-color: var(--flame);
  transform: translateY(-2px);
}

/* Form */
.contact-form {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background-color: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-form);
}

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

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--char);
  background-color: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.form-textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(74, 59, 49, 0.55);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--flame);
  box-shadow: 0 0 0 4px rgba(191, 64, 15, 0.15);
}

.form-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.form-note {
  min-height: 1.25em;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--char-2);
  color: rgba(253, 246, 236, 0.78);
  border-top: 1px solid rgba(253, 246, 236, 0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--gutter);
}

.footer-wordmark {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer-tagline {
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(253, 246, 236, 0.74);
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
}

.footer-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(253, 246, 236, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-legal {
  font-size: 0.85rem;
  color: rgba(253, 246, 236, 0.6);
}

/* --------------------------------------------------------------------------
   12. Scroll reveal states (driven by script.js)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* --------------------------------------------------------------------------
   13. Responsive — tablet & desktop
   -------------------------------------------------------------------------- */
@media (min-width: 600px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-submit {
    width: auto;
    justify-self: start;
  }
}

@media (min-width: 700px) {
  .why-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.75rem;
  }
}

@media (min-width: 780px) {
  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.25rem;
  }

  .footer-brand {
    flex: 1 1 280px;
  }

  .footer-nav {
    flex: 0 1 auto;
    padding-top: 0.35rem;
  }

  .footer-legal {
    flex: 1 1 100%;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(253, 246, 236, 0.12);
  }
}

@media (min-width: 900px) {
  :root {
    --header-h: 4.5rem;
  }

  /* Nav becomes a horizontal bar */
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    max-height: none;
    visibility: visible;
    overflow: visible;
    background-color: transparent;
    border-bottom: 0;
    box-shadow: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .nav-link {
    padding: 0.55rem 0.85rem;
    font-size: 0.95rem;
    white-space: nowrap;
    border-bottom: 0;
    border-radius: var(--radius-pill);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    padding-left: 0.85rem;
    color: var(--flame-deep);
    background-color: rgba(191, 64, 15, 0.09);
  }

  .nav-link-cta {
    margin-top: 0;
    margin-left: 0.45rem;
    padding: 0.6rem 1.15rem;
    color: var(--cream);
    background-color: var(--flame);
    box-shadow: 0 10px 20px -14px rgba(191, 64, 15, 0.95);
  }

  .nav-link-cta:hover,
  .nav-link-cta:focus-visible {
    padding-left: 1.15rem;
    color: var(--cream);
    background-color: var(--flame-deep);
  }

  .contact-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

@media (min-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .why-list {
    gap: 2.25rem 3.5rem;
  }
}

@media (min-width: 1100px) {
  .hero-lede {
    font-size: 1.3rem;
  }
}

/* --------------------------------------------------------------------------
   14. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

  .card:hover,
  .card:focus-within,
  .btn:hover,
  .btn:focus-visible,
  .social-link:hover,
  .social-link:focus-visible {
    transform: none;
  }
}