/* ============================================================
   Jaybird Construction — Springtown / Azle, TX
   Rugged Texas-tough: deep navy, steel gray, blue-green accent.
   Type system (Oswald / Bitter / Inter) + spacing/radius/shadow
   tokens adapted from the Parker County design system.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Bitter:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* ── Navy (primary dark) ── */
  --navy-950: #081320;
  --navy-900: #0c1d31;
  --navy-800: #112740;
  --navy-700: #19385b;
  --navy-600: #234b76;
  --navy:     #0f2138;

  /* ── Steel grays (warm-cool, concrete) ── */
  --steel-900: #2b3441;
  --steel-700: #3f4a5a;
  --steel-500: #5d6979;
  --steel-400: #828d9c;
  --steel-300: #aab2bd;
  --steel-200: #ced3da;
  --steel-100: #e6e9ed;
  --concrete:  #f2f3f5;   /* light page bg */
  --concrete-2:#e9ebee;

  /* ── Blue-green (teal) accent ── */
  --teal-700: #b34700;
  --teal-600: #d35400;
  --teal-500: #ff6a00;   /* primary accent */
  --teal-400: #ff8c42;
  --teal-050: #fff1e6;

  --white: #ffffff;
  --bone:  #f7f6f3;     /* warm off-white card surface */

  /* ── Semantic ── */
  --bg-page:    var(--concrete);
  --bg-card:    var(--white);
  --bg-dark:    var(--navy);
  --bg-darker:  var(--navy-950);
  --fg-1:       var(--navy);          /* headings */
  --fg-2:       var(--steel-700);     /* body */
  --fg-3:       var(--steel-500);     /* meta */
  --fg-on-dark: #e7ecf2;
  --fg-on-dark-muted: #9fadbe;
  --accent:     var(--teal-500);

  --border-1: rgba(15, 33, 56, 0.10);
  --border-2: rgba(15, 33, 56, 0.18);
  --border-on-dark: rgba(231, 236, 242, 0.14);

  /* ── Type ── */
  --font-display: 'Oswald', 'Arial Narrow Bold', sans-serif;
  --font-slab:    'Bitter', 'Georgia', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --tracking-widest: 0.22em;
  --tracking-wider:  0.14em;
  --tracking-wide:   0.06em;

  /* ── Spacing (8px base) ── */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  --space-9: 96px; --space-10: 128px;

  /* ── Radius (squarer, industrial) ── */
  --radius-sm: 2px; --radius-md: 4px; --radius-lg: 8px; --radius-pill: 999px;

  /* ── Shadows (cool navy tint) ── */
  --shadow-1: 0 1px 2px rgba(11,29,49,.08), 0 1px 1px rgba(11,29,49,.05);
  --shadow-2: 0 6px 18px rgba(11,29,49,.10), 0 2px 4px rgba(11,29,49,.07);
  --shadow-3: 0 16px 38px rgba(11,29,49,.18), 0 5px 10px rgba(11,29,49,.08);
  --shadow-4: 0 30px 70px rgba(8,19,32,.34);

  /* ── Motion ── */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 220ms;
  --dur-slow: 420ms;

  --maxw: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg-2);
  background: var(--bg-page);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Layout ── */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-6); }
section { position: relative; }
.section-pad { padding: var(--space-10) 0; }
@media (max-width: 720px) { .section-pad { padding: var(--space-8) 0; } }

/* ── Type styles ── */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--space-4);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 3px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

h1, h2, h3 { margin: 0; color: var(--fg-1); }
.display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.005em;
  font-size: clamp(2.6rem, 6vw, 5rem);
}
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}
.h3 {
  font-family: var(--font-slab);
  font-weight: 700;
  line-height: 1.18;
  font-size: 1.45rem;
  color: var(--fg-1);
}
.lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 64ch;
}
.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .sub { margin: var(--space-4) 0 0; font-size: 1.15rem; color: var(--fg-2); }

