@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&family=Barlow:wght@300;400;500&display=swap');

/* ============================================================
   BLACKSTONE VALLEY ROOFING — style.css
   Palette: charcoal #141414, amber #B8880A, off-white #f0f0f0
   Fonts: Barlow Condensed (headings), Barlow (body)
   ============================================================ */

:root {
  --black:       #141414;
  --black-mid:   #1a1a1a;
  --black-light: #1e1e1e;
  --black-card:  #181818;
  --border:      #242424;
  --border-mid:  #2a2a2a;
  --border-soft: #2e2e2e;
  --amber:       #B8880A;
  --amber-dark:  #9A7208;
  --white:       #f5f5f5;
  --white-mid:   #f0f0f0;
  --text-primary:   #f0f0f0;
  --text-secondary: #bbb;
  --text-muted:     #999;
  --text-faint:     #777;
  --text-dim:       #666;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  background: var(--black);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- TYPOGRAPHY ---- */
.condensed { font-family: 'Barlow Condensed', sans-serif; }

h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white-mid);
}

h1 { font-size: clamp(40px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }

em { font-style: normal; color: var(--amber); }

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
  display: block;
}

.section-rule {
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin: 18px 0 40px;
}

.section-rule.centered { margin-left: auto; margin-right: auto; }

/* ---- NAV ---- */
.site-nav {
  background: var(--black);
  border-bottom: 0.5px solid var(--border-mid);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--amber);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--black);
}

.nav-logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
}

.nav-logo-sub {
  font-size: 9px;
  color: var(--amber);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--amber); }

.nav-cta {
  background: var(--amber);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover { background: var(--amber-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white-mid);
  border-radius: 2px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0.70) 50%, rgba(20,20,20,0.30) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
  width: 100%;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-title em {
  color: var(--amber);
  font-style: normal;
  display: block;
  font-weight: 500;
  font-size: 0.85em;
}

.hero-rule {
  width: 52px;
  height: 2px;
  background: var(--amber);
  margin: 22px 0;
}

.hero-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

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

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--amber);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--amber-dark); }

.btn-secondary {
  border: 0.5px solid #3a3a3a;
  color: #ccc;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--amber); color: var(--amber); }

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--black-mid);
  border-bottom: 0.5px solid var(--border-mid);
  padding: 14px 32px;
}

.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  font-size: 11px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Barlow Condensed', sans-serif;
}

.trust-dot {
  width: 4px;
  height: 4px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- FORMS ---- */
.hero-form {
  background: var(--black-light);
  border: 0.5px solid var(--border-soft);
  border-top: 3px solid var(--amber);
  border-radius: 0 0 4px 4px;
  padding: 24px;
}

.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white-mid);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-sub {
  font-size: 12px;
  color: #888;
  margin-bottom: 18px;
  line-height: 1.5;
  font-weight: 300;
}

.form-group { margin-bottom: 10px; }

.form-label {
  font-size: 10px;
  color: #888;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #111;
  border: 0.5px solid var(--border-mid);
  border-radius: 3px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text-secondary);
  font-family: 'Barlow', sans-serif;
  transition: border-color 0.2s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--amber);
}

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

.form-submit {
  width: 100%;
  background: var(--amber);
  color: var(--black);
  border: none;
  padding: 12px;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--amber-dark); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-note {
  font-size: 11px;
  color: #555;
  margin-top: 10px;
  line-height: 1.5;
}

.req { color: var(--amber); }

.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

.form-success.visible { display: block; }

.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--amber);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white-mid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.success-body { font-size: 13px; color: #888; }

/* ---- SERVICES SECTION ---- */
.services-section {
  background: #111;
  padding: 72px 32px;
}

.services-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--black-card);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 28px 22px;
  transition: border-color 0.2s;
  display: block;
}

.service-card:hover { border-color: var(--amber); }

