﻿:root {
      --gold: #276A8B;
      --gold-2: #4E96B8;
      --gold-dim: rgba(39,106,139,0.16);
      --gold-line: rgba(39,106,139,0.34);
      --rose: #C88AA6;
      --rose-soft: #DEB0C3;
      --rose-dim: rgba(200,138,166,0.12);
      --rose-line: rgba(200,138,166,0.28);
      --rose-glow: rgba(200,138,166,0.24);
      --bg: #080808;
      --bg-2: #0f0f0f;
      --bg-3: #161616;
      --bg-card: #111111;
      --text: #F0EDE6;
      --text-2: #9a9287;
      --text-3: #5a5450;
      --white: #FDFCF8;
      --border: rgba(255,255,255,0.06);
      --radius-lg: 4px;
    }

    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior: smooth; font-size: 16px; width: 100%; max-width: 100%; overflow-x: clip; overscroll-behavior-x: none; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      width: 100%;
      max-width: 100%;
      overflow-x: clip;
      overscroll-behavior-x: none;
      position: relative;
      cursor: none;
    }
    body > * { max-width: 100%; }

    /* Custom Cursor */
    #cursor {
      position: fixed; top: 0; left: 0;
      width: 12px; height: 12px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%,-50%);
      transition: width .25s, height .25s, background .25s, opacity .25s;
    }
    #cursor-ring {
      position: fixed; top: 0; left: 0;
      width: 42px; height: 42px;
      border: 1px solid var(--gold-line);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99998;
      transform: translate(-50%,-50%);
      transition: transform .12s ease, width .3s, height .3s, opacity .3s;
    }
    body .cursor-grow #cursor { width: 20px; height: 20px; background: var(--gold-2); }
    body .cursor-grow #cursor-ring { width: 64px; height: 64px; }
    @media (hover: none), (pointer: coarse), (max-width: 768px) {
      body {
        cursor: auto;
      }
      #cursor,
      #cursor-ring {
        display: none !important;
      }
    }

    /* Noise Overlay */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9000; opacity: 0.4;
    }

    .font-serif { font-family: 'Cormorant Garamond', Georgia, serif; }
    h1, h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; letter-spacing: -0.01em; line-height: 1.05; }
    h3 { font-family: 'Inter', sans-serif; font-weight: 400; }
    .label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

    .container { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
    @media(max-width:768px){ .container { padding: 0 24px; } }
    @media(max-width:768px){
      html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overscroll-behavior-x: none;
        touch-action: pan-y pinch-zoom;
      }
      body { min-width: 0; }
      header, section, footer, .container, .header-inner, .hero-content {
        max-width: 100%;
        min-width: 0;
      }
    }
    @media(max-width:480px){ .container { padding: 0 20px; } }

    .reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
    .reveal.in { opacity: 1; transform: none; }
    .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
    .reveal-left.in { opacity: 1; transform: none; }
    .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
    .reveal-right.in { opacity: 1; transform: none; }
    .delay-1 { transition-delay: .1s; }
    .delay-2 { transition-delay: .2s; }
    .delay-3 { transition-delay: .3s; }
    .delay-4 { transition-delay: .45s; }

    /* HEADER */
    header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 8000; padding: 0;
      transition: background .4s, box-shadow .4s, padding .4s;
    }
    header.scrolled {
      background: rgba(8,8,8,0.92);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      box-shadow: 0 1px 0 rgba(255,255,255,0.04);
    }
    .header-inner {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 28px 0;
      transition: padding .4s;
    }
    header.scrolled .header-inner { padding: 18px 0; }
    .nav-left, .nav-right { display: flex; gap: 36px; align-items: center; }
    .nav-right { justify-content: flex-end; }
    nav a {
      font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
      color: rgba(240,237,230,0.82); text-decoration: none; transition: color .25s; position: relative;
    }
    nav a::after {
      content: ''; position: absolute; bottom: -2px; left: 0;
      width: 0; height: 1px; background: var(--gold); transition: width .3s;
    }
    nav a:hover { color: var(--text); }
    nav a:hover::after { width: 100%; }
    .logo-center { display: flex; justify-content: center; }
    .logo-center svg { height: 44px; width: auto; }
    .site-logo { display: block; width: auto; height: auto; }
    .site-logo-header { height: 44px; max-width: min(240px, 100%); }
    .btn-header {
      font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); border: 1px solid var(--gold-line);
      padding: 10px 24px; background: transparent; cursor: none;
      transition: background .25s, color .25s; font-family: 'Inter', sans-serif;
      font-weight: 500; text-decoration: none; display: inline-block;
    }
    .btn-header:hover { background: var(--gold); color: var(--bg); }
    .burger { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; padding: 4px; }
    .burger span { display: block; width: 24px; height: 1px; background: rgba(240,237,230,0.82); transition: .3s; }
    @media(max-width:1024px){
      .nav-left,
      .nav-right nav {
        display: none;
      }
      .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 22px 0;
      }
      .logo-center {
        order: 1;
        flex: 1 1 auto;
        min-width: 0;
        justify-content: flex-start;
      }
      .logo-center a {
        display: flex;
        align-items: center;
        max-width: 100%;
      }
      .site-logo-header {
        height: 38px;
        max-width: min(220px, 100%);
      }
      .nav-right {
        order: 2;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        margin-left: auto;
      }
      .btn-header {
        padding: 10px 16px;
        font-size: 10px;
        letter-spacing: 0.08em;
        white-space: nowrap;
      }
      .burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        padding: 0;
        flex-shrink: 0;
      }
    }
    @media(max-width:768px){
      .header-inner {
        gap: 14px;
        padding: 18px 0;
      }
      .site-logo-header {
        height: 34px;
        max-width: min(176px, 100%);
      }
      .btn-header {
        display: none;
      }
      .nav-right {
        gap: 0;
      }
      .burger {
        width: 40px;
        height: 40px;
      }
    }
    @media(max-width:480px){
      .header-inner {
        gap: 10px;
        padding: 16px 0;
      }
      .site-logo-header {
        height: 32px;
        max-width: min(156px, 100%);
      }
      .burger span {
        width: 22px;
      }
    }

    /* Mobile Menu */
    #mobile-menu {
      position: fixed; inset: 0; background: var(--bg); z-index: 100500;
      display: flex; flex-direction: column; justify-content: center;
      align-items: center; gap: 40px; opacity: 0; pointer-events: none; transition: opacity .4s;
    }
    #mobile-menu.open { opacity: 1; pointer-events: all; touch-action: pan-y; }
    #mobile-menu a {
      font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 8vw, 4rem);
      font-weight: 300; color: var(--text); text-decoration: none;
      letter-spacing: 0.05em; transition: color .25s;
    }
    #mobile-menu a:hover { color: var(--gold); }
    .menu-close { position: absolute; top: 28px; right: 24px; background: none; border: none; color: var(--text-2); font-size: 28px; cursor: none; }

    /* HERO */
    .hero { position: relative; height: 100svh; min-height: 700px; display: flex; align-items: flex-end; overflow: hidden; }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      z-index: 2;
      background:
        linear-gradient(90deg, rgba(8,8,8,0.70) 0%, rgba(8,8,8,0.42) 24%, rgba(8,8,8,0.10) 52%, rgba(8,8,8,0.20) 100%),
        radial-gradient(circle at 78% 34%, rgba(200,138,166,0.10) 0%, rgba(200,138,166,0) 30%);
      pointer-events: none;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('../images/projects-page/interior/forest-apartment.jpg');
      background-position: 72% center;
      background-size: cover;
      background-repeat: no-repeat;
      filter: saturate(0.92) brightness(0.82) contrast(1.02);
      transform: scale(1.03);
      transition: transform 8s ease, filter .45s ease;
    }
    .hero-bg.loaded { transform: scale(1); }
    .hero-overlay {
      position: absolute; inset: 0;
      z-index: 3;
      background:
        linear-gradient(to bottom, rgba(8,8,8,0.04) 0%, rgba(8,8,8,0.00) 20%, rgba(8,8,8,0.08) 46%, rgba(8,8,8,0.52) 78%, rgba(8,8,8,0.94) 100%);
    }
    .hero-overlay::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(54% 62% at 18% 48%, rgba(8,8,8,0.26) 0%, rgba(8,8,8,0.10) 34%, transparent 68%),
        radial-gradient(38% 42% at 78% 42%, rgba(246,233,218,0.08) 0%, rgba(246,233,218,0.02) 36%, transparent 72%);
      pointer-events: none;
    }
    .hero-content { position: relative; z-index: 10; padding-bottom: 80px; width: 100%; }
    .hero-label { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
    .hero-label .label { font-size: clamp(13px, 1.05vw, 16px); letter-spacing: 0.18em; }
    .hero-label::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
    .hero h1 { font-size: clamp(3.2rem, 7vw, 7.5rem); color: var(--white); max-width: 900px; margin-bottom: 32px; }
    .hero h1 em { color: var(--gold); font-style: italic; }
    .hero-sub {
      font-size: 15px;
      color: rgba(240,237,230,0.6);
      max-width: 620px;
      line-height: 1.8;
      margin-bottom: 48px;
      font-weight: 300;
      margin-left: -10px;
      position: relative;
      z-index: 1;
      padding: 26px 34px 28px;
      border-radius: 24px 56px 26px 44px;
      overflow: hidden;
      isolation: isolate;
    }
    .hero-sub::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -2;
      border-radius: inherit;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        radial-gradient(82% 86% at 72% 20%, rgba(200,138,166,0.12) 0%, rgba(200,138,166,0.03) 36%, transparent 70%);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow:
        0 18px 40px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.08);
      backdrop-filter: blur(14px) saturate(120%);
      -webkit-backdrop-filter: blur(14px) saturate(120%);
      opacity: 0.94;
    }
    .hero-sub::after {
      content: '';
      position: absolute;
      left: 20px;
      top: 18px;
      bottom: 18px;
      width: 1px;
      z-index: -1;
      background: linear-gradient(to bottom, rgba(200,170,132,0), rgba(200,170,132,0.72), rgba(200,170,132,0));
      opacity: 0.9;
    }
    .hero-sub-lens {
      position: relative;
      display: grid;
      gap: 7px;
      padding-right: 6px;
    }
    .hero-sub-lens::before {
      display: none;
    }
    .hero-sub-line {
      position: relative;
      display: inline-block;
      letter-spacing: 0.012em;
      text-wrap: balance;
    }
    .hero-sub-line:first-child {
      font-size: 0.96em;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(240,237,230,0.78);
    }
    .hero-sub-line:nth-child(2) {
      font-size: 1.08em;
    }
    .hero-sub-line-soft {
      margin-top: 2px;
      color: rgba(240,237,230,0.72);
      font-size: 0.96em;
    }
    .hero-sub-accent {
      position: relative;
      color: rgba(255,250,242,0.96);
      font-style: italic;
      text-shadow:
        0 0 18px rgba(255,245,232,0.18),
        0 10px 24px rgba(12,10,8,0.16);
    }
    .hero-actions { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 12px;
      background: var(--gold); color: var(--bg); font-size: 11px;
      letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
      padding: 18px 40px; text-decoration: none; cursor: none;
      transition: background .25s, transform .2s; font-family: 'Inter', sans-serif; border: none;
    }
    .btn-primary:hover { background: var(--gold-2); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent; color: var(--text); font-size: 11px;
      letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
      padding: 18px 40px; border: 1px solid rgba(255,255,255,0.15);
      text-decoration: none; cursor: none; transition: border-color .25s, color .25s; font-family: 'Inter', sans-serif;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
    .hero-stats { position: absolute; right: 0; bottom: 80px; display: flex; flex-direction: column; gap: 16px; text-align: right; }
    .hero-stat-card {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      box-sizing: border-box;
      padding: 20px 22px 18px 28px;
      min-width: 236px;
      min-height: 112px;
      isolation: isolate;
    }
    .hero-stat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px 32px 24px 34px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        radial-gradient(82% 86% at 72% 20%, rgba(200,138,166,0.12) 0%, rgba(200,138,166,0.03) 36%, transparent 70%);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow:
        0 18px 40px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.08);
      backdrop-filter: blur(14px) saturate(120%);
      -webkit-backdrop-filter: blur(14px) saturate(120%);
      opacity: 0.92;
      z-index: -1;
    }
    .hero-stat-card::after {
      content: '';
      position: absolute;
      left: 18px;
      top: 18px;
      bottom: 18px;
      width: 1px;
      background: linear-gradient(to bottom, rgba(200,170,132,0), rgba(200,170,132,0.72), rgba(200,170,132,0));
      opacity: 0.9;
      z-index: -1;
    }
    .hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--white); line-height: 1; }
    .hero-stat-label {
      display: block;
      min-height: 24px;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-2);
      margin-top: 6px;
      padding: 0;
    }
    .scroll-hint { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 10; }
    .scroll-hint span { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-3); }
    .scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
    @keyframes scrollPulse {
      0%, 100% { opacity: .3; transform: scaleY(.6); transform-origin: top; }
      50% { opacity: 1; transform: scaleY(1); }
    }

    /* MARQUEE */
    .marquee-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; overflow: hidden; background: var(--bg-2); }
    .marquee-track { display: flex; gap: 0; animation: marquee 28s linear infinite; width: max-content; }
    .marquee-item { display: flex; align-items: center; gap: 48px; padding: 0 48px; white-space: nowrap; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-3); }
    .marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ABOUT */
    .about {
      position: relative;
      padding: 148px 0;
      background: var(--bg);
    }
    .about-shell {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
      gap: clamp(48px, 7vw, 112px);
      align-items: center;
      width: 100%;
    }
    .about::before {
      content: '';
      position: absolute;
      inset: 48px 0 48px auto;
      width: min(44vw, 520px);
      background: radial-gradient(circle at 20% 35%, var(--rose-glow), transparent 58%), linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
      filter: blur(2px);
      pointer-events: none;
    }
    .about-text {
      position: relative;
      z-index: 1;
      max-width: 640px;
    }
    .about-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
      padding: 10px 14px;
      border: 1px solid var(--rose-line);
      background: rgba(255,255,255,0.02);
      color: var(--gold);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .about-text h2 {
      font-size: clamp(2.9rem, 4.4vw, 5.2rem);
      color: var(--white);
      margin: 22px 0 28px;
      line-height: 0.94;
      max-width: 11ch;
    }
    .about-text h2 em {
      color: var(--gold);
      font-style: italic;
      display: block;
    }
    .about-text p {
      color: var(--text-2);
      font-size: 15px;
      line-height: 1.95;
      margin-bottom: 18px;
      font-weight: 300;
      max-width: 58ch;
    }
    .about-note {
      margin-top: 28px;
      padding: 18px 22px;
      border-left: 1px solid var(--gold);
      background: linear-gradient(90deg, var(--rose-dim), rgba(200,138,166,0));
      color: var(--white);
      font-size: 14px;
      line-height: 1.8;
    }
    .about-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
      align-items: center;
    }
    .about-link {
      min-height: 46px;
    }
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      margin-top: 44px;
      border: 1px solid var(--border);
    }
    .about-stat {
      background: var(--bg-card);
      padding: 28px 24px;
      text-align: center;
    }
    .about-stat-n {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
    }
    .about-stat-l {
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-top: 8px;
    }
    .about-visual {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: flex-end;
    }
    .about-portrait-wrap {
      position: relative;
      width: min(100%, 520px);
      padding: 34px 26px 84px 34px;
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
      border: 1px solid rgba(255,255,255,0.08);
      overflow: visible;
    }
    .about-portrait-wrap::before {
      content: '';
      position: absolute;
      inset: 18px 18px auto auto;
      width: 92px;
      height: 92px;
      border-top: 1px solid rgba(200,138,166,0.45);
      border-right: 1px solid rgba(200,138,166,0.45);
      pointer-events: none;
    }
    .about-portrait-wrap::after {
      content: '';
      position: absolute;
      left: -14px;
      bottom: 58px;
      width: 72px;
      height: 72px;
      border-left: 1px solid rgba(200,138,166,0.35);
      border-bottom: 1px solid rgba(200,138,166,0.35);
      pointer-events: none;
    }
    .about-img-main {
      position: relative;
      z-index: 1;
      width: 100%;
      aspect-ratio: 0.79;
      object-fit: cover;
      object-position: center top;
      display: block;
      filter: saturate(0.96) contrast(1.02);
    }
    .about-year {
      position: absolute;
      top: 28px;
      left: -28px;
      z-index: 3;
      background: var(--gold);
      color: var(--bg);
      padding: 16px 22px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      box-shadow: 0 16px 40px rgba(0,0,0,0.24);
    }
    .about-glow {
      position: absolute;
      right: -34px;
      bottom: 84px;
      width: 160px;
      height: 160px;
      background: radial-gradient(circle, var(--rose-glow), transparent 68%);
      filter: blur(8px);
      pointer-events: none;
    }
    .about-project-card {
      position: absolute;
      left: -46px;
      bottom: 0;
      z-index: 3;
      width: min(94%, 416px);
      padding: 15px 20px 14px;
      background: rgba(8,8,8,0.88);
      border: 1px solid var(--rose-line);
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 48px rgba(0,0,0,0.28), 0 0 0 1px rgba(200,138,166,0.08);
    }
    .about-project-label {
      display: inline-block;
      margin-bottom: 12px;
      color: var(--gold);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .about-project-card strong {
      display: block;
      font-size: 22px;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 12px;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 500;
    }
    .about-project-card p {
      margin: 0;
      color: var(--text-2);
      font-size: 13px;
      line-height: 1.8;
    }
    @media(max-width:980px){
      .about { padding: 96px 0; }
      .about-shell {
        grid-template-columns: 1fr;
        gap: 64px;
      }
      .about::before {
        inset: auto 0 0 0;
        width: 100%;
        height: 42%;
      }
      .about-text,
      .about-visual {
        max-width: 700px;
        width: 100%;
        margin-inline: auto;
      }
      .about-visual {
        justify-content: center;
        order: 2;
      }
      .about-text {
        order: 1;
      }
      .about-project-card {
        left: 18px;
        bottom: -30px;
      }
    }
    @media(max-width:768px){
      .about {
        padding-top: 84px;
        padding-bottom: 84px;
      }
      .about-shell { gap: 52px; }
      .about-kicker {
        font-size: 10px;
        letter-spacing: 0.14em;
      }
      .about-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .about-actions .btn-primary,
      .about-actions .about-link {
        justify-content: center;
        width: 100%;
      }
      .about-stats {
        grid-template-columns: 1fr;
      }
      .about-portrait-wrap {
        padding: 24px 18px 92px 24px;
      }
      .about-year {
        left: -10px;
      }
      .about-project-card {
        left: 14px;
        right: 14px;
        width: auto;
      }
    }
    @media(max-width:600px){
      .btn-header {
        padding: 10px 14px;
        font-size: 10px;
        letter-spacing: 0.08em;
        white-space: nowrap;
      }
      .nav-right {
        min-width: 0;
      }
      .about-shell { gap: 40px; }
      .about-text p {
        max-width: 100%;
      }
      .about-stat {
        padding: 24px 20px;
      }
    }
    @media(max-width:480px){
      .header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 12px;
      }
      .logo-center {
        min-width: 0;
      }
      .logo-center svg {
        width: 148px;
        height: auto;
      }
      .site-logo-header {
        height: 34px;
        max-width: min(170px, 100%);
      }
      .nav-right {
        gap: 10px;
      }
      .btn-header {
        padding: 9px 12px;
        font-size: 10px;
        letter-spacing: 0.04em;
      }
      .about {
        gap: 34px;
        padding-top: 72px;
        padding-bottom: 72px;
      }
      .about-text {
        padding-inline: 2px;
      }
      .about-portrait-wrap {
        width: 100%;
        padding: 18px 12px 88px 18px;
      }
      .about-project-card {
        left: 10px;
        right: 10px;
        padding: 14px 15px 13px;
      }
      .about-project-card strong {
        font-size: 20px;
      }
      .about-glow {
        width: 120px;
        height: 120px;
        right: -18px;
      }
    }

    /* SERVICES */
    .services { padding: 120px 0; background: var(--bg-2); }
    .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 72px; gap: 40px; flex-wrap: wrap; }
    .section-title { margin-top: 16px; }
    .section-title h2 { font-size: clamp(2.4rem, 4vw, 4rem); color: var(--white); }
    .section-desc { max-width: 360px; font-size: 14px; color: var(--text-2); line-height: 1.8; font-weight: 300; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
    @media(max-width:900px){ .services-grid { grid-template-columns: repeat(2,1fr); } }
    @media(max-width:560px){ .services-grid { grid-template-columns: 1fr; } }
    .service-card { background: var(--bg-card); padding: 48px 40px; position: relative; overflow: hidden; transition: background .3s; }
    .service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.16,1,.3,1); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover { background: linear-gradient(180deg, rgba(200,138,166,0.08), rgba(200,138,166,0.02)), var(--bg-3); }
    .service-num { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 300; color: rgba(255,250,245,0.92); line-height: 1; margin-bottom: 32px; transition: color .3s; text-shadow: 0 10px 24px rgba(0,0,0,0.18); }
    .service-card:hover .service-num { color: inherit; }
    .service-icon { width: 48px; height: 48px; stroke: var(--gold); fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 24px; display: block; }
    .service-card h3 { font-size: 18px; color: var(--white); margin-bottom: 16px; font-weight: 400; letter-spacing: 0.02em; }
    .service-card p { font-size: 13px; color: var(--text-2); line-height: 1.8; font-weight: 300; }
    .service-price { margin: 0 0 14px; font-size: 12px; letter-spacing: 0.08em; text-transform: none; color: var(--gold); line-height: 1.6; }

    /* PORTFOLIO */
    .portfolio { padding: 120px 0 0; overflow: hidden; }
    .portfolio-header { padding-bottom: 60px; }
    .portfolio-scroll-wrap { overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; cursor: none; }
    .portfolio-scroll-wrap::-webkit-scrollbar { display: none; }
    .portfolio-track { display: flex; gap: 2px; padding: 0 48px 80px; width: max-content; }
    @media(max-width:768px){ .portfolio-track { padding: 0 24px 60px; } }
    .portfolio-item { position: relative; flex-shrink: 0; overflow: hidden; }
    .portfolio-item:nth-child(odd) { width: 520px; height: 680px; }
    .portfolio-item:nth-child(even) { width: 400px; height: 680px; }
    @media(max-width:768px){ .portfolio-item:nth-child(odd) { width: 300px; height: 420px; } .portfolio-item:nth-child(even) { width: 240px; height: 420px; } }
    .portfolio-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.16,1,.3,1), filter .4s; filter: brightness(0.85) grayscale(15%); }
    .portfolio-item:hover .portfolio-img { transform: scale(1.05); filter: brightness(0.7) grayscale(0%); }
    .portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 55%); opacity: 0; transition: opacity .4s; }
    .portfolio-item:hover .portfolio-overlay { opacity: 1; }
    .portfolio-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 32px; transform: translateY(20px); opacity: 0; transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .4s; }
    .portfolio-item:hover .portfolio-info { transform: none; opacity: 1; }
    .portfolio-cat { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
    .portfolio-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--white); }
    .portfolio-area { font-size: 12px; color: rgba(240,237,230,0.5); margin-top: 4px; }
    .portfolio-nav { display: flex; align-items: center; gap: 16px; padding: 0 48px; margin-bottom: 80px; }
    .port-btn { width: 52px; height: 52px; border: 1px solid var(--border); background: transparent; color: var(--text-2); display: flex; align-items: center; justify-content: center; cursor: none; transition: border-color .25s, color .25s, background .25s; }
    .port-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--rose-dim); }
    .port-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
    .port-progress { flex: 1; height: 1px; background: var(--border); position: relative; overflow: hidden; }
    .port-progress-bar { height: 100%; background: var(--gold); width: 20%; transition: width .3s; }

    /* PROCESS */
    .process { padding: 120px 0; }
    .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 72px; border: 1px solid var(--border); }
    @media(max-width:900px){ .process-grid { grid-template-columns: repeat(2,1fr); } }
    @media(max-width:560px){ .process-grid { grid-template-columns: 1fr; } }
    .process-step { padding: 52px 40px; border-right: 1px solid var(--border); position: relative; transition: background .3s; }
    .process-step:last-child { border-right: none; }
    .process-step:hover { background: var(--bg-2); }
    @media(max-width:900px){ .process-step:nth-child(2) { border-right: none; } .process-step { border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); } .process-step:nth-child(even) { border-right: none; } }
    .process-num { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 24px; opacity: 0.4; }
    .process-step h3 { font-size: 15px; color: var(--white); font-weight: 500; margin-bottom: 8px; letter-spacing: 0.05em; }
    .process-kicker { margin-bottom: 14px; font-size: 12px; letter-spacing: 0.08em; color: var(--gold); line-height: 1.6; }
    .process-step p { font-size: 13px; color: var(--text-2); line-height: 1.8; font-weight: 300; }
    .process-arrow { position: absolute; top: 52px; right: 40px; width: 28px; height: 28px; stroke: var(--text-3); fill: none; stroke-width: 1.2; }

    /* TESTIMONIALS */
    .testimonials {
      position: relative;
      padding: 128px 0;
      background:
        radial-gradient(circle at 14% 18%, rgba(200,138,166,0.09), transparent 34%),
        radial-gradient(circle at 88% 78%, rgba(39,106,139,0.12), transparent 32%),
        var(--bg-2);
      overflow: hidden;
    }
    .testimonials::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    }
    .testi-header {
      align-items: end;
      gap: 40px;
    }
    .testi-intro {
      max-width: 460px;
      font-size: 14px;
      line-height: 1.9;
      color: var(--text-2);
      font-weight: 300;
    }
    .testi-slider {
      position: relative;
      overflow: hidden;
      margin-top: 72px;
      padding: 0 48px;
    }
    .testi-track {
      display: flex;
      transition: transform .7s cubic-bezier(.16,1,.3,1);
    }
    .testi-card {
      min-width: 100%;
    }
    .testi-shell {
      display: grid;
      grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.52fr) minmax(240px, 0.56fr);
      align-items: stretch;
      gap: clamp(24px, 3vw, 42px);
      padding: clamp(34px, 5vw, 56px);
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
      border: 1px solid rgba(255,255,255,0.07);
      box-shadow: 0 24px 80px rgba(0,0,0,0.18);
      backdrop-filter: blur(10px);
    }
    .testi-bridge-card {
      position: relative;
      align-self: center;
      display: grid;
      gap: 16px;
      padding: 18px;
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(39,106,139,0.08), rgba(200,138,166,0.04));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    }
    .testi-bridge-card::before {
      content: '';
      position: absolute;
      inset: 14px auto auto 14px;
      width: 48px;
      height: 48px;
      border-top: 1px solid rgba(200,138,166,0.24);
      border-left: 1px solid rgba(200,138,166,0.24);
      pointer-events: none;
    }
    .testi-bridge-label {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      color: var(--gold);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .testi-bridge-media {
      margin: 0;
      aspect-ratio: 0.9;
      overflow: hidden;
      background: rgba(255,255,255,0.03);
    }
    .testi-bridge-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .testi-bridge-facts {
      display: grid;
      gap: 8px;
    }
    .testi-bridge-facts span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 8px 12px;
      border: 1px solid rgba(255,255,255,0.06);
      background: rgba(255,255,255,0.03);
      color: var(--text);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .testi-copy {
      position: relative;
      min-width: 0;
    }
    .testi-copy::before {
      content: '\201C';
      position: absolute;
      top: -10px;
      left: -8px;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(4rem, 7vw, 6rem);
      line-height: 1;
      color: rgba(39,106,139,0.2);
      pointer-events: none;
    }
    .testi-kicker {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border: 1px solid var(--gold-line);
      background: rgba(255,255,255,0.02);
      color: var(--gold);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 26px;
    }
    .testi-quote {
      position: relative;
      z-index: 1;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.22rem, 1.9vw, 1.78rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.28;
      margin-bottom: 40px;
      font-style: normal;
      max-width: 27ch;
    }
    .testi-meta {
      display: grid;
      gap: 8px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.08);
      max-width: 440px;
    }
    .testi-name {
      font-size: 15px;
      color: var(--white);
      font-weight: 500;
      letter-spacing: 0.03em;
    }
    .testi-role {
      font-size: 11px;
      color: var(--text-3);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      line-height: 1.8;
    }
    .testi-project-card {
      position: relative;
      align-self: end;
      padding: 28px 26px 24px;
      background:
        linear-gradient(180deg, rgba(200,138,166,0.08), rgba(200,138,166,0.02)),
        rgba(8,8,8,0.74);
      border: 1px solid rgba(200,138,166,0.18);
      min-height: 100%;
    }
    .testi-project-card::before {
      content: '';
      position: absolute;
      inset: 18px 18px auto auto;
      width: 72px;
      height: 72px;
      border-top: 1px solid rgba(39,106,139,0.28);
      border-right: 1px solid rgba(39,106,139,0.28);
      pointer-events: none;
    }
    .testi-project-label {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--gold);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .testi-project-card strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem, 2.3vw, 2.2rem);
      font-weight: 400;
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 14px;
      max-width: 10ch;
    }
    .testi-project-card p {
      margin: 0;
      color: var(--text-2);
      font-size: 13px;
      line-height: 1.85;
      font-weight: 300;
    }
    .testi-project-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }
    .testi-project-meta span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 8px 12px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      color: var(--text);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .testi-controls {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 44px;
      padding: 0 48px;
    }
    .testi-btn {
      width: 48px;
      height: 48px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text-2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: none;
      transition: border-color .25s, color .25s, background .25s;
    }
    .testi-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(39,106,139,0.08);
    }
    .testi-btn svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.5;
    }
    .testi-dots {
      display: flex;
      gap: 8px;
    }
    .testi-dot {
      width: 24px;
      height: 1px;
      background: var(--text-3);
      transition: background .3s, width .3s;
      cursor: none;
    }
    .testi-dot.active {
      width: 52px;
      background: var(--gold);
    }
    @media(max-width:1024px){
      .testi-slider,
      .testi-controls {
        padding: 0 24px;
      }
      .testi-shell {
        grid-template-columns: 1fr minmax(220px, 0.7fr);
      }
      .testi-copy {
        grid-column: 1 / -1;
      }
      .testi-quote {
        max-width: none;
      }
      .testi-bridge-card,
      .testi-project-card {
        min-height: auto;
      }
    }
    @media(max-width:768px){
      .testimonials {
        padding: 96px 0;
      }
      .testi-header {
        gap: 24px;
      }
      .testi-intro {
        max-width: none;
      }
      .testi-slider,
      .testi-controls {
        padding: 0 20px;
      }
      .testi-shell {
        grid-template-columns: 1fr;
        padding: 28px 22px;
        gap: 22px;
      }
      .testi-bridge-card {
        padding: 16px;
      }
      .testi-bridge-media {
        aspect-ratio: 1.15;
      }
      .testi-kicker {
        margin-bottom: 20px;
      }
      .testi-copy::before {
        top: -4px;
        left: -2px;
      }
      .testi-controls {
        gap: 14px;
      }
      .testi-dot.active {
        width: 40px;
      }
    }

    /* CONTACT */
    .contact-section { padding: 120px 0; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
    @media(max-width:900px){ .contact-grid { grid-template-columns: 1fr; gap: 60px; } }
    .contact-info h2 { font-size: clamp(2.4rem, 4vw, 3.8rem); color: var(--white); margin: 16px 0 32px; }
    .contact-info p { font-size: 15px; color: var(--text-2); line-height: 1.9; font-weight: 300; margin-bottom: 48px; }
    .contact-links { display: flex; flex-direction: column; gap: 4px; }
    .contact-link { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); transition: color .25s; font-size: 15px; }
    .contact-link:hover { color: var(--gold); }
    .contact-link svg { width: 20px; height: 20px; flex-shrink: 0; }
    .contact-link-label { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-3); margin-left: auto; }
    .messengers-title { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-3); margin: 40px 0 24px; }
    .messengers-row { display: flex; flex-wrap: wrap; gap: 12px; }
    .mess-btn { display: flex; align-items: center; gap: 10px; padding: 12px 20px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-2); text-decoration: none; font-size: 12px; letter-spacing: 0.08em; transition: border-color .25s, color .25s, background .25s; cursor: none; }
    .mess-btn:hover { border-color: var(--gold-line); color: var(--text); background: linear-gradient(180deg, rgba(200,138,166,0.07), rgba(200,138,166,0.02)), var(--bg-3); }
    .mess-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
    .contact-form { background: var(--bg-card); padding: 56px 48px; border: 1px solid var(--border); }
    @media(max-width:600px){ .contact-form { padding: 32px 24px; } }
    .form-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 8px; }
    .form-sub { font-size: 13px; color: var(--text-3); margin-bottom: 40px; }
    .form-group { margin-bottom: 20px; position: relative; }
    .form-group label { display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
    .form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--bg-2); border: 1px solid var(--border); color: var(--text); padding: 16px 20px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300; outline: none; transition: border-color .25s; border-radius: 0; appearance: none; -webkit-appearance: none; }
    .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5450' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 20px center; padding-right: 44px; }
    .form-group select option { background: var(--bg-2); color: var(--text); }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold-line); }
    .form-group textarea { min-height: 100px; resize: vertical; }
    .form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-3); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    @media(max-width:520px){ .form-row { grid-template-columns: 1fr; } }
    .btn-submit { width: 100%; background: var(--gold); color: var(--bg); border: none; padding: 20px; font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; cursor: none; transition: background .25s; margin-top: 8px; }
    .btn-submit:hover { background: var(--gold-2); }
    .form-success { display: none; text-align: center; padding: 40px 0; }
    .form-success svg { width: 56px; height: 56px; stroke: var(--gold); fill: none; stroke-width: 1.2; margin: 0 auto 20px; display: block; }
    .form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 12px; }
    .form-success p { font-size: 14px; color: var(--text-2); }

    /* MAP */
    .map-section { position: relative; height: 480px; background: var(--bg-2); overflow: hidden; }
    .map-section iframe { width: 100%; height: 100%; border: none; filter: grayscale(100%) invert(90%) contrast(90%); opacity: 0.7; }
    .map-card { position: absolute; left: 48px; top: 50%; transform: translateY(-50%); background: var(--bg); border: 1px solid var(--border); padding: 40px; max-width: 320px; z-index: 10; }
    @media(max-width:768px){ .map-card { left: 20px; right: 20px; max-width: none; top: auto; bottom: 20px; transform: none; } .map-section { height: 500px; } }
    .map-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--white); margin-bottom: 20px; }
    .map-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
    .map-detail svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
    .map-detail span { font-size: 13px; color: var(--text-2); line-height: 1.6; }

    /* POPUP */
    #popup-overlay { position: fixed; inset: 0; background: rgba(8,8,8,0.85); backdrop-filter: blur(12px); z-index: 9000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .35s; }
    #popup-overlay.open { opacity: 1; pointer-events: all; }
    .popup-box { background: var(--bg-card); border: 1px solid var(--border); padding: 64px; max-width: 560px; width: 100%; margin: 24px; position: relative; transform: translateY(30px); transition: transform .4s cubic-bezier(.16,1,.3,1); }
    #popup-overlay.open .popup-box { transform: none; }
    .popup-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--text-3); cursor: none; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; transition: color .25s; }
    .popup-close:hover { color: var(--text); }
    .popup-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
    @media(max-width:600px){ .popup-box { padding: 40px 24px; } }

    /* FOOTER */
    footer { background: var(--bg-2); border-top: 1px solid var(--border); }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding: 80px 0 60px; border-bottom: 1px solid var(--border); }
    @media(max-width:1000px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
    @media(max-width:580px){ .footer-top { grid-template-columns: 1fr; } }
    .footer-brand svg { height: 40px; width: auto; margin-bottom: 24px; }
    .site-logo-footer { height: 40px; width: auto; margin-bottom: 24px; max-width: min(220px, 100%); }
    .footer-brand p { font-size: 13px; color: var(--text-3); line-height: 1.8; max-width: 260px; font-weight: 300; }
    .footer-col h4 { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-3); margin-bottom: 24px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul a { font-size: 13px; color: var(--text-2); text-decoration: none; transition: color .25s; }
    .footer-col ul a:hover { color: var(--gold); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; flex-wrap: wrap; gap: 16px; }
    .footer-bottom p { font-size: 12px; color: var(--text-3); }
    .footer-bottom a { color: var(--text-3); text-decoration: none; transition: color .25s; }
    .footer-bottom a:hover { color: var(--gold); }
    .footer-socials { display: flex; gap: 16px; }
    .footer-social-btn { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-3); transition: border-color .25s, color .25s; text-decoration: none; }
    .footer-social-btn:hover { border-color: var(--gold-line); color: var(--gold); }
    .footer-social-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.footer-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-meta-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-meta-links a { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 767px) {
  .footer-meta { width: 100%; justify-content: space-between; }
  .footer-meta-links { gap: 12px; }
}

    /* MISC */
    @media(max-width:768px){ .hero-stats { display: none; } .about-img-accent { display: none; } .about-year { display: none; } .section-header { flex-direction: column; align-items: flex-start; } }
    ::selection { background: var(--gold); color: var(--bg); }
    ::-webkit-scrollbar { width: 4px; height: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--gold-line); }
    .gold-sep { width: 40px; height: 1px; background: var(--gold); margin: 0; }


    /* QUICK CONTACT */
    .quick-contact {
      position: fixed;
      right: 108px;
      bottom: 32px;
      z-index: 97500;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 14px;
      pointer-events: none;
    }
    .quick-contact-panel {
      width: min(320px, calc(100vw - 40px));
      padding: 16px;
      background: rgba(9,9,9,0.92);
      border: 1px solid rgba(39,106,139,0.22);
      box-shadow: 0 24px 64px rgba(0,0,0,0.26);
      backdrop-filter: blur(16px);
      display: grid;
      gap: 10px;
      opacity: 0;
      transform: translateY(12px) scale(0.98);
      pointer-events: none;
      transition: opacity .25s, transform .25s;
    }
    .quick-contact.open .quick-contact-panel {
      opacity: 1;
      transform: none;
      pointer-events: auto;
    }
    .quick-contact-toggle {
      min-height: 56px;
      padding: 0 18px 0 22px;
      border: 1px solid var(--gold-line);
      background: linear-gradient(180deg, rgba(39,106,139,0.18), rgba(39,106,139,0.08)), rgba(8,8,8,0.92);
      color: var(--white);
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      cursor: none;
      pointer-events: auto;
      transition: transform .25s, border-color .25s, background .25s;
      box-shadow: 0 12px 36px rgba(0,0,0,0.22);
    }
    .quick-contact-toggle:hover {
      transform: translateY(-2px);
      border-color: rgba(39,106,139,0.42);
      background: linear-gradient(180deg, rgba(39,106,139,0.24), rgba(39,106,139,0.12)), rgba(8,8,8,0.96);
    }
    .quick-contact-toggle svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      transition: transform .25s;
    }
    .quick-contact.open .quick-contact-toggle svg {
      transform: rotate(45deg);
    }
    .quick-contact-link {
      display: grid;
      gap: 4px;
      width: 100%;
      padding: 14px 16px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.06);
      color: var(--text);
      text-decoration: none;
      text-align: left;
      transition: border-color .25s, background .25s, transform .25s;
      pointer-events: none;
      cursor: none;
    }
    .quick-contact.open .quick-contact-link {
      pointer-events: auto;
    }
    .quick-contact-link:hover {
      transform: translateX(-2px);
      border-color: rgba(200,138,166,0.24);
      background: linear-gradient(180deg, rgba(200,138,166,0.08), rgba(200,138,166,0.02)), rgba(255,255,255,0.02);
    }
    .quick-contact-link-button {
      font: inherit;
      appearance: none;
      border-radius: 0;
    }
    .quick-contact-link-title {
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .quick-contact-link-sub {
      font-size: 13px;
      line-height: 1.6;
      color: var(--text-2);
      letter-spacing: 0.02em;
      text-transform: none;
    }
    @media(max-width:1024px){
      .quick-contact {
        right: 24px;
        bottom: 104px;
      }
      .quick-contact-toggle-label {
        display: none;
      }
      .quick-contact-toggle {
        width: 56px;
        padding: 0;
        justify-content: center;
      }
    }
    @media(max-width:768px){
      .quick-contact {
        left: 20px;
        right: auto;
        bottom: 24px;
        align-items: flex-start;
      }
      .quick-contact-panel {
        width: min(286px, calc(100vw - 40px));
      }
    }

    /* Visual Editor Styles */

    /* Edit mode indicator on body */
    body.edit-mode { cursor: default !important; }
    body.edit-mode #cursor, body.edit-mode #cursor-ring { display: none; }

    /* Toggle button */
    #editor-toggle {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 99000;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--gold);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(39,106,139,0.35);
      transition: transform .25s, background .25s, box-shadow .25s;
    }
    #editor-toggle:hover { transform: scale(1.08); background: var(--gold-2); }
    #editor-toggle svg { width: 24px; height: 24px; stroke: #080808; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s; }
    #editor-toggle.active { background: #1a1a1a; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
    #editor-toggle.active svg { stroke: var(--gold); }
    #editor-toggle .tooltip {
      position: absolute;
      right: 68px;
      white-space: nowrap;
      background: #1a1a1a;
      color: var(--gold);
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 8px 16px;
      border: 1px solid var(--gold-line);
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s;
    }
    #editor-toggle:hover .tooltip { opacity: 1; }

    /* Editor panel */
    #editor-panel {
      position: fixed;
      top: 0;
      right: 0;
      width: 360px;
      height: 100vh;
      background: #0d0d0d;
      border-left: 1px solid var(--gold-line);
      z-index: 98000;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(.16,1,.3,1);
      font-family: 'Inter', sans-serif;
    }
    #editor-panel.open { transform: translateX(0); }

    .ep-header {
      padding: 24px 24px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
    }
    .ep-title {
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }
    .ep-close {
      width: 32px; height: 32px;
      background: none; border: none;
      color: var(--text-3); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: color .2s;
    }
    .ep-close:hover { color: var(--text); }
    .ep-close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

    /* Mode tabs */
    .ep-tabs {
      display: flex;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      flex-shrink: 0;
    }
    .ep-tab {
      flex: 1;
      padding: 14px;
      background: none;
      border: none;
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-3);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: color .2s, border-color .2s;
    }
    .ep-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

    /* Hint */
    .ep-hint {
      padding: 20px 24px;
      background: var(--rose-dim);
      border-bottom: 1px solid rgba(255,255,255,0.04);
      flex-shrink: 0;
    }
    .ep-hint p {
      font-size: 12px;
      color: var(--text-3);
      line-height: 1.6;
    }
    .ep-hint strong { color: var(--gold); font-weight: 500; }

    /* Content area */
    .ep-body {
      flex: 1;
      overflow-y: auto;
      padding: 0;
    }
    .ep-body::-webkit-scrollbar { width: 3px; }
    .ep-body::-webkit-scrollbar-thumb { background: rgba(39,106,139,0.2); }

    /* Element selected state */
    .ep-selected-info {
      padding: 20px 24px;
      background: rgba(39,106,139,0.08);
      border-bottom: 1px solid var(--gold-line);
      display: none;
    }
    .ep-selected-info.show { display: block; }
    .ep-selected-label {
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 4px;
    }
    .ep-selected-name {
      font-size: 13px;
      color: var(--gold);
      font-weight: 500;
    }

    /* Fields */
    .ep-section {
      padding: 20px 24px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .ep-section-title {
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 16px;
    }
    .ep-field { margin-bottom: 16px; }
    .ep-field label {
      display: block;
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 8px;
    }
    .ep-field input[type="text"],
    .ep-field input[type="url"],
    .ep-field textarea {
      width: 100%;
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--text);
      padding: 10px 14px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 300;
      outline: none;
      border-radius: 0;
      transition: border-color .2s;
      resize: vertical;
    }
    .ep-field input:focus,
    .ep-field textarea:focus { border-color: var(--gold-line); }
    .ep-field input::placeholder,
    .ep-field textarea::placeholder { color: var(--text-3); }
    .ep-field textarea { min-height: 80px; }

    /* Color picker row */
    .ep-field input[type="color"] {
      width: 40px; height: 36px;
      padding: 2px;
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,0.08);
      cursor: pointer;
      border-radius: 0;
    }
    .ep-color-row { display: flex; align-items: center; gap: 10px; }
    .ep-color-row input[type="text"] { flex: 1; }

    /* Image preview */
    .ep-img-preview {
      width: 100%;
      height: 120px;
      object-fit: cover;
      display: block;
      margin-bottom: 10px;
      border: 1px solid rgba(255,255,255,0.06);
    }

    /* Apply button */
    .ep-apply {
      width: 100%;
      padding: 14px;
      background: var(--gold);
      color: #080808;
      border: none;
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s;
      margin-top: 4px;
    }
    .ep-apply:hover { background: var(--gold-2); }

    /* Theme editor */
    .ep-theme-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .ep-theme-swatch { display: flex; flex-direction: column; gap: 6px; }
    .ep-theme-swatch label { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); }
    .ep-theme-swatch input[type="color"] { width: 100%; height: 40px; padding: 3px; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.08); cursor: pointer; border-radius: 0; }

    /* Section list */
    .ep-section-list { padding: 12px 0; }
    .ep-section-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 24px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      transition: background .2s;
    }
    .ep-section-item:hover { background: rgba(255,255,255,0.02); }
    .ep-section-item-name { font-size: 12px; color: var(--text-2); }
    .ep-section-item-actions { display: flex; gap: 8px; }
    .ep-vis-btn {
      width: 28px; height: 28px;
      background: none; border: 1px solid rgba(255,255,255,0.06);
      color: var(--text-3); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: border-color .2s, color .2s;
    }
    .ep-vis-btn:hover { border-color: var(--gold-line); color: var(--gold); }
    .ep-vis-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

    /* Hover highlight on editable elements */
    body.edit-mode [data-editable]:not(.ep-no-highlight) {
      transition: outline .15s, box-shadow .15s;
    }
    body.edit-mode [data-editable]:hover {
      outline: 1px dashed var(--gold-line);
      outline-offset: 3px;
      cursor: crosshair !important;
    }
    body.edit-mode [data-editable].ep-active {
      outline: 2px solid var(--gold) !important;
      outline-offset: 3px;
    }

    /* Toast */
    #ep-toast {
      position: fixed;
      bottom: 100px;
      right: 32px;
      background: #1a1a1a;
      border: 1px solid var(--gold-line);
      color: var(--gold);
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 12px 20px;
      z-index: 99001;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .3s, transform .3s;
      pointer-events: none;
    }
    #ep-toast.show { opacity: 1; transform: none; }

    /* Restore btn */
    .ep-restore {
      width: 100%;
      padding: 12px;
      background: transparent;
      color: var(--text-3);
      border: 1px solid rgba(255,255,255,0.06);
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      transition: border-color .2s, color .2s;
      margin-top: 8px;
    }
    .ep-restore:hover { border-color: rgba(255,255,255,0.15); color: var(--text-2); }
















    /* THEME TOGGLE */
    html[data-theme="light"] {
      --gold: #276A8B;
      --gold-2: #4E96B8;
      --gold-dim: rgba(39,106,139,0.14);
      --gold-line: rgba(39,106,139,0.28);
      --rose: #C88AA6;
      --rose-soft: #DEB0C3;
      --rose-dim: rgba(200,138,166,0.10);
      --rose-line: rgba(200,138,166,0.22);
      --rose-glow: rgba(200,138,166,0.18);
      --bg: #f6f1ea;
      --bg-2: #fbf7f1;
      --bg-3: #efe7de;
      --bg-card: #fffaf5;
      --text: #1d1a17;
      --text-2: #5f5a54;
      --text-3: #948c83;
      --white: #171411;
      --border: rgba(29,26,23,0.08);
    }
    html[data-theme="light"] header.scrolled {
  background: linear-gradient(90deg, var(--rose-dim), rgba(200,138,166,0)), rgb(236, 215, 209) !important;
  box-shadow: 0 1px 0 rgba(29,26,23,0.14) !important , 0 14px 34px rgba(29,26,23,0.08);
}
    html[data-theme="light"] .site-logo-header,
    html[data-theme="light"] .site-logo-footer {
      filter: invert(1) brightness(0.18);
    }
    html[data-theme="light"] .hero::before {
      background:
        linear-gradient(90deg, rgba(246,241,234,0.62) 0%, rgba(246,241,234,0.30) 26%, rgba(246,241,234,0.06) 54%, rgba(246,241,234,0.10) 100%),
        radial-gradient(circle at 78% 34%, rgba(200,138,166,0.08) 0%, rgba(200,138,166,0) 28%),
        radial-gradient(circle at 88% 26%, rgba(241,226,212,0.32) 0%, rgba(241,226,212,0.06) 26%, rgba(241,226,212,0) 48%);
    }
    html[data-theme="light"] .hero-bg {
      filter: saturate(0.86) brightness(1.05) contrast(0.94);
      background-position: 74% center;
    }
    html[data-theme="light"] .hero-overlay {
      background:
        linear-gradient(to bottom, rgba(246,241,234,0.02) 0%, rgba(246,241,234,0.00) 20%, rgba(246,241,234,0.06) 48%, rgba(29,26,23,0.10) 76%, rgba(246,241,234,0.90) 100%);
    }
    html[data-theme="light"] .hero-overlay::before {
      background:
        radial-gradient(56% 62% at 16% 50%, rgba(245,235,224,0.42) 0%, rgba(245,235,224,0.12) 34%, transparent 68%),
        radial-gradient(34% 40% at 84% 34%, rgba(236,220,201,0.48) 0%, rgba(236,220,201,0.10) 32%, transparent 66%),
        linear-gradient(90deg, rgba(246,241,234,0.08) 0%, rgba(246,241,234,0.00) 36%, rgba(234,221,209,0.12) 72%, rgba(246,241,234,0.03) 100%);
    }
    html[data-theme="light"] .hero-sub {
      color: rgba(24,20,18,0.90);
      border-radius: 24px 56px 26px 44px;
    }
    html[data-theme="light"] .hero-sub::before {
      inset: 0;
      border-radius: inherit;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,250,245,0.08)),
        radial-gradient(86% 88% at 74% 22%, rgba(229,200,171,0.20) 0%, rgba(229,200,171,0.05) 34%, transparent 68%),
        radial-gradient(96% 98% at 24% 100%, rgba(216,180,157,0.14) 0%, rgba(216,180,157,0.03) 36%, transparent 72%);
      border: 1px solid rgba(255,255,255,0.26);
      box-shadow:
        0 18px 40px rgba(29,26,23,0.10),
        inset 0 1px 0 rgba(255,255,255,0.34);
      backdrop-filter: blur(18px) saturate(142%);
      -webkit-backdrop-filter: blur(18px) saturate(142%);
      opacity: 1;
    }
    html[data-theme="light"] .hero-sub::after {
      left: 20px;
      top: 18px;
      bottom: 18px;
      right: auto;
      width: 1px;
      height: auto;
      background: linear-gradient(to bottom, rgba(192,154,118,0), rgba(192,154,118,0.78), rgba(192,154,118,0));
      transform: none;
      filter: none;
      opacity: 0.92;
    }
    html[data-theme="light"] .hero-sub-lens::before {
      display: none;
    }
    html[data-theme="light"] .hero-sub-line:first-child {
      color: rgba(52,46,43,0.80);
    }
    html[data-theme="light"] .hero-sub-line-soft {
      color: rgba(68,60,56,0.74);
    }
    html[data-theme="light"] .hero-sub-accent {
      color: #2b211a;
      text-shadow:
        0 0 10px rgba(255,250,244,0.28),
        0 8px 18px rgba(187,152,120,0.08);
    }
    html[data-theme="light"] .hero-stat-card::before {
      border-color: rgba(255,255,255,0.26);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,250,245,0.08)),
        radial-gradient(86% 88% at 74% 22%, rgba(229,200,171,0.20) 0%, rgba(229,200,171,0.05) 34%, transparent 68%),
        radial-gradient(96% 98% at 24% 100%, rgba(216,180,157,0.14) 0%, rgba(216,180,157,0.03) 36%, transparent 72%);
      box-shadow:
        0 18px 40px rgba(29,26,23,0.10),
        inset 0 1px 0 rgba(255,255,255,0.34);
      backdrop-filter: blur(18px) saturate(142%);
      -webkit-backdrop-filter: blur(18px) saturate(142%);
    }
    html[data-theme="light"] .hero-stat-card::after {
      left: 18px;
      background: linear-gradient(to bottom, rgba(192,154,118,0), rgba(192,154,118,0.78), rgba(192,154,118,0));
    }
    html[data-theme="light"] .hero-stat-num {
      color: #1d1713;
      text-shadow:
        0 0 14px rgba(255,250,245,0.28),
        0 10px 22px rgba(190,154,119,0.10);
    }
    html[data-theme="light"] .hero-stat-label {
      color: rgba(70,61,56,0.82);
      text-shadow: 0 1px 0 rgba(255,255,255,0.18);
    }
    @media(max-width:768px){
      .hero-sub,
      html[data-theme="light"] .hero-sub {
        max-width: 100%;
        padding: 22px 22px 24px;
        margin-left: 0;
        border-radius: 22px 34px 24px 30px;
        padding-left: 26px;
      }
      html[data-theme="light"] .hero-sub::before {
        inset: 0;
        border-radius: inherit;
      }
      .hero-sub::after,
      html[data-theme="light"] .hero-sub::after {
        left: 16px;
        top: 16px;
        bottom: 16px;
      }
      .hero-sub-line:first-child,
      .hero-sub-line:nth-child(2),
      .hero-sub-line-soft,
      html[data-theme="light"] .hero-sub-line:first-child,
      html[data-theme="light"] .hero-sub-line:nth-child(2),
      html[data-theme="light"] .hero-sub-line-soft {
        font-size: 1em;
        letter-spacing: 0.01em;
        text-transform: none;
      }
      .hero-stat-card,
      html[data-theme="light"] .hero-stat-card {
        min-width: 0;
        padding: 18px 18px 16px 24px;
      }
    }
    html[data-theme="light"] .hero h1 {
      color: #fffdf8;
      text-shadow: 0 12px 30px rgba(29,26,23,0.18);
    }
    html[data-theme="light"] .quick-contact-panel {
      background: rgba(255,250,245,0.94);
      box-shadow: 0 24px 64px rgba(29,26,23,0.14);
    }
    .theme-toggle {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 8px 12px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.02);
      color: var(--text-2);
      cursor: none;
      transition: border-color .25s, color .25s, background .25s, transform .25s;
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .theme-toggle:hover {
      border-color: var(--gold-line);
      color: var(--text);
      transform: translateY(-1px);
    }
    .theme-toggle-track {
      position: relative;
      width: 38px;
      height: 22px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.08);
      flex-shrink: 0;
      transition: background .25s, border-color .25s;
    }
    html[data-theme="light"] .theme-toggle-track {
      background: rgba(29,26,23,0.06);
      border-color: rgba(29,26,23,0.08);
    }
    .theme-toggle-thumb {
      position: absolute;
      top: 2px;
      left: 2px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 4px 12px rgba(39,106,139,0.24);
      transition: transform .25s, background .25s;
    }
    html[data-theme="light"] .theme-toggle-thumb {
      transform: translateX(16px);
    }
    .theme-toggle-text {
      white-space: nowrap;
    }
    @media(max-width:1024px){
      .theme-toggle {
        padding: 8px 10px;
        gap: 10px;
      }
      .theme-toggle-text {
        font-size: 9px;
      }
    }
    @media(max-width:768px){
      .theme-toggle {
        padding: 0;
        width: 40px;
        height: 40px;
        justify-content: center;
      }
      .theme-toggle-text {
        display: none;
      }
      .theme-toggle-track {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: transparent;
        border-color: var(--border);
      }
      .theme-toggle-thumb {
        top: 3px;
        left: 3px;
        width: 16px;
        height: 16px;
      }
      html[data-theme="light"] .theme-toggle-thumb {
        transform: translateX(0);
      }
    }
    @media(max-width:480px){
      .theme-toggle {
        width: 36px;
        height: 36px;
      }
      .theme-toggle-track {
        width: 22px;
        height: 22px;
      }
      .theme-toggle-thumb {
        top: 2px;
        left: 2px;
      }
    }

    html[data-theme="light"] .about-project-card {
      background: rgba(255, 250, 245, 0.96);
      border-color: rgba(39,106,139,0.18);
      box-shadow: 0 18px 48px rgba(29,26,23,0.12);
    }
    html[data-theme="light"] .about-project-label {
      color: var(--gold);
    }
    html[data-theme="light"] .about-project-card strong {
      color: #171411;
    }
    html[data-theme="light"] .about-project-card p {
      color: #5f5a54;
    }

    html[data-theme="light"] .portfolio-overlay {
      background: linear-gradient(to top, rgba(17, 14, 12, 0.72) 0%, rgba(17, 14, 12, 0.18) 42%, rgba(17, 14, 12, 0.04) 70%);
      opacity: 1;
    }
    html[data-theme="light"] .portfolio-info {
      transform: none;
      opacity: 1;
    }
    html[data-theme="light"] .portfolio-name {
      color: #fffaf5;
      text-shadow: 0 10px 28px rgba(17,14,12,0.36);
    }
    html[data-theme="light"] .portfolio-area {
      color: rgba(255, 250, 245, 0.78);
    }

    html[data-theme="light"] .portfolio-item {
      background: #d9d1c6;
    }
    html[data-theme="light"] .portfolio-img {
      filter: brightness(0.84) saturate(0.92) contrast(1.02);
    }
    html[data-theme="light"] .portfolio-item:hover .portfolio-img {
      filter: brightness(0.72) saturate(0.98) contrast(1.04);
    }
    html[data-theme="light"] .portfolio-info {
      padding: 48px 32px 34px;
      background: linear-gradient(to top, rgba(17,14,12,0.46) 0%, rgba(17,14,12,0.18) 46%, rgba(17,14,12,0) 100%);
    }
    html[data-theme="light"] .portfolio-cat {
      color: #f4e8db;
      text-shadow: 0 6px 16px rgba(17,14,12,0.28);
    }
    html[data-theme="light"] .portfolio-name {
      color: #fffdf8;
      text-shadow: 0 12px 32px rgba(17,14,12,0.56);
    }
    html[data-theme="light"] .portfolio-area {
      color: rgba(255, 250, 245, 0.88);
      text-shadow: 0 8px 20px rgba(17,14,12,0.32);
    }

    html[data-theme="light"] .portfolio-item .portfolio-overlay {
      opacity: 1 !important;
      background: linear-gradient(to top, rgba(17,14,12,0.82) 0%, rgba(17,14,12,0.34) 45%, rgba(17,14,12,0.06) 74%) !important;
    }
    html[data-theme="light"] .portfolio-item .portfolio-info {
      opacity: 1 !important;
      transform: none !important;
    }
    html[data-theme="light"] .portfolio-item .portfolio-name {
      color: #fffdf8 !important;
      text-shadow: 0 14px 36px rgba(17,14,12,0.72) !important;
    }
    html[data-theme="light"] .portfolio-item .portfolio-cat,
    html[data-theme="light"] .portfolio-item .portfolio-area {
      color: rgba(255,250,245,0.92) !important;
      text-shadow: 0 10px 24px rgba(17,14,12,0.48) !important;
    }

    html[data-theme="light"] .testi-project-card {
      background: rgba(255, 250, 245, 0.97) !important;
      border-color: rgba(39,106,139,0.18) !important;
      box-shadow: 0 22px 50px rgba(29,26,23,0.12) !important;
    }
    html[data-theme="light"] .testi-bridge-card {
      background: linear-gradient(180deg, rgba(255,248,244,0.98), rgba(249,241,238,0.96)) !important;
      border-color: rgba(39,106,139,0.14) !important;
      box-shadow: 0 20px 44px rgba(29,26,23,0.10) !important;
    }
    html[data-theme="light"] .testi-bridge-card::before {
      border-top-color: rgba(200,138,166,0.28) !important;
      border-left-color: rgba(200,138,166,0.28) !important;
    }
    html[data-theme="light"] .testi-bridge-label {
      color: #276A8B !important;
    }
    html[data-theme="light"] .testi-bridge-facts span {
      background: rgba(39,106,139,0.06) !important;
      border-color: rgba(39,106,139,0.10) !important;
      color: #171411 !important;
    }
    html[data-theme="light"] .testi-project-card::before {
      border-top-color: rgba(39,106,139,0.22) !important;
      border-right-color: rgba(39,106,139,0.22) !important;
    }
    html[data-theme="light"] .testi-project-label {
      color: #276A8B !important;
    }
    html[data-theme="light"] .testi-project-card strong {
      color: #171411 !important;
      text-shadow: none !important;
    }
    html[data-theme="light"] .testi-project-card p {
      color: #5f5a54 !important;
    }
    html[data-theme="light"] .testi-project-meta span {
      background: rgba(39,106,139,0.06) !important;
      border-color: rgba(39,106,139,0.12) !important;
      color: #171411 !important;
    }
    html[data-theme="light"] .about-project-card {
      background: rgba(255, 250, 245, 0.97) !important;
      border-color: rgba(39,106,139,0.18) !important;
      box-shadow: 0 18px 48px rgba(29,26,23,0.12) !important;
    }
    html[data-theme="light"] .about-project-card strong {
      color: #171411 !important;
      text-shadow: none !important;
    }
    html[data-theme="light"] .about-project-card p {
      color: #5f5a54 !important;
    }

    html[data-theme="light"] nav a {
      color: #433d37 !important;
    }
    html[data-theme="light"] nav a:hover {
      color: #171411 !important;
    }
    html[data-theme="light"] #mobile-menu a {
      color: #2a241f !important;
    }
    html[data-theme="light"] .menu-close {
      color: #433d37 !important;
    }
    html[data-theme="light"] .burger span {
      background: #433d37 !important;
    }
