/* ==========================================================================
   Lone Pine Livestock — shared brand stylesheet
   ========================================================================== */

:root {
  /* Color tokens — Farmhouse Navy & Sage (Mockup 3), built on the real logo navy */
  --lp-rust: #2d3790;           /* Lone Pine royal blue — primary accent, from logo */
  --lp-rust-dark: #1f2668;
  --lp-brown: #232a52;         /* soft navy — headings, dark surfaces */
  --lp-brown-soft: #3b4370;
  --lp-oat: #fbf7ee;           /* warm cream background */
  --lp-oat-light: #fdfbf5;
  --lp-green: #7f8f6c;         /* sage — secondary accent */
  --lp-green-dark: #667656;
  --lp-charcoal: #332f45;      /* body text, navy-leaning */
  --lp-white: #ffffff;
  --lp-border: #ece3d0;

  /* Semantic tokens */
  --color-bg: var(--lp-oat);
  --color-surface: var(--lp-white);
  --color-primary: var(--lp-rust);
  --color-primary-dark: var(--lp-rust-dark);
  --color-secondary: var(--lp-green);
  --color-text: var(--lp-charcoal);
  --color-text-soft: #78739a;
  --color-heading: var(--lp-brown);

  /* Type scale — Farmhouse pairing */
  --font-head: "Playfair Display", "Georgia", serif;
  --font-body: "Nunito Sans", -apple-system, "Segoe UI", sans-serif;

  /* Spacing rhythm (4/8 system) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;

  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 14px rgba(35, 42, 82, 0.10);
  --shadow-md: 0 14px 32px rgba(35, 42, 82, 0.14);
  --max-width: 1180px;
  --transition: 200ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; width: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--color-heading);
  line-height: 1.2;
  margin: 0 0 var(--space-2);
  font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 5.8vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 var(--space-2); color: var(--color-text-soft); }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
section { padding: var(--space-6) 0; }
.section-tight { padding: var(--space-5) 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}
.section-head { max-width: 680px; margin: 0 0 var(--space-4); }
.section-head.center { margin-inline: auto; text-align: center; }

/* Focus states — accessibility */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--lp-green);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  min-height: 44px;
  touch-action: manipulation;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-primary); color: var(--lp-white); box-shadow: 0 10px 26px rgba(45,55,144,0.4); }
.btn-primary:hover { background: var(--color-primary-dark); box-shadow: 0 12px 30px rgba(45,55,144,0.5); }
.btn-outline { background: rgba(255,255,255,0.16); backdrop-filter: blur(6px); border-color: var(--lp-white); color: var(--lp-white); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn-outline:hover { background: var(--lp-white); color: var(--lp-brown); }
.btn-dark { background: var(--lp-brown); color: var(--lp-white); }
.btn-dark:hover { background: var(--lp-brown-soft); }
.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
/* ==========================================================================
   Header — no bar. Just a floating logo badge (top-left) and a hamburger
   toggle (top-right) that opens a slide-in nav panel. Nothing obstructs
   the hero photo.
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  pointer-events: none; /* let hero content underneath stay clickable */
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
.logo-card {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 22vw, 380px);
  aspect-ratio: 1 / 1;
  will-change: transform;
}
.logo-card::before {
  content: "";
  position: absolute;
  inset: -14%;
  background: radial-gradient(circle, rgba(20,22,45,0.55) 0%, rgba(20,22,45,0) 72%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}
.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 20px;
  filter: drop-shadow(0 8px 20px rgba(28,33,64,0.5));
}

@media (max-width: 640px) {
  .logo-card { width: clamp(100px, 34vw, 160px); top: var(--space-2); left: var(--space-2); }
  .logo-card img { border-radius: 14px; }
}

