  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #494949;
    --navy-light: #1a3360;
    --gold: #6cbafd;
    --gold-light: #96caf8;
    --cream: #f8f6f1;
    --mid: #6b7280;
    --border: #e5e0d5;
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; background: var(--cream); scroll-padding-top: 130px; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background: var(--white);
    max-width: 1440px;
    margin: 0 auto;
  }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem max(5%, calc((100% - 1440px) / 2 + 72px));
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.01em;
  }

  .logo img {
    height: 80px;
    width: auto;
    display: block;
  }

  .logo span { color: var(--gold); }

  .nav-links { display: flex; gap: 2rem; list-style: none; }

  .nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--navy); }

  .nav-cta {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--navy);
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s;
  }

  .nav-cta:hover { background: var(--navy-light); }

  #hero {
    min-height: 75vh;
    display: flex;
    align-items: flex-start;
    padding: 10rem 5% 4rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .hero-bg-line {
    position: absolute;
    top: 0; right: 10%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--border) 20%, var(--border) 80%, transparent);
  }

  .hero-bg-circle {
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
    width: 520px; height: 520px;
    border-radius: 50%;
    border: 1px solid var(--border);
  }

  .hero-bg-circle2 {
    position: absolute;
    right: -4%;
    top: 50%;
    transform: translateY(-50%);
    width: 360px; height: 360px;
    border-radius: 50%;
    border: 1px solid var(--border);
  }

  .hero-content { max-width: 680px; position: relative; z-index: 2; }

  .hero-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .hero-label::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--gold);
  }

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin-bottom: 1.75rem;
  }

  h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--mid);
    max-width: 520px;
    margin-bottom: 2.5rem;
  }

  .hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

  .btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--navy);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s;
  }

  .btn-primary:hover { background: var(--navy-light); }

  .btn-secondary {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--navy);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

  .hero-stats {
    display: flex; gap: 3rem; margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
  }

  .stat-num span { color: var(--gold); }

  .stat-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--mid);
    letter-spacing: 0.04em;
    margin-top: 0.35rem;
  }

  #services {
    padding: 4rem 5%;
    background: var(--white);
  }

  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--gold);
  }

  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
  }

  .section-intro {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--mid);
    max-width: 340px;
    text-align: right;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    transition: background 0.25s;
  }

  .service-card:hover { background: var(--cream); }

  .service-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .service-icon {
    width: 36px; height: 36px;
    margin-bottom: 1.25rem;
    color: var(--navy);
  }

  h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.85rem;
    line-height: 1.3;
  }

  .service-desc {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--mid);
  }

  #about {
    padding: 4rem 5%;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .about-label::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--gold);
  }

  .about-content h2 { color: var(--white); margin-bottom: 1.75rem; }

  .about-content p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.25rem;
  }

  .about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .value-item {
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .value-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    font-style: italic;
  }

  .value-desc {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
  }

  .about-box-main {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem;
  }

  .about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .about-quote::before {
    content: '\201C';
    font-size: 1.75rem;
    color: var(--gold);
    line-height: 0;
    margin-right: 0.1em;
    font-style: normal;
  }

  .about-quote::after {
    content: '\201D';
    font-size: 1.75rem;
    color: var(--gold);
    line-height: 0;
    margin-left: 0.1em;
    font-style: normal;
  }

  .about-quote-mark {
    display: none;
  }

  .expertise-list { list-style: none; }

  .expertise-list li {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .expertise-list li::before {
    content: '';
    display: block;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  #contact {
    padding: 4rem 5%;
    background: var(--cream);
  }

  .contact-inner { max-width: 820px; margin: 0 auto; }

  .contact-header { text-align: center; margin-bottom: 3.5rem; }

  .contact-header h2 { margin-top: 0.75rem; }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-form { display: flex; flex-direction: column; gap: 1rem; }

  .form-field { display: flex; flex-direction: column; gap: 0.4rem; }

  label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mid);
  }

  input, textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  input:focus, textarea:focus { border-color: var(--navy); }

  textarea { resize: vertical; min-height: 120px; }

  .form-submit {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--navy);
    border: none;
    padding: 0.9rem 2rem;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
    align-self: flex-start;
  }

  .form-submit:hover { background: var(--navy-light); }

  .contact-info { padding-top: 0.5rem; }

  .contact-info-item { margin-bottom: 2rem; }

  .info-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
  }

  .info-value {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1.6;
  }

  .contact-divider {
    width: 40px; height: 1px;
    background: var(--border);
    margin: 1.5rem 0;
  }

  footer {
    padding: 1.75rem max(5%, calc((100vw - 1440px) / 2 + 72px));
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    flex-wrap: wrap;
  }

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
  }

  .footer-logo span { color: var(--gold); }

  .footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    font-weight: 300;
  }

  @media (max-width: 768px) {
    nav {
      flex-wrap: wrap;
      padding: 0.75rem 5%;
      gap: 0.5rem;
    }
    .logo img { height: 50px; }
    .nav-cta { display: none; }
    .nav-links {
      display: flex;
      width: 100%;
      gap: 1.25rem;
      padding: 0.5rem 0 0.75rem;
      border-top: 1px solid var(--border);
    }
    .nav-links a { font-size: 0.78rem; }
    #about { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.5rem; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .section-intro { text-align: left; max-width: 100%; }
  }
