
:root {
  --bg: #0b0d0b;
  --bg-soft: #101310;
  --panel: #151915;
  --panel-2: #1a1f19;
  --text: #f2f4ef;
  --muted: #aeb5aa;
  --accent: #7d895e;
  --accent-light: #aab58e;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.16);
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hidden { position: absolute !important; left: -9999px !important; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-200%);
  background: white;
  color: black;
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,13,11,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

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

.brand-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.site-nav a:hover { color: var(--accent-light); }

.nav-cta {
  border: 1px solid var(--accent);
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 25%, rgba(125,137,94,.20), transparent 34%),
    radial-gradient(circle at 85% 80%, rgba(125,137,94,.08), transparent 26%),
    linear-gradient(125deg, #0b0d0b 0%, #111510 55%, #1b2019 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 560px;
  aspect-ratio: 1;
  border: 1px solid rgba(170,181,142,.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(170,181,142,.035),
    0 0 0 140px rgba(170,181,142,.02);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent 86%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 70px;
  align-items: center;
  padding: 110px 0;
  z-index: 1;
}

.eyebrow {
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 16px;
}

h1, h2, h3 {
  font-family: "Barlow Condensed", sans-serif;
  margin-top: 0;
  line-height: .98;
}

h1 {
  font-size: clamp(60px, 8vw, 112px);
  max-width: 900px;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}

h1 span { color: var(--accent-light); }

h2 {
  font-size: clamp(42px, 5vw, 68px);
  margin-bottom: 20px;
}

h3 { font-size: 28px; }

.hero-copy {
  max-width: 690px;
  color: var(--muted);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  background: var(--accent);
  color: #0b0d0a;
}

.button-primary:hover { background: var(--accent-light); }

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255,255,255,.03);
}

.button-secondary:hover { border-color: var(--accent); }

.hero-badge {
  width: 100%;
  min-height: 320px;
  border: 1px solid rgba(170,181,142,.26);
  background: linear-gradient(145deg, rgba(125,137,94,.12), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px;
}

.hero-badge img {
  width: 122px;
  height: 122px;
  margin-bottom: 20px;
}

.hero-badge strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  letter-spacing: .08em;
}

.hero-badge span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #10130f;
}

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

.trust-grid > div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:last-child { border-right: 0; }

.trust-grid strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section { padding: 110px 0; }

.section-dark {
  background: var(--panel);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading > p:last-child,
.muted {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 270px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  position: relative;
  grid-column: span 2;
  transition: border-color .2s ease, transform .2s ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card:hover {
  border-color: rgba(170,181,142,.55);
  transform: translateY(-3px);
}

.service-number {
  color: var(--accent-light);
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 800;
}

.service-card h3 { margin: 42px 0 14px; }
.service-card p { color: var(--muted); margin: 0; }

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

.feature-list { border-top: 1px solid var(--line); }

.feature-list > div {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
}

.feature-list p {
  color: var(--muted);
  margin: 7px 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.about-copy {
  color: #c8ccc4;
  font-size: 18px;
}

.about-copy p:first-child { margin-top: 0; }

.gallery-section { background: #0f120f; }

.gallery-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.gallery-heading > p { max-width: 460px; }

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

.gallery-placeholder {
  min-height: 280px;
  margin: 0;
  border: 1px dashed rgba(170,181,142,.45);
  background:
    linear-gradient(145deg, rgba(125,137,94,.08), rgba(255,255,255,.02)),
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255,255,255,.018) 18px, rgba(255,255,255,.018) 19px);
  display: grid;
  align-items: end;
  padding: 20px;
}

.gallery-placeholder span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.contact-section { background: var(--panel-2); }

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}

.contact-details {
  margin: 38px 0;
  border-top: 1px solid var(--line);
}

.contact-details > * {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details a:hover strong { color: var(--accent-light); }

.contact-details span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact-details strong {
  display: block;
  margin-top: 4px;
  transition: color .2s ease;
}

.hours { margin-top: 30px; }
.hours h3 { margin-bottom: 10px; }
.hours p { margin: 5px 0; color: var(--muted); }

.quote-form {
  background: #0d100d;
  border: 1px solid var(--line);
  padding: 30px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background: #151915;
  border: 1px solid var(--line);
  color: white;
  padding: 13px 14px;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(125,137,94,.12);
}

.form-button { width: 100%; }

.form-note {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.cta-band {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(125,137,94,.14), transparent 55%),
    #10130f;
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-wrap h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
}

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

footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: #090b09;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

footer strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  letter-spacing: .06em;
}

footer p {
  color: var(--muted);
  margin: 5px 0;
  font-size: 13px;
}

.footer-right { text-align: right; }

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    display: none;
  }

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

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }
}

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

  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0e110e;
    border: 1px solid var(--line);
    padding: 10px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a { padding: 14px; }

  .nav-cta { margin-top: 4px; }

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

  .trust-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child { border-bottom: 0; }

  .split,
  .about-grid,
  .contact-grid {
    gap: 42px;
  }

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

  .gallery-heading {
    display: block;
  }

  .section { padding: 78px 0; }

  .cta-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand-subtitle { display: none; }

  .service-grid,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero { min-height: 650px; }

  .hero-content { padding: 90px 0; }

  .hero-copy { font-size: 17px; }

  .button { width: 100%; }

  .quote-form { padding: 22px; }

  .footer-wrap { flex-direction: column; }
  .footer-right { text-align: left; }
}

@media (max-width: 520px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .brand-text { font-size: 21px; }
  .hero { min-height: 630px; }
}


/* Real Fresh Armory logo integration */
.brand-logo-real {
  width: 62px;
  height: 48px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
}

.hero-logo-panel {
  min-height: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(170,181,142,.30);
  overflow: hidden;
}

.hero-logo-panel img {
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  display: block;
}

.footer-brand img {
  width: 58px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
}

@media (max-width: 980px) {
  .hero-logo-panel {
    display: block;
    max-width: 680px;
    margin-top: 18px;
  }
}

@media (max-width: 620px) {
  .brand-logo-real {
    width: 52px;
    height: 40px;
  }
}
