/* ── TOKENS ───────────────────────────────────── */
    :root {
      --ink:       #0d0d14;
      --ink-mid:   #2e2e42;
      --ink-soft:  #6b6b88;
      --paper:     #f7f6f2;
      --cream:     #ede9df;
      --gold:      #c8943a;
      --gold-lt:   #e8b96a;
      --teal:      #2a7b8c;
      --teal-lt:   #3fa3ba;
      --white:     #ffffff;
      --shadow-sm: 0 2px 12px rgba(13,13,20,.07);
      --shadow-md: 0 8px 32px rgba(13,13,20,.12);
      --shadow-lg: 0 20px 60px rgba(13,13,20,.16);
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 28px;
      --nav-h:     72px;
    }

    /* ── RESET ────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--paper);
      color: var(--ink);
      line-height: 1.65;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ── HEADER ───────────────────────────────────── */
    header {
      position: fixed; top: 0; left: 0; right: 0;
      height: var(--nav-h);
      background: rgba(13,13,20,.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      z-index: 1000;
      border-bottom: 1px solid rgba(200,148,58,.18);
    }
    .nav-inner {
      max-width: 1180px; margin: 0 auto;
      height: 100%;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 32px;
    }
    .brand-wrap { display: flex; flex-direction: column; gap: 1px; }
    .brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem; font-weight: 700;
      color: var(--gold-lt);
      letter-spacing: .4px;
    }
    .brand-sub {
      font-size: .7rem; font-weight: 500;
      color: rgba(255,255,255,.45);
      letter-spacing: 1.8px; text-transform: uppercase;
    }
    nav ul { list-style: none; display: flex; gap: 36px; }
    nav ul li a {
      font-size: .85rem; font-weight: 500;
      color: rgba(255,255,255,.7);
      letter-spacing: .5px;
      position: relative; padding-bottom: 4px;
      transition: color .2s;
    }
    nav ul li a::after {
      content: '';
      position: absolute; bottom: 0; left: 0;
      width: 0; height: 1.5px;
      background: var(--gold);
      transition: width .3s ease;
    }
    nav ul li a:hover { color: var(--white); }
    nav ul li a:hover::after { width: 100%; }

    .menu-toggle {
      display: none; background: none; border: none;
      color: var(--gold-lt); font-size: 1.6rem; cursor: pointer;
      padding: 4px;
    }

    /* ── HERO ─────────────────────────────────────── */
    #home {
      min-height: 100vh;
      padding-top: var(--nav-h);
      display: flex; align-items: center;
      background: var(--ink);
      position: relative;
      overflow: hidden;
    }
    /* decorative grain texture */
    #home::before {
      content: '';
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
      pointer-events: none; opacity: .5;
    }
    /* gold orb */
    #home::after {
      content: '';
      position: absolute; top: -180px; right: -120px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(200,148,58,.22) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner {
      max-width: 1180px; margin: 0 auto;
      padding: 80px 32px;
      display: flex; align-items: center; gap: 80px;
      flex-wrap: wrap;
      position: relative; z-index: 1;
    }
    .hero-text { flex: 1; min-width: 280px; }
    .hero-badge {
      display: inline-block;
      font-size: .72rem; font-weight: 500;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(200,148,58,.35);
      border-radius: 100px; padding: 5px 14px;
      margin-bottom: 24px;
    }
    .hero-text h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 700; line-height: 1.05;
      color: var(--white);
      margin-bottom: 18px;
    }
    .hero-text h1 em {
      font-style: italic; color: var(--gold-lt);
    }
    .hero-subtitle {
      font-size: 1.05rem; font-weight: 300;
      color: rgba(255,255,255,.55);
      line-height: 1.7; max-width: 480px;
      margin-bottom: 40px;
    }
    .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

    .btn-primary {
      padding: 13px 28px;
      background: var(--gold);
      color: var(--ink);
      border-radius: 100px;
      font-size: .9rem; font-weight: 600;
      letter-spacing: .3px;
      transition: transform .2s, box-shadow .2s, background .2s;
      box-shadow: 0 4px 20px rgba(200,148,58,.35);
    }
    .btn-primary:hover {
      background: var(--gold-lt);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(200,148,58,.45);
    }
    .btn-outline {
      padding: 13px 28px;
      border: 1.5px solid rgba(255,255,255,.25);
      color: rgba(255,255,255,.8);
      border-radius: 100px;
      font-size: .9rem; font-weight: 500;
      transition: border-color .2s, color .2s, transform .2s;
    }
    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold-lt);
      transform: translateY(-2px);
    }

    /* photo */
    .hero-photo-wrap {
      position: relative; flex-shrink: 0;
    }
    .hero-photo-wrap::before {
      content: '';
      position: absolute; top: 18px; left: 18px;
      width: 100%; height: 100%;
      border: 2px solid rgba(200,148,58,.3);
      border-radius: var(--radius-lg);
      pointer-events: none;
    }
    .hero-photo-wrap img {
      width: 300px; height: 360px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      position: relative; z-index: 1;
    }
    .hero-photo-placeholder {
      width: 300px; height: 360px;
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, #1e1e2e, #2a2a42);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 12px;
      border: 2px dashed rgba(200,148,58,.3);
      position: relative; z-index: 1;
    }
    .hero-photo-placeholder span {
      font-size: 3.5rem;
    }
    .hero-photo-placeholder p {
      font-size: .78rem; color: rgba(255,255,255,.35);
      letter-spacing: .5px;
    }

    /* scroll hint */
    .scroll-hint {
      position: absolute; bottom: 32px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,.3);
      font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase;
      animation: bounce 2.4s ease-in-out infinite;
    }
    .scroll-hint svg { opacity: .5; }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(8px); }
    }

    /* ── SECTION WRAPPER ──────────────────────────── */
    .section-wrap {
      max-width: 1180px; margin: 0 auto;
      padding: 100px 32px;
    }
    .section-label {
      font-family: 'DM Mono', monospace;
      font-size: .72rem; letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700; line-height: 1.1;
      color: var(--ink);
      margin-bottom: 48px;
    }
    .section-title span { color: var(--teal); }

    /* divider between light sections */
    .section-divider {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--teal-lt));
      border-radius: 2px;
      margin-bottom: 48px;
    }

    /* ── ABOUT ────────────────────────────────────── */
    #about_us { background: var(--white); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .about-text p {
      font-size: 1.05rem; color: var(--ink-mid);
      line-height: 1.8; margin-bottom: 18px;
    }
    .about-text p:last-child { margin-bottom: 0; }
    .about-stats {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .stat-card {
      background: var(--paper);
      border: 1px solid var(--cream);
      border-radius: var(--radius-md);
      padding: 24px 20px;
      transition: transform .25s, box-shadow .25s;
    }
    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem; font-weight: 700;
      color: var(--gold); line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: .82rem; color: var(--ink-soft);
      font-weight: 500; letter-spacing: .3px;
    }
    .skills-wrap { margin-top: 28px; }
    .skills-wrap h4 {
      font-size: .8rem; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--ink-soft);
      margin-bottom: 14px;
    }
    .skill-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .skill-tag {
      font-size: .8rem; font-weight: 500;
      padding: 5px 14px;
      border-radius: 100px;
      border: 1.5px solid var(--cream);
      background: var(--paper);
      color: var(--ink-mid);
      transition: border-color .2s, color .2s;
    }
    .skill-tag:hover { border-color: var(--teal); color: var(--teal); }

    /* ── PROJECTS ─────────────────────────────────── */
    #pro_cert { background: var(--ink); overflow: hidden; position: relative; }
    #pro_cert::before {
      content: '';
      position: absolute; bottom: -200px; left: -150px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(42,123,140,.15) 0%, transparent 65%);
      pointer-events: none;
    }

    /* Featured project — full-width hero card */
    .project-featured {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: 28px;
      transition: border-color .3s;
    }
    .project-featured:hover { border-color: rgba(200,148,58,.3); }
    .project-featured-visual {
      background: linear-gradient(135deg, #0f2a30 0%, #1a3a45 50%, #0d1f24 100%);
      display: flex; align-items: center; justify-content: center;
      padding: 60px 40px;
      position: relative; overflow: hidden;
      min-height: 320px;
    }
    .project-featured-visual::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 30% 50%, rgba(63,163,186,.25) 0%, transparent 60%);
    }
    .project-featured-visual .proj-big-icon {
      font-size: 7rem; position: relative; z-index: 1;
      filter: drop-shadow(0 8px 24px rgba(0,0,0,.4));
      animation: float-icon 4s ease-in-out infinite;
    }
    .project-featured-visual .proj-tech-pills {
      position: absolute; bottom: 20px; left: 20px; right: 20px;
      display: flex; flex-wrap: wrap; gap: 7px; z-index: 1;
    }
    .proj-tech-pill {
      font-family: 'DM Mono', monospace;
      font-size: .65rem; font-weight: 500;
      padding: 4px 10px; border-radius: 100px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.6);
    }
    @keyframes float-icon {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-12px); }
    }
    .project-featured-body {
      padding: 44px 40px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .proj-number {
      font-family: 'DM Mono', monospace;
      font-size: .7rem; letter-spacing: 2px;
      color: var(--gold); margin-bottom: 12px;
    }
    .project-featured-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem; font-weight: 700;
      color: var(--white); line-height: 1.15;
      margin-bottom: 14px;
    }
    .project-featured-body p {
      font-size: .93rem; color: rgba(255,255,255,.55);
      line-height: 1.75; margin-bottom: 8px;
    }
    .project-featured-links {
      display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap;
    }
    .proj-btn-primary {
      padding: 10px 22px;
      background: var(--gold);
      color: var(--ink);
      border-radius: 100px;
      font-size: .82rem; font-weight: 700;
      letter-spacing: .3px;
      transition: transform .2s, box-shadow .2s;
    }
    .proj-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(200,148,58,.4);
    }
    .proj-btn-ghost {
      padding: 10px 22px;
      border: 1.5px solid rgba(255,255,255,.2);
      color: rgba(255,255,255,.7);
      border-radius: 100px;
      font-size: .82rem; font-weight: 500;
      transition: border-color .2s, color .2s, transform .2s;
    }
    .proj-btn-ghost:hover {
      border-color: var(--teal-lt);
      color: var(--teal-lt);
      transform: translateY(-2px);
    }

    /* Two smaller project cards side by side */
    .projects-small-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .project-small-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: var(--radius-md);
      padding: 32px 28px;
      display: flex; flex-direction: column;
      position: relative; overflow: hidden;
      transition: transform .25s, border-color .25s;
    }
    .project-small-card:hover {
      transform: translateY(-5px);
      border-color: rgba(200,148,58,.25);
    }
    .project-small-card .proj-accent-line {
      width: 36px; height: 3px; border-radius: 2px;
      margin-bottom: 20px;
    }
    .project-small-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 700;
      color: var(--white); margin-bottom: 12px; line-height: 1.2;
    }
    .project-small-card p {
      font-size: .88rem; color: rgba(255,255,255,.5);
      line-height: 1.7; flex: 1;
    }
    .project-small-card p + p { margin-top: 8px; }
    .project-links {
      display: flex; flex-wrap: wrap; gap: 10px;
      margin-top: 22px;
    }
    .project-btn {
      font-size: .78rem; font-weight: 600;
      padding: 7px 16px;
      border-radius: 100px;
      border: 1.5px solid rgba(255,255,255,.15);
      color: rgba(255,255,255,.7);
      letter-spacing: .3px;
      transition: background .2s, border-color .2s, color .2s;
    }
    .project-btn:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--ink);
    }

    /* ── TEACHING ─────────────────────────────────── */
    #teaching { background: var(--paper); position: relative; }

    .teaching-intro {
      font-size: 1.05rem; color: var(--ink-soft);
      max-width: 600px; margin-bottom: 56px;
      line-height: 1.75;
    }

    /* Timeline layout */
    .teaching-timeline { position: relative; }
    .teaching-timeline::before {
      content: '';
      position: absolute; left: 28px; top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--gold) 0%, var(--teal) 100%);
      border-radius: 1px;
    }
    .teaching-item {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 32px;
      margin-bottom: 48px;
      align-items: start;
    }
    .teaching-item:last-child { margin-bottom: 0; }
    .teaching-dot-wrap {
      display: flex; justify-content: center;
      padding-top: 4px; position: relative; z-index: 1;
    }
    .teaching-dot {
      width: 58px; height: 58px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 0 0 4px var(--paper), 0 0 0 6px var(--cream);
      flex-shrink: 0;
    }
    .td-blue  { background: linear-gradient(135deg, #1a4a6b, #2a6a9b); }
    .td-green { background: linear-gradient(135deg, #1a4a3b, #2a7a5b); }
    .td-purple{ background: linear-gradient(135deg, #3b1a5a, #5a2a8a); }

    .teaching-body {
      background: var(--white);
      border: 1px solid var(--cream);
      border-radius: var(--radius-md);
      padding: 28px 30px;
      transition: transform .25s, box-shadow .25s;
    }
    .teaching-body:hover {
      transform: translateX(6px);
      box-shadow: var(--shadow-md);
    }
    .teaching-body-top {
      display: flex; justify-content: space-between;
      align-items: flex-start; gap: 16px;
      margin-bottom: 12px;
    }
    .teaching-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 700;
      color: var(--ink); line-height: 1.2;
    }
    .teaching-tag {
      font-size: .7rem; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 4px 12px; border-radius: 100px;
      white-space: nowrap; flex-shrink: 0;
    }
    .tag-android { background: rgba(42,106,155,.1); color: #2a6a9b; }
    .tag-game    { background: rgba(90,42,138,.1);  color: #5a2a8a; }
    .tag-itil    { background: rgba(42,122,91,.1);  color: #2a7a5b; }

    .teaching-body p {
      font-size: .92rem; color: var(--ink-soft);
      line-height: 1.7; margin-bottom: 8px;
    }
    .teaching-body p:last-of-type { margin-bottom: 0; }
    .teaching-links {
      display: flex; flex-wrap: wrap; gap: 10px;
      margin-top: 20px;
    }
    .teaching-btn {
      font-size: .8rem; font-weight: 600;
      padding: 8px 20px; border-radius: 100px;
      background: var(--ink);
      color: var(--white);
      letter-spacing: .3px;
      transition: background .2s, transform .2s;
    }
    .teaching-btn:hover {
      background: var(--teal);
      transform: translateY(-2px);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 24px;
    }
    .project-card {
      background: var(--white);
      border: 1px solid var(--cream);
      border-radius: var(--radius-md);
      padding: 28px 26px;
      display: flex; flex-direction: column;
      transition: transform .25s, box-shadow .25s;
      position: relative; overflow: hidden;
    }
    .project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    .project-icon { font-size: 2rem; margin-bottom: 14px; }
    .project-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem; font-weight: 700;
      color: var(--ink); margin-bottom: 10px;
    }
    .project-card p {
      font-size: .92rem; color: var(--ink-soft);
      line-height: 1.7; flex: 1;
    }

    @media (max-width: 768px) {
      .project-featured { grid-template-columns: 1fr; }
      .project-featured-visual { min-height: 220px; }
      .projects-small-grid { grid-template-columns: 1fr; }
      .teaching-timeline::before { left: 22px; }
      .teaching-item { grid-template-columns: 56px 1fr; gap: 20px; }
      .teaching-dot { width: 46px; height: 46px; font-size: 1.2rem; }
    }

    /* ── CERTIFICATIONS ───────────────────────────── */
    #certifications { background: var(--ink); }
    #certifications .section-title { color: var(--white); }
    #certifications .section-label { color: var(--gold-lt); }
    .cert-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 20px;
    }
    .cert-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius-md);
      padding: 24px 22px;
      transition: transform .25s, border-color .25s;
    }
    .cert-card:hover {
      transform: translateY(-4px);
      border-color: rgba(200,148,58,.3);
    }
    .cert-badge {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: rgba(200,148,58,.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 14px;
    }
    .cert-card h3 {
      font-size: 1rem; font-weight: 600;
      color: var(--white); margin-bottom: 8px; line-height: 1.3;
    }
    .cert-meta {
      font-size: .78rem; color: rgba(255,255,255,.4);
      font-family: 'DM Mono', monospace;
      margin-bottom: 16px;
    }
    .cert-status {
      display: inline-block;
      font-size: .72rem; font-weight: 600;
      padding: 3px 12px; border-radius: 100px;
      letter-spacing: .5px;
    }
    .cert-status.done {
      background: rgba(42,123,140,.25);
      color: var(--teal-lt);
    }
    .cert-status.in-progress {
      background: rgba(200,148,58,.2);
      color: var(--gold-lt);
    }
    .cert-link {
      display: inline-block;
      font-size: .8rem; font-weight: 500;
      color: var(--gold); margin-top: 12px;
      border-bottom: 1px solid rgba(200,148,58,.3);
      transition: border-color .2s;
    }
    .cert-link:hover { border-color: var(--gold); }



    /* ── CONTACT ──────────────────────────────────── */
    #contact { background: var(--paper); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 64px; align-items: start;
    }
    .contact-info h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 700;
      margin-bottom: 16px;
    }
    .contact-info p {
      font-size: .98rem; color: var(--ink-soft);
      line-height: 1.75; margin-bottom: 32px;
    }
    .contact-links { display: flex; flex-direction: column; gap: 14px; }
    .contact-link-item {
      display: flex; align-items: center; gap: 12px;
      font-size: .92rem; color: var(--ink-mid);
      transition: color .2s;
    }
    .contact-link-item:hover { color: var(--teal); }
    .contact-link-item .icon-circle {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--cream);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
      transition: background .2s;
    }
    .contact-link-item:hover .icon-circle { background: rgba(42,123,140,.12); }

    /* form */
    .contact-form {
      background: var(--white);
      border: 1px solid var(--cream);
      border-radius: var(--radius-md);
      padding: 36px 32px;
    }
    .form-row { margin-bottom: 20px; }
    .form-row label {
      display: block;
      font-size: .78rem; font-weight: 600;
      letter-spacing: .8px; text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 8px;
    }
    .form-row input,
    .form-row textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--cream);
      border-radius: var(--radius-sm);
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem;
      background: var(--paper);
      color: var(--ink);
      transition: border-color .2s, box-shadow .2s;
      resize: vertical;
    }
    .form-row input:focus,
    .form-row textarea:focus {
      outline: none;
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(42,123,140,.12);
    }
    .form-row textarea { min-height: 130px; }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-submit {
      width: 100%;
      padding: 14px;
      background: var(--ink);
      color: var(--white);
      border: none;
      border-radius: var(--radius-sm);
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem; font-weight: 600;
      cursor: pointer;
      letter-spacing: .5px;
      transition: background .25s, transform .2s;
      margin-top: 8px;
    }
    .form-submit:hover {
      background: var(--teal);
      transform: translateY(-2px);
    }

    /* ── FOOTER ───────────────────────────────────── */
    footer {
      background: var(--ink);
      padding: 40px 32px;
      text-align: center;
    }
    .footer-inner { max-width: 1180px; margin: 0 auto; }
    .footer-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 700;
      color: var(--gold-lt); margin-bottom: 16px;
    }
    .footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 24px; }
    .footer-socials a {
      font-size: .88rem; font-weight: 500;
      color: rgba(255,255,255,.5);
      transition: color .2s;
    }
    .footer-socials a:hover { color: var(--gold); }
    .footer-copy {
      font-size: .78rem; color: rgba(255,255,255,.25);
      letter-spacing: .5px;
    }

    /* ── MOBILE ───────────────────────────────────── */
    @media (max-width: 900px) {
      .about-grid,
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      nav ul { display: none; flex-direction: column; gap: 0;
        position: absolute; top: var(--nav-h); left: 0; right: 0;
        background: rgba(13,13,20,.98);
        padding: 12px 0; }
      nav ul.open { display: flex; }
      nav ul li a { display: block; padding: 12px 32px; font-size: .95rem; }
      .menu-toggle { display: block; }
      .hero-inner { gap: 48px; flex-direction: column; text-align: center; padding: 60px 24px; }
      .hero-cta { justify-content: center; }
      .hero-photo-wrap { order: -1; }
      .hero-photo-wrap img,
      .hero-photo-placeholder { width: 240px; height: 290px; }
      .form-row-2 { grid-template-columns: 1fr; }
      .section-wrap { padding: 72px 24px; }
    }