.on-dark { color: var(--fg-on-dark); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark .display, .on-dark .h2 { color: #fff; }
.on-dark .sub { color: var(--fg-on-dark-muted); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: 0.95rem;
  padding: 15px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
  white-space: nowrap;
}
.btn .ic { width: 18px; height: 18px; }
.btn-teal {
  background: var(--teal-500);
  color: #fff;
  box-shadow: var(--shadow-2);
}
.btn-teal:hover { background: var(--teal-600); transform: translateY(-2px); box-shadow: var(--shadow-3); }
.btn-teal:active { transform: translateY(1px); box-shadow: inset 0 3px 6px rgba(0,0,0,.25); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.10); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-2);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

.btn-lg { padding: 18px 34px; font-size: 1.05rem; }

/* ── Inline link ── */
.link-arrow {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: 0.9rem;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.link-arrow:hover { gap: 12px; color: var(--teal-700); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(12, 29, 49, 0.1);
  box-shadow: 0 2px 12px rgba(12, 29, 49, 0.08);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--space-6);
  height: 76px;
  display: flex; align-items: center; gap: var(--space-6);
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 26px;
  margin-left: auto;
  list-style: none; padding: 0; margin-top: 0; margin-bottom: 0;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: 0.85rem;
  color: var(--navy-900);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color var(--dur) var(--ease-out);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--teal-500);
  transition: width var(--dur) var(--ease-out);
}
.nav-links a:hover { color: var(--teal-500); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 11px 20px; font-size: 0.85rem; }
.nav-toggle {
  display: none; margin-left: auto;
  background: transparent; border: 0; color: var(--navy-900); padding: 8px;
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.8rem; }
}
@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; padding: var(--space-5) var(--space-6);
    gap: var(--space-4); border-bottom: 1px solid rgba(12, 29, 49, 0.1);
  }
  .nav-mobile-open .nav-links a { font-size: 1rem; }
  .nav-mobile-open .nav-cta {
    display: block; position: absolute; top: calc(76px + 320px); left: var(--space-6); right: var(--space-6);
  }
  .nav-mobile-open .nav-cta .btn { width: 100%; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--navy-950); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.02); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(8,19,32,.94) 0%, rgba(8,19,32,.78) 42%, rgba(8,19,32,.30) 100%),
    linear-gradient(to top, rgba(8,19,32,.85), transparent 45%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(64px, 12vh, 150px) var(--space-6) clamp(56px, 9vh, 120px);
}
.hero-seo {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--fg-on-dark-muted);
  max-width: 60ch;
  margin: 0 0 var(--space-6);
  border-left: 3px solid var(--teal-500);
  padding-left: 14px;
  line-height: 1.5;
}
.hero h1.display { color: #fff; max-width: 16ch; }
.hero h1 .accent { color: var(--teal-400); }
.hero-sub {
  margin: var(--space-5) 0 var(--space-7);
  font-size: 1.25rem; line-height: 1.55;
  color: #cdd6e1; max-width: 56ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* trust bar */
.trustbar { background: var(--navy-900); border-top: 1px solid var(--border-on-dark); position: relative; z-index: 1; }
.trustbar-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-6);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 26px 22px;
  color: #e7ecf2;
  border-right: 1px solid var(--border-on-dark);
}
.trust-item:last-child { border-right: 0; }
.trust-item .ic { width: 28px; height: 28px; color: var(--teal-400); flex-shrink: 0; }
.trust-item span {
  font-family: var(--font-display); font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--tracking-wide);
  font-size: 0.92rem; line-height: 1.2;
}
@media (max-width: 880px) {
  .trustbar-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--border-on-dark); }
}
@media (max-width: 520px) {
  .trustbar-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--border-on-dark); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); margin-top: var(--space-8); }
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.svc-media { aspect-ratio: 4/3; overflow: hidden; background: var(--steel-200); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.svc-card:hover .svc-media img { transform: scale(1.05); }
.svc-body { padding: var(--space-6); display: flex; flex-direction: column; flex: 1; }
.svc-tag {
  font-family: var(--font-display); font-weight: 600; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: var(--tracking-wider);
  color: var(--accent); margin-bottom: 10px;
}
.svc-body .h3 { margin-bottom: 12px; }
.svc-body p { margin: 0 0 var(--space-5); color: var(--fg-2); }
.svc-body .link-arrow { margin-top: auto; }
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 920px) { .svc-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* ============================================================
   WHY JAYBIRD
   ============================================================ */
.why { background: var(--navy); color: var(--fg-on-dark); overflow: hidden; }
.why::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 2px, transparent 2px 22px);
  pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--space-9); align-items: start; position: relative; }