.service-card-img {
  width: calc(100% + 44px);
  height: 160px;
  object-fit: cover;
  display: block;
  margin: -28px -22px 20px -22px;
  border-radius: 4px 4px 0 0;
}

.svc-bar {
  width: 24px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 14px;
}

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white-mid);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 16px;
}

.service-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---- ABOUT STRIP ---- */
.about-strip {
  background: var(--black-mid);
  border-top: 0.5px solid var(--border-mid);
  border-bottom: 0.5px solid var(--border-mid);
  padding: 48px 32px;
  text-align: center;
}

.about-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  color: #999;
  max-width: 700px;
  margin: 0 auto 12px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.about-quote span {
  color: var(--white-mid);
  font-weight: 600;
}

.about-byline {
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
}

/* ---- AREAS SECTION ---- */
.areas-section {
  background: var(--black);
  padding: 72px 32px;
}

.areas-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.area-tile {
  background: var(--black-mid);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 16px 10px;
  text-align: center;
  transition: border-color 0.2s;
  display: block;
}

.area-tile:hover { border-color: var(--amber); }

.area-tile-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #e0e0e0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.area-tile-state {
  font-size: 11px;
  color: #888;
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* ---- QUOTE STRIP ---- */
.quote-strip {
  background: var(--amber);
  padding: 48px 32px;
}

.quote-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.quote-strip-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
}

.quote-strip-text span {
  font-weight: 400;
  display: block;
  font-size: 0.75em;
  opacity: 0.8;
}

.quote-strip-btn {
  background: var(--black);
  color: var(--amber);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.quote-strip-btn:hover { opacity: 0.85; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--black-mid);
  border-bottom: 0.5px solid var(--border-mid);
  padding: 56px 32px 48px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}

.breadcrumb a { color: #666; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: #444; }

.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  color: var(--white-mid);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.page-hero-body {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 300;
}

/* ---- CONTENT SECTION (inner pages) ---- */
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.content-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--white-mid);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.content-section h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  color: var(--white-mid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 28px 0 10px;
}

.content-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 16px;
}

.service-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.service-link-tile {
  display: block;
  padding: 16px;
  background: var(--black-mid);
  border-left: 3px solid var(--amber);
  border-radius: 0;
  text-decoration: none;
}

.service-link-tile-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  color: var(--white-mid);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-link-tile-sub {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 4px;
}

/* ---- FORM CARD (sidebar) ---- */
.form-card {
  background: var(--black-light);
  border: 0.5px solid var(--border-soft);
  border-top: 3px solid var(--amber);
  border-radius: 0 0 4px 4px;
  padding: 24px;
}

.form-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.form-card-sub {
  font-size: 12px;
  color: #888;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* ---- FORM SECTION (full width) ---- */
.form-section {
  background: #111;
  padding: 72px 32px;
}

.form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-divider {
  height: 0.5px;
  background: var(--border-mid);
  margin: 16px 0;
}

/* ---- FOOTER ---- */
footer {
  background: #0d0d0d;
  border-top: 0.5px solid #1e1e1e;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--amber);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-icon svg { width: 15px; height: 15px; fill: var(--black); }

.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  font-weight: 300;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: 13px;
  color: #555;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-links a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 0.5px solid #1a1a1a;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 11px;
  color: #333;
  letter-spacing: 0.03em;
}

.footer-copy a { color: #444; transition: color 0.2s; }
.footer-copy a:hover { color: var(--amber); }

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 0.5px solid var(--border-mid);
  padding: 20px 0;
}

.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white-mid);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.faq-a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .quote-strip-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 16px 24px;
    border-bottom: 0.5px solid var(--border-mid);
    gap: 16px;
    z-index: 99;
  }
  .nav-toggle { display: flex; }
  .nav-inner { position: relative; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-inner { padding: 48px 24px; }
  .services-section, .areas-section, .form-section { padding: 48px 24px; }
  .page-hero { padding: 40px 24px; }
  .content-section { padding: 40px 24px; }
}
