/* ============================================================
   THE FRIENDLY SPOT — styles.css
   Palette: Outdoor icehouse in full Texas sun.
   Powder blue is the PRIMARY color (walls, logo, sky).
   Warm sand, weathered wood, vintage chair colors as accents.
   Light, airy, alive — not dark.
   ============================================================ */

@font-face {
  font-family: 'Patua One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/patuaone/v22/ZXuke1cDvLCKLDcimxB44_lu.woff2) format('woff2');
}

:root {
  /* --- Core palette --- */
  --sky:         #b4d2f0;   /* logo powder blue — PRIMARY */
  --sky-bright:  #d4eaff;   /* highlight sky */
  --sky-deep:    #7aaad4;   /* darker sky / active */
  --sky-bg:      #e8f3fc;   /* near-white sky tint — main bg */
  --stucco:      #f5f0e8;   /* white stucco walls */
  --sand:        #c8b89a;   /* gravel ground */
  --sand-dark:   #8a7460;   /* darker sand / wood */

  /* Vintage chair colors — accent pops */
  --chair-red:   #c0392b;
  --chair-green: #2e7d4f;
  --chair-teal:  #1a7a6e;
  --chair-rust:  #b04a20;
  --chair-berry: #7a3050;

  /* Logo oval border — warm brown/burgundy */
  --border-warm: #785a5a;
  --border-dark: #4a3535;

  /* Text */
  --ink:         #1e1a14;   /* near-black warm */
  --ink-mid:     #3d3428;   /* medium dark brown */
  --ink-soft:    #5a5040;   /* softer text */
  --ink-muted:   #8a7d6a;   /* muted / captions */

  /* Wood tones */
  --wood:        #8b6c4a;
  --wood-light:  #b08a60;

  --font-display: 'Zilla Slab', 'Patua One', Georgia, serif;
  --font-cond:    'Barlow Condensed', 'Patua One', sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;

  --max-w: 1200px;
  --pad-x: clamp(1.25rem, 5vw, 3rem);
  --header-h: 68px;

  --radius: 5px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--sky-bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { background: none; border: none; cursor: pointer; font: inherit; }
sup { font-size: 0.65em; vertical-align: super; color: var(--chair-green); font-weight: 700; }

/* ---- UTILITY ---- */
.section-eyebrow {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 0.5rem;
}
.btn-primary {
  display: inline-block;
  background: var(--sky);
  color: var(--ink);
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8em 2em;
  border-radius: var(--radius);
  border: 2px solid var(--border-warm);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--sky-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(120,90,90,0.25);
}
.btn-primary:active { transform: translateY(0); }
.btn-lg { font-size: 1.15rem; padding: 0.9em 2.5em; }

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(30,26,20,0.3);
  color: var(--ink);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75em 1.8em;
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(30,26,20,0.06);
}

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay  { transition-delay: 0.13s; }
.reveal-delay2 { transition-delay: 0.25s; }

