/* ==========================================================================
   Fair & Square Pizzeria — site stylesheet
   One file for the whole site. Top of the file: design tokens and base type.
   Below: component styles, in the order they appear on the page.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   These CSS variables hold every color, shadow, spacing value, and timing
   used across the site. Change a value here and it updates everywhere.
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --fs-blue:   #0559D2;
  --fs-white:  #FFFFFF;
  --fs-black:  #141414;
  --fs-yellow: #FFC72C;

  /* Neutrals */
  --fs-neutral-300: #E3E3E3;
  --fs-neutral-500: #A4A4A4;
  --fs-neutral-700: #727272;

  /* Page background (cream) */
  --fs-page-bg: #FAF4DE;

  /* Poster shadows — the signature treatment, used on cards and the hero photo */
  --fs-shadow-poster:        6px 6px 0 var(--fs-black);
  --fs-shadow-poster-yellow: 6px 6px 0 var(--fs-yellow);
  --fs-shadow-poster-blue:   6px 6px 0 var(--fs-blue);

  /* Motion */
  --fs-ease:     cubic-bezier(0.2, 0.8, 0.2, 1);
  --fs-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --fs-dur-fast: 120ms;
  --fs-dur-base: 200ms;
  --fs-dur-slow: 360ms;

  /* Layout */
  --fs-container:        1200px;
  --fs-container-narrow: 720px;
}

/* --------------------------------------------------------------------------
   2. Fonts
   Gopher for body and headings. GopherMono available via .fs-mono.
   Homemade Apple is loaded from Google Fonts in the HTML head, used only for
   the "Ben" signature in the About section.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Gopher";
  src: url("/fonts/Gopher-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Gopher";
  src: url("/fonts/Gopher-Bold.otf") format("opentype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Gopher";
  src: url("/fonts/Gopher-Black.otf") format("opentype");
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "GopherMono";
  src: url("/fonts/GopherMono-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "GopherMono";
  src: url("/fonts/GopherMono-Bold.otf") format("opentype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "GopherMono";
  src: url("/fonts/GopherMono-Black.otf") format("opentype");
  font-weight: 900; font-style: normal; font-display: swap;
}

/* --------------------------------------------------------------------------
   3. Reset and base type
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Gopher", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--fs-black);
  background: var(--fs-page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main { flex: 1; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Gopher", Impact, sans-serif;
  margin: 0;
}

p { margin: 0; }

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

a { color: inherit; }

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Anchored sections — push down so the sticky nav doesn't cover them on jump */
[id] { scroll-margin-top: 88px; }

/* --------------------------------------------------------------------------
   4. Skip-to-content (visible on keyboard focus)
   -------------------------------------------------------------------------- */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--fs-black);
  color: var(--fs-white);
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: top var(--fs-dur-fast) var(--fs-ease);
}
.skip-to-content:focus {
  top: 12px;
  outline: 2px solid var(--fs-yellow);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--fs-blue);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   5. Reveal-on-scroll animations
   JS sets data-revealed on these elements when they enter the viewport.
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transition:
    opacity var(--fs-dur-slow) var(--fs-ease-out),
    transform var(--fs-dur-slow) var(--fs-ease-out);
  will-change: opacity, transform;
}
[data-reveal="rise"]  { transform: translateY(24px); }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.96); }
[data-reveal][data-revealed] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   6. Shared section helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fs-blue);
  display: block;
}

.section-h2 {
  font-weight: 900;
  font-size: clamp(36px, 5.2vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-top: 8px;
}

.section-head { margin-bottom: 36px; }

/* --------------------------------------------------------------------------
   7. Buttons (used in nav, hero, find us, footer, careers)
   -------------------------------------------------------------------------- */
.btn-primary,
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--fs-yellow);
  color: var(--fs-black);
  border: 2px solid var(--fs-yellow);
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color var(--fs-dur-base) var(--fs-ease),
    border-color var(--fs-dur-base) var(--fs-ease),
    color var(--fs-dur-base) var(--fs-ease);
}
.btn-primary:hover,
.btn-order:hover {
  background: var(--fs-blue);
  border-color: var(--fs-blue);
  color: var(--fs-white);
}

/* Smaller order button used in nav */
.btn-order {
  padding: 10px 20px;
  font-size: 15px;
  letter-spacing: 0.01em;
  gap: 6px;
}
.btn-order-mobile { padding: 14px 24px; }

/* Outline button (Instagram, Facebook in Find Us) */
.btn-outline {
  display: inline-block;
  padding: 12px 20px;
  background: transparent;
  color: var(--fs-black);
  border: 2px solid var(--fs-black);
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color var(--fs-dur-base) var(--fs-ease),
    color var(--fs-dur-base) var(--fs-ease);
}
.btn-outline:hover {
  background: var(--fs-black);
  color: var(--fs-white);
}

