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

    :root {
      --ink:       #0e0c0a;
      --cream:     #f2ead8;
      --cream-dim: #e0d6c2;
      --gold:      #c8a870;
      --gold-dim:  #9e7f4e;
      --sage:      #6b8f71;
      --river:     #7a9baa;
      --surface:   #161410;
      --card:      #1e1b17;
      --border:    rgba(200,168,112,.18);
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--ink);
      color: var(--cream);
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      line-height: 1.7;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: .03;
      pointer-events: none;
      z-index: 9999;
    }

    /* ─── COOKIE ─── */
    #cookie-bar {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
      background: rgba(22,20,16,.97); border-top: 1px solid var(--border);
      backdrop-filter: blur(8px); padding: 1rem 2rem;
      display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
      transform: translateY(0); transition: transform .4s;
    }
    #cookie-bar.hidden { transform: translateY(110%); }
    #cookie-bar p { font-size: .8rem; color: var(--cream-dim); flex: 1; min-width: 200px; }
    #cookie-bar a { color: var(--gold); }
    .cookie-accept {
      font-size: .72rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
      background: var(--gold); color: var(--ink); border: none;
      padding: .6rem 1.5rem; cursor: pointer; white-space: nowrap;
    }
    .cookie-decline {
      font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
      background: none; color: var(--cream-dim); border: 1px solid var(--border);
      padding: .6rem 1.2rem; cursor: pointer;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.4rem 4rem;
      transition: background .4s, backdrop-filter .4s, padding .3s;
    }
    nav.scrolled {
      background: rgba(14,12,10,.92); backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border); padding: 1rem 4rem;
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500;
      letter-spacing: .18em; text-transform: uppercase;
      color: var(--gold); text-decoration: none;
    }
    .nav-logo span { color: var(--cream); }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
      color: var(--cream-dim); text-decoration: none; transition: color .25s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-right { display: flex; align-items: center; gap: 1rem; }
    .lang-switcher { display: flex; gap: .3rem; }
    .lang-btn {
      font-size: .6rem; letter-spacing: .08em; text-transform: uppercase;
      color: var(--cream-dim); text-decoration: none;
      border: 1px solid var(--border); padding: .35rem .55rem;
      transition: border-color .25s, color .25s; background: none; cursor: pointer;
    }
    .lang-btn:hover, .lang-btn.active { border-color: var(--gold); color: var(--gold); }
    .nav-cta {
      font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 500;
      letter-spacing: .15em; text-transform: uppercase;
      color: var(--ink); background: var(--gold); border: none;
      padding: .65rem 1.7rem; cursor: pointer; text-decoration: none;
      transition: background .25s;
    }
    .nav-cta:hover { background: #d9ba84; }
    .menu-toggle {
      display: none; background: none; border: none; cursor: pointer;
      flex-direction: column; gap: 5px; padding: 4px;
    }
    .menu-toggle span { display: block; width: 24px; height: 1px; background: var(--cream); transition: all .3s; }
    .menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .mobile-nav {
      display: none; position: fixed; inset: 0; z-index: 190;
      background: rgba(10,8,6,.97); flex-direction: column;
      align-items: center; justify-content: center; gap: 2.5rem;
      opacity: 0; pointer-events: none; transition: opacity .35s;
    }
    .mobile-nav.open { opacity: 1; pointer-events: all; display: flex; }
    .mobile-nav a {
      font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300;
      color: var(--cream); text-decoration: none; letter-spacing: .05em; transition: color .25s;
    }
    .mobile-nav a:hover { color: var(--gold); }
    .mobile-nav .mobile-cta {
      font-family: 'Jost', sans-serif; font-size: .78rem; letter-spacing: .18em;
      text-transform: uppercase; background: var(--gold); color: var(--ink);
      padding: 1rem 3rem; text-decoration: none; margin-top: 1rem;
    }
    .mobile-lang-switcher { display: flex; gap: .5rem; margin-top: .5rem; }
    .mobile-lang-switcher .lang-btn { font-size: .7rem; padding: .45rem .7rem; }

    /* ─── CHAT WIDGET ─── */
    .chat-fab {
      position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 400;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25d366; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 28px rgba(37,211,102,.4);
      transition: transform .25s, box-shadow .25s;
    }
    .chat-fab:hover { transform: scale(1.08); box-shadow: 0 8px 36px rgba(37,211,102,.55); }
    .chat-fab svg { width: 26px; height: 26px; fill: #fff; }
    .chat-fab .chat-close { display: none; }
    .chat-fab.open .chat-icon { display: none; }
    .chat-fab.open .chat-close { display: block; width: 20px; height: 20px; }

    .chat-panel {
      position: fixed; bottom: 5.5rem; right: 1.8rem; z-index: 399;
      width: 360px; max-height: 520px;
      background: var(--card); border: 1px solid var(--border);
      box-shadow: 0 16px 60px rgba(0,0,0,.5);
      display: flex; flex-direction: column;
      opacity: 0; transform: translateY(20px) scale(.96);
      pointer-events: none;
      transition: opacity .3s, transform .3s;
    }
    .chat-panel.open {
      opacity: 1; transform: translateY(0) scale(1);
      pointer-events: all;
    }

    .chat-header {
      background: #25d366; padding: 1.2rem 1.4rem;
      display: flex; align-items: center; gap: .8rem;
    }
    .chat-header-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,.2); display: flex;
      align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-weight: 500; color: #fff;
    }
    .chat-header-info { flex: 1; }
    .chat-header-name { font-size: .88rem; font-weight: 500; color: #fff; }
    .chat-header-status { font-size: .7rem; color: rgba(255,255,255,.8); }

    .chat-body {
      flex: 1; overflow-y: auto; padding: 1.2rem;
      display: flex; flex-direction: column; gap: 1rem;
    }

    .chat-tabs {
      display: flex; border-bottom: 1px solid var(--border);
    }
    .chat-tab {
      flex: 1; padding: .7rem .5rem; background: none; border: none;
      font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 500;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--cream-dim); cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: color .25s, border-color .25s;
    }
    .chat-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
    .chat-tab:hover { color: var(--cream); }

    .chat-tab-content { display: none; flex-direction: column; gap: .8rem; }
    .chat-tab-content.active { display: flex; }

    /* Chat bubble */
    .chat-bubble {
      background: rgba(200,168,112,.08); border: 1px solid var(--border);
      padding: .9rem 1.1rem; max-width: 92%; align-self: flex-start;
      font-size: .85rem; color: var(--cream); line-height: 1.6;
    }
    .chat-bubble-time {
      font-size: .6rem; color: var(--cream-dim); margin-top: .3rem;
      letter-spacing: .05em;
    }

    /* Quick action buttons */
    .chat-actions { display: flex; flex-direction: column; gap: .5rem; }
    .chat-action {
      display: flex; align-items: center; gap: .7rem;
      padding: .7rem 1rem; border: 1px solid var(--border);
      background: none; color: var(--cream); font-family: 'Jost', sans-serif;
      font-size: .82rem; cursor: pointer; text-decoration: none;
      transition: border-color .25s, background .25s;
    }
    .chat-action:hover { border-color: var(--gold); background: rgba(200,168,112,.06); }
    .chat-action-icon { font-size: 1.1rem; width: 28px; text-align: center; flex-shrink: 0; }
    .chat-action-label { flex: 1; }
    .chat-action-arrow { color: var(--gold-dim); font-size: .8rem; }

    /* Configurator */
    .cfg-step { display: none; flex-direction: column; gap: .8rem; }
    .cfg-step.active { display: flex; }
    .cfg-progress {
      display: flex; gap: .3rem; margin-bottom: .3rem;
    }
    .cfg-dot {
      flex: 1; height: 3px; background: var(--border); transition: background .3s;
    }
    .cfg-dot.done { background: var(--gold); }
    .cfg-label {
      font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--gold); margin-bottom: .2rem;
    }
    .cfg-options { display: flex; flex-direction: column; gap: .4rem; }
    .cfg-opt {
      padding: .6rem .9rem; border: 1px solid var(--border);
      background: none; color: var(--cream); font-family: 'Jost', sans-serif;
      font-size: .82rem; cursor: pointer; text-align: left;
      transition: border-color .25s, background .25s;
    }
    .cfg-opt:hover { border-color: var(--gold); background: rgba(200,168,112,.06); }
    .cfg-opt.selected { border-color: var(--gold); background: rgba(200,168,112,.1); }

    .cfg-result {
      padding: 1rem; border: 1px solid var(--gold);
      background: rgba(200,168,112,.06); text-align: center;
    }
    .cfg-result p { font-size: .85rem; color: var(--cream); line-height: 1.6; margin-bottom: .6rem; }
    .cfg-result-btn {
      display: inline-block; background: #25d366; color: #fff;
      font-family: 'Jost', sans-serif; font-size: .75rem; font-weight: 500;
      letter-spacing: .12em; text-transform: uppercase;
      padding: .7rem 1.8rem; border: none; cursor: pointer;
      text-decoration: none; transition: background .25s;
    }
    .cfg-result-btn:hover { background: #1fb855; }

    .chat-footer {
      padding: .8rem 1.2rem; border-top: 1px solid var(--border);
      display: flex; gap: .5rem;
    }
    .chat-input {
      flex: 1; background: var(--ink); border: 1px solid var(--border);
      color: var(--cream); font-family: 'Jost', sans-serif; font-size: .82rem;
      padding: .6rem .9rem; outline: none;
    }
    .chat-input:focus { border-color: var(--gold); }
    .chat-input::placeholder { color: rgba(212,201,176,.35); }
    .chat-send {
      background: var(--gold); border: none; color: var(--ink);
      width: 38px; cursor: pointer; display: flex;
      align-items: center; justify-content: center;
      transition: background .25s;
    }
    .chat-send:hover { background: #d9ba84; }
    .chat-send svg { width: 16px; height: 16px; fill: var(--ink); }

    @media (max-width: 768px) {
      .chat-panel { width: calc(100vw - 2rem); right: 1rem; bottom: 5rem; max-height: 70vh; }
      .chat-fab { bottom: 1.2rem; right: 1rem; width: 50px; height: 50px; }
    }

    /* ─── HERO ─── */
    #hero {
      position: relative; height: 100vh; min-height: 680px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; overflow: hidden;
    }
    .hero-img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: center 40%;
      transform: scale(1.08); animation: heroZoom 12s ease-out forwards;
    }
    @keyframes heroZoom { to { transform: scale(1); } }
    .hero-overlay {
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, rgba(14,12,10,.65) 0%, rgba(14,12,10,.5) 35%, rgba(14,12,10,.75) 100%),
        linear-gradient(to right, rgba(14,12,10,.3), rgba(14,12,10,.15), rgba(14,12,10,.3));
    }
    .hero-content { position: relative; z-index: 2; max-width: 920px; padding: 0 2rem; }
    .hero-eyebrow {
      font-size: .7rem; letter-spacing: .38em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.4rem;
      opacity: 0; animation: fadeUp .9s .2s forwards;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6.5vw, 5.8rem);
      font-weight: 300; line-height: 1.08; color: var(--cream);
      margin-bottom: .6rem; opacity: 0; animation: fadeUp .9s .35s forwards;
      text-shadow: 0 2px 40px rgba(0,0,0,.4);
    }
    .hero-title em { font-style: italic; color: var(--gold); }
    .hero-sub {
      font-size: clamp(.92rem, 1.5vw, 1.08rem);
      color: var(--cream); max-width: 600px; margin: 0 auto;
      line-height: 1.8; margin-bottom: .8rem;
      opacity: 0; animation: fadeUp .9s .5s forwards;
    }
    .hero-asian-text {
      margin-bottom: 2.8rem; opacity: 0; animation: fadeUp .9s .62s forwards;
    }
    .hero-asian-text p { font-weight: 300; letter-spacing: .18em; line-height: 2.2; }
    .hero-cn { font-family: 'Noto Serif SC', serif; font-size: clamp(.82rem, 1.6vw, 1.05rem); color: rgba(242,234,216,.75); }
    .hero-jp { font-family: 'Noto Serif JP', serif; font-size: clamp(.78rem, 1.4vw, .95rem); color: rgba(242,234,216,.6); }
    .hero-kr { font-family: 'Noto Serif KR', serif; font-size: clamp(.78rem, 1.4vw, .95rem); color: rgba(242,234,216,.6); }
    .hero-th { font-family: 'Noto Serif Thai', serif; font-size: clamp(.78rem, 1.4vw, .95rem); color: rgba(242,234,216,.6); }
    .hero-lang-switcher {
      display: flex; gap: .4rem; justify-content: center; flex-wrap: wrap;
      margin-bottom: 2rem;
      opacity: 0; animation: fadeUp .9s .7s forwards;
    }
    .hero-lang-switcher .lang-btn {
      font-size: .65rem; letter-spacing: .08em; text-transform: uppercase;
      color: var(--cream-dim); border: 1px solid rgba(200,168,112,.3);
      padding: .4rem .7rem; background: rgba(14,12,10,.4);
      backdrop-filter: blur(4px); cursor: pointer;
      transition: border-color .25s, color .25s, background .25s;
    }
    .hero-lang-switcher .lang-btn:hover,
    .hero-lang-switcher .lang-btn.active {
      border-color: var(--gold); color: var(--gold); background: rgba(200,168,112,.1);
    }
    .hero-actions {
      display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
      opacity: 0; animation: fadeUp .9s .75s forwards;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .btn-primary {
      display: inline-block; font-family: 'Jost', sans-serif;
      font-size: .82rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
      color: var(--ink); background: var(--gold);
      padding: 1rem 2.8rem; text-decoration: none;
      transition: background .25s, transform .2s;
    }
    .btn-primary:hover { background: #d9ba84; transform: translateY(-2px); }
    .btn-outline {
      display: inline-block; font-family: 'Jost', sans-serif;
      font-size: .82rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase;
      color: var(--cream-dim); border: 1px solid rgba(200,168,112,.35);
      padding: 1rem 2.4rem; text-decoration: none;
      transition: border-color .25s, color .25s, transform .2s;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
    .scroll-hint {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
      font-size: .62rem; letter-spacing: .25em; text-transform: uppercase;
      color: rgba(200,168,112,.5); z-index: 2;
      opacity: 0; animation: fadeUp .9s 1.1s forwards;
    }
    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, var(--gold-dim), transparent);
      animation: scrollPulse 2.2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: .3; transform: scaleY(.7); }
      50%       { opacity: 1; transform: scaleY(1); }
    }

    /* ─── STATS ─── */
    .stats-strip {
      background: var(--card);
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      display: grid; grid-template-columns: repeat(4, 1fr);
    }
    .stat-item {
      padding: 2.4rem 1.5rem; text-align: center;
      border-right: 1px solid var(--border);
      position: relative; overflow: hidden; cursor: default;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item::after {
      content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
      width: 0; height: 2px; background: var(--gold); transition: width .4s ease;
    }
    .stat-item:hover::after { width: 50%; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem; font-weight: 300; color: var(--gold); line-height: 1;
      margin-bottom: .3rem;
    }
    .stat-label {
      font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream);
    }

    /* ─── SECTIONS ─── */
    .section-wrap { max-width: 1200px; margin: 0 auto; }
    section { padding: 7rem 4rem; }
    .section-tag {
      font-size: .65rem; letter-spacing: .38em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.1rem; display: block;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4.5vw, 3.6rem);
      font-weight: 300; line-height: 1.12; color: var(--cream);
      margin-bottom: 1.4rem;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .section-body { font-size: 1.05rem; line-height: 1.85; color: var(--cream); }
    .gold-rule {
      width: 44px; height: 1px; margin: 1.6rem 0; position: relative;
      background: linear-gradient(to right, var(--gold), rgba(200,168,112,.3));
    }
    .services-header .section-tag::before,
    .reviews-header .section-tag::before,
    .blog-header .section-tag::before { display: none; }
    .services-header .section-tag,
    .reviews-header .section-tag,
    .blog-header .section-tag { justify-content: center; }
    .asian-text { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .35rem; }
    .asian-text p { line-height: 2; letter-spacing: .1em; }
    .asian-text .cn { font-family: 'Noto Serif SC', serif; font-size: .85rem; color: var(--gold-dim); }
    .asian-text .jp { font-family: 'Noto Serif JP', serif; font-size: .78rem; color: rgba(200,168,112,.5); }
    .asian-text .kr { font-family: 'Noto Serif KR', serif; font-size: .78rem; color: rgba(200,168,112,.5); }
    .asian-text .th { font-family: 'Noto Serif Thai', serif; font-size: .78rem; color: rgba(200,168,112,.5); }

    /* ─── ABOUT ─── */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
    .about-visual { position: relative; }
    .about-frame { position: relative; aspect-ratio: 4/5; overflow: hidden; }
    .about-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
    .about-frame:hover img { transform: scale(1.04); }
    .about-frame::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 60%, rgba(14,12,10,.4) 100%);
      pointer-events: none;
    }
    .about-img-caption {
      position: absolute; bottom: 1.2rem; left: 1.2rem;
      font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
      color: rgba(242,234,216,.55); z-index: 2;
    }
    .about-accent {
      position: absolute; top: -1.8rem; right: -1.8rem;
      width: 160px; height: 160px; border: 1px solid var(--border); z-index: -1;
    }
    .about-badge {
      position: absolute; bottom: -2rem; left: -2rem;
      background: var(--card); border: 1px solid var(--border);
      padding: 1.4rem 1.8rem; z-index: 2;
    }
    .badge-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem; font-weight: 300; color: var(--gold); line-height: 1;
    }
    .badge-text {
      font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
      color: var(--cream-dim); margin-top: .25rem;
    }
    .golden-visa-callout {
      margin-top: 2.5rem; padding: 1.6rem 1.8rem;
      border: 1px solid var(--border); background: rgba(200,168,112,.04);
      position: relative;
    }
    .gv-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 400; color: var(--gold); margin-bottom: .5rem;
    }
    .gv-body { font-size: .95rem; color: var(--cream); line-height: 1.75; }
    .gv-body strong { color: var(--cream); font-weight: 400; }

    /* ─── SERVICES ─── */
    #services { background: var(--surface); }
    .services-header { text-align: center; margin-bottom: 4rem; }
    .services-header .gold-rule { margin: 1.5rem auto; }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border); max-width: 1100px; margin: 0 auto;
    }
    .service-card {
      background: var(--card); padding: 2.8rem 2.2rem;
      position: relative; overflow: hidden; transition: background .3s;
    }
    .service-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
    }
    .service-card:hover { background: #221f18; }
    .service-card:hover::after { transform: scaleX(1); }
    .service-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 400; color: var(--cream); margin-bottom: .6rem;
    }
    .service-desc { font-size: .95rem; color: var(--cream); line-height: 1.8; margin-bottom: 1rem; }
    .service-asian { display: flex; flex-direction: column; gap: .15rem; margin-bottom: .4rem; }
    .service-cn { font-family: 'Noto Serif SC', serif; font-size: .75rem; color: var(--gold-dim); letter-spacing: .08em; }
    .service-jp { font-family: 'Noto Serif JP', serif; font-size: .7rem; color: rgba(158,127,78,.65); }
    .service-kr { font-family: 'Noto Serif KR', serif; font-size: .7rem; color: rgba(158,127,78,.65); }
    .service-th { font-family: 'Noto Serif Thai', serif; font-size: .7rem; color: rgba(158,127,78,.65); }
    .service-link {
      display: inline-block; margin-top: 1rem;
      font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--gold); text-decoration: none; transition: color .25s;
    }
    .service-link:hover { color: #d9ba84; }

    /* ─── STAGING / BEFORE-AFTER ─── */
    #staging { background: var(--ink); }
    .staging-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
    .staging-visual { position: relative; }
    .ba-slider {
      position: relative; aspect-ratio: 16/10; overflow: hidden;
      cursor: col-resize; user-select: none; -webkit-user-select: none;
    }
    .ba-slider img {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      object-fit: cover; pointer-events: none;
    }
    .ba-after { clip-path: inset(0 0 0 0); }
    .ba-before { clip-path: inset(0 50% 0 0); }
    .ba-handle {
      position: absolute; top: 0; bottom: 0; left: 50%;
      width: 3px; background: var(--gold);
      transform: translateX(-50%); z-index: 3; pointer-events: none;
    }
    .ba-handle::before, .ba-handle::after {
      content: ''; position: absolute; left: 50%; transform: translateX(-50%);
      font-size: .58rem; font-weight: 500; letter-spacing: .12em;
      text-transform: uppercase; white-space: nowrap; padding: .35rem .8rem; z-index: 4;
    }
    .ba-handle::before {
      content: 'BEFORE'; top: 1rem;
      background: rgba(14,12,10,.8); color: var(--cream-dim);
      transform: translateX(calc(-100% - 12px));
    }
    .ba-handle::after {
      content: 'AFTER'; top: 1rem;
      background: var(--gold); color: var(--ink); transform: translateX(12px);
    }
    .ba-knob {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--gold); border: 3px solid var(--cream);
      display: flex; align-items: center; justify-content: center;
      z-index: 5; pointer-events: none;
      box-shadow: 0 4px 20px rgba(0,0,0,.4);
    }
    .ba-knob svg { width: 18px; height: 18px; fill: var(--ink); }
    .ba-label-row { display: flex; justify-content: space-between; margin-top: .8rem; }
    .ba-label { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream-dim); }
    .ba-label.after { color: var(--gold); }
    .staging-stat {
      display: flex; align-items: baseline; gap: .5rem;
      margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
    }
    .staging-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem; font-weight: 300; color: var(--gold); line-height: 1;
    }
    .staging-stat-label { font-size: .82rem; color: var(--cream-dim); }

    /* ─── REVIEWS ─── */
    #reviews { background: var(--surface); }
    .reviews-header { text-align: center; margin-bottom: 4rem; }
    .reviews-header .gold-rule { margin: 1.5rem auto; }
    .stars { display: flex; gap: .2rem; justify-content: center; color: var(--gold); }
    .rating-block { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.2rem; }
    .rating-big {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem; font-weight: 300; color: var(--gold); line-height: 1;
    }
    .rating-stars-col .stars { justify-content: flex-start; margin-bottom: .3rem; }
    .rating-count { font-size: .75rem; letter-spacing: .08em; color: var(--cream-dim); }
    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
    .review-card {
      background: var(--card); border: 1px solid var(--border);
      padding: 1.8rem; transition: border-color .3s, transform .3s;
    }
    .review-card:hover { border-color: rgba(200,168,112,.35); transform: translateY(-4px); }
    .review-q {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem; color: var(--gold); opacity: .25; line-height: .5; margin-bottom: .6rem;
    }
    .review-text { font-size: 1rem; line-height: 1.8; color: var(--cream); margin-bottom: 1.4rem; }
    .review-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 1rem; border-top: 1px solid var(--border);
    }
    .reviewer { display: flex; align-items: center; gap: .75rem; }
    .reviewer-avatar {
      width: 34px; height: 34px; border-radius: 50%; background: var(--sage);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif; font-size: .95rem; color: var(--cream);
    }
    .reviewer-name { font-size: .82rem; font-weight: 400; color: var(--cream); }
    .reviewer-origin { font-size: .68rem; color: var(--cream-dim); }
    .review-platform { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dim); }

    /* ─── BLOG ─── */
    #blog { background: var(--ink); }
    .blog-header { text-align: center; margin-bottom: 4rem; }
    .blog-header .gold-rule { margin: 1.5rem auto; }
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .blog-card {
      background: var(--card); border: 1px solid var(--border);
      overflow: hidden; transition: border-color .3s, transform .3s;
      text-decoration: none; display: block;
    }
    .blog-card:hover { border-color: rgba(200,168,112,.35); transform: translateY(-4px); }
    .blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
    .blog-body { padding: 1.8rem; }
    .blog-tag {
      font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: .6rem; display: inline-block;
    }
    .blog-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 400; color: var(--cream);
      line-height: 1.3; margin-bottom: .7rem;
    }
    .blog-excerpt { font-size: .95rem; color: var(--cream); line-height: 1.75; margin-bottom: 1rem; }
    .blog-read {
      font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--gold); transition: color .25s;
    }
    .blog-card:hover .blog-read { color: #d9ba84; }
    .blog-all {
      text-align: center; margin-top: 3rem;
    }

    /* ─── CTA ─── */
    #cta-section {
      background: var(--surface); text-align: center; padding: 7rem 4rem;
      position: relative; overflow: hidden;
    }
    #cta-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(200,168,112,.04) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ─── CONTACT ─── */
    #contact { background: var(--ink); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
    .channels { display: flex; flex-direction: column; gap: .9rem; margin-top: 2.4rem; }
    .channel-btn {
      display: flex; align-items: center; gap: 1.1rem;
      padding: 1.1rem 1.4rem; border: 1px solid var(--border);
      text-decoration: none; transition: border-color .25s, background .25s;
    }
    .channel-btn:hover { border-color: rgba(200,168,112,.4); background: rgba(200,168,112,.04); }
    .channel-icon { width: 38px; height: 38px; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .channel-name { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .15rem; }
    .channel-detail { font-size: .95rem; color: var(--cream); }
    .channel-arrow { color: var(--gold-dim); margin-left: auto; transition: transform .25s; }
    .channel-btn:hover .channel-arrow { transform: translateX(4px); }
    .contact-info {
      margin-top: 2.5rem; padding: 1.6rem;
      border-left: 2px solid var(--gold); background: rgba(200,168,112,.04);
    }
    .contact-info p { font-size: .95rem; color: var(--cream); line-height: 1.75; }
    .contact-info strong { color: var(--cream); font-weight: 400; }
    .timezone-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-top: 1rem; }
    .tz-item {
      font-size: .75rem; color: var(--cream-dim); padding: .5rem .7rem;
      border: 1px solid var(--border); text-align: center;
    }
    .tz-city { font-weight: 400; color: var(--cream); display: block; }
    .tz-time { color: var(--gold-dim); }

    /* Form */
    .form-group { margin-bottom: 1.1rem; }
    .form-label {
      display: block; font-size: .75rem; letter-spacing: .2em;
      text-transform: uppercase; color: var(--gold-dim); margin-bottom: .45rem;
    }
    .form-input, .form-select, .form-textarea {
      width: 100%; background: var(--card); border: 1px solid var(--border);
      color: var(--cream); font-family: 'Jost', sans-serif; font-size: .95rem;
      font-weight: 300; padding: .85rem 1.1rem; outline: none;
      transition: border-color .25s; -webkit-appearance: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
    .form-input::placeholder, .form-textarea::placeholder { color: rgba(212,201,176,.28); }
    .form-textarea { resize: vertical; min-height: 110px; }
    .form-select option { background: #1e1b17; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-submit {
      width: 100%; background: var(--gold); color: var(--ink); border: none;
      font-family: 'Jost', sans-serif; font-size: .82rem; font-weight: 500;
      letter-spacing: .2em; text-transform: uppercase; padding: 1.05rem 2rem;
      cursor: pointer; margin-top: .3rem; transition: background .25s;
    }
    .form-submit:hover { background: #d9ba84; }
    .form-success {
      display: none; text-align: center; padding: 2rem;
      border: 1px solid rgba(107,143,113,.4); background: rgba(107,143,113,.06);
    }
    .form-success p { color: var(--sage); font-size: .9rem; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--card); border-top: 1px solid var(--border);
      padding: 5rem 4rem 2.5rem;
    }
    .footer-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem; margin-bottom: 4rem;
    }
    .footer-logo { display: inline-block; margin-bottom: 1rem; }
    .footer-about { font-size: .95rem; color: var(--cream); line-height: 1.75; margin-bottom: 1rem; }
    .footer-asian { display: flex; flex-direction: column; gap: .25rem; }
    .footer-cn { font-family: 'Noto Serif SC', serif; font-size: .78rem; color: var(--gold-dim); letter-spacing: .1em; }
    .footer-jp { font-family: 'Noto Serif JP', serif; font-size: .72rem; color: rgba(158,127,78,.6); }
    .footer-kr { font-family: 'Noto Serif KR', serif; font-size: .72rem; color: rgba(158,127,78,.6); }
    .footer-th { font-family: 'Noto Serif Thai', serif; font-size: .72rem; color: rgba(158,127,78,.6); }
    .footer-col-title { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: .55rem; }
    .footer-links a { font-size: .95rem; color: var(--cream); text-decoration: none; transition: color .25s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 2rem; border-top: 1px solid var(--border);
      font-size: .75rem; color: rgba(212,201,176,.55); letter-spacing: .05em; flex-wrap: wrap; gap: .5rem;
    }

    /* ─── DECORATIVE ─── */
    .section-deco {
      position: absolute; pointer-events: none; opacity: .06;
    }
    .deco-circle {
      width: 400px; height: 400px; border-radius: 50%;
      border: 1px solid var(--gold);
    }
    .deco-lotus {
      width: 120px; height: 120px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 C55 30 75 40 90 50 C75 60 55 70 50 90 C45 70 25 60 10 50 C25 40 45 30 50 10Z' fill='none' stroke='%23c8a870' stroke-width='0.5'/%3E%3C/path%3E%3C/svg%3E");
      background-size: contain; background-repeat: no-repeat;
    }
    .section-divider {
      display: flex; align-items: center; justify-content: center;
      gap: 1rem; padding: 0; margin: 0;
    }
    .section-divider::before, .section-divider::after {
      content: ''; width: 60px; height: 1px; background: var(--border);
    }
    .section-divider svg {
      width: 20px; height: 20px; fill: var(--gold); opacity: .4;
    }

    /* Section backgrounds */
    #about { position: relative; overflow: hidden; }
    #about::before {
      content: ''; position: absolute; top: -100px; right: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(200,168,112,.04) 0%, transparent 70%);
      pointer-events: none;
    }
    #services::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(ellipse at 10% 90%, rgba(200,168,112,.03) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(200,168,112,.02) 0%, transparent 40%);
      pointer-events: none;
    }
    #services { position: relative; }
    #staging::after {
      content: ''; position: absolute; bottom: -80px; left: -80px;
      width: 350px; height: 350px; border-radius: 50%;
      border: 1px solid rgba(200,168,112,.06);
      pointer-events: none;
    }
    #staging { position: relative; overflow: hidden; }
    #cta-section::after {
      content: ''; position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 600px; border-radius: 50%;
      border: 1px solid rgba(200,168,112,.06);
      pointer-events: none;
    }

    /* Better section tag styling */
    .section-tag {
      font-size: .65rem; letter-spacing: .38em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.1rem; display: flex;
      align-items: center; gap: .8rem;
    }
    .section-tag::before {
      content: ''; width: 24px; height: 1px; background: var(--gold);
    }

    /* ─── LANG SWITCH ─── */
    body.lang-alt .hero-asian-text,
    body.lang-alt .asian-text,
    body.lang-alt .service-asian,
    body.lang-alt .footer-asian { display: none; }

    /* ─── REVEAL ─── */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .32s; }
    .reveal-delay-4 { transition-delay: .44s; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      nav { padding: 1.2rem 2.5rem; }
      nav.scrolled { padding: .9rem 2.5rem; }
      section { padding: 5rem 2.5rem; }
      footer { padding: 4rem 2.5rem 2rem; }
      .about-grid { grid-template-columns: 1fr; gap: 4rem; }
      .about-visual { order: -1; max-width: 480px; }
      .about-badge { bottom: 0; left: 0; }
      .about-accent { display: none; }
      .staging-grid { grid-template-columns: 1fr; gap: 3rem; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
      .blog-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      nav.scrolled { padding: .8rem 1.5rem; }
      .nav-links, .nav-right { display: none; }
      .menu-toggle { display: flex; }
      .mobile-nav { display: none; }
      .mobile-nav.open { display: flex; }

      /* Hero mobile fix — more breathing room at top, bigger text */
      #hero { min-height: 100vh; min-height: 100svh; }
      .hero-content { padding: 0 1.2rem; padding-top: 3.5rem; }
      .hero-eyebrow { font-size: .65rem; letter-spacing: .3em; margin-bottom: 1rem; }
      .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); margin-bottom: .5rem; }
      .hero-sub { font-size: .95rem; line-height: 1.7; margin-bottom: .6rem; }
      .hero-asian-text { margin-bottom: 1.8rem; }
      .hero-asian-text p { line-height: 1.9; }
      .hero-lang-switcher { margin-bottom: 1.5rem; gap: .3rem; }
      .hero-lang-switcher .lang-btn { font-size: .6rem; padding: .35rem .55rem; }
      .hero-actions { gap: .8rem; }
      .btn-primary { font-size: .76rem; padding: .9rem 2rem; }
      .btn-outline { font-size: .76rem; padding: .9rem 1.8rem; }

      /* Stats mobile */
      .stat-num { font-size: 2.4rem; }
      .stat-label { font-size: .75rem; }

      .stats-strip { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .services-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .timezone-grid { grid-template-columns: 1fr; }

      /* Section padding mobile */
      .section-wrap { padding: 4rem 1.5rem; }
      .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
    }