/* ============================================================ PROMO BANNER */
.promo-banner {
  background: var(--border-warm);
  color: #fff;
  text-align: center;
  padding: 0.55rem var(--pad-x);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.promo-banner a { color: var(--sky-bright); text-decoration: underline; margin-left: 0.4em; }
.promo-banner a:hover { color: #fff; }

/* ============================================================ HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(180,210,240,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-warm);
  height: var(--header-h);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo-link { flex-shrink: 0; }
.logo-img {
  height: 48px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--border-warm);
  transition: box-shadow 0.2s;
}
.logo-link:hover .logo-img { box-shadow: 0 0 0 3px var(--border-warm); }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 0.15rem; }
.main-nav a {
  display: block;
  padding: 0.45em 0.85em;
  font-family: var(--font-cond);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: var(--ink); background: rgba(30,26,20,0.08); }
.main-nav .nav-cta {
  background: var(--ink);
  color: var(--sky);
  margin-left: 0.5rem;
}
.main-nav .nav-cta:hover { background: var(--ink-mid); color: var(--sky-bright); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ============================================================ MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0;
  width: min(300px, 80vw);
  height: 100%;
  background: var(--sky);
  border-right: 2px solid var(--border-warm);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-close { position: absolute; top: 1.2rem; right: 1.2rem; font-size: 1.5rem; color: var(--ink); }
.mobile-drawer nav ul { display: flex; flex-direction: column; }
.mobile-drawer nav a {
  display: block;
  padding: 0.75em 0;
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid rgba(30,26,20,0.12);
}
.mobile-drawer .drawer-cta { color: var(--border-warm); border-bottom: none; margin-top: 0.5rem; }
.drawer-contact { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }
.drawer-contact a { color: var(--border-warm); display: block; margin-top: 0.4rem; font-weight: 700; }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(30,26,20,0.5);
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.drawer-overlay.active { opacity: 1; pointer-events: all; }

/* ============================================================ HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    /* left-to-right: dark on left for text, fades out by ~60% */
    linear-gradient(
      to right,
      rgba(30,26,20,0.88) 0%,
      rgba(30,26,20,0.72) 30%,
      rgba(30,26,20,0.35) 55%,
      rgba(30,26,20,0.05) 75%,
      transparent 100%
    ),
    /* bottom fade so stats/CTAs stay readable regardless */
    linear-gradient(
      to top,
      rgba(30,26,20,0.6) 0%,
      transparent 35%
    );
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(3rem, 8vw, 6rem);
}
.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.75rem;
  animation: fadeUp 0.8s ease both;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.92;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-sub {
  font-family: var(--font-cond);
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sky-bright);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--sky);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(180,210,240,0.6);
}
.stat-divider { width: 1px; height: 2.5rem; background: rgba(255,255,255,0.2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; animation: fadeUp 0.8s 0.4s ease both; }
/* override ghost for dark hero bg */
.hero .btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hero-scroll {
  position: absolute; bottom: 2rem; right: var(--pad-x); z-index: 1;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  animation: bounce 2s 1.5s ease-in-out infinite;
}
.hero-scroll svg { width: 28px; height: 28px; }
.hero-scroll:hover { color: var(--sky); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ============================================================ ICE HOUSE EXPLAINER */
.icehouse-explainer {
  background: var(--stucco);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  border-top: 4px solid var(--border-warm);
}
.explainer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.explainer-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.explainer-body {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.explainer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--border-warm);
  margin-bottom: 2rem;
}
.feature-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  display: inline-block;
  padding: 0.4em 0.9em;
  background: var(--sky);
  border: 1.5px solid var(--border-warm);
  color: var(--ink);
  font-family: var(--font-cond);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
}
.pill:hover { background: var(--sky-bright); transform: translateY(-1px); }
.explainer-photo img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 6px 6px 0 var(--border-warm), 0 12px 40px rgba(30,26,20,0.2);
}

/* ============================================================ PHOTO STRIP */
.photo-strip {
  display: flex;
  height: clamp(160px, 22vw, 280px);
  overflow: hidden;
}
.strip-item { flex: 1; overflow: hidden; min-width: 0; }
.strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.strip-item:hover img { transform: scale(1.07); }

/* ============================================================ FRIENDLY HOUR */
.friendly-hour {
  background: var(--sky);
  border-top: 4px solid var(--border-warm);
  border-bottom: 4px solid var(--border-warm);
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.friendly-hour::before {
  content: '';
  position: absolute; inset: 0;
  /* subtle diagonal stripe like weathered wood planks */
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.18) 30px,
    rgba(255,255,255,0.18) 32px
  );
  pointer-events: none;
}
.fhour-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.fhour-badge {
  display: inline-block;
  background: var(--border-warm);
  color: #fff;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3em 1.1em;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.friendly-hour h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 1rem;
}
.friendly-hour p { font-size: 1.1rem; color: var(--ink-mid); margin-bottom: 0.75rem; }
.friendly-hour strong { color: var(--border-warm); }
.fhour-follow { font-size: 0.95rem; color: var(--ink-soft); }
.fhour-follow a { color: var(--border-warm); font-weight: 700; }
.fhour-follow a:hover { text-decoration: underline; }

