/* ============================================================
   ALPHA SHADE CONCEPTS — Design System & Styles
   Heritage-industrial · Warm authority · Arizona-rooted
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Colors */
  --teal:          #1D9E75;
  --teal-dark:     #085041;
  --teal-light:    #E1F5EE;
  --teal-mid:      #9FE1CB;
  --amber:         #BA7517;
  --amber-light:   #FAEEDA;
  --amber-mid:     #E8A832;
  --sand:          #F5F2EA;
  --sand-dark:     #E8E4D8;
  --warm-black:    #12100E;
  --warm-dark:     #1E1B16;
  --warm-mid:      #3D3A33;
  --warm-gray:     #706C62;
  --warm-light:    #A09890;
  --off-white:     #FAF8F3;
  --white:         #FFFFFF;
  --coral:         #D85A30;
  --shadow-sm:     0 2px 8px rgba(18,16,14,.08);
  --shadow-md:     0 8px 32px rgba(18,16,14,.12);
  --shadow-lg:     0 24px 64px rgba(18,16,14,.18);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --nav-h:     72px;

  /* Transitions */
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--warm-black);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

em { font-style: italic; color: var(--teal); }
p  { color: var(--warm-mid); line-height: 1.75; font-size: 1.05rem; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

/* ── Layout Utilities ───────────────────────────────────────── */
.container     { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 2.5rem); }
.section-pad   { padding: var(--space-xl) 0; }
.section-header {
  margin-bottom: var(--space-lg);
}
.section-header h2 { max-width: 38ch; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 3px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(29,158,117,.28);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,158,117,.38);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,.35);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
}

.btn-large { padding: 1rem 2.2rem; font-size: 1.05rem; }

.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  border-radius: 3px;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--teal-dark); }

.btn-mobile-cta {
  display: block;
  background: var(--teal);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  border-radius: 3px;
  text-align: center;
  margin-top: 0.5rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1.5px solid var(--teal-light);
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
}
.link-arrow:hover { border-color: var(--teal); gap: 0.55rem; }

/* ── Reveal Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ─────────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(18,16,14,.96);
  backdrop-filter: blur(12px);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(18,16,14,.99);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  display: block;
  height: 60px;
  width: auto;
  object-fit: contain;
}
.footer-logo .nav-logo-img {
  height: 54px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links > li > a {
  display: inline-block;
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover { color: var(--white); background: rgba(255,255,255,.08); }

/* Dropdown */
.has-dropdown { position: relative; }
/* Invisible bridge fills the gap so mouse doesn't lose hover when moving down */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 12px;
  background: transparent;
  display: none;
}
.has-dropdown:hover::after { display: block; }
.dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--warm-dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  min-width: 180px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  /* Delay hiding so mouse has time to reach the dropdown */
  transition-delay: 0s;
  box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition-delay: 0s;
}
/* Keep dropdown open briefly after mouse leaves */
.has-dropdown .dropdown:hover,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.65rem 1rem;
  color: rgba(255,255,255,.75);
  font-size: 0.875rem;
  transition: color 0.15s, background 0.15s;
}
.dropdown li a:hover { color: var(--white); background: rgba(255,255,255,.07); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nav-phone {
  color: rgba(255,255,255,.7);
  font-size: 0.875rem;
  font-family: var(--font-mono);
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--warm-dark);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-mobile a {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-weight: 500;
}
.nav-mobile.open { display: flex; }

/* ─────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--warm-black);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,158,117,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,158,117,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  bottom: -150px; left: 10%;
  animation: orb-float 11s ease-in-out infinite reverse;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.06); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) clamp(1.25rem, 5vw, 2.5rem);
  padding-top: var(--space-2xl);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-h1 {
  color: var(--white);
  max-width: 16ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
}
.hero-h1 em { color: var(--teal-mid); }

.hero-sub {
  color: rgba(255,255,255,.95);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 48ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-tags span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.4);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
}
.hero-tag-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--teal);
  color: var(--teal);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hero-tag-link:hover {
  background: var(--teal);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.3);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─────────────────────────────────────────────────────────────
   TAGLINE STRIP
───────────────────────────────────────────────────────────── */
.tagline-strip {
  background: var(--warm-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 0;
}
.tagline-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.tagline-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-style: italic;
}
.tagline-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.tagline-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
}