.why-quote {
  font-family: var(--font-slab);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.32;
  color: #fff;
}
.why-quote .hl { color: var(--teal-400); font-weight: 700; }
.why-attrib { margin-top: var(--space-6); font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--fg-on-dark-muted); font-size: 0.9rem; }
.why-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-on-dark); border: 1px solid var(--border-on-dark); border-radius: var(--radius-lg); overflow: hidden; }
.why-block { background: var(--navy-800); padding: var(--space-6); }
.why-block .ic { width: 30px; height: 30px; color: var(--teal-400); margin-bottom: 14px; }
.why-block h4 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 1.05rem; color: #fff; margin: 0 0 8px; letter-spacing: 0.01em; }
.why-block p { margin: 0; font-size: 0.95rem; color: var(--fg-on-dark-muted); line-height: 1.55; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: var(--space-7); } }
@media (max-width: 520px) { .why-blocks { grid-template-columns: 1fr; } }

/* ============================================================
   BARNDOMINIUM SPOTLIGHT
   ============================================================ */
.barndo { background: var(--bg-darker); color: var(--fg-on-dark); overflow: hidden; }
.barndo-head { text-align: center; margin-bottom: var(--space-8); }
.barndo-head .h2 { color: #fff; }
.barndo-head .sub { color: #b9c4d1; margin: var(--space-4) auto 0; max-width: 60ch; font-size: 1.15rem; }
.barndo-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-8); align-items: center; }
.barndo-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: var(--space-3); }
.barndo-gallery a {
  display: block; overflow: hidden; border-radius: var(--radius-md);
  border: 1px solid var(--border-on-dark); position: relative;
}
.barndo-gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform var(--dur-slow) var(--ease-out); }
.barndo-gallery a:hover img { transform: scale(1.06); }
.barndo-gallery a.tall { grid-row: span 2; }
.barndo-gallery a.tall img { aspect-ratio: auto; height: 100%; }
.barndo-text h3 { color: #fff; margin-bottom: var(--space-4); }
.barndo-text p { color: #c2cdd9; }
.barndo-list { list-style: none; padding: 0; margin: var(--space-5) 0 var(--space-6); display: grid; gap: 12px; }
.barndo-list li { display: flex; gap: 12px; align-items: flex-start; color: #dde5ee; font-size: 1.02rem; }
.barndo-list .ic { width: 20px; height: 20px; color: var(--teal-400); flex-shrink: 0; margin-top: 4px; }
@media (max-width: 900px) { .barndo-grid { grid-template-columns: 1fr; gap: var(--space-7); } }

/* ============================================================
   GALLERY (combined Our Work)
   ============================================================ */
.gallery-tabs { display: flex; gap: 10px; justify-content: center; margin: var(--space-6) 0 var(--space-7); flex-wrap: wrap; }
.gallery-tab {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-wide); font-size: 0.85rem;
  padding: 10px 22px; border-radius: var(--radius-pill);
  background: var(--white); color: var(--steel-700);
  border: 1px solid var(--border-2);
  transition: all var(--dur) var(--ease-out);
}
.gallery-tab:hover { border-color: var(--navy); }
.gallery-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.gallery-grid a { display: block; overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--border-1); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform var(--dur-slow) var(--ease-out); }
.gallery-grid a:hover img { transform: scale(1.07); }
.gallery-item { transition: opacity var(--dur) var(--ease-out); }
.gallery-item.hide { display: none; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area { background: var(--white); }
.area-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-8); align-items: center; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-pill {
  font-family: var(--font-display); font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--tracking-wide);
  font-size: 0.88rem;
  padding: 9px 18px; border-radius: var(--radius-pill);
  background: var(--concrete); color: var(--navy);
  border: 1px solid var(--border-1);
  transition: all var(--dur) var(--ease-out);
}
.area-pill:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.area-pill.home { background: var(--teal-050); border-color: rgba(255,106,0,.35); color: var(--teal-700); }
.area-pill.more { background: var(--teal-600); border-color: var(--teal-600); color: #fff; cursor: pointer; }
.area-pill.more:hover { background: var(--navy); border-color: var(--navy); }
@media (max-width: 880px) { .area-grid { grid-template-columns: 1fr; gap: var(--space-6); } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--concrete-2); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-8); }
.rev-card {
  background: var(--white); border: 1px solid var(--border-1);
  border-radius: var(--radius-lg); padding: var(--space-6);
  box-shadow: var(--shadow-1); display: flex; flex-direction: column;
}
.rev-stars { color: var(--teal-500); font-size: 1.15rem; letter-spacing: 3px; margin-bottom: var(--space-4); }
.rev-quote { font-family: var(--font-slab); font-size: 1.18rem; line-height: 1.45; color: var(--navy); font-weight: 500; margin: 0 0 var(--space-5); flex: 1; }
.rev-by { font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wide); font-size: 0.85rem; color: var(--steel-500); }
.rev-by strong { color: var(--navy); }
.rev-links { display: flex; gap: var(--space-6); justify-content: center; margin-top: var(--space-7); flex-wrap: wrap; }
@media (max-width: 880px) { .rev-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

/* ============================================================
   FINANCING
   ============================================================ */
.financing { background: var(--navy); color: var(--fg-on-dark); }
.financing-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-8); align-items: center; }
.financing .sub { color: #c2cdd9; margin: var(--space-4) 0 var(--space-6); font-size: 1.15rem; }
.financing-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--navy-800); border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-lg); padding: var(--space-6);
}
.financing-badge .big { font-family: var(--font-display); font-weight: 700; font-size: 3.4rem; color: var(--teal-400); line-height: 1; }
.financing-badge .lbl { font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: #fff; font-size: 1rem; line-height: 1.2; }
@media (max-width: 820px) { .financing-inner { grid-template-columns: 1fr; gap: var(--space-6); } }

/* ============================================================
   CONTACT / QUOTE FORM
   ============================================================ */
.contact { background: var(--concrete); }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--space-8); align-items: start; }
.quote-form {
  background: var(--white); border: 1px solid var(--border-1);
  border-radius: var(--radius-lg); padding: var(--space-7);
  box-shadow: var(--shadow-2);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display); font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--tracking-wide);
  font-size: 0.74rem; color: var(--steel-700);
}
.field label .req { color: var(--teal-500); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 0.98rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-md);
  background: var(--bone); color: var(--navy);
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(255,106,0,.18); background: #fff;
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--teal-500); background: var(--teal-050); }
.form-actions { margin-top: var(--space-6); }
.form-actions .btn { width: 100%; }
.form-note { margin-top: var(--space-4); font-size: 0.82rem; color: var(--fg-3); line-height: 1.5; }
.form-success {
  background: #0f3a1f; color: #d7f0df; border: 1px solid #2c6b41;
  border-radius: var(--radius-md); padding: var(--space-5);
  display: none; align-items: center; gap: 12px; margin-top: var(--space-5);
}
.form-success.show { display: flex; }
.form-success .ic { width: 24px; height: 24px; color: #7fd99a; flex-shrink: 0; }

/* contact card */
.contact-card { background: var(--navy); color: var(--fg-on-dark); border-radius: var(--radius-lg); padding: var(--space-7); box-shadow: var(--shadow-2); }
.contact-card h3 { color: #fff; font-family: var(--font-display); text-transform: uppercase; margin-bottom: var(--space-5); }
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: var(--space-4) 0; border-bottom: 1px solid var(--border-on-dark); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ic { width: 24px; height: 24px; color: var(--teal-400); flex-shrink: 0; margin-top: 2px; }
.contact-row .label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wide); font-size: 0.72rem; color: var(--fg-on-dark-muted); margin-bottom: 3px; }
.contact-row .val { color: #fff; font-size: 1.02rem; }
.contact-row a.val:hover { color: var(--teal-400); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: var(--space-6); } .form-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-950); color: var(--fg-on-dark); }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1.1fr; gap: var(--space-8); padding: var(--space-9) 0 var(--space-7); }
.footer-logo img { height: 44px; margin-bottom: var(--space-4); }
.footer-blurb { color: var(--fg-on-dark-muted); font-size: 0.95rem; max-width: 38ch; }
.footer-col h5 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wide); font-size: 0.85rem; color: #fff; margin: 0 0 var(--space-4); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col li { color: var(--fg-on-dark-muted); font-size: 0.95rem; transition: color var(--dur) var(--ease-out); }
.footer-col a:hover { color: var(--teal-400); }
.footer-contact .ic { width: 18px; height: 18px; color: var(--teal-400); vertical-align: middle; margin-right: 8px; }
.footer-socials { display: flex; gap: 12px; margin-top: var(--space-5); }
.footer-socials a { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border-on-dark); border-radius: var(--radius-md); color: #fff; transition: all var(--dur) var(--ease-out); }
.footer-socials a:hover { background: var(--teal-500); border-color: var(--teal-500); }
.footer-socials .ic { width: 20px; height: 20px; color: #fff; margin: 0; }
.footer-bar { border-top: 1px solid var(--border-on-dark); padding: var(--space-5) 0; text-align: center; }
.footer-bar p { margin: 0; color: var(--fg-on-dark-muted); font-size: 0.85rem; }
@media (max-width: 820px) { .footer-main { grid-template-columns: 1fr 1fr; } .footer-logo { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-main { grid-template-columns: 1fr; } }

/* ============================================================
   MAP / DIRECTIONS
   ============================================================ */
.map { background: var(--navy-900); color: var(--fg-on-dark); }
.map-grid { display: grid; grid-template-columns: 1fr 1.3fr; align-items: stretch; min-height: 440px; }
.map-info { padding: var(--space-9) var(--space-7); display: flex; flex-direction: column; justify-content: center; }
.map-info .h2 { color: #fff; }
.map-info .sub { color: #c2cdd9; margin: var(--space-4) 0 var(--space-6); font-size: 1.12rem; max-width: 42ch; }
.map-addr { display: flex; gap: 14px; align-items: flex-start; margin-bottom: var(--space-6); }
.map-addr .ic { width: 26px; height: 26px; color: var(--teal-400); flex-shrink: 0; margin-top: 3px; }
.map-addr .val { font-family: var(--font-slab); font-weight: 600; font-size: 1.2rem; color: #fff; line-height: 1.4; }
.map-embed { position: relative; min-height: 440px; border-left: 1px solid var(--border-on-dark); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }
@media (max-width: 880px) {
  .map-grid { grid-template-columns: 1fr; }
  .map-info { padding: var(--space-8) var(--space-6); }
  .map-embed { min-height: 340px; border-left: 0; border-top: 1px solid var(--border-on-dark); }
}

/* ============================================================
   FACEBOOK / FOLLOW ALONG
   ============================================================ */
.fb { background: var(--navy-900); color: var(--fg-on-dark); overflow: hidden; }
.fb-grid { display: grid; grid-template-columns: 1fr 380px; gap: var(--space-8); align-items: center; }
.fb-info .h2 { color: #fff; }
.fb-info .sub { color: #c2cdd9; margin: var(--space-4) 0 var(--space-6); font-size: 1.15rem; max-width: 46ch; }
.fb-meta { display: flex; gap: var(--space-7); margin-bottom: var(--space-6); flex-wrap: wrap; }
.fb-meta .stat { display: flex; flex-direction: column; gap: 2px; }
.fb-meta .num { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--teal-400); line-height: 1; }
.fb-meta .lbl { font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wide); font-size: 0.72rem; color: var(--fg-on-dark-muted); }
.btn-fb { background: #1877f2; color: #fff; border-color: #1877f2; }
.btn-fb:hover { background: #0e5fd0; border-color: #0e5fd0; transform: translateY(-2px); box-shadow: var(--shadow-3); }
.btn-fb .ic { width: 20px; height: 20px; }
.fb-embed {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-on-dark); overflow: hidden;
  min-height: 480px; box-shadow: var(--shadow-3); position: relative;
}
.fb-embed iframe { width: 100%; height: 480px; border: 0; display: block; }
.fb-embed-fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--space-4);
  padding: var(--space-6); text-align: center; color: var(--steel-700);
  background: var(--bone); z-index: 0;
}
.fb-embed-fallback .badge { width: 64px; height: 64px; border-radius: var(--radius-md); background: #1877f2; color: #fff; display: flex; align-items: center; justify-content: center; }
.fb-embed-fallback .badge svg { width: 36px; height: 36px; }
.fb-embed-fallback p { margin: 0; font-size: 0.95rem; max-width: 30ch; }
@media (max-width: 880px) {
  .fb-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .fb-embed { max-width: 380px; margin: 0 auto; width: 100%; }
}

/* ── reveal animation ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