/* ============================================================ MENU */
.menu-section {
  background: var(--sky-bg);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
.menu-heading {
  max-width: var(--max-w);
  margin: 0 auto 3.5rem;
  text-align: center;
}
.menu-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--ink);
}
.menu-sub {
  color: var(--ink-muted);
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.menu-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.menu-cat {
  background: #fff;
  border: 1.5px solid rgba(120,90,90,0.2);
  border-top: 4px solid var(--border-warm);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(30,26,20,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.menu-cat:hover { box-shadow: 0 6px 24px rgba(30,26,20,0.1); transform: translateY(-2px); }
.menu-cat h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--border-warm);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(120,90,90,0.12);
}
.menu-cat h3 small {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chair-green);
  background: rgba(46,125,79,0.1);
  border: 1px solid rgba(46,125,79,0.25);
  padding: 0.15em 0.6em;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 0.5rem;
}
.cat-note-top {
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-style: italic;
  margin: -0.5rem 0 1rem;
  line-height: 1.5;
}
.cat-items { display: flex; flex-direction: column; }
.mi {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(30,26,20,0.06);
}
.mi:last-child { border-bottom: none; padding-bottom: 0; }
.mi-text { flex: 1; min-width: 0; }
.mi-text b {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}
.mi-text em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 0.15rem;
  line-height: 1.45;
}
.mi > span {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 800;
  color: var(--chair-green);
  white-space: nowrap;
  flex-shrink: 0;
}
.add-ons {
  margin-top: 0.75rem;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(120,90,90,0.15);
}
.add-ons p { font-size: 0.78rem; color: var(--ink-muted); font-style: italic; line-height: 1.5; }
.veg-key {
  max-width: var(--max-w);
  margin: 1.75rem auto 0;
  font-size: 0.83rem;
  color: var(--ink-muted);
  font-style: italic;
}
.veg-key sup { color: var(--chair-green); }
.menu-cta { max-width: var(--max-w); margin: 2.5rem auto 0; text-align: center; }

/* ============================================================ VIBES */
.vibes-section {
  background: var(--stucco);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  border-top: 4px solid var(--border-warm);
}
.vibes-header { max-width: var(--max-w); margin: 0 auto 3rem; text-align: center; }
.vibes-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--ink);
}
.vibes-header p {
  color: var(--ink-muted);
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.vibes-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.vg-cell {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
  box-shadow: 0 2px 8px rgba(30,26,20,0.1);
}
.vg-cell img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1;
  transition: transform 0.5s ease;
}
.vg-cell:hover img { transform: scale(1.06); }
.vg-tall { grid-row: span 2; }
.vg-tall img { aspect-ratio: auto; height: 100%; }
.vg-wide { grid-column: span 2; }
.vg-wide img { aspect-ratio: 16/9; }

