/* ============================================================
   BuildRite LLC — Website Styles
   Brand system: Deep Navy foundation, White breathing room, Gold accent
   Fonts: Oswald (display) + Inter (body)
   ============================================================ */

:root {
  /* Color system (from brand guide) */
  --deep-navy: #041B36;
  --brand-navy: #0A2D52;
  --gold: #E5A92F;
  --soft-gold: #F2C45A;
  --mist: #EEF3F8;
  --slate: #5C6B7A;
  --green: #1E7A46;
  --white: #FFFFFF;

  /* Gradients */
  --grad-gold: linear-gradient(180deg, #F3C65A 0%, #D99418 100%);
  --grad-navy: linear-gradient(180deg, #0A2D52 0%, #041B36 100%);
  --grad-silver: linear-gradient(180deg, #FFFFFF 0%, #C6D2DE 100%);

  /* Type */
  --font-display: 'Oswald', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --maxw: 1180px;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(4, 27, 54, 0.18);
  --shadow-lg: 0 30px 70px rgba(4, 27, 54, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--deep-navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-gold);
  color: var(--deep-navy);
  box-shadow: 0 10px 24px rgba(217, 148, 24, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(217, 148, 24, 0.5); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-block { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
.btn-icon { font-size: 16px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--deep-navy);
  border-bottom: 1px solid rgba(229,169,47,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}
.brand-logo { height: 52px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .5px;
  color: #DCE6F2;
  padding: 6px 2px;
  position: relative;
  transition: color .2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { margin-left: 6px; }
.nav-cta.nav-link::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--grad-navy);
  color: var(--white);
  overflow: hidden;
  padding-bottom: 30px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 78% 8%, rgba(37,99,175,.45), transparent 60%),
    radial-gradient(700px 500px at 100% 100%, rgba(229,169,47,.10), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 48px;
}
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
  font-size: 15px;
  color: var(--soft-gold);
  margin: 0 0 14px;
}
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 60px; height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-left: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: .92;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.hero-title span { display: block; }
.line-silver {
  font-size: clamp(46px, 8vw, 92px);
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.35));
}
.line-gold {
  font-size: clamp(38px, 6.6vw, 76px);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.35));
}
.line-services {
  font-size: clamp(20px, 3vw, 34px);
  letter-spacing: 14px;
  font-weight: 500;
  color: #C6D2DE;
  padding-left: 6px;
}
.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  margin: 6px 0 18px;
}
.hero-slogan em { font-style: italic; color: var(--white); }
.hero-lede {
  font-size: 18px;
  max-width: 520px;
  color: #D7E1EE;
  margin: 0 0 22px;
}
.hero-lede strong { color: var(--white); }

