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

  :root {
    --navy: #0B1F3A;
    --charcoal: #1F2933;
    --gold: #C8A96A;
    --gold-light: #d9bc87;
    --bg: #F9FAFB;
    --text: #111827;
    --text-muted: #4B5563;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'Manrope', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(11, 31, 58, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 169, 106, 0.15);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #fff;
  }
  
  .logo img {
    height: 40px;
    width: auto;
    display: block;
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 40px;
    width: 100px; /* Slight adjustment for better visual weight */
  }
  
  .logo-title {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: var(--serif);
    font-size: 1.0rem; /* Decreased from 1.1rem */
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
  }
  
  .logo-title span {
    color: var(--gold);
  }
  
  .logo-sub {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: var(--sans);
    font-size: 0.6rem; /* Increased from 0.5rem */
    font-weight: 800;
    text-transform: uppercase;
    color: #fff; /* Changed from var(--gold) to white */
    line-height: 1;
    margin-top: 0.1rem;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.825rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
  }

  .mobile-menu {
    display: none;
    background: var(--navy);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(200,169,106,0.2);
  }

  .mobile-menu a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-menu a:last-child { border-bottom: none; }

  /* ─── HERO ─── */
  #hero {
    background: var(--navy);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 68px;
  }

  .hero-bg-line {
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200,169,106,0.04) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,169,106,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,169,106,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
  }

  .hero-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(200,169,106,0.35);
    border-radius: 2px;
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 300;
  }

  .btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.2s;
    cursor: pointer;
  }

  .btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: 0.9rem 2rem;
  }

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

  .btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.8);
    padding: 0.9rem 2rem;
    border: 1px solid rgba(255,255,255,0.25);
    margin-left: 1rem;
  }

  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,169,106,0.2);
    border-radius: 4px;
    padding: 1.75rem;
    backdrop-filter: blur(8px);
  }

  .hero-stat-card + .hero-stat-card {
    margin-top: 1rem;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  .stat-value {
    font-family: var(--serif);
    font-size: 2rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .stat-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
  }

  .hero-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0.75rem 0;
  }

  /* ─── SECTION COMMONS ─── */
  section { padding: 6rem 2rem; }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .section-title-light {
    color: #fff;
  }

  /* ─── ABOUT ─── */
  #about { background: var(--bg); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
  }

    .about-portrait {
    position: relative;
  }

  .portrait-frame {
    background: var(--navy);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }

  .portrait-frame::before {
    content: '';
    position: absolute;
    top: 14px; left: 14px; right: -14px; bottom: -14px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
  }

  .portrait-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
  }

  .portrait-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
    transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s ease;
  }

  .portrait-frame.reveal-active .portrait-img-wrap img {
    transform: scale(1.04);
    filter: grayscale(0%) contrast(1.05) brightness(1.02);
  }

  /* Gold tint overlay — visible at rest, fades out on hover */
  .portrait-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      160deg,
      rgba(200,169,106,0.32) 0%,
      rgba(180,145,80,0.26) 50%,
      rgba(11,31,58,0.65) 100%
    );
    pointer-events: none;
    transition: opacity 0.6s ease;
    opacity: 1;
    z-index: 1;
  }

  .portrait-frame.reveal-active .portrait-img-overlay {
    opacity: 0;
  }

  .portrait-gold-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
    z-index: 2;
  }

  .portrait-frame.reveal-active .portrait-gold-bar {
    transform: scaleX(1);
  }

  .portrait-meta {
    background: var(--navy);
    padding: 1.5rem 2rem 2rem;
    border-radius: 0 0 4px 4px;
  }

  .portrait-name {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
  }

  .portrait-frame.reveal-active .portrait-name { color: var(--gold-light); }

  .portrait-role {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
  }

  .portrait-divider {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin: 1.1rem 0;
    transition: width 0.4s ease;
  }

  .portrait-frame.reveal-active .portrait-divider { width: 56px; }

  .portrait-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .industry-tag {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.7rem;
    border: 1px solid rgba(200,169,106,0.25);
    color: rgba(255,255,255,0.5);
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s;
  }

  .portrait-frame.reveal-active .industry-tag {
    border-color: rgba(200,169,106,0.5);
    color: rgba(255,255,255,0.75);
  }

  .about-content h2 { margin-bottom: 0.75rem; }

  .about-content p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 0.975rem;
    margin-bottom: 1.25rem;
    font-weight: 400;
  }

  /* ─── VISION MISSION ─── */
  #vision {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
  }

  #vision::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,169,106,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 3.5rem;
    border: 1px solid rgba(200,169,106,0.15);
    border-radius: 4px;
    overflow: hidden;
  }

  .vm-card {
    padding: 3rem;
    background: rgba(255,255,255,0.025);
    position: relative;
  }

  .vm-card:first-child {
    border-right: 1px solid rgba(200,169,106,0.15);
  }

  .vm-number {
    font-family: var(--serif);
    font-size: 4rem;
    color: rgba(200,169,106,0.12);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .vm-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
  }

  .vm-gold-line {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.25rem;
  }

  .vm-card p {
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    font-size: 0.95rem;
    font-weight: 300;
  }

  /* ─── SERVICES ─── */
  #services { background: var(--bg); }

  .services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 3.5rem;
  }

  .services-intro p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.975rem;
    font-weight: 400;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }

  .service-card {
    background: #fff;
    padding: 2.25rem;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.35s ease;
  }

  .service-card:hover { background: var(--navy); }
  .service-card:hover .service-title { color: #fff; }
  .service-card:hover .service-desc { color: rgba(255,255,255,0.55); }
  .service-card:hover .service-num { color: var(--gold); opacity: 1; }
  .service-card:hover::after { width: 100%; }

  .service-num {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.25rem;
    letter-spacing: 0.08em;
    font-weight: 400;
    opacity: 0.7;
    transition: opacity 0.25s;
  }

  .service-card:hover .service-num { opacity: 1; color: var(--gold); }

  .service-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    transition: color 0.25s;
  }

  .service-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 400;
    transition: color 0.25s;
  }

  /* ─── STATS ─── */
  #stats { background: var(--navy); padding: 5rem 2rem; }

  .stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(200,169,106,0.2);
    border-radius: 4px;
    overflow: hidden;
  }

  .stat-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(200,169,106,0.15);
    text-align: center;
  }

  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: var(--serif);
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .stat-label-sm {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
  }

  /* ─── WHY US ─── */
  #why { background: var(--bg); }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
  }

  .why-left h2 {
    margin-bottom: 1.25rem;
  }

  .why-left p {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 0.975rem;
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .why-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }

  .pillar {
    background: #fff;
    padding: 1.75rem;
    transition: background 0.2s;
  }

  .pillar:hover { background: #f3f4f6; }

  .pillar-line {
    width: 24px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1rem;
  }

  .pillar h4 {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }

  .pillar p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
  }

  /* ─── FAQ ─── */
  #faq { background: var(--charcoal); }

  .faq-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 3rem;
  }

  .faq-header p {
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
  }

  .faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(200,169,106,0.1);
    border: 1px solid rgba(200,169,106,0.15);
    border-radius: 4px;
    overflow: hidden;
  }

  .faq-item {
    background: rgba(255,255,255,0.025);
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
  }

  .faq-item:hover { background: rgba(255,255,255,0.05); }

  .faq-q {
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
  }

  .faq-q span {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
  }

  .faq-icon {
    color: var(--gold);
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s;
    font-weight: 300;
    margin-top: 1px;
  }

  .faq-icon.open { transform: rotate(45deg); }

  .faq-a {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    font-weight: 300;
  }

  .faq-a.open {
    max-height: 200px;
    padding: 0 2rem 1.75rem;
  }

  /* ─── CTA ─── */
  #cta {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  #cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,169,106,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,169,106,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 7rem 2rem;
  }

  .cta-inner .section-label { justify-content: center; display: block; margin-bottom: 1.25rem; }

  .cta-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }

  .cta-title em {
    font-style: italic;
    color: var(--gold);
  }

  .cta-sub {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(200,169,106,0.15);
    padding: 3.5rem 2rem;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.25fr;
    gap: 3rem;
  }

  .footer-brand .logo {
    display: inline-flex;
    margin-bottom: 1rem;
  }
  
  .footer-brand .logo img {
    height: 52px;
  }
  
  .footer-brand .logo-text {
    height: 52px;
  }
  
  .footer-brand .logo-title {
    font-size: 1.5rem;
  }
  
  .footer-brand .logo-sub {
    font-size: 0.75rem;
    margin-top: 0.15rem;
  }

  .footer-brand p {
    font-size: 0.825rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.75;
    max-width: 260px;
    font-weight: 300;
  }

  .footer-col h5 {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.25rem;
  }

  .footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.825rem;
    margin-bottom: 0.65rem;
    transition: color 0.2s;
    font-weight: 400;
  }

  .footer-col a:hover { color: var(--gold); }

  .footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 0.775rem;
    color: rgba(255,255,255,0.3);
  }

  .footer-bottom span {
    color: var(--gold);
  }

  /* ─── RESPONSIVE ─── */
  /* ─── CONTACT ─── */
  #contact { background: var(--bg); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3.5rem;
    align-items: start;
  }

  .contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .contact-icon-wrap {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(200,169,106,0.35);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(11,31,58,0.04);
  }

  .contact-icon-wrap svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .contact-detail-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
  }

  .contact-detail-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
  }

  .contact-detail-text a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .contact-detail-text a:hover { color: var(--navy); }

  /* Contact Form */
  .contact-form-wrap {
    background: var(--navy);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
  }

  .contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 4px 4px 0 0;
  }

  .form-title {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 0.5rem;
  }

  .form-subtitle {
    font-size: 0.825rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 2rem;
    font-weight: 300;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-family: var(--sans);
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    font-weight: 400;
  }

  .form-group select option { background: var(--navy); color: #fff; }

  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

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

  .form-group textarea { resize: vertical; min-height: 110px; }

  .form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0.9rem 2rem;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }

  .form-submit:hover { background: var(--gold-light); }

  .form-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
  }

  .form-success-icon {
    width: 48px;
    height: 48px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }

  .form-success-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .form-success p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .form-success strong { color: #fff; display: block; margin-bottom: 0.35rem; font-family: var(--serif); font-size: 1.1rem; }

  /* Footer social icons */
  .footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(200,169,106,0.25);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
  }

  .social-link:hover { border-color: var(--gold); background: rgba(200,169,106,0.1); }

  .social-link svg {
    width: 16px;
    height: 16px;
    fill: rgba(255,255,255,0.55);
    transition: fill 0.2s;
  }

  .social-link:hover svg { fill: var(--gold); }

  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-intro { grid-template-columns: 1fr; gap: 1.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-right: 1px solid rgba(200,169,106,0.15); border-top: 1px solid rgba(200,169,106,0.15); }
    .stat-item:nth-child(4) { border-top: 1px solid rgba(200,169,106,0.15); border-right: none; }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .faq-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .faq-list { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .vision-grid { grid-template-columns: 1fr; }
    .vm-card:first-child { border-right: none; border-bottom: 1px solid rgba(200,169,106,0.15); }
  }

  @media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    section { padding: 4rem 1.25rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu.active { display: block; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .why-pillars { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .portrait-frame::before { display: none; }
    .vm-card { padding: 2rem; }
  }

  @media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .stats-inner { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(200,169,106,0.15); }
    .stat-item:last-child { border-bottom: none; }
    .btn-outline { display: none; }
  }


@media (max-width: 768px) {
  body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
  }
}