html[data-theme="light"] .service-num {
      color: rgba(39,33,28,0.72) !important;
      opacity: 1 !important;
      text-shadow: none;
    }
    html[data-theme="light"] .process-num {
      color: rgba(39,106,139,0.72) !important;
      opacity: 1 !important;
      text-shadow: 0 10px 24px rgba(39,106,139,0.10);
    }

    html[data-theme="light"] header {
      background: rgba(223,214,204,0.90);
      backdrop-filter: blur(22px) saturate(150%);
      -webkit-backdrop-filter: blur(22px) saturate(150%);
      box-shadow: 0 1px 0 rgba(29,26,23,0.12), 0 12px 30px rgba(29,26,23,0.06);
    }
    html[data-theme="light"] header.scrolled {
  background: linear-gradient(90deg, var(--rose-dim), rgba(200,138,166,0)), rgb(236, 215, 209) !important;
  box-shadow: 0 1px 0 rgba(29,26,23,0.14) !important , 0 14px 34px rgba(29,26,23,0.08);
}
    html[data-theme="light"] .header-inner {
      position: relative;
    }
    html[data-theme="light"] nav a {
      color: #2f2924 !important;
      font-weight: 500;
    }
    html[data-theme="light"] nav a::after {
      background: #276A8B !important;
    }
    html[data-theme="light"] nav a:hover {
      color: #171411 !important;
    }
    html[data-theme="light"] .btn-header {
      color: #1f1b17 !important;
      border-color: rgba(39,106,139,0.24) !important;
      background: rgba(255,250,245,0.82) !important;
      box-shadow: 0 10px 24px rgba(29,26,23,0.08);
    }
    html[data-theme="light"] .btn-header:hover {
      background: #276A8B !important;
      color: #fffaf5 !important;
    }
    html[data-theme="light"] .btn-ghost {
      border-color: #276A8B !important;
    }
    html[data-theme="light"] .theme-toggle {
      background: rgba(255,250,245,0.86) !important;
      border-color: rgba(39,106,139,0.18) !important;
      color: #2f2924 !important;
      box-shadow: 0 10px 24px rgba(29,26,23,0.08);
    }
    html[data-theme="light"] .theme-toggle:hover {
      color: #171411 !important;
      border-color: rgba(39,106,139,0.28) !important;
    }
    html[data-theme="light"] .burger {
      background: rgba(255,250,245,0.82);
      border: 1px solid rgba(39,106,139,0.16);
      box-shadow: 0 10px 24px rgba(29,26,23,0.06);
    }
    html[data-theme="light"] .burger span {
      background: #2f2924 !important;
    }
    html[data-theme="light"] #mobile-menu {
      background: rgba(246,241,234,0.98);
    }
    html[data-theme="light"] #mobile-menu a {
      color: #241f1a !important;
    }
    html[data-theme="light"] #mobile-menu a:hover {
      color: #276A8B !important;
    }
    html[data-theme="light"] .menu-close {
      color: #2f2924 !important;
    }

    html[data-theme="light"] .quick-contact-toggle {
      background: rgba(255,250,245,0.94) !important;
      border-color: rgba(39,106,139,0.22) !important;
      color: #1f1b17 !important;
      box-shadow: 0 12px 30px rgba(29,26,23,0.10) !important;
    }
    html[data-theme="light"] .quick-contact-toggle:hover {
      background: rgba(255,250,245,0.98) !important;
      border-color: rgba(39,106,139,0.34) !important;
      color: #171411 !important;
    }
    html[data-theme="light"] .quick-contact-toggle svg {
      stroke: #276A8B !important;
    }
    html[data-theme="light"] .quick-contact-link {
      background: rgba(255,250,245,0.96) !important;
      border-color: rgba(39,106,139,0.12) !important;
      color: #171411 !important;
    }
    html[data-theme="light"] .quick-contact-link-sub {
      color: #5f5a54 !important;
    }




