  :root {
    --navy: #0d1b2a;
    --navy-mid: #1a2e42;
    --navy-light: #243d55;
    --gold: #c5973a;
    --gold-light: #e0b86a;
    --gold-pale: #f5e8cc;
    --cream: #faf8f4;
    --white: #ffffff;
    --text-muted: #8a9ab0;
    --text-light: #c8d4e0;
    --border: rgba(197,151,58,0.2);
    --ease: cubic-bezier(0.4,0,0.2,1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s var(--ease), backdrop-filter 0.4s;
  }

  nav.scrolled {
    background: rgba(13,27,42,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
	padding: 1em 0em;
  }
  
  .nav-logo img {
	  height: 60px;
	  padding: .4em 0em;
  }

  .nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--navy);
    flex-shrink: 0;
  }

  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.03em;
    line-height: 1.1;
  }

  .nav-logo-text span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
  }

  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    padding: 9px 22px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    border-radius: 3px;
    font-size: 12px !important;
    transition: background 0.3s, color 0.3s !important;
  }

  .nav-cta::after { display: none !important; }

  .nav-cta:hover {
    background: var(--gold) !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: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease);
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 70% 30%, rgba(197,151,58,0.08) 0%, transparent 50%),
      radial-gradient(circle at 10% 80%, rgba(197,151,58,0.05) 0%, transparent 40%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image: url("images/hero.jpg");
    background-repeat: no-repeat;
	background-size: auto;
  }

  .hero-accent-line {
    position: absolute;
    top: 0; right: 20%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(197,151,58,0.3) 30%, rgba(197,151,58,0.3) 70%, transparent 100%);
  }

  .hero-content {
    position: relative;
    z-index: 1;
    padding: 0 5%;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding-top: 72px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 0.3s forwards;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s var(--ease) 0.5s forwards;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-title strong {
    display: block;
    font-weight: 600;
  }

  .hero-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s var(--ease) 0.7s forwards;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s var(--ease) 0.9s forwards;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--gold);
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(197,151,58,0.3);
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: transparent;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 3px;
    transition: border-color 0.3s, color 0.3s;
  }

  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-stats {
    position: absolute;
    bottom: 60px;
    right: 5%;
    display: flex;
    gap: 48px;
    opacity: 0;
    animation: fadeIn 1s var(--ease) 1.2s forwards;
  }

  .hero-stat-item { text-align: right; }

  .hero-stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  /* ─── SECTION COMMON ─── */
  section { padding: 120px 5%; }

  .section-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    display: block;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 20px;
  }

  .section-title.light { color: var(--white); }

  /* ─── SERVICES ─── */
  .services { background: var(--cream); }

  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
  }

  .services-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5d73;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(197,151,58,0.1);
    border: 1px solid var(--border);
  }

  .service-card {
    background: var(--cream);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s var(--ease);
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.5s var(--ease);
  }

  .service-card:hover { background: var(--white); }
  .service-card:hover::before { height: 100%; }

  .service-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 28px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    background: rgba(197,151,58,0.08);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 24px;
    transition: background 0.3s, transform 0.3s;
  }

  .service-card:hover .service-icon {
    background: rgba(197,151,58,0.15);
    transform: scale(1.05);
  }

  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #5a6d82;
    margin-bottom: 28px;
  }

  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: gap 0.3s;
  }

  .service-link:hover { gap: 12px; }

  /* ─── ABOUT ─── */
  .about { background: var(--navy); overflow: hidden; }

  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-visual {
    position: relative;
  }

  .about-visual-main {
    aspect-ratio: 4/5;
    background-image: url("images/about.jpg");
    background-repeat: no-repeat;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 50% 50%, rgba(197,151,58,0.12) 0%, transparent 60%),
      repeating-linear-gradient(45deg, rgba(197,151,58,0.03) 0, rgba(197,151,58,0.03) 1px, transparent 1px, transparent 40px);
  }

  .about-monogram {
    font-family: 'Cormorant Garamond', serif;
    font-size: 160px;
    font-weight: 300;
    color: rgba(197,151,58,0.12);
    line-height: 1;
    position: relative;
    z-index: 1;
  }

  .about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
  }

  .about-badge-num {
    font-size: 36px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
  }

  .about-badge-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
  }

  .about-content .section-title { margin-bottom: 28px; }

  .about-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  .about-quote {
    border-left: 2px solid var(--gold);
    padding: 16px 24px;
    margin: 36px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.5;
  }

  .about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .pillar {
    padding: 20px;
    border: 1px solid rgba(197,151,58,0.15);
    border-radius: 4px;
    transition: border-color 0.3s, background 0.3s;
  }

  .pillar:hover {
    border-color: var(--gold);
    background: rgba(197,151,58,0.05);
  }

  .pillar i {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
  }

  .pillar h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 6px;
  }

  .pillar p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ─── WORKS ─── */
  .works { background: var(--cream); }

  .works-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
  }

  .works-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
    background: var(--border);
  }

  .work-card {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 32px;
    cursor: default;
  }

  .work-card:first-child {
    grid-row: span 2;
    min-height: 560px;
  }

  .work-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(13,27,42,0.9) 100%);
    z-index: 1;
  }

  .work-card-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
  }

  .work-card:nth-child(1) .work-card-pattern { background: radial-gradient(circle at 70% 30%, rgba(197,151,58,0.2) 0%, transparent 60%); }
  .work-card:nth-child(2) .work-card-pattern { background: radial-gradient(circle at 30% 70%, rgba(26,110,197,0.2) 0%, transparent 60%); }
  .work-card:nth-child(3) .work-card-pattern { background: radial-gradient(circle at 70% 30%, rgba(34,130,96,0.2) 0%, transparent 60%); }
  .work-card:nth-child(4) .work-card-pattern { background: radial-gradient(circle at 30% 70%, rgba(197,74,58,0.2) 0%, transparent 60%); }
  .work-card:nth-child(5) .work-card-pattern { background: radial-gradient(circle at 50% 50%, rgba(140,70,197,0.2) 0%, transparent 60%); }

  .work-card-content { position: relative; z-index: 2; }

  .work-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(197,151,58,0.4);
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 14px;
  }

  .work-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
    transition: color 0.3s;
  }

  .work-card:hover h3 { color: var(--gold-light); }

  .work-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 380px;
  }

  .work-card-arrow {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(197,151,58,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 12px;
    opacity: 0;
    transform: translate(4px,-4px);
    transition: opacity 0.3s, transform 0.3s;
  }

  .work-card:hover .work-card-arrow {
    opacity: 1;
    transform: translate(0,0);
  }

  /* ─── TECH NOTES / INSIGHT ─── */
  .insights { background: var(--navy); }

  .insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 60px;
  }

  .insight-card {
    background: var(--navy-mid);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .insight-card:hover { background: var(--navy-light); }

  .insight-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 300;
    color: rgba(197,151,58,0.1);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 24px;
  }

  .insight-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 24px;
  }

  .insight-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .insight-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .insight-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
  }

  .insight-link:hover { gap: 10px; }

  /* ─── CONTACT ─── */
  .contact { background: var(--cream); }

  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-info h2 { margin-bottom: 20px; }

  .contact-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5d73;
    margin-bottom: 48px;
  }

  .contact-details { display: flex; flex-direction: column; gap: 20px; }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid rgba(197,151,58,0.15);
    border-radius: 4px;
    transition: border-color 0.3s, transform 0.2s;
  }

  .contact-item:hover {
    border-color: var(--gold);
    transform: translateX(4px);
  }

  .contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(197,151,58,0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
  }

  .contact-item-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
  }

  .contact-item-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
  }

  .contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 48px 40px;
  }

  .form-group { margin-bottom: 24px; }

  .form-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  .form-control {
    width: 100%;
    padding: 13px 16px;
    background: var(--cream);
    border: 1px solid rgba(197,151,58,0.8);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--navy);
    outline: none;
    transition: border-color 0.3s;
	box-shadow: 4px 4px #eee; 
  }
  
  .form-control select {
	  padding-right: 1em;
  }

  .form-control:focus { border-color: var(--gold); }

  .form-control::placeholder { color: var(--text-muted); }

  textarea.form-control { resize: vertical; min-height: 120px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-submit {
    width: 100%;
    padding: 15px;
    background: var(--navy);
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .form-submit:hover { background: var(--navy-light); transform: translateY(-1px); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    border-top: 1px solid var(--border);
    padding: 60px 5% 40px;
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  .footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 20px;
    max-width: 260px;
  }

  .footer-col h5 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
  }

  .footer-links a:hover { color: var(--gold); padding-left: 6px; }

  .footer-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 32px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-copy {
    font-size: 12px;
    color: var(--text-muted);
  }

  .footer-socials {
    display: flex;
    gap: 12px;
  }

  .social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
  }

  .social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197,151,58,0.05);
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    to { opacity: 1; }
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── MOBILE NAV ─── */
  .mobile-nav {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
  }

  .mobile-nav a:hover { color: var(--gold); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .services-header { grid-template-columns: 1fr; gap: 24px; }
    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { max-width: 400px; }
    .works-grid { grid-template-columns: 1fr 1fr; }
    .work-card:first-child { grid-row: auto; min-height: 280px; }
    .insights-grid { grid-template-columns: 1fr 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  @media (max-width: 768px) {
    section { padding: 80px 5%; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .works-grid { grid-template-columns: 1fr; }
    .insights-grid { grid-template-columns: 1fr; }
    .hero-stats { position: static; flex-direction: row; justify-content: flex-start; margin-top: 48px; }
    .hero-stat-item { text-align: left; }
    .about-pillars { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .works-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-bottom { flex-direction: column; }
  }