/* ─────────────────────────────────────────────────────────────
   INTRO
───────────────────────────────────────────────────────────── */
.intro { background: var(--off-white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.intro-h2 { margin-bottom: 1rem; }
.intro-accent {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal);
  font-style: italic;
  margin-bottom: 0;
}
.intro-right p { margin-bottom: 1rem; }
.intro-bold {
  font-weight: 600;
  color: var(--warm-black) !important;
  margin-bottom: 1.5rem !important;
}

/* ─────────────────────────────────────────────────────────────
   PRODUCTS
───────────────────────────────────────────────────────────── */
.products { background: var(--sand); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--sand-dark);
  border: 1.5px solid var(--sand-dark);
  border-radius: 8px;
  overflow: hidden;
}

.product-card {
  display: block;
  background: var(--off-white);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.product-card:hover { background: var(--white); }

.product-card-img {
  height: 220px;
  background: var(--warm-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
/* Product image placeholder gradients (replace with real photos) */
.product-img-shade  { background: url('../images/frt_19.jpg') center/cover no-repeat; }
.product-img-awning { background: url('../images/img_2909.jpg') center/cover no-repeat; }
.product-img-pergola { background: url('../images/frt_27.jpg') center/cover no-repeat; }
.product-img-screen { background: url('../images/img_4327.jpg') center/cover no-repeat; }

.product-card-num { display: none; }


.product-card-body { padding: 1.5rem; }
.product-card-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.product-card-body h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }
.product-card-body p  { font-size: 0.9rem; margin-bottom: 1rem; }

.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.product-card:hover .card-link { gap: 0.5rem; }

/* ─────────────────────────────────────────────────────────────
   SHADE SCHOOL SECTION
───────────────────────────────────────────────────────────── */
.shade-school {
  background: var(--warm-black);
  position: relative;
  overflow: hidden;
}
.shade-school::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.ss-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.ss-left { color: var(--white); }
.ss-left .section-label { color: var(--teal-mid); }
.ss-left h2 { color: var(--white); margin-bottom: 1rem; }
.ss-left p  { color: rgba(255,255,255,.6); margin-bottom: 2rem; }

.ss-cards { display: flex; flex-direction: column; gap: 1px; }
.ss-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 1.1rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.ss-card:hover {
  background: rgba(29,158,117,.1);
  border-color: rgba(29,158,117,.3);
}
.ss-card-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ss-card-title {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.ss-card-body {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────────────── */
.testimonials { background: var(--off-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--teal-light);
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial-stars {
  color: var(--amber);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: var(--warm-mid);
  position: relative;
  z-index: 1;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--warm-black);
  margin-bottom: 0.15rem;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--warm-light);
  font-family: var(--font-mono);
}

/* ─────────────────────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--teal-dark);
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
}
.cta-band::before {
  content: 'α';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 22rem;
  color: rgba(255,255,255,.04);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-band-left .section-label { color: var(--teal-light); }
.cta-band-left h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band-left p  { color: rgba(255,255,255,.65); max-width: 48ch; }

.cta-band-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  flex-shrink: 0;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,.8);
  transition: color 0.2s;
}
.cta-phone:hover { color: var(--white); }
.phone-icon { font-size: 1.25rem; }
.cta-phone small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,.45);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  margin-bottom: 1px;
}
.cta-phone span:last-child {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
}
.cta-hours {
  font-size: 0.78rem;
  color: rgba(255,255,255,.35) !important;
  font-family: var(--font-mono);
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.footer {
  background: var(--warm-black);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: var(--space-lg);
}
.footer-brand { padding-right: 2rem; }
.footer-logo { margin-bottom: 1rem; display: inline-flex; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--teal-mid);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  color: rgba(255,255,255,.5);
  transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover { color: var(--white); border-color: rgba(255,255,255,.3); }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a,
.footer-col ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.footer-badges span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(29,158,117,.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.25);
}

/* ─────────────────────────────────────────────────────────────
   PRODUCT PAGE STYLES
───────────────────────────────────────────────────────────── */
.product-hero {
  min-height: 55vh;
  background: var(--warm-black);
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.product-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18,16,14,.95) 50%, rgba(18,16,14,.4) 100%);
}
.product-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) clamp(1.25rem, 5vw, 2.5rem);
  width: 100%;
}
.product-hero-inner .section-label { color: var(--teal-mid); margin-bottom: 1rem; }
.product-hero-inner h1 { color: var(--white); max-width: 18ch; margin-bottom: 1rem; }
.product-hero-inner p  { color: rgba(255,255,255,.65); max-width: 50ch; margin-bottom: 2rem; font-size: 1.1rem; }
.product-hero-actions  { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Shade School callout on product pages */
.ss-callout {
  background: rgba(29,158,117,.08);
  border: 1px solid rgba(29,158,117,.2);
  border-radius: 8px;
  padding: 2rem;
  margin: var(--space-lg) 0;
}
.ss-callout-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.ss-callout h3 { margin-bottom: 0.75rem; }
.ss-callout p  { margin-bottom: 0; }

/* Comparison grid */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--sand-dark);
  border-radius: 8px;
  overflow: hidden;
  margin: var(--space-md) 0;
}
.compare-card {
  background: var(--white);
  padding: 1.5rem;
}
.compare-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--warm-black);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.compare-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.compare-dot-teal   { background: var(--teal); }
.compare-dot-amber  { background: var(--amber); }
.compare-dot-coral  { background: var(--coral); }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--warm-mid);
  line-height: 1.5;
}
.feature-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─────────────────────────────────────────────────────────────
   SHADE SCHOOL PAGE