/* ============================================================ SPORTS */
.sports-section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--pad-x);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 70vh;
}
.sports-bg { position: absolute; inset: 0; }
.sports-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.45) saturate(0.7);
}
.sports-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,26,20,0.92) 0%,
    rgba(30,26,20,0.55) 55%,
    transparent 100%
  );
}
.sports-content { position: relative; z-index: 1; max-width: 560px; }
.sports-content h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 0.5rem;
}
.sports-sub {
  font-family: var(--font-cond);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 2rem;
}
.sports-list { display: flex; flex-direction: column; gap: 0.5rem; }
.sports-list li {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  padding: 0.55em 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sports-list li:last-child { border-bottom: none; }

/* ============================================================ CONTACT */
.contact-section {
  background: var(--sky-bg);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  border-top: 4px solid var(--border-warm);
}
.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.contact-info address p { font-size: 1.1rem; color: var(--ink-soft); line-height: 1.7; }
.contact-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--border-warm);
  margin: 1rem 0;
  transition: color 0.2s;
}
.contact-phone:hover { color: var(--border-dark); }
.hours-block { margin-top: 1.25rem; }
.hours-block h3 {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
}
.hours-block p { font-size: 1rem; color: var(--ink-soft); line-height: 1.7; }
.hours-block strong { color: var(--ink); }
.social-row { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5em 1em;
  background: var(--sky);
  border: 1.5px solid var(--border-warm);
  color: var(--ink);
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.social-btn svg { width: 15px; height: 15px; }
.social-btn:hover { background: var(--sky-bright); transform: translateY(-1px); }
.contact-map { grid-row: span 1; }
.contact-map iframe {
  width: 100%; height: 100%; min-height: 300px;
  border: none; border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(30,26,20,0.12);
}
.contact-form-wrap {
  grid-column: span 2;
  background: #fff;
  border: 1.5px solid rgba(120,90,90,0.2);
  border-top: 4px solid var(--border-warm);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(30,26,20,0.07);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--border-warm);
  margin-bottom: 1.5rem;
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row:has(textarea) { grid-column: span 2; }
.form-row label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.form-row input,
.form-row textarea {
  background: var(--sky-bg);
  border: 1.5px solid rgba(120,90,90,0.2);
  border-radius: 4px;
  padding: 0.7em 0.9em;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--border-warm);
  background: #fff;
}
.form-row textarea { resize: vertical; line-height: 1.6; }
.contact-form .btn-primary { grid-column: span 2; justify-self: start; }
.form-note {
  grid-column: span 2;
  font-size: 0.9rem;
  color: var(--chair-green);
  min-height: 1.2em;
}

/* ============================================================ FOOTER */
.site-footer {
  background: var(--ink);
  border-top: 4px solid var(--border-warm);
  padding: 3rem var(--pad-x) 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.footer-brand img { height: 52px; border-radius: 50%; border: 2px solid var(--border-warm); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(180,210,240,0.6); margin-bottom: 0.3rem; }
.footer-brand a { color: var(--sky); font-size: 0.9rem; }
.footer-brand a:hover { color: var(--sky-bright); }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: 0.25rem 1.25rem; }
.footer-nav a {
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(180,210,240,0.55);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--sky); }
.footer-copy {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: rgba(180,210,240,0.25);
}

/* ============================================================ RESPONSIVE */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .explainer-inner { grid-template-columns: 1fr; }
  .explainer-photo { order: -1; }
  .explainer-photo img { aspect-ratio: 16/9; }
  .menu-grid { grid-template-columns: 1fr; }
  .vibes-grid { grid-template-columns: repeat(2, 1fr); }
  .vg-tall { grid-row: span 1; }
  .vg-tall img { aspect-ratio: 1; height: auto; }
  .vg-wide { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { grid-column: span 1; }
  .contact-form { grid-template-columns: 1fr; }
  .form-row:has(textarea) { grid-column: span 1; }
  .contact-form .btn-primary { grid-column: span 1; }
  .form-note { grid-column: span 1; }
}
@media (max-width: 600px) {
  :root { --header-h: 60px; }
  .hero-stats { gap: 1rem; }
  .photo-strip { height: 130px; }
  .vibes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================ EMPLOYMENT FOOTER */
.footer-employment {
  border-top: 1px solid rgba(180,210,240,0.12);
  padding: 1.75rem var(--pad-x);
}
.footer-employment-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.employment-text h4 {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.3rem;
}
.employment-text p {
  font-size: 0.88rem;
  color: rgba(180,210,240,0.55);
  line-height: 1.5;
}
.employment-text a {
  color: var(--sky);
  text-decoration: underline;
}
.employment-text a:hover { color: var(--sky-bright); }
.btn-employment {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6em 1.4em;
  background: transparent;
  border: 1.5px solid var(--border-warm);
  color: var(--sky);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.btn-employment svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-employment:hover {
  background: var(--border-warm);
  color: #fff;
}
@media (max-width: 600px) {
  .footer-employment-inner { flex-direction: column; align-items: flex-start; }
}

/* ---- Moved from inline styles ---- */
.section-eyebrow--light { color: #f5c842; }
.menu-subcat { margin-top: 1.5rem; }