/* Yellow pill — used as a smaller variant in Find Us, Footer */
.btn-pill-yellow {
  display: inline-block;
  padding: 12px 24px;
  background: var(--fs-yellow);
  color: var(--fs-black);
  border: 2px solid var(--fs-yellow);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color var(--fs-dur-base) var(--fs-ease),
    border-color var(--fs-dur-base) var(--fs-ease),
    color var(--fs-dur-base) var(--fs-ease);
}
.btn-pill-yellow:hover {
  background: var(--fs-blue);
  border-color: var(--fs-blue);
  color: var(--fs-white);
}

/* --------------------------------------------------------------------------
   8. Header / Nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--fs-page-bg);
  box-shadow: 0 2px 0 0 transparent;
  transition: box-shadow var(--fs-dur-base) var(--fs-ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 0 0 var(--fs-blue);
}

.nav-inner {
  max-width: var(--fs-container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: block;
  line-height: 0;
  flex: none;
}
.nav-logo img {
  height: 56px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-link {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--fs-black);
  text-decoration: none;
  cursor: pointer;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--fs-dur-base) var(--fs-ease), border-color var(--fs-dur-base) var(--fs-ease);
}
.nav-link:hover {
  color: var(--fs-blue);
  border-bottom-color: var(--fs-blue);
}

/* Mobile-flavored nav link (in drawer) */
.nav-link-mobile {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--fs-neutral-300);
}
.nav-link-mobile:hover {
  border-bottom-color: var(--fs-neutral-300);
  color: var(--fs-blue);
}

/* Mobile hamburger */
.nav-mobile-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 2px solid var(--fs-black);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
}
.nav-mobile-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--fs-black);
  transition:
    transform var(--fs-dur-base) var(--fs-ease),
    opacity var(--fs-dur-fast) var(--fs-ease);
}
.nav-mobile-toggle.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-mobile-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav-mobile-drawer {
  display: none;
  border-top: 2px solid var(--fs-black);
  background: var(--fs-page-bg);
  padding: 8px 24px 24px;
}
.nav-mobile-drawer.open { display: block; }
.nav-mobile-drawer .btn-order-mobile {
  margin-top: 16px;
  display: inline-flex;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-mobile-toggle { display: none; }
  .nav-mobile-drawer { display: none !important; }
}

/* --------------------------------------------------------------------------
   9. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--fs-black);
  color: var(--fs-white);
  padding: 56px 24px 28px;
}
.footer-inner {
  max-width: var(--fs-container);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand-name {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.footer-brand-tag {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fs-yellow);
  margin-bottom: 12px;
}
.footer-address {
  font-size: 14px;
  line-height: 1.7;
}
.footer-phone { color: var(--fs-yellow); text-decoration: none; }

.footer-link {
  display: block;
  font-size: 14px;
  line-height: 2;
  color: var(--fs-white);
  text-decoration: none;
}
.footer-link:hover { color: var(--fs-yellow); }

.footer-order-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 16px;
  background: var(--fs-yellow);
  color: var(--fs-black);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   10. Hero (home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 40px 24px 0;
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 72px;
}
@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
  }
}

.hero-text { position: relative; z-index: 2; }

.hero-h1 {
  font-weight: 900;
  font-size: clamp(56px, 8.4vw, 124px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  color: var(--fs-black);
}
.hero-h1-blue { color: var(--fs-blue); }

.hero-lede {
  margin-top: 28px;
  max-width: 480px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--fs-neutral-700);
}

.hero-cta-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-photo-wrap {
  position: relative;
}
@media (min-width: 768px) {
  .hero-photo-wrap { min-height: 640px; }
}

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--fs-black);
  overflow: hidden;
  background: var(--fs-blue);
  margin: 8px auto 0;
  max-width: 480px;
  box-shadow: var(--fs-shadow-poster-blue);
  transition: transform var(--fs-dur-slow) var(--fs-ease);
}
@media (min-width: 768px) {
  .hero-photo {
    margin: 24px 0 0;
    max-width: none;
  }
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--fs-ease);
}
.hero-photo:hover { transform: translate(-3px, -3px); }
.hero-photo:hover img { transform: scale(1.04); }

/* --------------------------------------------------------------------------
   11. About
   -------------------------------------------------------------------------- */
.about {
  padding: 72px 24px;
}
.about-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 52% 1fr;
  }
}

.about-photo-wrap {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .about-photo-wrap { max-width: none; margin: 0; }
}
.about-photo {
  position: relative;
  border: 2px solid var(--fs-black);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--fs-neutral-300);
  box-shadow: 8px 8px 0 var(--fs-yellow);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fs-neutral-700);
  margin-bottom: 16px;
}
.about-copy p:last-of-type { margin-bottom: 0; }