───────────────────────────────────────────────────────────── */
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.episode-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 8px;
  padding: 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: default;
}
.episode-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.ep-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.ep-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--warm-black);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.ep-hook {
  font-size: 0.875rem;
  color: var(--warm-mid);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.ep-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

/* ─────────────────────────────────────────────────────────────
   CONTACT / ESTIMATE FORM
───────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-light);
  margin-bottom: 0.2rem;
}
.contact-detail-value {
  font-size: 1rem;
  color: var(--warm-black);
  font-weight: 500;
}
.contact-detail-value a { color: var(--teal); }
.contact-detail-value a:hover { text-decoration: underline; }

/* Form */
.estimate-form {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 8px;
  padding: 2rem;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--warm-black);
  margin-bottom: 0.5rem;
}
.form-sub {
  font-size: 0.9rem;
  color: var(--warm-light);
  margin-bottom: 1.75rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--sand-dark);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--warm-black);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,158,117,.12);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--warm-mid);
  cursor: pointer;
  user-select: none;
}
/* Hide native checkbox completely */
.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
/* Custom checkbox box */
.form-checkbox .check-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid var(--sand-dark);
  border-radius: 4px;
  background: var(--off-white);
  transition: border-color 0.15s, background 0.15s;
}
/* Checkmark SVG — hidden by default */
.form-checkbox .check-box::after {
  content: '';
  display: block;
  width: 11px;
  height: 7px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg) translateY(-2px);
  opacity: 0;
  transition: opacity 0.1s;
}
/* Hover state */
.form-checkbox:hover .check-box {
  border-color: var(--teal);
}
/* Checked state */
.form-checkbox input[type="checkbox"]:checked ~ .check-box {
  background: var(--teal);
  border-color: var(--teal);
}
.form-checkbox input[type="checkbox"]:checked ~ .check-box::after {
  opacity: 1;
}
.form-note {
  font-size: 0.8rem;
  color: var(--warm-light);
  margin-top: 1rem;
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────────────────────── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand-dark);
  border-radius: 8px;
  overflow: hidden;
  margin: var(--space-lg) 0;
}
.stat-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--warm-light);
  line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .intro-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .ss-grid     { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-checkbox-group { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }

  /* Mobile hero — photo background instead of grid */
  .hero {
    background:
      linear-gradient(to bottom, rgba(18,16,14,.25) 0%, rgba(18,16,14,.4) 100%),
      url('../images/img_3460.jpg') center/cover no-repeat;
  }
  .hero-grid { display: none; }
  .hero-orb  { display: none; }

  /* Contrast box behind subtitle text on mobile */
  .hero-sub {
    background: rgba(18,16,14,.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 6px;
    padding: .75rem 1rem;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .tagline-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .tagline-divider { display: none; }
}

/* ── Print / a11y ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero-orb, .scroll-line, .eyebrow-dot { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}
