/* West Coast Exports - Static site for Cloudflare Pages
   Edit content in content.json. */

:root{
  --bg: #0b1220;
  --bg2: #0f1b2f;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --muted2: rgba(255,255,255,0.55);
  --line: rgba(255,255,255,0.12);
  --accent: #36c5f0;
  --accent2: #1fe6a8;
  --shadow: 0 18px 60px rgba(0,0,0,0.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% 10%, rgba(54,197,240,0.18), transparent 60%),
              radial-gradient(900px 600px at 85% 30%, rgba(31,230,168,0.12), transparent 60%),
              linear-gradient(180deg, var(--bg) 0%, #070b13 100%);
  color: var(--text);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }
code{ color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.07); padding: 0.1rem 0.35rem; border-radius: 8px; border: 1px solid var(--line); }

.container{ max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.skip-link{
  position: absolute; left: -999px; top: 10px;
  background: #fff; color: #000; padding: 10px 12px;
  border-radius: 10px; z-index: 9999;
}
.skip-link:focus{ left: 12px; }

.site-header{
  position: sticky; top: 0; z-index: 1000;
  background: rgba(6,10,18,0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.site-header.elevated{ box-shadow: 0 10px 40px rgba(0,0,0,0.25); }

.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  gap: 14px;
}
.brand-link{ display: inline-flex; gap: 10px; align-items: center; }
.brand-mark{
  width: 36px; height: 36px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(54,197,240,1), rgba(31,230,168,1));
  box-shadow: 0 10px 35px rgba(54,197,240,0.18);
}
.brand-name{ font-weight: 700; letter-spacing: 0.2px; }

.primary-nav{ display: flex; align-items: center; gap: 18px; }
.primary-nav a{ color: rgba(255,255,255,0.86); font-weight: 500; }
.primary-nav a.nav-cta{
  padding: 10px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
}
.primary-nav a.nav-cta:hover{ text-decoration: none; background: rgba(255,255,255,0.10); }

.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  width: 18px; height: 2px;
  background: rgba(255,255,255,0.85);
  margin: 4px auto;
  border-radius: 2px;
}

.hero{ padding: 70px 0 34px; }
.hero-grid{
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 26px;
  align-items: start;
}
.hero h1{ font-size: clamp(2.1rem, 4vw, 3.0rem); margin: 0 0 10px; line-height: 1.08; }
.lead{ font-size: 1.08rem; color: var(--muted); margin: 0 0 20px; max-width: 54ch; }

.hero-actions{ display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 18px; }
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  box-shadow: 0 10px 35px rgba(0,0,0,0.20);
}
.btn:hover{ text-decoration: none; background: rgba(255,255,255,0.10); }
.btn-primary{
  border-color: rgba(54,197,240,0.35);
  background: linear-gradient(135deg, rgba(54,197,240,0.22), rgba(31,230,168,0.16));
}
.btn-secondary{ border-color: rgba(255,255,255,0.16); }

.hero-points{
  margin: 18px 0 0; padding: 0;
  list-style: none;
  display: grid; gap: 10px;
}
.hero-points li{
  display: flex; gap: 10px; align-items: start;
  color: rgba(255,255,255,0.84);
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
}
.hero-points li::before{
  content: "";
  width: 10px; height: 10px; border-radius: 999px;
  margin-top: 7px;
  background: linear-gradient(135deg, rgba(54,197,240,1), rgba(31,230,168,1));
  flex: 0 0 10px;
}

.hero-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}
.hero-card-inner{ padding: 18px; display: grid; gap: 14px; }
.stat{ padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); }
.stat-k{ font-size: 0.88rem; color: rgba(255,255,255,0.70); margin-bottom: 4px; }
.stat-v{ font-weight: 600; color: rgba(255,255,255,0.90); }
.subtle{ color: var(--muted2); font-size: 0.92rem; }

.section{ padding: 52px 0; }
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-head{ margin-bottom: 18px; }
.section h2{ font-size: 1.85rem; margin: 0 0 8px; }
.muted{ color: var(--muted); margin: 0; }

.cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}
.card h3{ margin: 0 0 8px; font-size: 1.05rem; }
.card .pill{
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.80);
  font-size: 0.86rem;
  margin-bottom: 10px;
}
.card p{ margin: 0; color: rgba(255,255,255,0.76); }

.about-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}
.about-bullets{ margin-top: 16px; display: grid; gap: 10px; }
.bullet{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 12px 14px;
}
.bullet-title{ font-weight: 700; margin-bottom: 2px; }
.bullet-text{ color: rgba(255,255,255,0.76); }

.about-media{ display: grid; gap: 14px; }
.media{
  margin: 0;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}
.media img{ display: block; width: 100%; height: auto; }
.media figcaption{ padding: 10px 12px; color: rgba(255,255,255,0.72); font-size: 0.92rem; border-top: 1px solid rgba(255,255,255,0.10); }

.grid-2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.callout{
  margin-top: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(54,197,240,0.12), rgba(31,230,168,0.08));
  padding: 18px;
  box-shadow: var(--shadow);
}
.callout h3{ margin: 0 0 10px; }
.callout ul{ margin: 0; padding-left: 18px; color: rgba(255,255,255,0.80); }
.callout li{ margin: 6px 0; }