/* Free-floating pill nav, top-right — one button per section, no bar, no hamburger */
.pill-nav {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  pointer-events: auto;
  max-width: min(calc(100vw - clamp(150px, 22vw, 380px) - 4.75rem), 1160px);
  overflow: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  justify-content: flex-end;
}
.pill-nav::-webkit-scrollbar { display: none; }
.pill-nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0.25rem 0.1rem;
}
.pill-item { display: flex; position: relative; flex-shrink: 0; }
.pill-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: auto;
  padding: 0.6rem 0.78rem;
  min-height: 40px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--lp-brown);
  background: rgba(251, 247, 238, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.pill-btn:hover, .pill-btn:focus-visible {
  background: var(--color-primary);
  color: var(--lp-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pill-item.active > .pill-btn { background: var(--color-primary); color: var(--lp-white); border-color: var(--color-primary); }
.pill-btn svg.chev { width: 13px; height: 13px; transition: transform var(--transition); flex-shrink: 0; }
.pill-item.has-dropdown.open .pill-btn svg.chev { transform: rotate(180deg); }

.pill-item.has-dropdown .dropdown {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 220px;
  background: var(--lp-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 300;
}
.pill-item.has-dropdown:hover .dropdown,
.pill-item.has-dropdown:focus-within .dropdown,
.pill-item.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.65rem 0.8rem;
  min-height: 44px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--lp-brown);
}
.dropdown a:hover, .dropdown a:focus-visible { background: var(--lp-oat); color: var(--color-primary); }

@media (max-width: 640px) {
  /* Six tabs can't fit a phone width without burying the hero, so the strip
     stays one row and swipes. justify-content must be flex-start here: with
     flex-end the overflow spills off the left and can't be scrolled back to. */
  .pill-nav {
    max-width: min(76vw, 820px);
    top: var(--space-1);
    right: var(--space-1);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    -webkit-mask-image: linear-gradient(to right, black calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(to right, black calc(100% - 24px), transparent 100%);
  }
  .pill-nav > ul { flex-wrap: nowrap; }
  .pill-btn { padding: 0.5rem 0.75rem; font-size: 0.68rem; letter-spacing: 0.02em; min-height: 36px; }

  /* No dropdown flyouts on mobile — position:fixed inside this scrolling
     strip renders unreliably on real touch devices (a known iOS Safari
     issue with -webkit-overflow-scrolling: touch). Tabs just link straight
     to their page instead. */
  .pill-btn svg.chev { display: none; }
  .pill-item.has-dropdown .dropdown { display: none !important; }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--lp-white);
  background-color: var(--lp-brown);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35,42,82,0.25) 0%, rgba(35,42,82,0.68) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-6) var(--space-3) var(--space-5);
  width: 100%;
  text-align: center;
}
.hero .eyebrow { color: #cdd3f0; }
.hero h1 { color: var(--lp-white); max-width: 760px; margin-inline: auto; }
.hero p.lede { color: #f3ece1; max-width: 680px; font-size: 1.15rem; margin-inline: auto; }
.hero-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-3); justify-content: center; }

.hero.hero-sm { min-height: 46vh; align-items: center; position: relative; }
.hero.hero-sm .hero-inner { padding: var(--space-6) var(--space-3); }

.hero-page-logo-wrap {
  position: absolute;
  top: var(--space-3);
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
}
.hero-page-logo {
  display: inline-flex;
  pointer-events: auto;
  width: 90px;
  height: 90px;
  transition: transform var(--transition);
}
.hero-page-logo:hover { transform: scale(1.05); }
.hero-page-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  filter: drop-shadow(0 6px 14px rgba(28,33,64,0.45));
}
@media (max-width: 640px) {
  .hero-page-logo { width: 64px; height: 64px; }
  .hero-page-logo img { border-radius: 10px; }
}
.hero .breadcrumb { justify-content: center; }

/* ==========================================================================
   Cards / Grids
   ========================================================================== */
.grid { display: grid; gap: var(--space-3); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 881px) and (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--lp-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: var(--space-3); }
.card-body h3 { margin-bottom: 0.4rem; }
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--lp-oat);
  color: var(--lp-green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

.icon-feature { display: flex; gap: var(--space-2); align-items: flex-start; }
.icon-feature .icon-badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lp-oat);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.icon-feature .icon-badge svg { width: 26px; height: 26px; }
.icon-feature h3 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.icon-feature p { margin-bottom: 0; font-size: 0.95rem; }

/* Split content sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: var(--space-3); } }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-media { position: relative; }
.split-media-duo { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.split-media-duo img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
@media (max-width: 560px) { .split-media-duo { grid-template-columns: 1fr; } }

/* Section variants */
.section-alt { background: var(--lp-oat); }
.section-dark {
  background: var(--lp-brown);
  color: #ece3d3;
}
.section-dark h2, .section-dark h3 { color: var(--lp-white); }
.section-dark p { color: #d8c9b3; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2); }
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.gallery img { aspect-ratio: 1/1; object-fit: cover; transition: transform var(--transition); width: 100%; }
.gallery a:hover img, .gallery a:focus-visible img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.7rem;
  background: linear-gradient(0deg, rgba(28,33,64,0.88), rgba(28,33,64,0));
  color: var(--lp-white);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); text-align: center; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .stat-num { font-family: var(--font-head); font-size: 2.2rem; color: var(--lp-white); font-weight: 700; }
.stat .stat-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: #d8c9b3; }

/* CTA band */
.cta-band {
  background: var(--color-primary);
  color: var(--lp-white);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--lp-white); margin-bottom: 0.3rem; }
