/* ============================================================
 *  OUT WEST GLOW GOLF — MAIN STYLESHEET
 *  All color values come from variables.css — do not hardcode
 *  colors here. To retheme the site, edit variables.css only.
 * ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700;800;900&family=Nunito:wght@400;500;600;700&display=swap');
@import url('variables.css');

/* ─────────────────────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background-color: var(--bg-base);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-accent);
}

ul {
  list-style: none;
}

/* ─────────────────────────────────────────────────────────────
   TYPOGRAPHY HELPERS
   ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
}

.glow-text {
  color: var(--brand-accent);
  text-shadow: var(--glow-accent);
}

.glow-primary {
  color: var(--brand-primary);
  text-shadow: var(--glow-primary);
}

.text-muted {
  color: var(--text-muted);
}

.text-center { text-align: center; }
.text-left   { text-align: left;   }

/* ─────────────────────────────────────────────────────────────
   LAYOUT
   ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.container--narrow {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.section {
  padding-block: var(--section-py);
}

.section--dark {
  background-color: var(--bg-surface);
}

.section--accent {
  background-color: var(--bg-elevated);
}

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.btn--primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-bg);
}

.btn--primary:hover {
  background-color: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
  color: var(--btn-primary-text);
  box-shadow: var(--glow-primary);
  transform: translateY(-2px);
}

.btn--cta {
  background-color: var(--btn-cta-bg);
  color: var(--btn-cta-text);
  border-color: var(--btn-cta-bg);
  font-size: var(--text-lg);
  padding: 1rem 2.2rem;
}

.btn--cta:hover {
  background-color: var(--btn-cta-hover);
  border-color: var(--btn-cta-hover);
  color: var(--btn-cta-text);
  box-shadow: var(--glow-accent);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border-color: var(--btn-secondary-border);
}

.btn--outline:hover {
  background-color: var(--btn-secondary-hover-bg);
  color: var(--btn-secondary-text);
  box-shadow: var(--glow-accent);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-visible);
}

.btn--ghost:hover {
  color: var(--text-primary);
  border-color: var(--brand-accent);
}

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color var(--transition-base),
              border-color var(--transition-base);
}

.nav.scrolled {
  background-color: rgba(7, 7, 15, 0.98);
  border-bottom-color: var(--border-accent);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-xl);
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__logo-img {
  height: 58px;
  width: auto;
  mix-blend-mode: lighten;
}

.nav__logo-text span {
  color: var(--brand-accent);
  text-shadow: var(--glow-accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition-fast);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--brand-accent);
  text-shadow: var(--glow-accent);
}

.nav__cta {
  margin-left: var(--space-sm);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background-color: rgba(7, 7, 15, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-accent);
  padding: var(--space-lg);
  z-index: 999;
}

.nav__mobile.open {
  display: block;
}

.nav__mobile a {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--text-primary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--transition-fast);
}

.nav__mobile a:last-child {
  border-bottom: none;
}

.nav__mobile a:hover {
  color: var(--brand-accent);
}

.nav__mobile .btn {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────
   HERO — HOME PAGE
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

/* Hero background — replaced with real photo when available */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(7, 7, 15, 0.6) 0%,
      rgba(7, 7, 15, 0.5) 40%,
      rgba(7, 7, 15, 0.85) 100%
    ),
    /* Placeholder gradient — replace with background-image: url('../images/hero.jpg') */
    radial-gradient(ellipse at 30% 50%, rgba(139, 47, 201, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(180, 79, 255, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 170, 0, 0.18) 0%, transparent 60%),
    #07070f;
  z-index: 0;
}

/* When real hero image is ready, replace the radial-gradient lines above with:
   background-image: url('../images/hero.jpg');
   background-size: cover;
   background-position: center;
*/

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-lg);
  max-width: 860px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
  text-shadow: var(--glow-accent);
  margin-bottom: var(--space-md);
  border: 1px solid var(--border-accent);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-xl);
  background: rgba(0, 212, 255, 0.08);
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero__title .highlight {
  color: var(--brand-accent);
  text-shadow: var(--glow-accent);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

/* Coming soon badge */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 130, 12, 0.12);
  border: 1px solid rgba(232, 130, 12, 0.4);
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
}