.hero-checklist {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
}
.hero-checklist li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-checklist .check,
.permit-list .check-green {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
}
.hero-checklist .check { background: var(--gold); color: var(--deep-navy); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Permit package card */
.permit-card {
  background: var(--white);
  color: var(--deep-navy);
  border-radius: 18px;
  padding: 26px 28px 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.6);
}
.permit-status {
  border-bottom: 1px solid var(--mist);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.permit-approved {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--green);
}
.permit-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.permit-steps .step {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate);
  position: relative;
  padding-left: 20px;
}
.permit-steps .step::before {
  content: "✔";
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  display: grid; place-items: center;
}
.permit-steps .step-line { flex: 1; height: 2px; background: var(--green); opacity: .5; }
.permit-heading {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: .5px;
  margin: 0 0 14px;
}
.permit-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.permit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px dashed #DCE4EE;
  padding-bottom: 11px;
}
.permit-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.permit-list .check-green { background: var(--green); color: #fff; }
.serving-badge {
  display: inline-block;
  background: var(--grad-gold);
  color: var(--deep-navy);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 8px;
}

/* Value strip */
.value-strip {
  position: relative;
  list-style: none;
  margin: 10px 0 0;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: rgba(10, 45, 82, 0.55);
  border: 1px solid rgba(229,169,47,.25);
  border-radius: 16px;
  backdrop-filter: blur(4px);
}
.value-strip li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.value-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 24px;
}
.value-text { font-size: 15px; line-height: 1.3; color: #D7E1EE; }
.value-text strong { color: var(--white); font-family: var(--font-display); font-weight: 600; letter-spacing: .3px; }

/* ============================================================
   SECTIONS (generic)
   ============================================================ */
.section { padding: 88px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 14px;
  color: #C08A1E;
  margin: 0 0 10px;
}
.section-eyebrow.light { color: var(--soft-gold); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--deep-navy);
}
.section-title.light { color: var(--white); }
.section-sub { font-size: 18px; color: var(--slate); margin: 0; }
.section-sub.light { color: #C7D3E1; }

/* ---------- Services ---------- */
.services { background: var(--mist); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid #E1E9F2;
  border-top: 4px solid var(--gold);
  box-shadow: 0 10px 30px rgba(4,27,54,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: var(--deep-navy);
  color: var(--gold);
  border-radius: 12px;
  font-size: 28px;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 23px;
  margin: 0 0 10px;
  color: var(--deep-navy);
}
.service-card p { margin: 0; color: var(--slate); font-size: 16.5px; }

.services-cta { text-align: center; margin-top: 50px; }
.services-cta p {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--deep-navy);
  margin: 0 0 18px;
  font-size: 18px;
}

/* ---------- Process ---------- */
.process { background: var(--grad-navy); }
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: none;
}
.step-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 30px 22px 26px;
  color: var(--white);
  position: relative;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229,169,47,.6);
  background: rgba(255,255,255,.07);
}
.step-num {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--deep-navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(217,148,24,.35);
}
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 8px;
}
.step-card p { margin: 0; font-size: 15.5px; color: #C7D3E1; }

.process-banner {
  margin-top: 54px;
  background: rgba(229,169,47,.10);
  border: 1px solid rgba(229,169,47,.35);
  border-radius: 16px;
  padding: 34px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.process-banner-title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}
.process-banner-title span { color: var(--gold); }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info .section-eyebrow,
.contact-info .section-title,
.contact-info .section-sub { text-align: left; }
.contact-info .section-title { margin-top: 4px; }
.contact-info .section-sub { margin-bottom: 30px; max-width: 440px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: center; }
.contact-icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: var(--mist);
  border-radius: 12px;
  font-size: 22px;
}
.contact-label {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  color: var(--slate);
}
.contact-value { font-size: 18px; font-weight: 600; color: var(--deep-navy); }
a.contact-value:hover { color: var(--gold); }

.contact-form {
  background: var(--mist);
  border: 1px solid #E1E9F2;
  border-radius: 18px;
  padding: 32px;
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: 13.5px;
  color: var(--brand-navy);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--deep-navy);
  background: var(--white);
  border: 1.5px solid #D3DEEA;
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(229,169,47,.22);
}
.form-note { text-align: center; font-size: 14px; color: var(--slate); margin: 14px 0 0; }
.form-status {
  margin: 14px 0 0;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.form-status.is-success {
  background: rgba(30, 122, 70, .12);
  border: 1px solid rgba(30, 122, 70, .45);
  color: var(--green);
}
.form-status.is-error {
  background: rgba(197, 48, 48, .10);
  border: 1px solid rgba(197, 48, 48, .40);
  color: #B02A2A;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--deep-navy); color: #C7D3E1; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 56px 24px 40px;
}
.footer-logo { height: 56px; margin-bottom: 16px; }
.footer-tag { font-family: var(--font-display); font-size: 20px; color: var(--soft-gold); margin: 0 0 12px; }
.footer-tag em { font-style: italic; }
.footer-desc { max-width: 340px; font-size: 15.5px; margin: 0; }
.footer-col h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  color: var(--white);
  margin: 0 0 16px;
}
.footer-col a, .footer-plain {
  display: block;
  font-size: 15.5px;
  color: #C7D3E1;
  padding: 5px 0;
}
.footer-col a { transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bar { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 13.5px;
  color: #93A3B5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; }
  .permit-card { max-width: 460px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .value-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  /* Mobile nav */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 76px; right: 0;
    width: min(80vw, 320px);
    height: calc(100vh - 76px);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: var(--brand-navy);
    padding: 26px 26px;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,.4);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-link { font-size: 20px; width: 100%; padding: 10px 0; }
  .nav-cta { margin: 12px 0 0; width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .section { padding: 62px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .value-strip { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .process-banner { padding: 26px; }
  .hero-checklist li { font-size: 18px; }
}