.about-thanks {
  margin-top: 28px !important;
  margin-bottom: 4px !important;
  font-weight: 500;
  color: var(--fs-neutral-700);
}

.about-signature {
  display: inline-block;
  line-height: 1;
  padding-left: 4px;
  margin-top: 4px;
  font-family: "Homemade Apple", cursive;
  font-size: clamp(46px, 5.5vw, 60px);
  transform: rotate(-2deg);
  transform-origin: left center;
  color: var(--fs-black);
}

/* --------------------------------------------------------------------------
   12. Rewards
   -------------------------------------------------------------------------- */
.rewards {
  background: var(--fs-blue);
  padding: 72px 24px;
}
.rewards-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.rewards-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fs-yellow);
  display: block;
}
.rewards-h2 {
  font-weight: 900;
  font-size: clamp(36px, 5.2vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-top: 8px;
  color: var(--fs-white);
}

.rewards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .rewards-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.rewards-card {
  background: var(--fs-white);
  border: 2px solid var(--fs-black);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.rewards-list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
.rewards-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--fs-black);
  border-bottom: 1px solid var(--fs-neutral-300);
}
.rewards-list li:last-child { border-bottom: 0; }
.rewards-list-num {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--fs-yellow);
  color: var(--fs-black);
  font-weight: 900;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.rewards-poster {
  background: var(--fs-black);
  color: var(--fs-white);
  border: 2px solid var(--fs-black);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: var(--fs-shadow-poster-yellow);
}
.rewards-poster-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fs-yellow);
}
.rewards-poster-points-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px 0;
}
.rewards-poster-points {
  font-weight: 900;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fs-yellow);
}
.rewards-poster-points-sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 10px;
  color: var(--fs-white);
}
.rewards-poster-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
}
.rewards-poster-cta-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.rewards-cta-yellow {
  display: inline-block;
  padding: 12px 24px;
  background: var(--fs-yellow);
  color: var(--fs-black);
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color var(--fs-dur-base) var(--fs-ease);
}
.rewards-cta-yellow:hover { background: var(--fs-white); }
.rewards-cta-outline {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: var(--fs-white);
  border: 2px solid var(--fs-white);
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color var(--fs-dur-base) var(--fs-ease), color var(--fs-dur-base) var(--fs-ease);
}
.rewards-cta-outline:hover {
  background: var(--fs-white);
  color: var(--fs-black);
}

/* --------------------------------------------------------------------------
   13. Insta-style photo carousel
   -------------------------------------------------------------------------- */
.insta {
  padding: 88px 0;
  overflow: hidden;
}
.insta-head {
  max-width: 1280px;
  margin: 0 auto 36px;
  padding: 0 24px;
}
.insta-scroll-wrap {
  position: relative;
  margin-bottom: 28px;
}
.insta-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 24px 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.insta-scroll::-webkit-scrollbar { display: none; }
.insta-item {
  position: relative;
  flex: none;
  width: clamp(220px, 18vw, 300px);
  aspect-ratio: 4 / 5;
  border: 2px solid var(--fs-black);
  background: var(--fs-neutral-300);
  overflow: hidden;
  display: block;
  text-decoration: none;
  scroll-snap-align: start;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-controls {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.insta-progress {
  position: relative;
  height: 2px;
  background: var(--fs-neutral-300);
  margin-bottom: 24px;
}
.insta-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8%;
  background: var(--fs-blue);
  transition: width 200ms var(--fs-ease);
}
.insta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
}
.insta-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--fs-black);
  border: 2px solid var(--fs-black);
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--fs-dur-base) var(--fs-ease), color var(--fs-dur-base) var(--fs-ease);
  padding: 0;
}
.insta-btn:hover {
  background: var(--fs-black);
  color: var(--fs-white);
}
.insta-cta-wrap { text-align: center; }
.insta-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--fs-yellow);
  color: var(--fs-black);
  border: 2px solid var(--fs-yellow);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background-color var(--fs-dur-base) var(--fs-ease), border-color var(--fs-dur-base) var(--fs-ease), color var(--fs-dur-base) var(--fs-ease);
}
.insta-cta:hover {
  background: var(--fs-blue);
  border-color: var(--fs-blue);
  color: var(--fs-white);
}

/* --------------------------------------------------------------------------
   14. Find Us
   -------------------------------------------------------------------------- */
.find-us {
  padding: 72px 24px;
}
.find-us-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .find-us-grid { grid-template-columns: repeat(3, 1fr); }
}
.find-us-card {
  background: var(--fs-white);
  border: 2px solid var(--fs-black);
  border-radius: 8px;
  padding: 22px;
}
.find-us-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fs-blue);
}
.find-us-address {
  font-size: 17px;
  line-height: 1.6;
  margin-top: 10px;
  color: var(--fs-black);
}
.find-us-directions-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--fs-blue);
  text-decoration: none;
}
.find-us-directions-link:hover { color: var(--fs-black); }

