* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: #17202a; background: #f7f7f5; line-height: 1.6; }
.hero { min-height: 720px; background: linear-gradient(115deg, #101820 0%, #172b38 55%, #263b47 100%); color: white; }
nav { max-width: 1180px; margin: auto; padding: 26px 24px; display: flex; justify-content: space-between; align-items: center; }
.logo { width: 245px; }
.logo img { width: 100%; height: auto; display: block; }
.logo span { display: block; font-size: 11px; letter-spacing: 2px; opacity: .75; }
.nav-button, .button { display: inline-block; padding: 13px 22px; border-radius: 5px; text-decoration: none; font-weight: 800; }
.nav-button { background: white; color: #17202a; }
.hero-content { max-width: 1180px; margin: 100px auto 0; padding: 0 24px; }
.eyebrow { font-size: 12px; font-weight: 900; letter-spacing: 2px; color: #c5a15a; }
h1 { max-width: 800px; font-size: clamp(42px, 7vw, 76px); line-height: 1.02; margin: 15px 0 24px; }
.hero-content > p:not(.eyebrow) { max-width: 700px; font-size: 19px; color: #dbe2e6; }
.buttons { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.primary { background: #c5a15a; color: #111; border: 2px solid #c5a15a; }
.secondary { color: white; border: 2px solid white; }
.intro, .section { max-width: 1180px; margin: auto; padding: 90px 24px; }
.intro { text-align: center; max-width: 850px; }
h2 { font-size: clamp(32px, 5vw, 48px); line-height: 1.1; margin: 8px 0 18px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 35px; }
.cards article { background: white; padding: 30px 24px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,.06); }
.icon { color: #c5a15a; font-weight: 900; }
.cards h3 { font-size: 22px; margin-bottom: 8px; }
.cta { background: #17202a; color: white; padding: 65px max(24px, calc((100% - 1132px)/2)); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 30px; }
.contact-box { background: white; padding: 30px; border-radius: 8px; }
form { display: grid; gap: 12px; }
input, textarea { width: 100%; border: 1px solid #ccd2d5; border-radius: 5px; padding: 15px; font: inherit; background: white; }
textarea { resize: vertical; }
form button { cursor: pointer; font: inherit; }
.contact-note { color: #68737a; }
footer { padding: 30px 24px; background: #101820; color: white; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
@media (max-width: 800px) {
  .hero { min-height: 650px; }
  .nav-button { display: none; }
  .hero-content { margin-top: 75px; }
  .cards, .contact-grid { grid-template-columns: 1fr 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .cards, .contact-grid { grid-template-columns: 1fr; }
  h1 { font-size: 43px; }
}