/* HEADER RHYTHM NORMALIZATION */
header {
  min-height: 0;
}
.header-inner {
  min-height: 100px;
  gap: 28px;
}
header.scrolled .header-inner {
  min-height: 84px;
}
.nav-left,
.nav-right,
.nav-right nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-left,
.nav-right nav {
  flex-wrap: nowrap;
}
.nav-left a,
.nav-right nav a {
  line-height: 1;
  white-space: nowrap;
}
.logo-center {
  min-width: 0;
}
.logo-center a {
  display: flex;
  align-items: center;
}
.site-logo-header {
  display: block;
}
.theme-toggle,
.btn-header,
.burger {
  flex-shrink: 0;
}
#mobile-menu {
  padding: 40px 24px;
  gap: 28px;
}
#mobile-menu a {
  line-height: 1.15;
  text-align: center;
}
@media(max-width:1200px){
  .header-inner {
    gap: 22px;
  }
  .nav-left,
  .nav-right,
  .nav-right nav {
    gap: 22px;
  }
}
@media(max-width:1024px){
  .header-inner {
    min-height: 86px;
    gap: 14px;
    padding: 20px 0;
  }
  header.scrolled .header-inner {
    min-height: 78px;
    padding: 16px 0;
  }
  .logo-center {
    flex: 1 1 auto;
    justify-content: flex-start;
  }
  .nav-right {
    gap: 10px;
  }
  .theme-toggle {
    order: 1;
  }
  .btn-header {
    order: 2;
    padding: 10px 14px;
  }
  .burger {
    order: 3;
  }
}
@media(max-width:768px){
  .header-inner {
    min-height: 74px;
    gap: 12px;
    padding: 16px 0;
  }
  header.scrolled .header-inner {
    min-height: 68px;
    padding: 14px 0;
  }
  .site-logo-header {
    height: 34px;
    max-width: min(176px, 100%);
  }
  .nav-right {
    gap: 8px;
  }
  .theme-toggle {
    width: 40px;
    height: 40px;
  }
  .burger {
    width: 40px;
    height: 40px;
  }
  #mobile-menu {
    gap: 24px;
    padding: 36px 20px;
  }
}
@media(max-width:480px){
  .header-inner {
    min-height: 66px;
    gap: 10px;
    padding: 14px 0;
  }
  header.scrolled .header-inner {
    min-height: 62px;
    padding: 12px 0;
  }
  .site-logo-header {
    height: 32px;
    max-width: min(156px, 100%);
  }
  .theme-toggle,
  .burger {
    width: 36px;
    height: 36px;
  }
  #mobile-menu {
    gap: 22px;
    padding: 32px 18px;
  }
}
html[data-theme="light"] header,
html[data-theme="light"] header.scrolled {
  background-clip: padding-box;
}
html[data-theme="light"] #mobile-menu {
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

