/* About page — Amexhe Flooring */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #000;
  color: var(--text-on-dark);
  line-height: 1.6;
}

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

.topbar {
  background: linear-gradient(90deg, #0d0d0d, #1b1b1b, #0d0d0d);
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner,
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  min-height: 700px;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
    url('../img/hero-about-black.jpg') center/cover no-repeat;
}

.hero-content {
  width: min(980px, calc(100% - 32px));
  margin: 56px auto 0;
  text-align: center;
}

.eyebrow {
  color: #f0f0f0;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 18px;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1 .gold { color: var(--gold); }

.hero-line {
  width: 180px;
  height: 3px;
  background: var(--gold);
  margin: 22px auto;
  box-shadow: 0 0 20px rgba(202,162,77,0.5);
}

.hero-subtext {
  max-width: 850px;
  margin: 0 auto 34px;
  color: #f4f4f4;
  font-size: 19px;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn {
  display: inline-block;
  padding: 16px 34px;
  min-width: 220px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 17px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(180deg, #dfbb68, var(--gold));
  color: #141414;
}

.btn-secondary {
  background: rgba(20,20,20,0.78);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}

.btn:hover { transform: translateY(-2px); }

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.trust-item {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  font-weight: 600;
  color: #f5f5f5;
}

.section-dark {
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.04), transparent 40%),
    linear-gradient(180deg, #171717 0%, #101010 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 14px;
  font-weight: 800;
}

.section-line {
  width: 140px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.section-intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 45px;
  color: var(--muted-soft);
  font-size: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  padding: 34px;
}

.story-card h2,
.highlights-card h2 {
  margin-top: 0;
  font-size: 28px;
  font-weight: 800;
}

.story-card p {
  color: #ececec;
  margin: 0 0 18px;
  font-size: 17px;
}

.story-card strong { color: var(--gold); }

.highlights-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.highlight-box {
  padding: 18px 18px;
  border: 1px solid rgba(202,162,77,0.22);
  background: rgba(255,255,255,0.02);
}

.highlight-box h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 18px;
}

.highlight-box p {
  margin: 0;
  color: #ddd;
  font-size: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  text-align: center;
  min-height: 150px;
}

.service-box h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 20px;
}

.service-box p {
  margin: 0;
  color: #ddd;
  font-size: 15px;
}

.cta-section {
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.78)),
    url('../img/cta-floor.jpg') center/cover no-repeat;
  padding: 80px 0;
  text-align: center;
}

.cta-section p {
  max-width: 760px;
  margin: 0 auto 26px;
  color: #ededed;
  font-size: 18px;
}

footer {
  background: #0b0b0b;
  color: #cfcfcf;
  text-align: center;
  padding: 24px 16px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 980px) {
  .about-grid,
  .services-grid,
  .trust-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-grid,
  .services-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-content {
    margin-top: 60px;
  }

  .card {
    padding: 24px;
  }
}
