/* ALMOTARAT LLC, SalvageOS marketing site
   Palette: cool light surface, deep navy ink, amber + teal dual accent.
   Display: Barlow Condensed. Body: Inter. */

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

:root {
  --bg:          #F5F7FA;
  --surface:     #FFFFFF;
  --surface-alt: #EAF0F5;
  --navy:        #101B2D;
  --navy-mid:    #16233B;
  --ink:         #0F1720;
  --ink-dim:     #4E5A6B;
  --rule:        #DCE3EC;
  --amber:       #DD7A15;
  --amber-dark:  #B3600E;
  --amber-tint:  #FDEEDC;
  --teal:        #0E7C86;
  --teal-dark:   #0B6169;
  --teal-tint:   #E1F3F3;
  --green:       #0F9D58;
  --green-tint:  #E7F8EE;
  --white:       #FFFFFF;
  --maxw: 1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  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(255,255,255,0.9);
  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: 64px;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  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: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active { color: var(--amber); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 4px;
  color: var(--navy);
  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;
  background:
    radial-gradient(circle at 88% -10%, rgba(221,122,21,0.14) 0%, transparent 55%),
    radial-gradient(circle at 8% 110%, rgba(14,124,134,0.10) 0%, transparent 50%);
}
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-dark);
  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(--navy);
  max-width: 820px;
}
.page-title em { font-style: normal; color: var(--amber); }

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

/* ── HERO (home) ── */
.hero {
  padding: clamp(4.5rem, 12vw, 8rem) clamp(1.25rem, 5vw, 3rem) clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% -12%, rgba(221,122,21,0.16) 0%, transparent 50%),
    radial-gradient(circle at 4% 105%, rgba(14,124,134,0.12) 0%, transparent 45%);
}
.hero-inner { position: relative; }

/* Signature element: rotated auction-stamp badge */
.launch-stamp {
  position: absolute;
  top: -6px;
  right: clamp(0px, 4vw, 40px);
  transform: rotate(7deg);
  border: 2.5px solid var(--green);
  color: var(--green);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  background: var(--green-tint);
  box-shadow: 3px 3px 0 rgba(15,157,88,0.12);
}
@media (max-width: 720px) {
  .launch-stamp { position: static; display: inline-block; transform: rotate(-2deg); margin-bottom: 1.5rem; }
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.9rem, 7.5vw, 5.7rem);
  line-height: 0.97;
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 880px;
  margin-bottom: 1.6rem;
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-dim);
  max-width: 560px;
  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: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.7rem;
  border-radius: 5px;
  transition: all 0.2s;
}
.btn-primary { background: var(--amber); color: #1a1205; box-shadow: 0 4px 14px rgba(221,122,21,0.28); }
.btn-primary:hover { background: #ef8b25; transform: translateY(-1px); }
.btn-ghost { border: 1.5px solid var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-on-dark { border: 1.5px solid rgba(255,255,255,0.35); color: var(--white); }
.btn-on-dark:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ── META STRIP ── */
.meta-strip {
  display: flex;
  gap: clamp(1.5rem, 5vw, 3rem);
  flex-wrap: wrap;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.meta-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-dim);
}
.meta-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
}

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

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

.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(--navy);
  margin-bottom: 1rem;
  max-width: 720px;
}
.lead {
  font-size: 1rem;
  color: var(--ink-dim);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.prose p {
  font-size: 0.98rem;
  color: var(--ink-dim);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.prose strong { color: var(--navy); font-weight: 700; }

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--amber);
  border-radius: 8px;
  padding: 1.9rem 1.7rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(16,27,45,0.08); }
.card:nth-child(even) { border-top-color: var(--teal); }
.section.alt .card { background: var(--white); }
.card-icon {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 8px;
  background: var(--amber-tint);
}
.card:nth-child(even) .card-icon { background: var(--teal-tint); }
.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.15rem; letter-spacing: 0.02em;
  color: var(--navy); margin-bottom: 0.5rem;
}
.card-body { font-size: 0.875rem; color: var(--ink-dim); line-height: 1.65; }

/* ── FEATURE ROWS ── */
.feature-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--rule); border-radius: 8px; overflow: hidden;
  background: var(--surface);
}
.feature-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--rule);
  transition: background 0.2s;
}
.feature-row:last-child { border-bottom: none; }
.feature-row:hover { background: var(--amber-tint); }
.feature-row:nth-child(even):hover { background: var(--teal-tint); }
.feature-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--amber); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; font-size: 0.65rem; font-weight: 800;
}
.feature-row:nth-child(even) .feature-check { background: var(--teal); }
.feature-text { font-size: 0.88rem; color: var(--ink-dim); line-height: 1.55; }
.feature-text strong { display: block; font-weight: 700; color: var(--navy); 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(--green-tint); border: 1px solid rgba(15,157,88,0.25);
  border-radius: 100px; padding: 0.3rem 0.85rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green); margin-bottom: 1.25rem;
}
.badge-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--green); 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: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-dim); margin-bottom: 0.4rem;
}
.contact-value { font-size: 0.95rem; color: var(--navy); line-height: 1.6; }
.contact-value a { color: var(--amber-dark); text-decoration: none; font-weight: 600; }
.contact-value a:hover { text-decoration: underline; }

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

/* ── CTA BANNER (dark bookend band) ── */
.cta-banner {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
  text-align: center;
  background: var(--navy-mid);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(221,122,21,0.16) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(14,124,134,0.20) 0%, transparent 45%);
  position: relative;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  color: var(--white); margin-bottom: 0.8rem; line-height: 1.02;
}
.cta-banner p { color: #C7CFDB; max-width: 480px; margin: 0 auto 1.9rem; font-size: 0.98rem; }

/* ── FOOTER ── */
.site-footer { padding: 2.75rem clamp(1.25rem, 5vw, 3rem) 2rem; background: var(--navy); color: #C7CFDB; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.25rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.5rem;
}
.footer-brand .nav-logo { font-size: 1.4rem; display: inline-block; margin-bottom: 0.85rem; color: var(--white); }
.footer-brand .nav-logo span { color: var(--amber); }
.footer-brand p { font-size: 0.85rem; color: #9BA7B8; 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: #9BA7B8; 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: #7C8899; }
.footer-copy span { color: var(--amber); }
.footer-tag { font-size: 0.78rem; color: #5B6678; 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: 64px; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--white); 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;
}
