@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --gold: #cda434;
  --gold-hover: #b8922c;
  --white: #ffffff;
  --off-white: #f8fafc;
  --text-main: #334155;
  --text-muted: #64748b;
  --border: #e2e8f0;
  
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  --radius: 4px; /* Crisp, corporate edges */
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --transition: all 0.2s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* TOP STRIP */
.top-strip {
  background: var(--navy);
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
}

.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.top-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-strip i {
  color: var(--gold);
}

/* HEADER */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

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

.brand {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.brand span {
  color: var(--gold);
}

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

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-main);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  color: var(--navy);
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.hero.compact {
  min-height: 40vh;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 80px 0;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero p {
  color: #cbd5e1;
  font-size: 18px;
  margin-bottom: 40px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  min-height: 50px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--gold);
  color: var(--white);
}

.btn.primary:hover {
  background: var(--gold-hover);
}

.btn.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* SECTIONS */
.section {
  padding: 100px 0;
  background: var(--white);
}

.section.alt {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  margin-bottom: 60px;
  max-width: 700px;
}

.section-kicker {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  color: var(--text-muted);
}

/* GRIDS */
.grid {
  display: grid;
  gap: 30px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.2fr 0.8fr;
}

/* CARDS */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.card-body {
  padding: 30px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
}

.img-wrapper {
  overflow: hidden;
}

.card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.label {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* METRICS */
.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: -50px;
  position: relative;
  z-index: 20;
}

.metric {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}

.metric strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1;
}

.metric span {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
}

/* IMAGE STACK */
.image-stack {
  position: relative;
  height: 500px;
}

.image-stack img {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-stack img:first-child {
  width: 75%;
  height: 85%;
  top: 0;
  right: 0;
  z-index: 1;
}

.image-stack img:last-child {
  width: 60%;
  height: 60%;
  bottom: 0;
  left: 0;
  z-index: 2;
  border: 6px solid var(--white);
}

/* FEATURE LIST */
.feature-list {
  list-style: none;
  margin-top: 30px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  font-weight: 500;
}

.feature-list i {
  color: var(--gold);
  margin-top: 4px;
}

/* BAND */
.band {
  background: var(--navy-light);
  color: var(--white);
  padding: 80px 0;
}

.band h2 {
  color: var(--white);
  max-width: 600px;
}

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

.band .btn.light {
  background: var(--white);
  color: var(--navy);
}
.band .btn.light:hover {
  background: var(--off-white);
}

/* FILTERS */
.filters {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* FORM */
.form {
  display: grid;
  gap: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--navy);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-main);
  background: var(--off-white);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea {
  height: 140px;
  resize: vertical;
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.site-footer h3, .site-footer h4 {
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.socials a:hover {
  background: var(--gold);
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav {
    min-height: 70px;
    position: relative;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; 
    left: -20px; 
    right: -20px;
    background: var(--white);
    flex-direction: column;
    padding: 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 100;
  }
  .nav-links a {
    padding: 12px 0;
    width: 100%;
    text-align: center;
  }
  .nav-links.open {
    display: flex;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .grid.three, .grid.two, .metric-row, .split, .split.reverse, .footer-grid {
    grid-template-columns: 1fr;
  }
  .metric-row {
    margin-top: 0;
  }
  .band .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .image-stack {
    height: 400px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .top-strip .container {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .top-strip .container {
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
    text-align: center;
  }
  .section {
    padding: 60px 0;
  }
  .hero-content {
    padding: 40px 0;
  }
  .hero h1 {
    font-size: clamp(32px, 8vw, 40px);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .image-stack {
    height: 280px;
  }
  .floating-contact {
    bottom: 16px;
    right: 16px;
    gap: 12px;
  }
  .floating-contact a {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .metric {
    padding: 24px;
  }
  .footer-grid {
    gap: 32px;
  }
}

/* FLOATING CONTACT */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.floating-contact a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-contact a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  color: var(--white);
}

.float-wa {
  background-color: #25D366;
}

.float-call {
  background-color: var(--gold);
}