/* MOBILE HEADER FINAL POLISH */
@media(max-width:1024px){
  .theme-toggle,
  .burger,
  .btn-header {
    border-radius: 999px;
  }
  .theme-toggle,
  .burger {
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
  }
  .burger {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .burger span {
    transform-origin: center;
  }
}
#mobile-menu {
  justify-content: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(200,138,166,0.14), transparent 26%),
    radial-gradient(circle at 84% 14%, rgba(39,106,139,0.16), transparent 24%),
    rgba(8,8,8,0.94);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}
#mobile-menu::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
  pointer-events: none;
}
#mobile-menu a,
#mobile-menu .menu-close {
  position: relative;
  z-index: 2;
}
body.menu-open header,
body.menu-open .quick-contact,
body.menu-open #editor-toggle,
body.menu-open #editor-panel,
body.menu-open #popup-overlay {
  pointer-events: none !important;
}
body.menu-open .quick-contact,
body.menu-open #editor-toggle {
  opacity: 0 !important;
  visibility: hidden !important;
}
body.menu-open #mobile-menu,
body.menu-open #mobile-menu * {
  pointer-events: auto !important;
}
#mobile-menu a {
  font-size: clamp(1.9rem, 7vw, 3.6rem);
  letter-spacing: 0.04em;
  line-height: 1.02;
  opacity: 0;
  transform: translateY(14px);
  transition: color .25s, opacity .35s ease, transform .35s ease;
}
#mobile-menu a::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  margin-top: 10px;
  background: currentColor;
  opacity: 0.3;
  transition: width .3s ease;
}
#mobile-menu a:hover::after,
#mobile-menu a[aria-current="page"]::after {
  width: 100%;
}
#mobile-menu.open a {
  opacity: 1;
  transform: none;
}
#mobile-menu.open a:nth-of-type(1) { transition-delay: .05s; }
#mobile-menu.open a:nth-of-type(2) { transition-delay: .09s; }
#mobile-menu.open a:nth-of-type(3) { transition-delay: .13s; }
#mobile-menu.open a:nth-of-type(4) { transition-delay: .17s; }
#mobile-menu.open a:nth-of-type(5) { transition-delay: .21s; }
#mobile-menu.open a:nth-of-type(6) { transition-delay: .25s; }
.menu-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .25s, border-color .25s, background .25s, transform .25s;
}
.menu-close:hover {
  color: var(--text);
  border-color: var(--gold-line);
  background: rgba(255,255,255,0.05);
  transform: rotate(90deg);
}
html[data-theme="light"] #mobile-menu {
  background:
    radial-gradient(circle at 18% 18%, rgba(200,138,166,0.16), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(39,106,139,0.12), transparent 24%),
    rgba(242,235,227,0.94);
}
html[data-theme="light"] #mobile-menu::before {
  border-color: rgba(29,26,23,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.08));
}
html[data-theme="light"] .menu-close {
  color: #2f2924;
  border-color: rgba(39,106,139,0.14);
  background: rgba(255,250,245,0.74);
}
html[data-theme="light"] .menu-close:hover {
  color: #171411;
  border-color: rgba(39,106,139,0.28);
  background: rgba(255,250,245,0.94);
}
@media(max-width:768px){
  #mobile-menu {
    gap: 22px;
  }
  #mobile-menu::before {
    inset: 12px;
  }
  #mobile-menu a {
    font-size: clamp(1.7rem, 9vw, 2.6rem);
  }
}
@media(max-width:480px){
  #mobile-menu {
    gap: 20px;
  }
  #mobile-menu::before {
    inset: 10px;
  }
  #mobile-menu a {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
    letter-spacing: 0.03em;
  }
  .menu-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