.cta-band p { color: #fbe8d9; margin-bottom: 0; }

/* Divisions nav cards (used on home) */
.division-card {
  background: var(--lp-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--lp-border);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.division-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.division-card .icon-badge { width: 48px; height: 48px; border-radius: 12px; background: var(--lp-oat); display: flex; align-items: center; justify-content: center; color: var(--color-primary); }
.division-card .icon-badge svg { width: 24px; height: 24px; }
.division-card .link-arrow { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 700; color: var(--color-primary); font-size: 0.9rem; margin-top: auto; }
.division-card .link-arrow svg { width: 16px; height: 16px; transition: transform var(--transition); }
.division-card:hover .link-arrow svg { transform: translateX(4px); }

/* Family / people cards (used on about) */
.person-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--lp-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.person-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.person-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  background: var(--lp-oat);
  display: block;
}
.person-card .person-body { padding: var(--space-3); }
.person-card h3 { margin-bottom: 0.15rem; font-size: 1.25rem; }
.person-card .person-role {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-green-dark);
  margin-bottom: 0.6rem;
}
.person-card p { margin-bottom: 0; font-size: 0.95rem; }

/* Pull quote / promise band */
.promise {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: var(--space-4) var(--space-2);
}
.promise p {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.5;
  color: var(--color-heading);
  margin-bottom: 0;
}

/* ==========================================================================
   FAQ (accordion)
   ========================================================================== */
.faq-list { border-top: 1px solid var(--lp-border); }
.faq-item { border-bottom: 1px solid var(--lp-border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-2) 0.2rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--lp-brown);
  cursor: pointer;
}
.faq-q svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-primary); transition: transform var(--transition); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-a p { padding-bottom: var(--space-2); }
.faq-item.open .faq-a { max-height: 400px; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--lp-border);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4);
}
.field { margin-bottom: var(--space-2); }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--lp-brown);
  margin-bottom: 0.35rem;
}
.field .hint { font-size: 0.8rem; color: var(--color-text-soft); margin-top: 0.3rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  min-height: 46px;
  border-radius: 8px;
  border: 1.5px solid var(--lp-border);
  background: var(--lp-oat-light);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color var(--transition);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.contact-info-list { display: flex; flex-direction: column; gap: var(--space-2); }
.contact-info-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.contact-info-item .icon-badge {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--lp-oat); display: flex; align-items: center; justify-content: center;
  color: var(--color-primary); flex-shrink: 0;
}
.contact-info-item .icon-badge svg { width: 22px; height: 22px; }
.contact-info-item a { font-weight: 600; color: var(--lp-brown); }
.contact-info-item a:hover { color: var(--color-primary); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--lp-border); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--lp-brown); color: #d8c9b3; padding-top: var(--space-6); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-4); padding-bottom: var(--space-5); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: var(--space-2); }
.footer-brand img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--lp-rust); }
.footer-brand span { font-family: var(--font-head); color: var(--lp-white); font-size: 1.1rem; font-weight: 700; }
.site-footer h4 { color: var(--lp-white); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-2); }
.site-footer ul li { margin-bottom: 0.55rem; }
.site-footer a { color: #d8c9b3; font-size: 0.92rem; }
.site-footer a:hover { color: var(--lp-white); }
.footer-social { display: flex; gap: 0.6rem; margin-top: var(--space-2); }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--color-primary); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: var(--space-3) 0;
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #b3a48c;
}

/* Breadcrumb */
.breadcrumb { font-size: 0.85rem; color: #f3ece1; display: flex; gap: 0.4rem; align-items: center; margin-bottom: var(--space-2); }
.breadcrumb a { color: #f3ece1; font-weight: 600; }
.breadcrumb a:hover { color: var(--lp-white); text-decoration: underline; }
.breadcrumb svg { width: 14px; height: 14px; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.reduced-motion-safe { animation: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--lp-brown);
  color: var(--lp-white);
  padding: 0.8rem 1.2rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Coming-soon treatment (Coo University)
   ========================================================================== */
.pill-soon {
  display: inline-block;
  margin-left: 0.3rem;
  padding: 0.1rem 0.32rem;
  border-radius: 999px;
  background: var(--lp-green);
  color: var(--lp-white);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}
.pill-item.active .pill-soon { background: var(--lp-white); color: var(--lp-green-dark); }

.status-pill {
  display: inline-block;
  margin-bottom: var(--space-1);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--lp-green);
  color: var(--lp-white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice-band {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-left: 5px solid var(--lp-green);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.notice-band h2 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.notice-band p { margin-bottom: 0; max-width: 52ch; }