.find-us-big-text {
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-top: 14px;
  color: var(--fs-black);
}
.find-us-big-text a { color: inherit; text-decoration: none; }
.find-us-card-note {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fs-neutral-700);
  margin-top: 10px;
  max-width: 240px;
}

.find-us-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.find-us-map {
  border: 2px solid var(--fs-black);
  border-radius: 8px;
  overflow: hidden;
  background: var(--fs-white);
}
.find-us-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* --------------------------------------------------------------------------
   15. Careers — hero, perks, apply banner
   -------------------------------------------------------------------------- */
.careers-hero {
  padding: 72px 24px 48px;
}
.careers-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.careers-back-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fs-blue);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color var(--fs-dur-base) var(--fs-ease);
}
.careers-back-link:hover { color: var(--fs-black); }

.careers-hero-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fs-blue);
  margin-bottom: 12px;
  display: block;
}
.careers-hero-h1 {
  font-weight: 900;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 900px;
  color: var(--fs-black);
}
.careers-hero-lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--fs-neutral-700);
  max-width: 640px;
  margin-top: 28px;
}

.careers-perks {
  padding: 0 24px 72px;
}
.careers-perks-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .careers-perks-grid { grid-template-columns: repeat(3, 1fr); }
}

.perk-card {
  border: 2px solid var(--fs-black);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  padding: clamp(20px, 2.4vw, 28px);
  background: var(--fs-white);
  box-shadow: var(--fs-shadow-poster);
}
.perk-card.accent { background: var(--fs-yellow); }
.perk-card-title {
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--fs-black);
}
.perk-card-body {
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  color: var(--fs-neutral-700);
}
.perk-card.accent .perk-card-body { color: var(--fs-black); }

.apply-banner {
  background: var(--fs-blue);
  color: var(--fs-white);
  border-top: 2px solid var(--fs-black);
  border-bottom: 2px solid var(--fs-black);
  padding: 56px 24px;
}
.apply-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.apply-banner-h2 {
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.apply-banner-lede {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 16px;
  max-width: 600px;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   16. Apply form
   -------------------------------------------------------------------------- */
.apply-section {
  padding: 64px 24px 96px;
}
.apply-wrap {
  max-width: var(--fs-container-narrow);
  margin: 0 auto;
}
.apply-form {
  background: var(--fs-white);
  border: 2px solid var(--fs-black);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 36px);
  box-shadow: var(--fs-shadow-poster-yellow);
}
.apply-form label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fs-neutral-700);
  margin: 22px 0 8px;
}
.apply-form label:first-of-type { margin-top: 0; }
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--fs-black);
  border: 2px solid var(--fs-black);
  background: var(--fs-white);
  border-radius: 4px;
  box-sizing: border-box;
}
.apply-form textarea { resize: vertical; }
.apply-form .req {
  color: var(--fs-blue);
  margin-left: 4px;
}

.apply-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .apply-form-row { grid-template-columns: 1fr 1fr; }
}
.apply-form-row label { margin-top: 22px; }

/* Honeypot — visually hidden, off-screen */
.apply-form .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.apply-form-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.apply-submit {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--fs-black);
  border-radius: 999px;
  background: var(--fs-yellow);
  color: var(--fs-black);
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--fs-black);
}
.apply-submit:disabled {
  background: var(--fs-neutral-700);
  color: var(--fs-white);
  cursor: wait;
  opacity: 0.85;
}
.apply-back {
  display: inline-block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  background: transparent;
  color: var(--fs-black);
  border: 2px solid var(--fs-black);
  border-radius: 4px;
  text-decoration: none;
}

.apply-success {
  background: var(--fs-yellow);
  color: var(--fs-black);
  border: 2px solid var(--fs-black);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--fs-shadow-poster);
}
.apply-success h2 {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.apply-success p {
  font-size: 16px;
  margin-top: 12px;
  line-height: 1.5;
}
.apply-success-back {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--fs-black);
  color: var(--fs-white);
  border: 2px solid var(--fs-black);
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.apply-error {
  margin-top: 24px;
  padding: 14px 18px;
  border: 2px solid var(--fs-black);
  border-radius: 4px;
  background: var(--fs-white);
  font-size: 15px;
  line-height: 1.5;
  color: var(--fs-black);
  box-shadow: 4px 4px 0 var(--fs-black);
}
.apply-error-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fs-blue);
  margin-bottom: 6px;
}

/* Generic util — hide an element */
.is-hidden { display: none !important; }
