/* ═══════════════════════════════════════════
   AL Brothers LLC — Brand Styles
   Logo orange: #fe7000
   ═══════════════════════════════════════════ */

:root {
  --bg: #070707;
  --bg-soft: #111111;
  --panel: #171717;
  --panel-2: #202020;
  --text: #f7f7f7;
  --muted: #b8b8b8;
  --orange: #fe7000;
  --orange-glow: rgba(254, 112, 0, 0.3);
  --orange-dark: #c45800;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* ───── HEADER / NAV ───── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-image-shell {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  background: var(--orange);
  color: #000;
  font-weight: 1000;
  font-size: 1.4rem;
  place-items: center;
}

.logo-fallback-active .logo-fallback {
  display: grid;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  color: #000 !important;
  background: var(--orange);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 30;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger { position: relative; }

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after  { top:  7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* ───── LAYOUT HELPERS ───── */

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 6.2vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

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

/* ───── BUTTONS ───── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}

.btn.primary {
  background: var(--orange);
  color: #000;
  box-shadow: 0 12px 32px var(--orange-glow);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px var(--orange-glow);
}

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

.btn.secondary:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

/* ───── HERO (with background image) ───── */

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.78) 40%, rgba(7,7,7,0.55) 100%),
    linear-gradient(to top, rgba(7,7,7,0.95) 0%, transparent 40%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 720px;
}

.hero-lead {
  max-width: 600px;
  color: rgba(255,255,255,0.8);
  font-size: 1.18rem;
  line-height: 1.65;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255,255,255,0.7);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ───── SERVICES STRIP ───── */

.service-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-strip article {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
  border-radius: 20px;
  transition: transform 0.2s, border-color 0.2s;
}

.service-strip article:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 112, 0, 0.3);
}

.service-number {
  color: var(--orange);
  font-weight: 1000;
  letter-spacing: 0.1em;
  font-size: 0.88rem;
}

.service-strip p,
.process-item p,
.feature-card p,
.contact-copy p,
.form-note,
.included-panel p { color: var(--muted); }

/* ───── ABOUT SECTION ───── */

.about-section {
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  align-items: center;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  gap: 16px;
}

.about-stat {
  padding: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-radius: 18px;
  text-align: center;
}

.about-stat strong {
  display: block;
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ───── DARK PANEL (How It Works) ───── */

.dark-panel {
  width: min(1180px, calc(100% - 32px));
  padding: 56px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(254, 112, 0, 0.10), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.process-list { display: grid; gap: 20px; }

.process-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.process-item > span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  background: var(--orange);
  color: #000;
  border-radius: 50%;
  font-weight: 1000;
  font-size: 1.1rem;
}

/* ───── SCHEDULE CTA ───── */

.schedule-cta-section {
  text-align: center;
}

.schedule-cta-card {
  background: linear-gradient(135deg, rgba(254, 112, 0, 0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px 40px;
}

.schedule-cta-card h2 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.schedule-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 32px 0 16px;
}

/* Cal.com embed */
.cal-embed-wrap {
  margin: 32px auto 24px;
  max-width: 720px;
}

.cal-embed-wrap iframe {
  background: var(--panel);
}

/* ───── INCLUDED PANEL (Why Builders Choose Us) ───── */

.included-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 44px;
  border-radius: 28px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.included-grid span {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
  transition: border-color 0.2s;
}

.included-grid span:hover {
  border-color: rgba(254, 112, 0, 0.3);
}

/* ───── PROOF / TRUST ───── */

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proof-grid article {
  padding: 32px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-radius: 20px;
  transition: transform 0.2s, border-color 0.2s;
}

.proof-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 112, 0, 0.3);
}

.proof-icon {
  margin-bottom: 16px;
  line-height: 1;
}

.proof-icon svg {
  display: block;
}

.proof-grid a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ───── FEATURE GRID (Service Areas) ───── */

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

.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
  border-radius: 22px;
}

