/* ACME Commercial — Brand Colors
   Orange:     #F47D4C
   Dark Gray:  #676767
   Light Gray: #DDDCDB
   Font:       Helvetica
*/

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

:root {
  --orange:     #F47D4C;
  --dark-gray:  #676767;
  --light-gray: #DDDCDB;
  --white:      #ffffff;
  --black:      #1a1a1a;
}

html { scroll-behavior: smooth; }

body {
  font-family: Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .acme {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--black);
}

.nav-logo .commercial {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-gray);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 2px;
  letter-spacing: 1.5px;
  font-size: 12px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #e06535 !important; color: var(--white) !important; }

/* ─── HERO ─── */
#hero {
  margin-top: 72px;
  min-height: 90vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.hero-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-title span { color: var(--orange); }

.hero-sub {
  font-size: 18px;
  color: var(--light-gray);
  max-width: 540px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: #e06535; transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--light-gray);
  color: var(--light-gray);
  text-decoration: none;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-left: 16px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

/* ─── STATS ─── */
#stats {
  background: var(--orange);
  padding: 48px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.85;
}

/* ─── SECTIONS ─── */
section { padding: 96px 48px; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--black);
}

.section-body {
  font-size: 17px;
  color: var(--dark-gray);
  max-width: 600px;
  line-height: 1.75;
}

/* ─── SERVICES ─── */
#services { background: #f8f8f8; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 56px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 40px 32px;
  border-radius: 2px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover { border-color: var(--orange); transform: translateY(-4px); }

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg { width: 20px; height: 20px; fill: white; }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.7; }

/* ─── LISTINGS ─── */
#listings { max-width: 1200px; margin: 0 auto; }

.listings-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.listing-card {
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.listing-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }

.listing-img {
  width: 100%;
  height: 200px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-gray);
}

.listing-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 1px;
  margin: 20px 20px 0;
}

.listing-body { padding: 16px 20px 24px; }

.listing-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }

.listing-body .address { font-size: 13px; color: var(--dark-gray); margin-bottom: 16px; }

.listing-details {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--dark-gray);
  border-top: 1px solid var(--light-gray);
  padding-top: 16px;
}

.listing-details span { font-weight: 600; color: var(--black); }

/* ─── TEAM ─── */
#team { background: #f8f8f8; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 56px;
  max-width: 900px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.2s;
}

.team-card:hover { transform: translateY(-4px); }

.team-photo {
  width: 100%;
  height: 280px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-gray);
}

.team-info { padding: 28px; }

.team-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }

.team-info .title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.team-info p { font-size: 14px; color: var(--dark-gray); line-height: 1.7; }

.team-contact {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
  font-size: 13px;
  color: var(--dark-gray);
}

.team-contact a { color: var(--orange); text-decoration: none; }

/* ─── CONTACT ─── */
#contact { background: var(--black); color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1000px;
  align-items: start;
}

#contact .section-title { color: var(--white); }
#contact .section-body { color: var(--light-gray); }

.contact-details { margin-top: 40px; }

.contact-item {
  margin-bottom: 24px;
}

.contact-item .label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.contact-item .value {
  font-size: 16px;
  color: var(--white);
}

.contact-item a { color: var(--white); text-decoration: none; }
.contact-item a:hover { color: var(--orange); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  color: var(--white);
  padding: 14px 18px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #666; }

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--orange); }

.contact-form textarea { height: 120px; resize: vertical; }

.contact-form button {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover { background: #e06535; }

/* ─── FOOTER ─── */
footer {
  background: #111;
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid #222;
}

.footer-logo .acme { font-size: 16px; font-weight: 700; color: var(--white); }
.footer-logo .commercial { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); }

footer p { font-size: 12px; color: #555; }

footer a { color: #555; text-decoration: none; }
footer a:hover { color: var(--orange); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  #stats { gap: 40px; padding: 40px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  footer { flex-direction: column; text-align: center; }
  .hero-content { padding: 0 16px; }
  .btn-secondary { margin-left: 0; margin-top: 12px; }
}
