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

  :root {
    --ink: #0d0d0d;
    --cream: #f5f2ed;
    --gold: #c9a96e;
    --gold-light: #e8d5b0;
    --muted: #7a7670;
    --white: #ffffff;
    --card-bg: #faf8f4;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── CURSOR ── */
  body { cursor: none; }
  #cursor {
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transition: transform .15s ease, width .2s ease, height .2s ease;
  }
  #cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transition: transform .35s cubic-bezier(.25,.46,.45,.94), opacity .2s;
    opacity: .6;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 60px;
    background: rgba(245,242,237,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,169,110,0.18);
    transition: padding .3s;
  }
  nav.scrolled { padding: 14px 60px; }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .logo-box {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: transform .3s;
  }
  .logo-box:hover { transform: rotate(6deg) scale(1.08); }
  .logo-box img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .logo-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600;
    color: var(--gold); letter-spacing: 1px;
  }
  .logo-wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    color: var(--ink); letter-spacing: .5px;
  }

  .nav-links {
    display: flex; align-items: center; gap: 40px;
    list-style: none;
    transition: right .3s cubic-bezier(.25,.46,.45,.94), opacity .3s;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 13px; font-weight: 400; letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--muted);
    position: relative;
    transition: color .3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -3px; left: 0; right: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    background: var(--ink);
    color: var(--cream) !important;
    padding: 10px 26px;
    border-radius: 4px;
    font-size: 13px !important;
    letter-spacing: 1.2px;
    transition: background .3s, color .3s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }
  .nav-cta::after { display: none !important; }

  /* ── HERO ── */
  #home {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 140px 60px 80px;
    position: relative; overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 60% 80% at 80% 40%, rgba(201,169,110,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 50% at 10% 70%, rgba(201,169,110,0.07) 0%, transparent 60%);
  }
  .hero-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(201,169,110,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,169,110,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 80% 50%, black 0%, transparent 80%);
  }

  .hero-tag {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
    margin-bottom: 28px; z-index: 1;
    opacity: 0; animation: fadeUp .8s .2s forwards;
  }
  h1.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 8vw, 110px);
    font-weight: 300; line-height: 1.0;
    letter-spacing: -1px;
    color: var(--ink); z-index: 1;
    max-width: 820px;
    opacity: 0; animation: fadeUp .9s .4s forwards;
  }
  h1.hero-title em { font-style: italic; color: var(--gold); }

  .hero-sub {
    font-size: 16px; font-weight: 300;
    color: var(--muted); line-height: 1.7;
    max-width: 480px; margin-top: 28px; z-index: 1;
    opacity: 0; animation: fadeUp .9s .6s forwards;
  }
  .hero-actions {
    display: flex; gap: 16px; margin-top: 48px; z-index: 1;
    opacity: 0; animation: fadeUp .9s .8s forwards;
  }
  .btn-primary {
    background: var(--ink); color: var(--cream);
    padding: 14px 36px; border: 1.5px solid var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase;
    text-decoration: none; border-radius: 4px;
    transition: background .3s, color .3s, border-color .3s;
    cursor: none;
  }
  .btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
  .btn-outline {
    background: transparent; color: var(--ink);
    padding: 14px 36px; border: 1.5px solid rgba(13,13,13,0.25);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase;
    text-decoration: none; border-radius: 4px;
    transition: border-color .3s, color .3s;
    cursor: none;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .hero-scroll {
    position: absolute; bottom: 40px; left: 60px;
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted); z-index: 1;
    opacity: 0; animation: fadeIn 1s 1.2s forwards;
  }
  .scroll-line {
    width: 40px; height: 1px; background: var(--gold);
    animation: expandLine 1s 1.4s both;
  }

  /* ── SECTION COMMON ── */
  section { padding: 120px 60px; }
  .section-tag {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px; display: block;
  }
  h2.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300; line-height: 1.1;
    color: var(--ink); max-width: 600px;
  }
  h2.section-title em { font-style: italic; color: var(--gold); }
  .section-body {
    font-size: 15px; font-weight: 300; line-height: 1.8;
    color: var(--muted); max-width: 520px; margin-top: 20px;
  }

  /* ── ABOUT ── */
  #about { background: var(--white); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; margin-top: 64px;
  }
  .about-visual {
    position: relative; aspect-ratio: 4/5;
    background: var(--card-bg);
    border-radius: 2px; overflow: hidden;
  }
  .about-visual::before {
    content: '';
    position: absolute; inset: 16px; z-index: 1;
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 2px; pointer-events: none;
  }
  .about-visual-inner {
    width: 100%; height: 100%;
    background:
      linear-gradient(135deg, rgba(201,169,110,0.08) 0%, transparent 50%),
      repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(201,169,110,0.04) 20px, rgba(201,169,110,0.04) 21px);
    display: flex; align-items: center; justify-content: center;
  }
  .about-placeholder-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px; font-weight: 300;
    color: rgba(201,169,110,0.2);
    letter-spacing: -2px;
  }
  .about-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px;
  }
  .stat { border-left: 2px solid var(--gold); padding-left: 20px; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px; font-weight: 300; color: var(--ink);
    line-height: 1;
  }
  
  .stat-label2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px; font-weight: 200; color: var(--ink);
    line-height: 1;
  }

  .stat-label {
    font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--muted); margin-top: 6px;
  }

  #our-services { background: var(--white); }

  /* ── FOUNDERS ── */
  #founders { background: var(--cream); }
  .founders-intro { max-width: 560px; }
  .founders-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
    margin-top: 72px;
  }
  @media (max-width: 900px) { .founders-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .founders-grid { grid-template-columns: 1fr; } }

  .founder-card {
    background: var(--white);
    border-radius: 4px; overflow: hidden;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s;
    cursor: none;
  }
  .founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(13,13,13,0.1);
  }
  .founder-img-wrap {
    position: relative;
    aspect-ratio: 3/4; overflow: hidden;
    background: var(--card-bg);
  }
  .founder-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
    display: none;
  }
  .founder-card:hover .founder-img-wrap img { transform: scale(1.05); }
  .founder-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, #f0ece4, #e8e2d6);
    flex-direction: column; gap: 8px;
  }
  .founder-initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px; font-weight: 300;
    color: rgba(201,169,110,0.5);
  }
  .founder-img-label {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted);
  }
  .founder-gold-line {
    height: 3px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s .1s;
  }
  .founder-card:hover .founder-gold-line { transform: scaleX(1); }
  .founder-body { padding: 28px 28px 32px; }
  .founder-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 400; color: var(--ink);
  }
  .founder-role {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-top: 4px; margin-bottom: 18px;
  }
  .founder-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-style: italic;
    color: var(--muted); line-height: 1.6;
    border-left: 2px solid var(--gold-light);
    padding-left: 16px;
  }
  .founder-quote::before { content: '\201C'; }
  .founder-quote::after  { content: '\201D'; }

  /* ── CONTACT ── */
  #contact { background: var(--ink); }
  #contact .section-tag { color: var(--gold); }
  #contact h2.section-title { color: var(--cream); }
  #contact h2.section-title em { color: var(--gold); }
  #contact .section-body { color: rgba(245,242,237,0.5); }

  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    margin-top: 64px;
  }
  .contact-info { display: flex; flex-direction: column; gap: 36px; margin-top: 8px; }
  .contact-item { display: flex; flex-direction: column; gap: 6px; }
  .contact-item-label {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold);
  }
  .contact-item-value {
    font-size: 15px; font-weight: 300;
    color: rgba(245,242,237,0.7);
  }
  .contact-item-value a {
    color: inherit; text-decoration: none;
    transition: color .3s;
  }
  .contact-item-value a:hover { color: var(--gold); }

  .contact-form { display: flex; flex-direction: column; gap: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-label {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(245,242,237,0.4);
  }
  .form-input, .form-textarea {
    background: rgba(245,242,237,0.05);
    border: 1px solid rgba(245,242,237,0.12);
    border-radius: 4px;
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 300;
    color: var(--cream);
    outline: none;
    transition: border-color .3s, background .3s;
    cursor: none;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: rgba(245,242,237,0.25); }
  .form-input:focus, .form-textarea:focus {
    border-color: var(--gold);
    background: rgba(201,169,110,0.05);
  }
  .form-textarea { resize: vertical; min-height: 130px; }
  .btn-send {
    background: var(--gold);
    color: var(--ink);
    padding: 16px 40px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
    font-weight: 500;
    border-radius: 4px;
    cursor: none;
    align-self: flex-start;
    transition: background .3s, transform .2s;
  }
  .btn-send:hover { background: var(--gold-light); transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: #080808;
    padding: 60px 60px 36px;
    border-top: 1px solid rgba(201,169,110,0.12);
  }
  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-brand {
    display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
  }
  .footer-logo-box {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
  }

  .footer-logo-box img{
    width: 38px; height: 38px;
  }

  .footer-logo-sym {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: var(--gold);
  }
  .footer-wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; color: var(--cream);
  }
  .footer-tagline {
    font-size: 13px; font-weight: 300;
    color: rgba(245,242,237,0.35); max-width: 260px;
    line-height: 1.6;
  }
  .footer-links-group { display: flex; gap: 60px; }
  .footer-col h4 {
    font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul a {
    text-decoration: none;
    font-size: 13px; font-weight: 300;
    color: rgba(245,242,237,0.45);
    transition: color .3s;
  }
  .footer-col ul a:hover { color: var(--cream); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px;
  }
  .footer-copy {
    font-size: 12px; font-weight: 300;
    color: rgba(245,242,237,0.2);
  }
  .footer-socials { display: flex; gap: 20px; }
  .footer-social {
    width: 34px; height: 34px;
    border: 1px solid rgba(245,242,237,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: border-color .3s, background .3s;
    cursor: none; text-decoration: none;
  }
  .footer-social:hover { border-color: var(--gold); background: rgba(201,169,110,0.1); }
  .footer-social svg { width: 14px; height: 14px; fill: rgba(245,242,237,0.4); }
  .footer-social:hover svg { fill: var(--gold); }

  /* ── DIVIDER ── */
  .divider {
    display: flex; align-items: center; gap: 20px;
    padding: 0 60px; margin: 0;
  }
  .divider-line { flex: 1; height: 1px; background: rgba(201,169,110,0.15); }
  .divider-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; color: var(--gold); opacity: .5;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  @keyframes expandLine {
    from { width: 0; } to { width: 40px; }
  }

  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    #cursor, #cursor-ring { display: none !important; }
    body { cursor: auto !important; }
    nav { padding: 18px 28px; }
    nav.scrolled { padding: 12px 28px; }
    section { padding: 80px 28px; }
    #home { padding: 120px 28px 60px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; }
    .divider { padding: 0 28px; }
    footer { padding: 48px 28px 28px; }
  }
  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px; height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 120;
    gap: 5px;
    padding: 0;
  }
  .nav-hamburger span {
    display: block;
    width: 26px; height: 3px;
    background: var(--ink);
    border-radius: 2px;
    transition: all .3s cubic-bezier(.25,.46,.45,.94);
  }
  .nav-hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  @media (max-width: 640px) {
    #cursor, #cursor-ring { display: none !important; }
    body { cursor: auto !important; }
    .nav-hamburger { display: flex; }
    .nav-links {
      position: fixed;
      top: 0; right: -100vw;
      width: 70vw; max-width: 320px; height: 100vh;
      background: var(--cream);
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 90px 32px 32px 32px;
      box-shadow: -8px 0 32px rgba(13,13,13,0.08);
      opacity: 0;
      pointer-events: none;
      z-index: 110;
      transition: right .3s cubic-bezier(.25,.46,.45,.94), opacity .3s;
    }
    .nav-links.nav-links-open {
      right: 0;
      opacity: 1;
      pointer-events: auto;
    }
    .nav-links li {
      width: 100%;
      margin-bottom: 18px;
    }
    .nav-links a {
      font-size: 16px;
      color: var(--ink);
      padding: 12px 0;
      width: 100%;
      display: block;
      border-radius: 0;
    }
    .nav-links a.nav-cta {
      margin-top: 18px;
      width: 100%;
      text-align: left;
    }
  }