/* ALMOTARAT LLC — shared styles
   Palette: industrial steel + amber. Display: Barlow Condensed. Body: Inter. */

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

:root {
  --steel:       #111418;
  --steel-mid:   #1c2128;
  --steel-light: #2a3140;
  --rule:        #2e3744;
  --amber:       #E8960A;
  --amber-dim:   #b87208;
  --amber-glow:  rgba(232,150,10,0.12);
  --slate:       #8a95a3;
  --white:       #f0f2f5;
  --white-dim:   #c8cdd4;
  --badge-new:   #1a3a2a;
  --badge-text:  #4ade80;
  --maxw: 1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--steel);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17,20,24,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.site-nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--amber); }

.nav-links { display: flex; gap: 1.85rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--amber); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 4px;
  color: var(--white);
  font-size: 1.1rem;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
}

/* ── PAGE HEADER (interior pages) ── */
.page-head {
  padding: clamp(3.5rem, 9vw, 6rem) clamp(1.25rem, 5vw, 3rem) clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(232,150,10,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--amber); }

.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.97;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 820px;
}
.page-title em { font-style: normal; color: var(--amber); }

.page-intro {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* ── HERO (home) ── */
.hero {
  padding: clamp(4.5rem, 12vw, 8.5rem) clamp(1.25rem, 5vw, 3rem) clamp(3.5rem, 8vw, 6rem);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(232,150,10,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 860px;
  margin-bottom: 1.6rem;
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub {
  font-size: 1.08rem;
  color: var(--white-dim);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn-primary { background: var(--amber); color: #1a1205; }
.btn-primary:hover { background: #ffa717; }
.btn-ghost { border: 1px solid var(--rule); color: var(--white-dim); }
.btn-ghost:hover { border-color: var(--amber); color: var(--white); }

/* ── META STRIP ── */
.meta-strip {
  display: flex;
  gap: clamp(1.5rem, 5vw, 3rem);
  flex-wrap: wrap;
  margin-top: 2.75rem;
}
.meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.meta-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--slate);
}
.meta-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--white-dim);
}

/* ── SECTION ── */
.section {
  padding: clamp(3.25rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 3rem);
  border-bottom: 1px solid var(--rule);
}
.section.alt { background: var(--steel-mid); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
}
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.tag.green { color: var(--badge-text); }
.tag.green .dot { background: var(--badge-text); }

.heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 720px;
}
.lead {
  font-size: 1rem;
  color: var(--white-dim);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.prose p {
  font-size: 0.98rem;
  color: var(--white-dim);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.prose strong { color: var(--white); font-weight: 600; }

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.card { background: var(--steel-mid); padding: 1.9rem 1.7rem; transition: background 0.2s; }
.card:hover { background: var(--steel-light); }
.section.alt .card { background: var(--steel); }
.section.alt .card:hover { background: var(--steel-light); }
.card-icon { font-size: 1.5rem; margin-bottom: 0.9rem; display: block; }
.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.15rem; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 0.5rem;
}
.card-body { font-size: 0.875rem; color: var(--slate); line-height: 1.65; }

/* ── DIVIDER ── */
.business-divider {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.4rem clamp(1.25rem, 5vw, 3rem);
  background: var(--steel-mid);
  border-bottom: 1px solid var(--rule);
}
.divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--rule), transparent); }
.divider-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--slate); white-space: nowrap;
}

/* ── FEATURE ROWS ── */
.feature-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--rule); border-radius: 4px; overflow: hidden;
}
.feature-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--rule);
  background: var(--steel); transition: background 0.2s;
}
.feature-row:last-child { border-bottom: none; }
.feature-row:hover { background: var(--steel-light); }
.feature-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--amber-glow); border: 1px solid var(--amber-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; font-size: 0.6rem; color: var(--amber);
}
.feature-text { font-size: 0.88rem; color: var(--white-dim); line-height: 1.55; }
.feature-text strong { display: block; font-weight: 600; color: var(--white); margin-bottom: 0.15rem; font-size: 0.9rem; }

/* ── TWO-COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }

/* ── BADGE ── */
.badge-progress {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--badge-new); border: 1px solid rgba(74,222,128,0.2);
  border-radius: 100px; padding: 0.25rem 0.75rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--badge-text); margin-bottom: 1.25rem;
}
.badge-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--badge-text); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.8);} }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.25rem;
}
.contact-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--slate); margin-bottom: 0.4rem;
}
.contact-value { font-size: 0.95rem; color: var(--white-dim); line-height: 1.6; }
.contact-value a { color: var(--amber); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

.map-embed {
  margin-top: 2.5rem; border: 1px solid var(--rule); border-radius: 4px;
  overflow: hidden; line-height: 0;
}
.map-embed iframe { width: 100%; height: 320px; border: 0; filter: grayscale(0.3) contrast(1.1); }

/* ── CTA BANNER ── */
.cta-banner {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 5vw, 3rem);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--white); margin-bottom: 0.8rem; line-height: 1.02;
}
.cta-banner p { color: var(--slate); max-width: 480px; margin: 0 auto 1.8rem; font-size: 0.95rem; }

/* ── FOOTER ── */
.site-footer { padding: 2.75rem clamp(1.25rem, 5vw, 3rem) 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.25rem; border-bottom: 1px solid var(--rule); margin-bottom: 1.5rem;
}
.footer-brand .nav-logo { font-size: 1.4rem; display: inline-block; margin-bottom: 0.85rem; }
.footer-brand p { font-size: 0.85rem; color: var(--slate); max-width: 320px; line-height: 1.65; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.85rem; color: var(--slate); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.78rem; color: var(--slate); }
.footer-copy span { color: var(--amber); }
.footer-tag { font-size: 0.78rem; color: var(--rule); letter-spacing: 0.05em; }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 680px) {
  .nav-links {
    position: absolute; top: 62px; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--steel); border-bottom: 1px solid var(--rule);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 360px; }
  .nav-links a { padding: 1rem clamp(1.25rem, 5vw, 3rem); border-bottom: 1px solid var(--rule); }
  .nav-toggle { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .badge-pulse { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── FOCUS ── */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--amber); outline-offset: 3px;
}
