:root {
  --black: #050608;
  --navy: #071524;
  --navy-2: #0b1d33;
  --gold: #d4af37;
  --gold-light: #f2d27a;
  --cream: #f7f3ea;
  --muted: #aeb8c4;
  --white: #ffffff;
  --line: rgba(212, 175, 55, .28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Montserrat, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
}

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

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

.site {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 4%, rgba(212, 175, 55, .11), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, .07), transparent 22%),
    linear-gradient(180deg, #050608 0%, #071524 48%, #050608 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(5, 6, 8, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 78px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

.brand-text strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .18em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.brand-text small {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: .38em;
  color: var(--cream);
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.desktop-nav a:hover { color: var(--gold-light); }

.header-cta {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 13px 18px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/hero-luxury-mobility-real-estate.png");
  background-size: cover;
  background-position: center;
  opacity: .76;
  filter: saturate(.92) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,6,8,.96), rgba(5,6,8,.50), rgba(5,6,8,.94)),
    linear-gradient(180deg, rgba(5,6,8,.26), rgba(5,6,8,.88));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1020px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
  text-align: center;
}

.hero-logo {
  width: min(480px, 90vw);
  margin: 0 auto 30px;
  filter: drop-shadow(0 28px 46px rgba(0,0,0,.62));
}

.eyebrow, .section-kicker {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}

h1 {
  margin-top: 18px;
  font-size: clamp(52px, 7vw, 94px);
  line-height: .96;
  text-shadow: 0 24px 50px rgba(0,0,0,.55);
}

.hero-copy {
  max-width: 740px;
  margin: 24px auto 0;
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #080806;
}

.button-secondary {
  color: var(--gold-light);
  background: rgba(5,6,8,.46);
}

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

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}

.split h2, .section-head h2, .approach-copy h2, .contact-copy h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
  margin-top: 12px;
}

.body-copy p, .approach-copy p, .contact-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}

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

.category-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  filter: saturate(.92) contrast(1.05);
  transition: transform .45s ease;
}

.category-card:hover img { transform: scale(1.045); }

.card-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px;
  background: linear-gradient(180deg, transparent, rgba(5,6,8,.94) 26%);
}

.card-content span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
}

.card-content h3 {
  margin: 10px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.card-content p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.48;
  font-size: 14px;
}

.approach-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.approach-image img {
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
}

.section-eagle {
  width: 112px;
  margin-bottom: 18px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.35));
}

.principles {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.principles div {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.principles h3 {
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.principles p { margin: 0; }

.contact-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-eagle {
  width: 156px;
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.35));
}

.domain-note {
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}

form {
  padding: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(212,175,55,.06), transparent 42%),
    rgba(255,255,255,.045);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

label {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
}

input, select, textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(5,6,8,.72);
  color: var(--white);
  padding: 15px 14px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus { border-color: var(--gold); }

.form-button { width: 100%; }

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,.62);
}

.footer-brand img {
  width: 84px;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.35));
}

.footer-brand span {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold-light);
  font-size: 22px;
}

.site-footer p {
  margin: 0;
  text-align: right;
  font-size: 13px;
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .split, .approach-section, .contact-section { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { display: block; }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 28px);
    height: 74px;
  }

  .brand-mark { width: 60px; }
  .brand-text strong { font-size: 17px; }
  .brand-text small { font-size: 8px; letter-spacing: .28em; }
  .header-cta { display: none; }

  .hero { min-height: 720px; }
  .hero-content { width: calc(100% - 28px); padding: 80px 0; }
  .hero-logo { width: min(360px, 92vw); }
  h1 { font-size: 46px; }

  .section { width: calc(100% - 28px); padding: 64px 0; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card, .category-card img { min-height: 380px; }

  form { padding: 24px; }

  .site-footer {
    width: calc(100% - 28px);
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer p { text-align: left; }
}