/* MOBILE HEADER VISIBILITY FIX */
@media(max-width:1024px){
  .nav-left,
  .nav-right nav {
    display: none !important;
  }
  .nav-right {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
  }
  .burger {
    display: inline-flex !important;
  }
}
@media(max-width:768px){
  .btn-header {
    display: none !important;
  }
}







/* ROADMAP ENHANCEMENTS */
.lead-quiz { padding: 120px 0; }
.quiz-shell { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(320px,0.95fr); gap:36px; align-items:start; }
.quiz-copy h2 { margin:18px 0 22px; font-size:clamp(2.8rem,5vw,4.8rem); color:var(--white); }
.quiz-copy p { max-width:620px; color:rgba(240,237,230,0.72); line-height:1.9; }
.quiz-benefits { display:grid; gap:14px; margin-top:28px; }
.quiz-benefit { display:grid; grid-template-columns:40px 1fr; gap:14px; padding:16px 18px; border:1px solid var(--border); background:linear-gradient(180deg, rgba(200,138,166,0.08), rgba(200,138,166,0.02)), var(--bg-card); }
.quiz-benefit strong { font-family:'Cormorant Garamond',serif; font-size:2rem; color:var(--gold); line-height:1; }
.quiz-card { position: relative; z-index: 2; overflow: visible; padding:30px; border:1px solid var(--border); background:radial-gradient(circle at top right, rgba(39,106,139,0.16), transparent 32%), radial-gradient(circle at bottom left, rgba(200,138,166,0.12), transparent 30%), var(--bg-card); }
.quiz-grid,.quiz-lead-grid { position: relative; overflow: visible; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.quiz-field { position: relative; overflow: visible; display:grid; gap:10px; }
.quiz-field span,.quiz-result-label,.quiz-note { font-size:10px; letter-spacing:0.18em; text-transform:uppercase; }
.quiz-field span,.quiz-note { color:rgba(240,237,230,0.62); }
.quiz-select,.quiz-field input { width:100%; min-height:56px; padding:0 16px; border:1px solid var(--border); background:rgba(255,255,255,0.02); color:var(--white); font:inherit; }
.quiz-field input::placeholder { color: rgba(240,237,230,0.42); }
.quiz-select-shell { position: relative; width: 100%; min-width: 0; z-index: 5; }
.quiz-select-native {
  display: none !important;
  visibility: hidden !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}
.quiz-select-shell.open { z-index: 50; }
.quiz-select-display { width: 100%; min-height: 56px; padding: 0 16px; border: 1px solid var(--border); background: rgba(255,255,255,0.02); color: var(--text); font: inherit; display: flex; align-items: center; justify-content: space-between; gap: 14px; text-align: left; cursor: pointer; }
.quiz-select-display-label { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.quiz-select-display-icon { flex-shrink: 0; width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; color: currentColor; }
.quiz-select-display-icon svg { width: 12px; height: 8px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.quiz-select-shell.open .quiz-select-display { border-color: var(--gold-line); }
.quiz-select-menu { position: absolute; left: 0; right: 0; top: calc(100% + 6px); width: 100%; min-width: 100%; max-width: 100%; z-index: 40; display: none; max-height: min(260px, calc(100vh - 140px)); overflow: auto; border: 1px solid var(--border); background: #111111; box-shadow: 0 22px 44px rgba(0,0,0,0.34); border-radius: 0; overscroll-behavior: contain; }
.quiz-select-shell.open-up .quiz-select-menu { top: auto; bottom: calc(100% + 6px); }
.quiz-select-shell.open .quiz-select-menu { display: block; }
.quiz-select-option { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,0.06); background: transparent; color: #f3efe9; font: inherit; text-align: left; padding: 14px 16px; cursor: pointer; }
.quiz-select-option:last-child { border-bottom: 0; }
.quiz-select-option:hover, .quiz-select-option.active { background: rgba(61,137,177,0.22); color: #ffffff; }
html[data-theme="light"] .quiz-select-display { background: rgba(255,255,255,0.68); color: #171411; border-color: rgba(29,26,23,0.08); }
html[data-theme="light"] .quiz-select-menu { background: #fffaf5; border-color: rgba(29,26,23,0.08); box-shadow: 0 20px 36px rgba(29,26,23,0.14); }
html[data-theme="light"] .quiz-select-option { color: #171411; border-bottom-color: rgba(29,26,23,0.08); }
html[data-theme="light"] .quiz-select-option:hover, html[data-theme="light"] .quiz-select-option.active { background: rgba(61,137,177,0.18); color: #171411; }
@media (max-width: 1024px) { .quiz-shell { grid-template-columns: 1fr; gap: 28px; } .quiz-copy p { max-width: 100%; } .quiz-card { width: 100%; } }
@media (max-width: 640px) { .quiz-grid,.quiz-lead-grid { grid-template-columns: 1fr; } .quiz-card { padding: 24px; } .quiz-select-menu { max-height: min(220px, calc(100vh - 110px)); } .quiz-select-option { padding: 13px 14px; } }
.quiz-select { color-scheme: dark; }
.quiz-select option,
.quiz-select optgroup {
  background: #111111;
  color: #f3efe9;
}
.quiz-note { margin-top:14px; color:var(--text-3); line-height:1.8; }
.quiz-calc-btn {
  min-height: 56px;
  position: relative;
  z-index: 3;
  margin-bottom: 0;
  justify-content: center;
  align-self: stretch;
}
.quiz-grid.landscape-mode {
  align-items: end;
}
.quiz-grid.landscape-mode .quiz-calc-btn {
  align-self: end;
}
.quiz-result {
  margin: 22px 0 26px;
  padding: 20px 22px;
  border: 1px solid rgba(39,106,139,0.22);
  background: linear-gradient(180deg, rgba(39,106,139,0.14), rgba(39,106,139,0.04));
}
.quiz-result-head {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.quiz-result-label {
  color: rgba(240,237,230,0.72);
}
.quiz-result-head strong {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
}
.quiz-result p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  line-height: 1.8;
}
.quiz-context-info {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 32px;
  display: grid;
  gap: 28px;
  background: inherit;
}
.quiz-context-info[hidden],
.quiz-context-panel[hidden] { display: none !important; }
.quiz-context-panel {
  width: 100%;
  padding: 32px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(200,138,166,0.06), rgba(200,138,166,0.02)), var(--bg-card);
}
.quiz-context-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); gap: 28px; align-items: start; margin-bottom: 28px; }
.quiz-context-title-group h3 { margin: 8px 0 0; font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4.5vw, 4.4rem); font-weight: 400; line-height: 0.95; color: var(--white); }
.quiz-context-label, .quiz-context-kicker { display: inline-block; color: var(--gold); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; }
.quiz-context-intro { margin: 0; color: var(--text-2); line-height: 1.85; max-width: 440px; justify-self: end; }
.quiz-context-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.quiz-context-card { padding: 28px 30px; border: 1px solid var(--border); background: radial-gradient(circle at top right, rgba(39,106,139,0.12), transparent 32%), rgba(255,255,255,0.01); }
.quiz-context-kicker { margin-bottom: 14px; }
.quiz-context-subtitle { margin: 0 0 18px; color: var(--text-2); font-size: clamp(1.4rem, 2vw, 1.9rem); line-height: 1.3; }
.quiz-context-rows { border-top: 1px solid var(--border); }
.quiz-context-row { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.quiz-context-row span { color: var(--text); font-size: 15px; }
.quiz-context-row strong { color: var(--white); font-size: 15px; font-weight: 600; text-align: right; }
.quiz-context-note { margin: 16px 0 0; color: var(--text-3); font-size: 13px; line-height: 1.75; }
.quiz-context-note-spacious { margin-top: 30px; max-width: 420px; }
html[data-theme="light"] .quiz-context-panel, html[data-theme="light"] .quiz-context-card { background: linear-gradient(180deg, rgba(200,138,166,0.08), rgba(255,255,255,0.42)), rgba(255,250,245,0.96); box-shadow: 0 18px 42px rgba(29,26,23,0.08); }
html[data-theme="light"] .quiz-context-title-group h3, html[data-theme="light"] .quiz-context-row strong { color: #171411; }
html[data-theme="light"] .quiz-context-intro, html[data-theme="light"] .quiz-context-subtitle { color: #5f5a54; }
html[data-theme="light"] .quiz-context-row span { color: #2e2823; }
html[data-theme="light"] .quiz-context-note { color: #837b74; }
@media (max-width: 980px) { .quiz-context-head, .quiz-context-grid { grid-template-columns: 1fr; } .quiz-context-intro { justify-self: start; max-width: none; } }
@media (max-width: 640px) { .quiz-context-panel, .quiz-context-card { padding: 22px; } .quiz-context-row { flex-direction: column; align-items: flex-start; } .quiz-context-row strong { text-align: left; } }
.faq-section { padding:120px 0; }
.faq-list { display:grid; gap:16px; }
.faq-item { border:1px solid var(--border); background:linear-gradient(180deg, rgba(200,138,166,0.05), rgba(39,106,139,0.03)), var(--bg-card); }
.faq-question { width:100%; display:flex; justify-content:space-between; align-items:center; gap:24px; padding:24px 26px; border:none; background:transparent; color:var(--white); font:inherit; text-align:left; }
.faq-question span { font-size:1.02rem; line-height:1.5; }
.faq-question svg { width:18px; height:18px; stroke:currentColor; fill:none; stroke-width:1.6; flex-shrink:0; transition:transform .3s ease; }
.faq-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows .35s ease; }
.faq-answer p { overflow:hidden; padding:0 26px; color:var(--text-2); line-height:1.9; }
.faq-item.is-open .faq-answer { grid-template-rows:1fr; }
.faq-item.is-open .faq-answer p { padding-bottom:24px; }
.faq-item.is-open .faq-question svg { transform:rotate(45deg); }
html[data-theme="light"] .quiz-copy h2, html[data-theme="light"] .faq-question, html[data-theme="light"] .quiz-result-head strong { color:#171411; }
html[data-theme="light"] .quiz-card, html[data-theme="light"] .quiz-benefit, html[data-theme="light"] .faq-item { background:linear-gradient(180deg, rgba(200,138,166,0.08), rgba(255,255,255,0.42)), rgba(255,250,245,0.96); box-shadow:0 18px 42px rgba(29,26,23,0.08); }
html[data-theme="light"] .quiz-copy p, html[data-theme="light"] .quiz-result p, html[data-theme="light"] .faq-answer p { color:#5f5a54; }
html[data-theme="light"] .quiz-result {
  border-color: rgba(39,106,139,0.18);
  background: linear-gradient(180deg, rgba(39,106,139,0.10), rgba(255,255,255,0.68)), rgba(255,250,245,0.96);
  box-shadow: 0 14px 30px rgba(29,26,23,0.06);
}
html[data-theme="light"] .quiz-result p {
  border-top-color: rgba(29,26,23,0.10);
}
html[data-theme="light"] .quiz-select, html[data-theme="light"] .quiz-field input { background:rgba(255,255,255,0.68); color:#171411; border-color:rgba(29,26,23,0.08); }
html[data-theme="light"] .quiz-select { color-scheme: light; }
html[data-theme="light"] .quiz-select option,
html[data-theme="light"] .quiz-select optgroup {
  background: #fffaf5;
  color: #171411;
}
@media(max-width:1024px){
  body.menu-open header {
    pointer-events: auto !important;
  }
  body.menu-open .burger {
    position: relative;
    z-index: 100620;
  }
  body.menu-open .burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  body.menu-open .burger span:nth-child(2) {
    opacity: 0;
  }
  body.menu-open .burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  #mobile-menu {
    inset: auto 20px auto auto;
    top: calc(env(safe-area-inset-top, 0px) + 84px);
    width: min(320px, calc(100vw - 40px));
    max-height: calc(100svh - env(safe-area-inset-top, 0px) - 108px);
    padding: 18px;
    display: block;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    overflow: auto;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(17,14,12,0.96), rgba(17,14,12,0.92));
    box-shadow: 0 22px 60px rgba(0,0,0,0.32);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    z-index: 100560;
    transition: opacity .28s ease, transform .28s ease;
  }
  #mobile-menu::before {
    inset: 0;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  }
  #mobile-menu.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  #mobile-menu a {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: left;
    padding: 14px 16px;
    border-radius: 16px;
    color: var(--text);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    opacity: 0;
    transform: translateY(10px);
    transition: color .25s, background .25s, border-color .25s, opacity .24s ease, transform .24s ease;
  }
  #mobile-menu a + a {
    margin-top: 8px;
  }
  #mobile-menu a::after {
    display: none;
  }
  #mobile-menu.open a {
    opacity: 1;
    transform: none;
  }
  #mobile-menu a:hover,
  #mobile-menu a[aria-current="page"] {
    color: var(--text);
    background: rgba(255,255,255,0.05);
    border-color: rgba(200,138,166,0.18);
  }
  .menu-close {
    display: none !important;
  }
  html[data-theme="light"] #mobile-menu {
    border-color: rgba(39,106,139,0.14);
    background: linear-gradient(180deg, rgba(255,250,245,0.98), rgba(246,239,232,0.94));
    box-shadow: 0 22px 56px rgba(29,26,23,0.14);
  }
  html[data-theme="light"] #mobile-menu::before {
    border-color: rgba(39,106,139,0.10);
    background: linear-gradient(180deg, rgba(255,255,255,0.38), rgba(255,255,255,0.08));
  }
  html[data-theme="light"] #mobile-menu a {
    color: #2a241f !important;
    background: rgba(255,255,255,0.56);
    border-color: rgba(39,106,139,0.08);
  }
  html[data-theme="light"] #mobile-menu a:hover,
  html[data-theme="light"] #mobile-menu a[aria-current="page"] {
    background: rgba(255,255,255,0.86);
    border-color: rgba(39,106,139,0.18);
    color: #171411 !important;
  }
}
@media(max-width:768px){
  #mobile-menu {
    top: calc(env(safe-area-inset-top, 0px) + 74px);
    right: 16px;
    width: min(300px, calc(100vw - 32px));
    max-height: calc(100svh - env(safe-area-inset-top, 0px) - 94px);
    padding: 16px;
    border-radius: 22px;
  }
  #mobile-menu::before {
    border-radius: 22px;
  }
}
@media(max-width:480px){
  #mobile-menu {
    top: calc(env(safe-area-inset-top, 0px) + 70px);
    right: 12px;
    width: min(280px, calc(100vw - 24px));
    max-height: calc(100svh - env(safe-area-inset-top, 0px) - 88px);
    padding: 14px;
    border-radius: 20px;
  }
  #mobile-menu::before {
    border-radius: 20px;
  }
  #mobile-menu a {
    font-size: 13px;
    padding: 13px 14px;
    border-radius: 14px;
    letter-spacing: 0.10em;
  }
}