.coming-soon-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232, 130, 12, 0.6); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 6px rgba(232, 130, 12, 0); }
}

/* ─────────────────────────────────────────────────────────────
   EMAIL SIGNUP FORM (Hero / CTA sections)
   ───────────────────────────────────────────────────────────── */
.email-signup {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin-inline: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-accent);
}

.email-signup__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  padding: 0.9rem 1.2rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  outline: none;
}

.email-signup__input::placeholder {
  color: var(--text-muted);
}

.email-signup__btn {
  background: var(--brand-primary);
  color: var(--text-inverse);
  border: none;
  padding: 0.9rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  white-space: nowrap;
}

.email-signup__btn:hover {
  background-color: var(--btn-primary-hover);
}

.email-signup__note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────
   SECTION HEADERS
   ───────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: var(--space-sm);
}

.section-header__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-sm);
}

.section-header__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 580px;
  margin-inline: auto;
}

/* ─────────────────────────────────────────────────────────────
   ATTRACTION CARDS
   ───────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
}

.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(0, 212, 255, 0.08);
}

.card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.card__body {
  color: var(--text-muted);
  font-size: var(--text-base);
}

/* ─────────────────────────────────────────────────────────────
   IMAGE SLIDESHOW (ready for photos — currently hidden)
   Uncomment .slideshow display in main content when images exist
   ───────────────────────────────────────────────────────────── */
.slideshow {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 7;
  background: var(--bg-elevated);
  /* display: none; -- remove this when images are ready */
}

.slideshow__track {
  display: flex;
  height: 100%;
  transition: transform var(--transition-slow);
}

.slideshow__slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}

.slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow__nav {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.slideshow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast),
              transform var(--transition-fast);
}

.slideshow__dot.active,
.slideshow__dot:hover {
  background: var(--brand-accent);
  transform: scale(1.3);
}

.slideshow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(7, 7, 15, 0.7);
  border: 1px solid var(--border-visible);
  color: var(--text-primary);
  font-size: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2;
}

.slideshow__btn:hover {
  background: var(--brand-accent);
  color: var(--text-inverse);
  border-color: var(--brand-accent);
}

.slideshow__btn--prev { left: var(--space-md); }
.slideshow__btn--next { right: var(--space-md); }

/* ─────────────────────────────────────────────────────────────
   MISSION STATEMENT
   ───────────────────────────────────────────────────────────── */
.mission {
  text-align: center;
  padding-block: var(--space-3xl);
}

.mission__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.4;
  position: relative;
}

.mission__quote::before,
.mission__quote::after {
  content: '"';
  color: var(--brand-accent);
  text-shadow: var(--glow-accent);
  font-size: 1.2em;
}

.mission__label {
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────
   BARRY THE BURRO TEASER
   ───────────────────────────────────────────────────────────── */
.barry-teaser {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  overflow: hidden;
}

.barry-teaser__image {
  flex: 0 0 auto;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--border-visible);
}

.barry-teaser__content {
  flex: 1;
}

.barry-teaser__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: var(--space-xs);
}

.barry-teaser__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

.barry-teaser__excerpt {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────
   BLOG CARDS
   ───────────────────────────────────────────────────────────── */
.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base),
              transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.blog-card__image {
  aspect-ratio: 16 / 9;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: var(--text-sm);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.blog-card__title a {
  color: var(--text-primary);
}

.blog-card__title a:hover {
  color: var(--brand-accent);
}

.blog-card__excerpt {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: var(--space-md);
}

.blog-card__read-more {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-self: flex-start;
}

.blog-card__read-more:hover {
  text-shadow: var(--glow-accent);
}

/* ─────────────────────────────────────────────────────────────
   BLOG POST (article page layout)
   ───────────────────────────────────────────────────────────── */
.post-header {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
  margin-top: var(--nav-height);
  background: linear-gradient(to bottom, var(--bg-elevated), var(--bg-base));
}

.post-header__cat {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: var(--space-sm);
}

.post-header__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

.post-header__meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.post-body {
  max-width: var(--content-width);
  margin-inline: auto;
  padding: var(--space-xl) var(--space-lg) var(--space-3xl);
}

.post-body p {
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  font-size: var(--text-lg);
  line-height: 1.8;
}

.post-body h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.post-body h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.post-body ul,
.post-body ol {
  margin-bottom: var(--space-md);
  padding-left: 1.5rem;
}

.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }

