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

    :root {
      --black:   #101210;
      --ivory:   #fbfaf7;
      --night:   #0c2620;
      --emerald: #16382c;
      --emerald-deep: #0e271f;
      --gold:    #c5a14a;
      --gold-soft: #d9b86a;
      --amber:   #e8b05c;
      --line:    rgba(22, 56, 44, 0.14);
      --muted:   #5c6058;
      --serif:   'Cormorant Garamond', Georgia, serif;
      --sans:    'Montserrat', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--ivory);
      color: var(--black);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
    }

    .gold-text {
      background: linear-gradient(100deg, #f3d98e 5%, #c5a14a 40%, #eccf85 65%, #a8853a 95%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    /* ───────── NAV ───────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; justify-content: space-between; align-items: center;
      padding: 0.9rem 4.5rem;
      background: rgba(12,38,32,0.78);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(197,161,74,0.22);
    }
    .nav-brand { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
    .nav-brand img { height: 38px; width: auto; display: block; }
    .nav-brand span {
      font-family: var(--serif);
      font-size: 1.25rem; font-weight: 500;
      letter-spacing: 0.05em;
      color: var(--ivory);
    }
    .nav-contact {
      font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--gold-soft); text-decoration: none;
      border: 1px solid rgba(197,161,74,0.45);
      padding: 0.6rem 1.4rem;
      transition: background 0.3s, color 0.3s;
    }
    .nav-contact:hover { background: var(--gold); color: var(--night); }

    /* ───────── HERO ───────── */
    #hero {
      min-height: 100vh;
      background:
        radial-gradient(1.5px 1.5px at 12% 18%, rgba(255,227,161,0.5), transparent 100%),
        radial-gradient(1px 1px at 28% 9%,  rgba(255,227,161,0.4), transparent 100%),
        radial-gradient(1.5px 1.5px at 44% 22%, rgba(255,227,161,0.35), transparent 100%),
        radial-gradient(1px 1px at 63% 12%, rgba(255,227,161,0.45), transparent 100%),
        radial-gradient(1.5px 1.5px at 78% 20%, rgba(255,227,161,0.4), transparent 100%),
        radial-gradient(1px 1px at 90% 8%,  rgba(255,227,161,0.35), transparent 100%),
        radial-gradient(1px 1px at 52% 6%,  rgba(255,227,161,0.3), transparent 100%),
        var(--night);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 8.5rem 2rem 22rem;
      position: relative;
      overflow: hidden;
    }
    .hero-skyline {
      position: absolute; bottom: 0; left: 0; right: 0;
      width: 100%; height: clamp(160px, 24vw, 300px);
      display: block;
      pointer-events: none;
    }
    .hero-skyline img { width: 100%; height: 100%; display: block; }
    .hero-logo {
      width: min(400px, 74vw);
      margin-bottom: 2.8rem;
      position: relative; z-index: 2;
      filter: drop-shadow(0 8px 40px rgba(0,0,0,0.45));
    }
    .hero-rule {
      width: 56px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 0 auto 2.4rem;
      position: relative; z-index: 2;
    }
    .hero-headline {
      font-family: var(--serif);
      font-weight: 500;
      font-size: clamp(2.4rem, 4.4vw, 3.9rem);
      line-height: 1.16;
      color: var(--ivory);
      max-width: 21ch;
      position: relative; z-index: 2;
      text-shadow: 0 2px 30px rgba(0,0,0,0.4);
    }
    .hero-headline em { font-style: italic; }
    .hero-sub {
      margin: 1.8rem auto 3rem;
      font-size: 0.98rem;
      color: rgba(251,250,247,0.68);
      max-width: 52ch; line-height: 1.9;
      position: relative; z-index: 2;
    }
    .btn {
      display: inline-block;
      padding: 1rem 2.8rem;
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.24em; text-transform: uppercase;
      text-decoration: none;
      color: var(--night);
      background: linear-gradient(100deg, #e9cd84, var(--gold) 50%, #b08a3e);
      border: none;
      box-shadow: 0 6px 28px rgba(197,161,74,0.35);
      transition: transform 0.25s, box-shadow 0.25s;
      position: relative; z-index: 2;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(197,161,74,0.5); }

    /* ───────── SHARED ───────── */
    .eyebrow {
      font-size: 0.64rem; font-weight: 600; letter-spacing: 0.28em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.2rem;
      display: flex; align-items: center; gap: 1rem;
    }
    .eyebrow::before {
      content: ''; width: 30px; height: 1px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }
    .display {
      font-family: var(--serif);
      font-weight: 500;
      font-size: clamp(1.9rem, 2.7vw, 2.8rem);
      line-height: 1.2;
      color: var(--emerald);
    }
    section { padding: 8rem 4.5rem; }

    /* ───────── ABOUT ───────── */
    #about {
      display: grid; grid-template-columns: 4fr 7fr; gap: 6rem;
      max-width: 1200px; margin: 0 auto;
      align-items: start;
      position: relative;
    }
    #about::after {
      content: '';
      position: absolute; right: -10rem; top: 50%;
      transform: translateY(-50%);
      width: 460px; height: 460px;
      background: url('assets/logo-mark.png') no-repeat center / contain;
      opacity: 0.05;
      pointer-events: none;
    }
    .about-left { position: sticky; top: 110px; }
    .about-mark { width: 60px; margin-bottom: 1.8rem; }
    .about-body { position: relative; z-index: 1; }
    .about-body p {
      font-size: 0.97rem; color: var(--muted);
      margin-bottom: 1.4rem; line-height: 1.95;
    }
    .about-body p:first-of-type {
      font-family: var(--serif);
      font-size: 1.4rem; line-height: 1.6;
      color: var(--black); font-weight: 500;
    }
    .about-body p:first-of-type::first-letter {
      font-size: 3.4rem;
      float: left;
      line-height: 0.85;
      padding: 0.25rem 0.6rem 0 0;
      color: var(--gold);
      font-style: normal;
    }
    .more-bio {
      display: inline-block;
      margin-top: 0.6rem;
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--emerald); text-decoration: none;
      border-bottom: 1px solid var(--gold);
      padding-bottom: 3px;
      transition: color 0.25s, letter-spacing 0.25s;
    }
    .more-bio:hover { color: var(--gold); letter-spacing: 0.28em; }

    /* ───────── SERVICES ───────── */
    #services {
      background:
        radial-gradient(ellipse 60% 50% at 85% 100%, rgba(232,176,92,0.13), transparent),
        radial-gradient(ellipse 50% 40% at 10% 0%, rgba(197,161,74,0.07), transparent),
        linear-gradient(160deg, var(--emerald) 0%, var(--night) 100%);
      position: relative;
    }
    #services::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--amber), var(--gold), transparent);
      opacity: 0.7;
    }
    .services-inner { max-width: 1200px; margin: 0 auto; }
    #services .display { color: var(--ivory); }
    .services-list { margin-top: 3.5rem; max-width: 780px; }
    .svc {
      display: flex; align-items: baseline; gap: 2rem;
      padding: 1.8rem 0.5rem;
      border-bottom: 1px solid rgba(251,250,247,0.12);
      transition: padding-left 0.3s, background 0.3s;
    }
    .svc:first-child { border-top: 1px solid rgba(251,250,247,0.12); }
    .svc:hover { padding-left: 1.4rem; background: rgba(197,161,74,0.05); }
    .svc-index {
      font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em;
      color: var(--amber); min-width: 2.2rem;
    }
    .svc-name {
      font-family: var(--serif);
      font-size: clamp(1.3rem, 1.9vw, 1.7rem);
      font-weight: 500;
      color: var(--ivory);
      transition: color 0.25s;
    }
    .svc:hover .svc-name { color: var(--gold-soft); }

    /* ───────── WHO WE SERVE ───────── */
    #clients { background: var(--ivory); position: relative; overflow: hidden; }
    #clients::after {
      content: '';
      position: absolute; left: -6rem; bottom: -6rem;
      width: 380px; height: 380px;
      background: url('assets/logo-mark.png') no-repeat center / contain;
      opacity: 0.045;
      pointer-events: none;
    }
    .clients-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
    .clients-list {
      margin-top: 3.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 5rem;
      max-width: 1000px;
    }
    .client {
      font-family: var(--serif);
      font-size: clamp(1.3rem, 1.9vw, 1.65rem);
      font-weight: 500;
      color: var(--emerald);
      padding: 1.8rem 0;
      border-bottom: 1px solid var(--line);
      display: flex; align-items: baseline; gap: 1.4rem;
      transition: color 0.25s;
    }
    .client:hover { color: var(--gold); }
    .client::before {
      content: '';
      width: 24px; height: 1px;
      background: var(--gold);
      flex-shrink: 0;
      transform: translateY(-7px);
      transition: width 0.3s;
    }
    .client:hover::before { width: 38px; }

    /* ───────── CONTACT ───────── */
    #contact {
      background: var(--night);
      text-align: center;
      padding: 9rem 2rem 0;
      position: relative;
      overflow: hidden;
    }
    .contact-content { position: relative; z-index: 2; padding-bottom: 16rem; }
    #contact .eyebrow { justify-content: center; }
    #contact .eyebrow::after {
      content: ''; width: 30px; height: 1px;
      background: linear-gradient(270deg, var(--gold), transparent);
    }
    .contact-headline {
      font-family: var(--serif);
      font-weight: 500;
      font-size: clamp(1.9rem, 3vw, 2.9rem);
      line-height: 1.3;
      color: var(--ivory);
      max-width: 26ch;
      margin: 0 auto 1.4rem;
    }
    .contact-sub {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(1.15rem, 1.6vw, 1.45rem);
      max-width: 42ch;
      margin: 0 auto 3rem;
      line-height: 1.6;
    }
    .contact-details {
      margin-top: 2.4rem;
      display: flex; flex-direction: column; gap: 0.5rem;
    }
    .contact-details a {
      font-size: 0.8rem; letter-spacing: 0.06em;
      color: rgba(251,250,247,0.55);
      text-decoration: none;
      transition: color 0.25s;
    }
    .contact-details a:hover { color: var(--gold-soft); }
    .contact-skyline {
      position: absolute; bottom: 0; left: 0; right: 0;
      width: 100%; height: clamp(130px, 18vw, 240px);
      pointer-events: none;
    }
    .contact-skyline img { width: 100%; height: 100%; display: block; }

    /* ───────── FOOTER ───────── */
    footer {
      background: #081511;
      padding: 2rem 4.5rem;
      display: flex; justify-content: space-between; align-items: center;
    }
    footer span {
      font-size: 0.68rem; letter-spacing: 0.08em;
      color: rgba(251,250,247,0.35);
    }
    footer img { height: 28px; opacity: 0.65; }

    /* ───────── RESPONSIVE ───────── */
    @media (max-width: 900px) {
      nav { padding: 0.8rem 1.4rem; }
      .nav-brand span { font-size: 1rem; }
      .nav-brand img { height: 30px; }
      .nav-contact { padding: 0.5rem 1rem; }
      #hero { padding: 7rem 1.5rem 15rem; }
      section { padding: 5rem 1.6rem; }
      #about { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-left { position: static; }
      #about::after { display: none; }
      .clients-list { grid-template-columns: 1fr; gap: 0; }
      .contact-content { padding-bottom: 10rem; }
      footer { flex-direction: column; gap: 0.8rem; padding: 1.8rem 1.6rem; text-align: center; }
    }
    @media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

.hero-skyline img, .contact-skyline img { width: 100%; height: 100%; display: block; object-fit: cover; }

