:root {
  --navy: #081526;
  --navy-soft: #0d1d32;
  --navy-card: #14243a;
  --cream: #f5f2ed;
  --white: #ffffff;
  --ink: #122035;
  --muted: #5d6877;
  --gold: #c9a173;
  --gold-soft: #ddbd96;
  --line: #d8d5cf;
  --container: 1220px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(7, 20, 35, .94);
  border-bottom: 1px solid rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand, .contact-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: .13em;
}
.brand img, .contact-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 2px;
}
.main-nav { display: flex; align-items: center; gap: 48px; }
.main-nav a {
  position: relative;
  color: rgba(255,255,255,.88);
  font-size: .79rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .2s ease;
}
.main-nav a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 680px;
  padding: 170px 0 110px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7,20,35,.98) 0%, rgba(7,20,35,.94) 45%, rgba(7,20,35,.55) 100%),
    radial-gradient(circle at 78% 48%, rgba(197,219,236,.18), transparent 22%),
    linear-gradient(135deg, #06101d, #10243a);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-grid-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 75%;
  opacity: .26;
  background:
    linear-gradient(135deg, transparent 50%, rgba(255,255,255,.12) 50.5%, transparent 51%),
    linear-gradient(45deg, transparent 58%, rgba(201,161,115,.17) 58.5%, transparent 59%);
}
.hero-monogram {
  position: absolute;
  right: 8%;
  top: 125px;
  font-family: "Manrope", sans-serif;
  font-size: 15rem;
  font-weight: 600;
  letter-spacing: -.12em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.065);
  user-select: none;
}
.hero-content { position: relative; z-index: 2; max-width: 650px; }
.eyebrow, .section-label {
  color: var(--gold);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero h1 {
  margin-top: 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.1;
}
.hero-subhead {
  max-width: 570px;
  margin-top: 22px;
  color: var(--gold-soft);
  font-size: 1.25rem;
}
.gold-rule {
  width: 42px;
  height: 2px;
  margin: 24px 0;
  background: var(--gold);
}
.hero-copy {
  max-width: 560px;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
}
.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 15px 22px;
  border: 1px solid var(--gold);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.outline-button span { color: var(--gold); font-size: 1.2rem; }

.section { padding: 82px 0; }
.light-section { background: var(--cream); }
.dark-section { color: white; background: var(--navy); }
.section-intro h2, .contact-copy h2 {
  margin-top: 15px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.08;
}
.section-intro > p:last-child {
  margin-top: 20px;
  max-width: 420px;
  color: var(--muted);
}
.about-layout {
  display: grid;
  grid-template-columns: .78fr 1.55fr;
  gap: 70px;
  align-items: center;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pillar {
  min-height: 230px;
  padding: 8px 26px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.pillar:first-child { border-left: 0; }
.line-icon {
  height: 58px;
  color: var(--ink);
  font-size: 2.35rem;
}
.pillar h3 {
  margin: 13px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}
.pillar p { color: var(--muted); font-size: .88rem; }

.gold { color: var(--gold); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 24px;
}
.service {
  padding: 12px 28px 6px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.18);
}
.service:first-child { border-left: 0; }
.service-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-soft);
  background: var(--navy-card);
  font-size: 1.65rem;
}
.service h3 {
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-family: "Manrope", sans-serif;
  font-size: .98rem;
}
.service p { color: rgba(255,255,255,.68); font-size: .84rem; }

.why-layout {
  display: grid;
  grid-template-columns: .72fr 1.6fr;
  gap: 60px;
  align-items: center;
}
.why-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.why-point {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
}
.why-point span { color: var(--gold); font-size: 1.2rem; }
.why-point p { color: var(--muted); font-size: .88rem; }

.contact-section {
  padding-bottom: 28px;
  color: white;
  background: linear-gradient(135deg, #071525, #0c1d31);
}
.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.6fr .75fr;
  gap: 46px;
  align-items: start;
}
.contact-copy p {
  max-width: 360px;
  margin-top: 18px;
  color: rgba(255,255,255,.7);
}
.contact-brand { margin-top: 55px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  color: white;
  background: #16263c;
}
.contact-form input { padding: 15px; }
.contact-form textarea { margin-top: 14px; padding: 15px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.68); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-details {
  padding-top: 13px;
  color: var(--gold-soft);
  font-size: .9rem;
}
.contact-details a, .contact-details p { display: block; margin-bottom: 20px; }
.contact-details span { color: rgba(255,255,255,.6); }
.compact { margin-top: 2px; }
.footer-line {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.52);
  font-size: .82rem;
}
.footer-line a {
  margin-left: auto;
  color: var(--gold-soft);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .about-layout, .why-layout, .contact-layout { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .service:nth-child(3), .service:nth-child(5) { border-left: 0; }
  .why-points { grid-template-columns: repeat(2, 1fr); }
  .contact-brand { margin-top: 28px; }
}
@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: #071423;
    border: 1px solid rgba(255,255,255,.1);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 8px; }
  .menu-toggle { display: block; }
  .hero { min-height: 650px; padding-top: 145px; }
  .hero-monogram { right: -10%; font-size: 10rem; }
  .about-pillars, .services-grid, .why-points, .form-row { grid-template-columns: 1fr; }
  .pillar, .service { border-left: 0; border-top: 1px solid var(--line); padding: 28px 10px; }
  .service { border-color: rgba(255,255,255,.16); }
  .footer-line { justify-content: flex-start; flex-wrap: wrap; }
  .footer-line a { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
