:root {
  --bg: #08111f;
  --bg-2: #0d1727;
  --ink: #0d1726;
  --muted: #687386;
  --paper: #f5f1e8;
  --paper-2: #fffdf8;
  --gold: #d7b16a;
  --gold-2: #f0d79d;
  --line: rgba(13, 23, 38, .12);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(6, 16, 30, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .035;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 40;
  transition: .3s ease;
}

.site-header.scrolled {
  background: rgba(8, 17, 31, .94);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(215,177,106,.7);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

.brand-name { letter-spacing: .02em; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.main-nav a { transition: .2s; }
.main-nav a:hover { color: var(--white); }

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(215,177,106,.55);
  color: var(--gold-2) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  min-height: 100vh;
  padding: 150px 0 80px;
  background:
    radial-gradient(circle at 75% 25%, rgba(215,177,106,.15), transparent 28%),
    linear-gradient(135deg, #07101d 0%, #0a1423 55%, #101b2a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  right: -260px;
  top: -100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 80px;
  align-items: center;
}

.eyebrow, .section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero h1, .section h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.05;
  margin: 0;
}

.hero h1 {
  font-size: clamp(52px, 7vw, 92px);
  max-width: 850px;
  letter-spacing: -.04em;
}

.hero h1 span { color: var(--gold-2); }

.hero-copy > p {
  margin: 28px 0 34px;
  max-width: 690px;
  font-size: 18px;
  color: rgba(255,255,255,.72);
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: #111827;
  box-shadow: 0 14px 30px rgba(215,177,106,.18);
}

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

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { color: var(--gold-2); font-size: 14px; }
.hero-proof span { color: rgba(255,255,255,.5); font-size: 12px; margin-top: 4px; }

.hero-visual { position: relative; }

.portrait-card {
  width: min(440px, 92%);
  margin: 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
  transform: rotate(1deg);
}

.portrait-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(215,177,106,.25);
  background: #0e1a2a;
}

.portrait-caption {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 16px 4px 2px;
}
.portrait-caption span { font-weight: 800; }
.portrait-caption small { color: rgba(255,255,255,.5); }

.floating-card {
  position: absolute;
  background: rgba(8,17,31,.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  font-size: 13px;
}

.floating-card strong, .floating-card small { display: block; }
.floating-card small { color: rgba(255,255,255,.5); margin-top: 3px; }
.card-one { left: -5px; bottom: 100px; }
.card-two { right: -10px; top: 90px; color: var(--gold-2); }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); display: inline-block; margin-right: 6px;
}

.hero-scroll {
  position: absolute;
  right: 28px;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: rotate(90deg);
  transform-origin: right bottom;
  color: rgba(255,255,255,.35);
  font-size: 10px;
  letter-spacing: .28em;
}
.scroll-line { width: 60px; height: 1px; background: rgba(255,255,255,.25); }

.section { padding: 110px 0; }
.section-light { background: var(--paper); }

.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
}

.section h2 {
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -.035em;
}

.section-intro h2 { max-width: 560px; }

.rich-text { max-width: 660px; }
.rich-text p { color: #566174; margin: 0 0 20px; }
.rich-text .lead { font-size: 20px; color: var(--ink); }

.signature {
  margin-top: 35px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 34px;
  color: #8a6b34;
}

.dark-panel {
  background: var(--bg);
  color: var(--white);
}

.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading p { color: var(--muted); font-size: 17px; margin-top: 20px; }
.dark-panel .section-heading p { color: rgba(255,255,255,.58); }
.gold { color: var(--gold); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar-card {
  padding: 36px;
  min-height: 300px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
}

.pillar-number { color: var(--gold); font-weight: 800; letter-spacing: .12em; }
.pillar-card h3 { font-family: "Playfair Display", serif; font-size: 30px; margin: 40px 0 14px; }
.pillar-card p { color: rgba(255,255,255,.58); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  min-height: 310px;
  padding: 32px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: .25s ease;
}

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

.project-card.featured {
  background: var(--bg);
  color: var(--white);
  border-color: transparent;
}

.project-tag {
  color: #9a7537;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.project-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 29px;
  line-height: 1.12;
  margin: 38px 0 16px;
}

.project-card p { color: var(--muted); margin: 0; }
.project-card.featured p { color: rgba(255,255,255,.6); }
.project-link { margin-top: auto; color: var(--gold); font-size: 13px; font-weight: 800; }

.impact-strip {
  background: #d7b16a;
  color: #142033;
}

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

.impact-quote > span {
  font-family: "Playfair Display", serif;
  font-size: 100px;
  line-height: .6;
  opacity: .28;
}

blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin: 10px 0 22px;
}

.impact-points > div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(20,32,51,.2);
}
.impact-points strong { font-size: 17px; }
.impact-points p { margin: 5px 0 0; color: rgba(20,32,51,.7); }

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

.service {
  padding: 28px 24px;
  border-top: 2px solid #c69c54;
  background: rgba(255,255,255,.45);
}

.service-icon { font-size: 12px; letter-spacing: .12em; color: #9a7537; font-weight: 800; }
.service h3 { font-family: "Playfair Display", serif; font-size: 25px; line-height: 1.15; }
.service p { color: var(--muted); font-size: 14px; }

.media-section {
  background:
    radial-gradient(circle at 80% 50%, rgba(215,177,106,.13), transparent 35%),
    var(--bg-2);
  color: var(--white);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}

.media-copy p {
  max-width: 650px;
  color: rgba(255,255,255,.6);
  margin: 22px 0 30px;
}

.media-box {
  border: 1px solid rgba(255,255,255,.12);
  padding: 36px;
  background: rgba(255,255,255,.04);
}

.media-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.media-box ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.media-box li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.75);
}

.contact-section { background: var(--paper-2); }

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}

.contact-copy p { color: var(--muted); max-width: 520px; }

.contact-details { margin-top: 38px; }
.contact-details a, .contact-details > div {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-details span, .contact-details strong { display: block; }
.contact-details span { font-size: 11px; color: #8b94a4; letter-spacing: .14em; text-transform: uppercase; }
.contact-details strong { margin-top: 4px; }

.contact-form {
  background: #fff;
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid #d9dee6;
  background: #fbfbfb;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #ad8440;
}

.contact-form small { display: block; margin-top: 12px; color: #8a94a4; }

.site-footer {
  background: #06101c;
  color: rgba(255,255,255,.58);
  padding: 52px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 50px;
  align-items: end;
}

.footer-brand { margin-bottom: 14px; }
.footer-links { display: grid; gap: 8px; font-size: 13px; }
.footer-copy { display: grid; gap: 5px; text-align: right; font-size: 12px; }

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

@media (max-width: 980px) {
  .hero-grid, .two-col, .impact-grid, .media-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .hero { padding-top: 130px; }
  .hero-visual { max-width: 600px; margin: 0 auto; width: 100%; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .pillar-card { min-height: auto; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 78px 0; }

  .menu-toggle { display: block; z-index: 5; }
  .main-nav {
    position: fixed;
    inset: 0 0 auto auto;
    width: min(320px, 86vw);
    height: 100vh;
    background: #08111f;
    padding: 110px 28px 30px;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(105%);
    transition: .3s ease;
  }
  .main-nav.open { transform: translateX(0); }

  .hero h1 { font-size: clamp(45px, 14vw, 72px); }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }

  .projects-grid, .services-grid { grid-template-columns: 1fr; }
  .project-card { min-height: auto; }

  .floating-card { position: static; margin: 14px auto 0; width: min(440px, 92%); }
  .portrait-card { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-copy { text-align: left; }

  .contact-form { padding: 24px; }
}