.post-body li {
  margin-bottom: 0.4rem;
  color: var(--text-primary);
  font-size: var(--text-lg);
}

.post-body blockquote {
  border-left: 3px solid var(--brand-accent);
  padding-left: var(--space-lg);
  margin-block: var(--space-lg);
  font-style: italic;
  color: var(--text-muted);
  font-size: var(--text-xl);
}

/* ─────────────────────────────────────────────────────────────
   CONTACT FORM
   ───────────────────────────────────────────────────────────── */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-visible);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-faint);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238888aa'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* Honeypot — hidden from humans, trap for bots */
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.form-status {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  display: none;
  font-weight: 600;
}

.form-status.success {
  display: block;
  background: rgba(0, 212, 100, 0.12);
  border: 1px solid rgba(0, 212, 100, 0.3);
  color: #00d464;
}

.form-status.error {
  display: block;
  background: rgba(255, 60, 60, 0.1);
  border: 1px solid rgba(255, 60, 60, 0.3);
  color: #ff6b6b;
}

/* ─────────────────────────────────────────────────────────────
   PAGE HEADERS (non-home pages)
   ───────────────────────────────────────────────────────────── */
.page-header {
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  text-align: center;
  background: linear-gradient(
    to bottom,
    var(--bg-elevated) 0%,
    var(--bg-base) 100%
  );
}

.page-header__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: var(--space-sm);
}

.page-header__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-sm);
}

.page-header__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
}

/* ─────────────────────────────────────────────────────────────
   DIVIDERS / DECORATIVE
   ───────────────────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin-block: var(--space-xl);
}

.divider--glow {
  border-top-color: var(--brand-accent);
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

/* Decorative neon line accent */
.neon-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--brand-accent);
  box-shadow: var(--glow-accent);
  border-radius: 3px;
  margin: var(--space-sm) auto var(--space-lg);
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  margin-bottom: var(--space-xs);
}

.footer__brand-name span {
  color: var(--brand-accent);
}

.footer__tagline {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-visible);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  box-shadow: var(--glow-accent);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.footer__links a:hover {
  color: var(--brand-accent);
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Phone link (JS-rendered, protected) */
.phone-link {
  color: var(--brand-accent);
  font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────
   FOUNDER BIO CARDS
   ───────────────────────────────────────────────────────────── */
.founder {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-xl);
  align-items: start;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.founder:last-child {
  margin-bottom: 0;
}

.founder__photo {
  width: 220px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-accent);
  flex-shrink: 0;
}

.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.founder__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 0.25rem;
}

.founder__name {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

.founder__bio p {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.founder__bio p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .founder {
    grid-template-columns: 1fr;
  }
  .founder__photo {
    width: 160px;
    height: 160px;
    margin-inline: auto;
  }
}

/* ─────────────────────────────────────────────────────────────
   CONTACT PAGE — two-column layout
   ───────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — TABLET
   ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid > :first-child {
    grid-column: 1 / -1;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .barry-teaser {
    flex-direction: column;
    text-align: center;
  }

  .barry-teaser__image {
    width: 140px;
    height: 140px;
    margin-inline: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — MOBILE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  :root {
    --section-py: 3rem;
  }

  .container,
  .container--narrow {
    padding-inline: var(--space-md);
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid > :first-child {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .email-signup {
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: visible;
    gap: 0.5rem;
    border: none;
  }

  .email-signup__input {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-accent);
  }

  .email-signup__btn {
    border-radius: var(--radius-md);
    padding: 0.9rem;
    text-align: center;
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────────────────────
   UTILITY CLASSES
   ───────────────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