/* RESTORE FULLSCREEN MOBILE MENU */
@media(max-width:1024px){
  #mobile-menu {
    position: fixed !important;
    inset: 0 !important;
    top: 0 !important;
    right: 0 !important;
    width: auto !important;
    max-height: none !important;
    padding: 108px 24px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 32px !important;
    opacity: 0 !important;
    transform: none !important;
    pointer-events: none !important;
    overflow: auto !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: var(--bg) !important;
  }
  #mobile-menu::before {
    content: '' !important;
    position: absolute !important;
    inset: 16px !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)) !important;
    pointer-events: none !important;
    border-radius: 0 !important;
  }
  #mobile-menu.open {
    opacity: 1 !important;
    pointer-events: auto !important;
    touch-action: pan-y !important;
  }
  #mobile-menu a {
    display: block !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(1.9rem, 7vw, 3.6rem) !important;
    font-weight: 300 !important;
    line-height: 1.02 !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    text-align: center !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    opacity: 0 !important;
    transform: translateY(14px) !important;
  }
  #mobile-menu a + a {
    margin-top: 0 !important;
  }
  #mobile-menu a::after {
    display: block !important;
  }
  #mobile-menu.open a {
    opacity: 1 !important;
    transform: none !important;
  }
  .menu-close {
    position: absolute !important;
    top: calc(env(safe-area-inset-top, 0px) + 34px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.02) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: var(--text-2) !important;
  }
  html[data-theme="light"] #mobile-menu {
    background:
      radial-gradient(circle at 18% 18%, rgba(200,138,166,0.16), transparent 28%),
      radial-gradient(circle at 84% 14%, rgba(39,106,139,0.12), transparent 24%),
      rgba(242,235,227,0.96) !important;
  }
  html[data-theme="light"] #mobile-menu::before {
    border-color: rgba(29,26,23,0.08) !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.08)) !important;
  }
  html[data-theme="light"] #mobile-menu a {
    color: #241f1a !important;
    background: transparent !important;
  }
  html[data-theme="light"] .menu-close {
    color: #2f2924 !important;
    border-color: rgba(39,106,139,0.14) !important;
    background: rgba(255,250,245,0.74) !important;
  }
}
@media(max-width:768px){
  #mobile-menu {
    gap: 22px !important;
  }
  #mobile-menu a {
    font-size: clamp(1.7rem, 9vw, 2.6rem) !important;
  }
}
@media(max-width:480px){
  #mobile-menu {
    gap: 20px !important;
    padding: 96px 20px 32px !important;
  }
  #mobile-menu a {
    font-size: clamp(1.55rem, 9vw, 2.2rem) !important;
    letter-spacing: 0.03em !important;
  }
  .menu-close {
    top: calc(env(safe-area-inset-top, 0px) + 26px) !important;
    width: 40px !important;
    height: 40px !important;
  }
}