.feature-card.large {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ───── CONTACT ───── */

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.contact-details {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-details p { margin-bottom: 8px; }
.contact-details p:last-child { margin-bottom: 0; }
.contact-details a { color: var(--orange); }

.contact-form {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 32px;
  border-radius: 24px;
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

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

textarea { resize: vertical; }

.form-note {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.form-success {
  text-align: center;
  padding: 32px 0;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.form-success a { color: var(--orange); }

/* ───── FOOTER ───── */

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.site-footer p { margin: 0; }
.site-footer a { color: var(--orange); }
.footer-left p + p { margin-top: 4px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1040px) {
  .included-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(7, 7, 7, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }

  .nav-links.nav-open { display: flex; }

  .nav-cta {
    text-align: center;
    padding: 14px 20px;
    font-size: 1rem;
  }

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

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

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-strip,
  .feature-grid { grid-template-columns: repeat(2, 1fr); }

  .feature-card.large { grid-column: span 2; }

  .proof-grid { grid-template-columns: repeat(2, 1fr); }

  .hero { min-height: auto; }

  .hero-inner { padding-top: 60px; padding-bottom: 60px; }

  .dark-panel { padding: 36px 24px; }

  .schedule-cta-card { padding: 40px 24px; }
}

@media (max-width: 620px) {
  .section-pad { padding: 52px 0; }

  h1 { font-size: clamp(2.2rem, 12vw, 3.2rem); }

  .service-strip,
  .feature-grid,
  .included-grid,
  .proof-grid { grid-template-columns: 1fr; }

  .feature-card.large { grid-column: auto; }

  .about-stats { grid-template-columns: 1fr; }

  .dark-panel,
  .included-panel { padding: 24px 20px; }

  .brand-text { display: none; }

  .contact-form { padding: 24px 20px; }

  .schedule-cta-card { padding: 32px 20px; }

  .schedule-cta-card h2 br { display: none; }

  .hero-bg::after {
    background:
      linear-gradient(135deg, rgba(7,7,7,0.95) 0%, rgba(7,7,7,0.85) 100%),
      linear-gradient(to top, rgba(7,7,7,0.98) 0%, transparent 40%);
  }
}

/* ─── Schedule page styles ─── */

.schedule-hero {
  text-align: center;
  padding-bottom: 32px;
}

.schedule-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.schedule-hero h1 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.schedule-steps {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.schedule-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-radius: 20px;
}

.step-num {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  background: var(--orange);
  color: #000;
  border-radius: 50%;
  font-weight: 1000;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.schedule-step h3 { margin-bottom: 6px; }
.schedule-step p { color: var(--muted); margin-bottom: 0; font-size: 0.95rem; }

/* Full-width calendar section */
.schedule-calendar-section {
  width: min(1020px, calc(100% - 32px));
  margin: 0 auto 64px;
}

.schedule-calendar-card {
  background: linear-gradient(135deg, rgba(254, 112, 0, 0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px 40px;
}

.schedule-calendar-header {
  text-align: center;
  margin-bottom: 32px;
}

.schedule-calendar-header h2 {
  margin-bottom: 10px;
}

.schedule-calendar-header p {
  max-width: 560px;
  margin: 0 auto;
}

.schedule-cal-embed {
  max-width: 920px;
  margin: 0 auto;
}

.schedule-cal-embed iframe {
  background: var(--panel);
}

/* Service type cards */
.schedule-services .section-heading {
  margin-bottom: 36px;
}

.schedule-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.schedule-service-card {
  padding: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-radius: 20px;
  transition: transform 0.2s, border-color 0.2s;
}

.schedule-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 112, 0, 0.3);
}

.schedule-service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.schedule-service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.svc-duration {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-active {
  color: var(--text) !important;
  font-weight: 700;
}

@media (max-width: 920px) {
  .schedule-steps { grid-template-columns: 1fr; max-width: 480px; }
  .schedule-service-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-calendar-card { padding: 36px 24px; }
}

@media (max-width: 620px) {
  .schedule-service-grid { grid-template-columns: 1fr; }
  .schedule-calendar-card { padding: 24px 16px; }
  .schedule-cal-embed iframe { height: 600px !important; }
  .schedule-hero h1 br { display: none; }
}

/* ─── Service sub-page styles ─── */
.service-page-hero {
  max-width: 720px;
}

.service-page-hero .eyebrow a {
  color: var(--orange);
  text-decoration: none;
}

.service-page-hero .eyebrow a:hover {
  text-decoration: underline;
}

.service-detail-section {
  max-width: 720px;
  margin: 0 auto;
}

.service-detail-section h2 {
  margin-bottom: 20px;
}

.service-detail-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-detail-list li {
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
  color: var(--muted);
}

.service-detail-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