.team-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.team-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.team-card .team-body{ padding: 14px; }
.team-name{ font-weight: 700; margin: 0 0 4px; }
.team-role{ margin: 0; color: rgba(255,255,255,0.74); }

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.contact-cards{ margin-top: 14px; display: grid; gap: 12px; }
.contact-card{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding: 12px 14px;
}
.contact-k{ font-size: 0.86rem; color: rgba(255,255,255,0.70); margin-bottom: 6px; }
.contact-v{ font-weight: 650; color: rgba(255,255,255,0.92); }
#address-lines{ color: rgba(255,255,255,0.88); font-weight: 650; }
#address-lines div{ font-weight: 650; }

.form-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding: 16px;
  box-shadow: var(--shadow);
}
form{ display: grid; gap: 12px; margin-top: 12px; }
label span{ display: block; margin-bottom: 6px; color: rgba(255,255,255,0.78); font-weight: 600; }
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  color: rgba(255,255,255,0.92);
  font: inherit;
}
input:focus, textarea:focus{ outline: 2px solid rgba(54,197,240,0.35); border-color: rgba(54,197,240,0.35); }
textarea{ resize: vertical; min-height: 120px; }

.site-footer{
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.20);
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 14px;
  align-items: start;
}
.footer-links{ display: grid; gap: 8px; }
.footer-links a{ color: rgba(255,255,255,0.80); }
.footer-links a:hover{ color: rgba(255,255,255,0.95); text-decoration: none; }
.footer-meta{ display: flex; justify-content: flex-end; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about-grid{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .footer-meta{ justify-content: flex-start; }
}

@media (max-width: 720px){
  .nav-toggle{ display: inline-block; }
  .primary-nav{
    position: absolute;
    right: 20px;
    top: 68px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: min(320px, calc(100vw - 40px));
    padding: 12px;
    border-radius: 18px;
    background: rgba(6,10,18,0.92);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 18px 60px rgba(0,0,0,0.45);
    display: none;
  }
  .primary-nav.open{ display: flex; }
  .primary-nav a{ padding: 10px 12px; border-radius: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); }
  .primary-nav a.nav-cta{ background: linear-gradient(135deg, rgba(54,197,240,0.22), rgba(31,230,168,0.16)); }
  .cards{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}


.footer-address{
  margin-top: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  line-height: 1.35;
}
.footer-address div{ margin: 2px 0; }

.card ul{ margin: 10px 0 0; padding-left: 18px; color: rgba(255,255,255,0.80); }
.card li{ margin: 6px 0; }


.footer-bottom{
  padding: 12px 0 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
}





/* Team cards – head & shoulders framing (no over-zoom) */



/* Team cards – head & shoulders framing */



/* Team section – compact, centered grid inside a rounded container */
.team-wrap{
  margin-top: 18px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  box-shadow: 0 18px 60px rgba(0,0,0,0.30);
}

.team-grid{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

/* Make individual cards more compact */
.team-card{
  border-radius: 22px;
}



.team-card .team-body{
  padding: 12px 14px;
}

@media (max-width: 980px){
  .team-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 680px; }
  
}

@media (max-width: 520px){
  .team-grid{ grid-template-columns: 1fr; max-width: 360px; }
  
}


/* Team cards – responsive, no-crop head & shoulders */
.team-card img{
  width: 100%;
  aspect-ratio: 4 / 5;          /* consistent portrait frame */
  height: auto;
  object-fit: contain;          /* do not crop faces */
  object-position: center top;  /* keep head visible */
  display: block;
  background: rgba(255,255,255,0.03);
}


/* -------- Mobile polish -------- */
@media (max-width: 720px){
  .site-header .header-inner{ padding: 12px 0; }
  .brand-mark{ width: 30px; height: 30px; border-radius: 12px; }
  .brand-name{ font-size: 1.02rem; }
  .nav-toggle{ width: 42px; height: 42px; border-radius: 14px; }

  .hero{ padding: 48px 0 24px; }
  .hero h1{ font-size: 2.15rem; }
  .lead{ font-size: 1.02rem; margin-bottom: 16px; }

  .hero-actions{ gap: 10px; }
  .hero-actions .btn{ width: 100%; padding: 12px 16px; }

  .hero-points{ gap: 10px; margin-top: 14px; }
  .hero-points li{ padding: 12px 12px; }

  .section{ padding: 42px 0; }
  .section-head{ margin-bottom: 14px; }

  /* More breathing room between major blocks */
  .callout{ margin-top: 18px; }
  .contact-grid{ gap: 22px; }

  /* About images stack with spacing */
  .about-media{ gap: 16px; }
}

/* Smaller phone */
@media (max-width: 520px){
  .container{ padding: 0 16px; }

  .section{ padding: 38px 0; }

  /* Team section: keep images from feeling oversized */
  .team-wrap{ padding: 14px; border-radius: 24px; }
  .team-card img{
    aspect-ratio: 4 / 5;
    max-height: 220px;
  }

  /* Cards spacing */
  .team-grid{ gap: 14px; }
  .cards{ gap: 14px; }
  .grid-2{ gap: 14px; }

  /* Footer spacing */
  .site-footer{ padding: 22px 0 26px; }
}

/* Make header look more "finished" */
.site-header{
  background: rgba(6,10,18,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.primary-nav a.nav-cta{
  background: linear-gradient(135deg, rgba(54,197,240,0.18), rgba(31,230,168,0.12));
}


/* Footer cleanup after removing links */
.site-footer .footer-grid{
  grid-template-columns: 1fr;
}