html[data-theme="light"] nav a { color: #4e4943; }
html[data-theme="light"] nav a:hover { color: #171411; }
html[data-theme="light"] .burger span { background: #4e4943; }



/* QUIZ LIGHT THEME CONTRAST FIX 20260504 */
html[data-theme="light"] .quiz-field span,
html[data-theme="light"] .quiz-result-label,
html[data-theme="light"] .quiz-note {
  color: #625a53 !important;
}
html[data-theme="light"] .quiz-select,
html[data-theme="light"] .quiz-field input,
html[data-theme="light"] .quiz-select-display {
  background: rgba(255,255,255,0.88) !important;
  color: #171411 !important;
  border-color: rgba(29,26,23,0.12) !important;
}
html[data-theme="light"] .quiz-select-display-label,
html[data-theme="light"] .quiz-select-display-icon {
  color: #171411 !important;
}
html[data-theme="light"] .quiz-field input::placeholder {
  color: rgba(43,36,31,0.62) !important;
}
html[data-theme="light"] .quiz-select-shell.open .quiz-select-display {
  border-color: rgba(39,106,139,0.3) !important;
  box-shadow: 0 0 0 3px rgba(39,106,139,0.08) !important;
}
html[data-theme="light"] .quiz-select-menu {
  background: #fffaf5 !important;
  border-color: rgba(29,26,23,0.1) !important;
}
html[data-theme="light"] .quiz-select-option {
  color: #171411 !important;
}
html[data-theme="light"] .quiz-select-option:hover,
html[data-theme="light"] .quiz-select-option.active {
  background: rgba(61,137,177,0.18) !important;
  color: #171411 !important;
}

html {
  background: #080808;
}
body {
  background: #080808;
}
.vs-preloader {
  position: fixed;
  inset: 0;
  z-index: 200000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top right, rgba(200,138,166,0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(39,106,139,0.16), transparent 30%),
    #080808;
  transition: opacity .45s ease, visibility .45s ease;
}
.vs-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.vs-preloader-mark {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(39,106,139,0.12), 0 22px 54px rgba(0,0,0,0.34);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
}
.vs-preloader-mark img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  opacity: 0.98;
  animation: vsPreloaderPulse 1.45s ease-in-out infinite;
}
@keyframes vsPreloaderPulse {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}


/* LIGHT HOME BLOCKS FIX 20260504 */
html[data-theme="light"] .marquee-strip,
html[data-theme="light"] .services,
html[data-theme="light"] .process,
html[data-theme="light"] .lead-quiz,
html[data-theme="light"] footer,
html[data-theme="light"] .map-section {
  background: var(--bg-2);
}
html[data-theme="light"] .about::before {
  background:
    linear-gradient(180deg, rgba(200,138,166,0.10), rgba(255,255,255,0.06)),
    radial-gradient(circle at top right, rgba(39,106,139,0.10), transparent 34%);
  border: 1px solid rgba(39,106,139,0.12);
}
html[data-theme="light"] .about-stat,
html[data-theme="light"] .service-card,
html[data-theme="light"] .process-step,
html[data-theme="light"] .mess-btn,
html[data-theme="light"] .contact-form,
html[data-theme="light"] .map-card,
html[data-theme="light"] .popup-box {
  background: linear-gradient(180deg, rgba(200,138,166,0.08), rgba(255,255,255,0.38)), rgba(255,250,245,0.96);
  box-shadow: 0 18px 42px rgba(29,26,23,0.08);
}
html[data-theme="light"] .service-card:hover,
html[data-theme="light"] .process-step:hover,
html[data-theme="light"] .mess-btn:hover {
  background: linear-gradient(180deg, rgba(39,106,139,0.08), rgba(255,255,255,0.44)), rgba(255,250,245,0.99);
}
html[data-theme="light"] .service-card h3,
html[data-theme="light"] .process-step h3,
html[data-theme="light"] .map-card h3,
html[data-theme="light"] .popup-box h3 {
  color: #171411;
}
html[data-theme="light"] .service-card p,
html[data-theme="light"] .process-step p,
html[data-theme="light"] .about-stat-l,
html[data-theme="light"] .mess-btn,
html[data-theme="light"] .map-card p,
html[data-theme="light"] .footer-brand p,
html[data-theme="light"] .footer-bottom p,
html[data-theme="light"] .footer-bottom a,
html[data-theme="light"] .footer-col ul a {
  color: #5f5a54;
}
html[data-theme="light"] .process-arrow {
  stroke: rgba(29,26,23,0.34);
}
html[data-theme="light"] .form-group input,
html[data-theme="light"] .form-group select,
html[data-theme="light"] .form-group textarea {
  background: rgba(255,255,255,0.88);
  color: #171411;
  border-color: rgba(29,26,23,0.12);
}
html[data-theme="light"] .form-group input::placeholder,
html[data-theme="light"] .form-group textarea::placeholder {
  color: rgba(43,36,31,0.58);
}
html[data-theme="light"] .form-group select option {
  background: #fffaf5;
  color: #171411;
}
html[data-theme="light"] .footer-col h4 {
  color: #948c83;
}
html[data-theme="light"] .footer-social-btn {
  border-color: rgba(29,26,23,0.10);
  color: #5f5a54;
  background: rgba(255,255,255,0.56);
}
html[data-theme="light"] .footer-social-btn:hover {
  border-color: rgba(39,106,139,0.20);
  color: #276A8B;
}

/* LIGHT HOME SECTION FIX 20260504B */
html[data-theme="light"] .about,
html[data-theme="light"] .portfolio,
html[data-theme="light"] .faq-section,
html[data-theme="light"] .contact-section,
html[data-theme="light"] .testimonials {
  background: var(--bg-2);
}
html[data-theme="light"] .about-text h2,
html[data-theme="light"] .about-text h2 em,
html[data-theme="light"] .about-text p,
html[data-theme="light"] .about-kicker,
html[data-theme="light"] .about-note,
html[data-theme="light"] .section-header h2,
html[data-theme="light"] .testi-intro,
html[data-theme="light"] .contact-info h2,
html[data-theme="light"] .contact-info p,
html[data-theme="light"] .contact-link,
html[data-theme="light"] .contact-link-label,
html[data-theme="light"] .faq-question,
html[data-theme="light"] .faq-answer p {
  color: #171411;
}
html[data-theme="light"] .about-text p,
html[data-theme="light"] .about-note,
html[data-theme="light"] .testi-intro,
html[data-theme="light"] .contact-info p,
html[data-theme="light"] .faq-answer p,
html[data-theme="light"] .contact-link-label {
  color: #5f5a54;
}
html[data-theme="light"] .about-portrait-wrap {
  box-shadow: 0 22px 56px rgba(29,26,23,0.12);
}
html[data-theme="light"] .testimonials::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.32), rgba(255,255,255,0));
}
html[data-theme="light"] .testi-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.48));
  border-color: rgba(29,26,23,0.08);
  box-shadow: 0 24px 60px rgba(29,26,23,0.08);
}
html[data-theme="light"] .testi-kicker {
  background: rgba(255,255,255,0.84);
}
html[data-theme="light"] .testi-quote,
html[data-theme="light"] .testi-name,
html[data-theme="light"] .testi-project-card strong {
  color: #171411;
}
html[data-theme="light"] .testi-meta {
  border-top-color: rgba(29,26,23,0.08);
}
html[data-theme="light"] .testi-role,
html[data-theme="light"] .testi-project-card p {
  color: #5f5a54;
}
html[data-theme="light"] .faq-item {
  border-color: rgba(29,26,23,0.08);
}
html[data-theme="light"] .faq-question svg {
  stroke: #276A8B;
}
html[data-theme="light"] .contact-link {
  border-bottom-color: rgba(29,26,23,0.08);
}
html[data-theme="light"] .contact-link:hover {
  color: #276A8B;
}

/* MOBILE HERO SAFE SPACING 20260518 */
@media (max-width: 768px) {
  .hero {
    min-height: max(820px, 100svh);
  }
  .hero-content {
    padding-top: calc(env(safe-area-inset-top, 0px) + 132px);
    padding-bottom: 72px;
  }
  .hero-label {
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.6rem);
    line-height: 0.98;
    margin-bottom: 26px;
    max-width: 9.5ch;
  }
  .hero-actions {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: max(860px, 100svh);
  }
  .hero-content {
    padding-top: calc(env(safe-area-inset-top, 0px) + 138px);
    padding-bottom: 64px;
  }
  .hero h1 {
    font-size: clamp(2.45rem, 11.5vw, 4rem);
    max-width: 9ch;
  }
}




