/* =========================
     Design Tokens
     ========================= */
  :root {
    /* Brand: deep navy from logo wordmark */
    --navy-900: #1A222E;
    --navy-800: #232C3A;
    --navy-700: #3A4456;
    --navy-500: #5A6577;
    --navy-200: #C7CCD4;

    --ink: #1A222E;
    --ink-2: #4A5260;
    --muted: #7A8290;

    --bg: #FCFBF8;
    --bg-2: #F8F6F1;        /* warm off-white */
    --bg-3: #F2EEE4;        /* warm beige tint */
    --line: rgba(139, 120, 90, 0.14);
    --line-soft: rgba(139, 120, 90, 0.08);
    --glass: rgba(255, 255, 255, 0.55);
    --glass-strong: rgba(255, 255, 255, 0.72);

    /* Brand accent: deep wine red from logo S-mark */
    --wine: #8B2332;
    --wine-700: #6E1A27;
    --wine-50: #FBEEF0;

    /* Secondary accent: warm gold from logo flourish */
    --gold: #C9A876;
    --gold-700: #A8884F;
    --gold-50: #F7F0E2;

    /* legacy aliases used by existing styles */
    --orange: #8B2332;
    --orange-600: #6E1A27;
    --orange-50: #FBEEF0;

    --green: #2D8F5A;

    --radius-sm: 6px;
    --radius: 14px;
    --radius-lg: 22px;

    --shadow-sm: 0 1px 2px rgba(139,35,50,.04), 0 2px 12px rgba(26,34,46,.04);
    --shadow-md: 0 12px 32px rgba(26,34,46,.06), 0 2px 8px rgba(139,35,50,.03);
    --shadow-lg: 0 30px 80px rgba(26,34,46,.08), 0 8px 20px rgba(139,35,50,.04);
    --shadow-glow: 0 20px 60px rgba(201, 168, 118, 0.12);

    --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
    --font-display: "Manrope", "Noto Sans JP", system-ui, sans-serif;

    --container: 1200px;
    --gutter: clamp(20px, 4vw, 40px);
  }

  /* =========================
     Reset
     ========================= */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    position: relative;
    overflow-x: hidden;
  }
  /* Ambient atmospheric blobs that bleed through sections */
  body::before, body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
  }
  body::before {
    width: 600px; height: 600px;
    top: -200px; left: -150px;
    background: radial-gradient(circle, rgba(201,168,118,.35), transparent 70%);
  }
  body::after {
    width: 700px; height: 700px;
    bottom: -300px; right: -200px;
    background: radial-gradient(circle, rgba(139,35,50,.18), transparent 70%);
  }
  main, header, section, footer { position: relative; z-index: 1; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
  h1, h2, h3, h4 { font-weight: 900; letter-spacing: -0.01em; line-height: 1.3; margin: 0; overflow-wrap: break-word; word-break: keep-all; }
  h2, h3, h4 { text-wrap: balance; }
  p { margin: 0; overflow-wrap: break-word; line-break: strict; }
  ul { list-style: none; padding: 0; margin: 0; }

  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: var(--gutter);
  }

  /* =========================
     Buttons
     ========================= */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
  }
  .btn .arrow { transition: transform .25s ease; }
  .btn:hover .arrow { transform: translateX(4px); }
  .btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255,107,26,.28);
  }
  .btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(255,107,26,.34); }
  .btn-ghost {
    background: var(--glass-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--navy-800);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 2px 8px rgba(26,34,46,.04), inset 0 1px 0 rgba(255,255,255,0.7);
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,0.95);
    border-color: var(--navy-800);
    transform: translateY(-1px);
  }
  .btn-dark {
    background: var(--navy-800);
    color: #fff;
  }
  .btn-dark:hover { background: var(--navy-900); transform: translateY(-1px); }
  .btn-sm { padding: 11px 18px; font-size: 13px; }

  /* =========================
     Navigation
     ========================= */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(252, 251, 248, 0.65);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, background .3s ease;
  }
  .nav.scrolled {
    border-bottom-color: var(--line-soft);
    background: rgba(252, 251, 248, 0.85);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: var(--navy-800);
    font-size: 18px;
    letter-spacing: 0.02em;
  }
  .logo-mark {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .logo-mark svg { width: 100%; height: 100%; display: block; }
  .logo small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.18em;
    margin-top: -2px;
  }
  .nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
  }
  .nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    transition: color .2s ease;
    position: relative;
    white-space: nowrap;
  }
  .nav-menu a:hover { color: var(--navy-800); }
  .nav-cta { display: flex; gap: 12px; align-items: center; }
  .menu-toggle { display: none; }

  @media (max-width: 1100px) {
    .nav-menu, .nav-cta .btn-ghost { display: none; }
    .menu-toggle {
      display: inline-flex;
      width: 40px; height: 40px;
      align-items: center; justify-content: center;
      border-radius: 8px;
      border: 1px solid var(--line);
      transition: background 0.2s;
    }
    /* Mobile menu open state */
    .nav-open .nav-menu {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 80px;
      left: 0; right: 0;
      height: calc(100dvh - 80px);
      background: #fff;
      padding: 8px 0 40px;
      z-index: 998;
      overflow-y: auto;
      box-shadow: 0 8px 32px rgba(26,34,46,.12);
    }
    .nav-open .nav-menu a {
      font-size: 17px;
      font-weight: 700;
      padding: 18px 24px;
      border-bottom: 1px solid var(--line);
      color: var(--ink);
      display: block;
    }
    .nav-open .nav-menu a:first-child { border-top: 1px solid var(--line); }
    .nav-open .nav-menu a.active { color: var(--wine); }
    .nav-open .menu-toggle { background: var(--bg-2); }
  }

  /* =========================
     Hero
     ========================= */
  .hero {
    position: relative;
    padding: clamp(60px, 10vw, 120px) 0 clamp(80px, 12vw, 140px);
    overflow: hidden;
    background:
      radial-gradient(ellipse at 80% 20%, rgba(201,168,118,.18), transparent 55%),
      radial-gradient(ellipse at 10% 80%, rgba(139,35,50,.06), transparent 50%),
      linear-gradient(180deg, rgba(255,255,255,.6) 0%, transparent 100%);
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(139,120,90,.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(139,120,90,.08) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 65%);
    -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--glass-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 16px rgba(26,34,46,.04), inset 0 1px 0 rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 600;
    color: var(--navy-700);
  }
  .hero-eyebrow .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(255,107,26,.18);
  }
  .hero h1 {
    margin-top: 22px;
    font-size: clamp(34px, 5.4vw, 64px);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--navy-900);
  }
  .hero h1 .accent {
    background: linear-gradient(180deg, transparent 65%, rgba(201,168,118,.4) 65%);
    padding: 0 4px;
  }
  .hero h1 .ink-orange { color: var(--wine); }
  .hero-sub {
    margin-top: 26px;
    font-size: clamp(15px, 1.4vw, 17px);
    color: var(--ink-2);
    max-width: 56ch;
    line-height: 1.9;
  }
  .hero-meta {
    margin-top: 36px;
    display: flex;
    gap: clamp(20px, 4vw, 48px);
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .hero-meta .m {
    display: flex; flex-direction: column; gap: 2px;
  }
  .hero-meta .m b {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.8vw, 30px);
    color: var(--navy-800);
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  .hero-meta .m b sup { font-size: 0.55em; color: var(--orange); margin-left: 2px; }
  .hero-meta .m span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .hero-cta {
    margin-top: 38px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .hero-note {
    margin-top: 18px;
    font-size: 12px;
    color: var(--muted);
    display: flex; align-items: center; gap: 8px;
  }
  .hero-note svg { color: var(--green); }

  /* Hero visual (right) */
  .hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 480px;
    margin-left: auto;
  }
  .hv-card {
    position: absolute;
    background: var(--glass-strong);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.6);
    padding: 22px;
  }
  .hv-card.main {
    inset: 0;
    background:
      linear-gradient(155deg, rgba(35,44,58,.92) 0%, rgba(26,34,46,.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .hv-card.main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }
  .hv-card.main::after {
    content: "";
    position: absolute;
    right: -50px; top: -50px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(201,168,118,.45), transparent 70%);
    pointer-events: none;
    filter: blur(20px);
  }
  .hv-tag {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
  }
  .hv-tag .pulse {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 0 rgba(255,107,26,.6);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,107,26,.6); }
    70% { box-shadow: 0 0 0 8px rgba(255,107,26,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,26,0); }
  }
  .hv-headline {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 78px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .hv-headline .unit { font-size: 0.4em; color: var(--orange); margin-left: 4px; }
  .hv-headline + p {
    position: relative; z-index: 1;
    margin-top: 8px;
    font-size: 13px;
    color: var(--navy-200);
    letter-spacing: 0.08em;
  }
  .hv-bars {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    align-items: end;
    height: 80px;
    margin-top: 8px;
  }
  .hv-bars span {
    background: rgba(255,255,255,.18);
    border-radius: 3px;
    transition: height .6s ease;
  }
  .hv-bars span.hl { background: var(--gold); box-shadow: 0 0 20px rgba(201,168,118,.7); }

  .hv-card.float {
    color: var(--ink);
  }
  .hv-card.metric {
    width: 200px;
    left: -28px;
    bottom: 60px;
    padding: 18px 20px;
  }
  .hv-card.metric .label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
    font-weight: 600;
  }
  .hv-card.metric .value {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--navy-800);
    margin-top: 2px;
    letter-spacing: -0.02em;
  }
  .hv-card.metric .trend {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--green);
    font-weight: 600;
  }
  .hv-card.match {
    width: 230px;
    right: -20px;
    top: 40px;
    padding: 16px 18px;
  }
  .hv-card.match .row {
    display: flex; align-items: center; gap: 10px;
  }
  .hv-card.match .avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
  }
  .hv-card.match .avatar.b { background: linear-gradient(135deg, var(--gold), #E0C595); color: var(--navy-900); }
  .hv-card.match .arrow-line {
    flex: 1; height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 4px, transparent 4px 8px);
    position: relative;
  }
  .hv-card.match .arrow-line::after {
    content: "✓"; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: var(--green); color: #fff;
    width: 20px; height: 20px; border-radius: 50%;
    display: grid; place-items: center;
    font-size: 12px; font-weight: 800;
  }
  .hv-card.match .label {
    font-size: 11px; color: var(--muted); margin-top: 10px;
    letter-spacing: 0.06em;
  }
  .hv-card.match .label b { color: var(--ink); font-weight: 700; }

  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 380px; margin: 0 auto; aspect-ratio: 1 / 1; }
    .hv-card.metric { left: -10px; bottom: 30px; width: 170px; }
    .hv-card.match { right: -10px; top: 20px; width: 200px; }
  }

  /* =========================
     Section base
     ========================= */
  .section {
    padding: clamp(70px, 10vw, 120px) 0;
  }
  .section-head {
    max-width: 720px;
    margin-bottom: clamp(40px, 6vw, 64px);
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .eyebrow::before {
    content: "";
    width: 28px; height: 2px;
    background: var(--orange);
  }
  .section-title {
    font-size: clamp(26px, 3.6vw, 42px);
    color: var(--navy-900);
    line-height: 1.35;
  }
  .section-lead {
    margin-top: 20px;
    color: var(--ink-2);
    font-size: 16px;
    line-height: 1.9;
  }

  /* =========================
     Stats
     ========================= */
  .stats {
    background:
      linear-gradient(155deg, rgba(35,44,58,.97) 0%, rgba(26,34,46,.98) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: .8;
    pointer-events: none;
  }
  .stats::after {
    content: "";
    position: absolute;
    right: -200px; top: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,118,.22), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
  }
  .stats-head { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto clamp(56px, 8vw, 88px); }
  .stats .eyebrow { color: var(--orange); }
  .stats .section-title { color: #fff; }
  .stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .stat {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 48px 36px;
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
    position: relative;
    overflow: hidden;
  }
  .stat:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(201,168,118,.4);
    transform: translateY(-4px);
  }
  .stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
  }
  .stat-num .unit { font-size: 0.4em; color: var(--orange); margin-left: 4px; font-weight: 700; }
  .stat-num .yen { font-size: 0.5em; margin-right: 2px; }
  .stat-label {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13px;
    color: var(--navy-200);
    line-height: 1.6;
  }
  .stat-label b { display: block; color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 4px; letter-spacing: 0.04em; }
  .stat-index {
    position: absolute;
    top: 16px; right: 18px;
    font-family: var(--font-display);
    font-size: 11px;
    color: rgba(255,255,255,.3);
    font-weight: 600;
    letter-spacing: 0.12em;
  }
  @media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
  }

  /* =========================
     Mission
     ========================= */
  .mission {
    background: var(--bg);
  }
  .mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
  }
  .mission-copy {
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.65;
    font-weight: 700;
    color: var(--navy-900);
    letter-spacing: -0.005em;
  }
  .mission-copy .hl {
    background: linear-gradient(180deg, transparent 60%, var(--orange-50) 60%);
    padding: 0 4px;
  }
  .mission-side {
    display: flex; flex-direction: column; gap: 24px;
  }
  .mission-quote {
    background: var(--bg-2);
    border-left: 3px solid var(--orange);
    padding: 24px 26px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.9;
  }
  .ceo-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px 14px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    width: fit-content;
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .ceo-link:hover { transform: translateX(4px); border-color: var(--navy-800); box-shadow: var(--shadow-sm); }
  .ceo-link .ph {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wine), var(--wine-700));
    color: #fff;
    display: grid; place-items: center;
    font-weight: 800;
    font-family: var(--font-display);
  }
  .ceo-link .meta { display: flex; flex-direction: column; }
  .ceo-link .meta small { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
  .ceo-link .meta b { font-size: 14px; color: var(--navy-900); font-weight: 700; }
  .ceo-link .arrow { color: var(--orange); margin: 0 8px 0 4px; }
  @media (max-width: 800px) {
    .mission-grid { grid-template-columns: 1fr; }
  }

  /* =========================
     Services
     ========================= */
  .services {
    background: linear-gradient(180deg, transparent 0%, rgba(248,246,241,.5) 50%, transparent 100%);
    position: relative;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: var(--glass-strong);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-radius: var(--radius-lg);
    padding: 36px 32px 32px;
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: 0 4px 20px rgba(26,34,46,.04), inset 0 1px 0 rgba(255,255,255,0.7);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  .service-card::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.85);
  }
  .service-card:hover::after { transform: scaleX(1); }
  .service-num {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.18em;
    margin-bottom: 22px;
  }
  .service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201,168,118,.2), rgba(201,168,118,.05));
    border: 1px solid rgba(201,168,118,.25);
    display: grid; place-items: center;
    color: var(--wine);
    margin-bottom: 22px;
    transition: background .3s ease, color .3s ease, border-color .3s ease;
  }
  .service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--wine), var(--wine-700));
    color: var(--gold);
    border-color: transparent;
  }
  .service-card h3 {
    font-size: 22px;
    color: var(--navy-900);
    margin-bottom: 14px;
    letter-spacing: -0.005em;
  }
  .service-card p {
    color: var(--ink-2);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 24px;
  }
  .service-features {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px dashed var(--line);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .service-features li {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 13px;
    color: var(--ink-2);
  }
  .service-features li::before {
    content: ""; flex-shrink: 0;
    width: 16px; height: 16px; margin-top: 4px;
    border-radius: 50%;
    background: var(--orange-50) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-7' stroke='%23FF6B1A' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
  }
  @media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
  }

  /* =========================
     How It Works
     ========================= */
  .how {
    background: transparent;
  }
  .how-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
  }
  .how-steps::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 6%; right: 6%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
    z-index: 0;
  }
  .step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
  }
  .step-circle {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--glass-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 16px rgba(26,34,46,.05), inset 0 1px 0 rgba(255,255,255,0.8);
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--navy-900);
    margin: 0 auto 22px;
    transition: all .3s ease;
    position: relative;
  }
  .step-circle::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed var(--line);
    opacity: 0;
    transition: opacity .3s ease;
  }
  .step.is-active .step-circle,
  .step:hover .step-circle {
    background: var(--navy-900);
    color: #fff;
    border-color: var(--navy-900);
    transform: scale(1.05);
  }
  .step.is-active .step-circle::before,
  .step:hover .step-circle::before {
    opacity: 1;
    border-color: var(--orange);
  }
  .step h4 {
    font-size: 15px;
    color: var(--navy-900);
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .step p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
  }
  .step-day {
    display: inline-block;
    margin-top: 12px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--orange-50);
    color: var(--orange);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  @media (max-width: 800px) {
    .how-steps { grid-template-columns: 1fr; gap: 28px; }
    .how-steps::before { display: none; }
    .step { display: grid; grid-template-columns: 64px 1fr; text-align: left; gap: 18px; align-items: start; }
    .step-circle { margin: 0; }
    .step-day { margin-top: 8px; }
  }

  /* =========================
     Case studies
     ========================= */
  .cases {
    background: linear-gradient(180deg, transparent 0%, rgba(242,238,228,.4) 50%, transparent 100%);
  }
  .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .case {
    background: var(--glass-strong);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: 0 4px 20px rgba(26,34,46,.04), inset 0 1px 0 rgba(255,255,255,0.7);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
  }
  .case:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .case-img {
    aspect-ratio: 16 / 10;
    background: var(--bg-3);
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .case-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8,28,58,.35) 100%);
  }
  .case-img .industry {
    position: absolute;
    top: 16px; left: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 700;
    color: var(--navy-900);
    letter-spacing: 0.04em;
    z-index: 1;
  }
  .case-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
  }
  .case-result {
    display: flex;
    gap: 22px;
    padding: 14px 16px;
    background: rgba(248,246,241,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201,168,118,0.15);
    border-radius: var(--radius);
  }
  .case-result .r { flex: 1; }
  .case-result .r small { font-size: 10px; color: var(--muted); letter-spacing: 0.08em; font-weight: 600; }
  .case-result .r b { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--navy-900); letter-spacing: -0.02em; line-height: 1.2; }
  .case-result .r b .unit { font-size: 0.55em; color: var(--orange); margin-left: 2px; }
  .case h3 {
    font-size: 17px;
    color: var(--navy-900);
    line-height: 1.55;
  }
  .case-meta {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
  }
  .case-meta .read {
    color: var(--navy-900);
    font-weight: 700;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .cases-foot {
    margin-top: 48px;
    text-align: center;
  }
  @media (max-width: 900px) {
    .cases-grid { grid-template-columns: 1fr; }
  }

  /* =========================
     Contact CTA
     ========================= */
  .cta {
    padding: clamp(60px, 8vw, 100px) 0;
    background: transparent;
  }
  .cta-box {
    background:
      linear-gradient(155deg, rgba(35,44,58,.95) 0%, rgba(26,34,46,.97) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 28px;
    padding: clamp(48px, 7vw, 80px);
    color: #fff;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
    box-shadow: 0 30px 80px rgba(26,34,46,.15);
  }
  .cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .7;
    pointer-events: none;
  }
  .cta-box::after {
    content: "";
    position: absolute;
    right: -160px; top: -160px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(201,168,118,.3), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
  }
  .cta-content { position: relative; z-index: 1; }
  .cta-content .eyebrow { color: var(--orange); }
  .cta-content h2 {
    font-size: clamp(26px, 3.6vw, 40px);
    line-height: 1.4;
    color: #fff;
  }
  .cta-content p {
    margin-top: 18px;
    color: var(--navy-200);
    font-size: 15px;
    line-height: 1.85;
    max-width: 50ch;
  }
  .cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .cta-actions .btn { width: 100%; padding: 20px 28px; font-size: 15px; }
  .cta-trust {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    color: var(--navy-200);
  }
  .cta-trust .row { display: flex; align-items: center; gap: 10px; }
  .cta-trust svg { color: var(--green); flex-shrink: 0; }
  @media (max-width: 900px) {
    .cta-box { grid-template-columns: 1fr; }
  }

  /* =========================
     Footer
     ========================= */
  .footer {
    background: linear-gradient(180deg, rgba(26,34,46,.97) 0%, rgba(26,34,46,1) 100%);
    color: var(--navy-200);
    padding: 80px 0 32px;
    position: relative;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer .logo { color: #fff; }
  .footer .logo small { color: var(--navy-200); }
  .footer-about p {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.9;
    color: var(--navy-200);
    max-width: 32ch;
  }
  .footer-col h5 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
  .footer-col a {
    font-size: 13px;
    color: var(--navy-200);
    transition: color .2s ease;
  }
  .footer-col a:hover { color: #fff; }
  .footer-col address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.85;
    color: var(--navy-200);
  }
  .footer-col address a { color: var(--orange); }
  .footer-bottom {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--navy-200);
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom .legal { display: flex; gap: 24px; }
  @media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* =========================
     Reveal animation
     ========================= */
  @keyframes revealUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(28px);
  }
  .reveal.is-in {
    animation: revealUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-fill-mode: both;
  }
  .reveal.is-in[data-delay="1"] { animation-delay: .08s; }
  .reveal.is-in[data-delay="2"] { animation-delay: .16s; }
  .reveal.is-in[data-delay="3"] { animation-delay: .24s; }
  .reveal.is-in[data-delay="4"] { animation-delay: .32s; }

  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.is-in { opacity: 1; transform: none; animation: none; }
    html { scroll-behavior: auto; }
  }

/* =========================
   Page hero (subpage header)
   ========================= */
.page-hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(50px, 7vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,168,118,.18), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(139,35,50,.06), transparent 50%);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139,120,90,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,120,90,.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--muted); transition: color .2s ease; }
.breadcrumb a:hover { color: var(--wine); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb b { color: var(--navy-900); font-weight: 600; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.page-hero .lead {
  margin-top: 22px;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-2);
  line-height: 1.9;
  max-width: 60ch;
}

/* =========================
   News list
   ========================= */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.news-item {
  display: grid;
  grid-template-columns: 140px 120px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding .2s ease;
  cursor: pointer;
}
.news-item:hover { background: rgba(255,255,255,.5); padding-left: 16px; padding-right: 16px; }
.news-date {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.news-tag {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--gold-50);
  color: var(--gold-700);
  border: 1px solid rgba(201,168,118,.3);
  width: fit-content;
}
.news-tag.media { background: var(--wine-50); color: var(--wine); border-color: rgba(139,35,50,.2); }
.news-tag.notice { background: rgba(45,143,90,.08); color: var(--green); border-color: rgba(45,143,90,.2); }
.news-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.6;
}
.news-arrow { color: var(--muted); transition: transform .2s ease, color .2s ease; }
.news-item:hover .news-arrow { color: var(--wine); transform: translateX(4px); }
@media (max-width: 800px) {
  .news-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 4px; }
  .news-arrow { display: none; }
}

/* =========================
   Contact form
   ========================= */
.form-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 72px);
}
.contact-form {
  background: var(--glass-strong);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 12px 40px rgba(26,34,46,.06), inset 0 1px 0 rgba(255,255,255,0.7);
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.field label {
  font-size: 13px; font-weight: 600; color: var(--navy-900);
  display: inline-flex; align-items: center; gap: 8px;
}
.field label .req {
  font-size: 10px; padding: 2px 7px; border-radius: 4px;
  background: var(--wine-50); color: var(--wine); font-weight: 700;
}
.field input, .field select, .field textarea {
  font: inherit;
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--wine);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(139,35,50,.08);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-aside {
  display: flex; flex-direction: column; gap: 24px;
}
.form-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.form-card h4 {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--wine);
  font-family: var(--font-display);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.form-card p, .form-card a { font-size: 14px; color: var(--ink-2); line-height: 1.85; }
.form-card a { color: var(--navy-900); font-weight: 600; }
@media (max-width: 800px) {
  .form-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* =========================
   Detail content (about, service detail)
   ========================= */
.prose {
  max-width: 700px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-2);
}
.prose h2 { font-size: 26px; color: var(--navy-900); margin: 48px 0 16px; }
.prose h3 { font-size: 19px; color: var(--navy-900); margin: 32px 0 12px; }
.prose p { margin-bottom: 18px; }
.prose ul { padding-left: 1.2em; list-style: disc; }
.prose ul li { margin-bottom: 8px; }

/* Service detail rows on services page */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(50px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--line);
}
.svc-row:last-child { border-bottom: none; }
.svc-row.alt { direction: rtl; }
.svc-row.alt > * { direction: ltr; }
.svc-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.svc-row h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--navy-900);
  line-height: 1.4;
  margin-bottom: 20px;
}
.svc-row p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.9;
}
.svc-points {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-points li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px;
  color: var(--ink);
}
.svc-points li svg { color: var(--gold-700); flex-shrink: 0; margin-top: 4px; }
.svc-points li b { color: var(--navy-900); font-weight: 700; display: block; margin-bottom: 2px; }
.svc-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: var(--glass-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 20px 60px rgba(26,34,46,.08), inset 0 1px 0 rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 32px;
}
.svc-visual.dark {
  background: linear-gradient(155deg, rgba(35,44,58,.95), rgba(26,34,46,.97));
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}
.svc-visual.dark::after {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,168,118,.4), transparent 70%);
  filter: blur(20px);
}
.svc-visual.dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.svc-visual .big-num {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 100px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--wine);
}
.svc-visual.dark .big-num { color: var(--gold); }
.svc-visual .big-num .unit { font-size: 0.4em; margin-left: 6px; }
.svc-visual .cap {
  position: relative; z-index: 1;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
}
.svc-visual.dark .cap { color: var(--navy-200); }
@media (max-width: 800px) {
  .svc-row, .svc-row.alt { grid-template-columns: 1fr; direction: ltr; padding: 50px 0; }
}

/* About / company info table */
.info-table {
  border-top: 1px solid var(--line);
}
.info-table .row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.info-table .row dt { font-weight: 600; color: var(--navy-900); }
.info-table .row dd { margin: 0; color: var(--ink-2); line-height: 1.85; }
@media (max-width: 700px) {
  .info-table .row { grid-template-columns: 1fr; gap: 6px; }
}

/* CEO block on about */
.ceo-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.ceo-photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(35,44,58,.9), rgba(26,34,46,.95));
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.08);
}
.ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ceo-photo::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,168,118,.35), transparent 70%);
  filter: blur(20px);
}
.ceo-name { margin-top: 18px; font-size: 18px; color: var(--navy-900); font-weight: 700; }
.ceo-title { font-size: 13px; color: var(--muted); }
@media (max-width: 700px) {
  .ceo-block { grid-template-columns: 1fr; }
  .ceo-photo { max-width: 240px; }
}

/* =====================
   Logo image
   ===================== */
.logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  animation: logoIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes logoIn {
  0%   { opacity: 0; transform: translateY(-18px) scale(0.88); }
  60%  { opacity: 1; transform: translateY(4px) scale(1.03); }
  80%  { transform: translateY(-2px) scale(0.99); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.nav .logo-img {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
}
.nav .logo {
  position: relative;
  top: 5px;
}
.nav .logo:hover .logo-img {
  transform: scale(1.08);
}
.footer .logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* =====================
   Hero: ensure visual column fills grid track + photo behind glass
   ===================== */
.hero-visual { width: 100%; }
.hv-card.main {
  background-image:
    linear-gradient(155deg, rgba(10,25,60,.76) 0%, rgba(20,45,100,.68) 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=900&auto=format&fit=crop&q=80') !important;
  background-size: cover !important;
  background-position: center !important;
}

/* =====================
   Photo glass panel (blue-tinted)
   ===================== */
.photo-glass {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.photo-glass img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: transform .7s ease;
}
.photo-glass:hover img { transform: scale(1.04); }
.photo-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,30,60,.10) 0%, rgba(10,20,50,.28) 100%);
  pointer-events: none;
}
.photo-glass-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.photo-glass-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}

/* Mission photo col */
.mission-photo-wrap {
  position: relative;
}
.mission-photo-wrap .photo-glass {
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
}
.mission-photo-wrap .mission-quote-float {
  position: absolute;
  bottom: -24px;
  right: -20px;
  width: 260px;
  background: var(--glass-strong);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.mission-photo-wrap .mission-quote-float p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.75;
}
.mission-photo-wrap .mission-quote-float .q-author {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.mission-photo-wrap .mission-quote-float .q-author .ph {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), var(--wine-700));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .mission-photo-wrap .mission-quote-float {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}

.nav-menu a.active { color: var(--wine); }
.nav-menu a.active::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--wine); border-radius: 2px;
}

/* =====================================================
   FULL-BLEED PHOTO BACKGROUNDS — applied last to win
   ===================================================== */

/* Hero: glass blue-sky architectural photo */
.hero {
  background:
    linear-gradient(105deg, rgba(255,255,255,.82) 0%, rgba(240,246,255,.70) 38%, rgba(200,220,255,.30) 65%, transparent 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat !important;
}

/* Stats: construction through dark navy glass */
.stats {
  background:
    linear-gradient(155deg, rgba(26,34,46,.94) 0%, rgba(35,44,58,.96) 100%),
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600&auto=format&fit=crop&q=65') center/cover no-repeat !important;
  position: relative;
  padding: clamp(100px, 14vw, 160px) 0;
}

/* CTA box: architectural photo through dark glass */
.cta-box {
  background:
    linear-gradient(155deg, rgba(26,34,46,.92) 0%, rgba(35,44,58,.94) 100%),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&auto=format&fit=crop&q=70') center/cover !important;
}

/* Footer: steel photo barely visible under near-opaque dark */
.footer {
  background:
    linear-gradient(180deg, rgba(26,34,46,.97) 0%, rgba(20,28,38,1) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1400&auto=format&fit=crop&q=60') center/cover no-repeat !important;
}

/* Sub-page hero: glass blue-sky architectural photo */
.page-hero {
  background:
    linear-gradient(135deg, rgba(255,255,255,.68) 0%, rgba(215,228,255,.52) 50%, rgba(195,215,255,.42) 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat !important;
}

/* Full-width photo band */
.photo-band {
  position: relative;
  height: clamp(240px, 30vw, 380px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-band img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.78);
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,20,50,.52) 0%,
    rgba(20,40,90,.32) 50%,
    rgba(10,20,50,.46) 100%
  );
}
.photo-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.photo-band-inner .band-label {
  font-family: var(--font-display);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.photo-band-inner .band-label::before,
.photo-band-inner .band-label::after {
  content: "";
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: .6;
}
.photo-band-inner h2 {
  font-size: clamp(24px, 3.6vw, 46px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 900;
  color: #fff;
}
.photo-band-inner p {
  margin-top: 16px;
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(255,255,255,.75);
  max-width: 54ch;
  margin-inline: auto;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   PREMIUM ANIMATION SYSTEM
═══════════════════════════════════════════ */

/* ── Page Loader ──────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 0% 0);
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.loader-logo {
  width: 72px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 28px;
  animation: loaderLogoIn 0.6s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}
.loader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: loaderBar 1.2s 0.4s cubic-bezier(0.4,0,0.2,1) both;
}
.loader-label {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  animation: loaderLogoIn 0.5s 0.5s ease both;
}

@keyframes loaderLogoIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes loaderBar {
  from { width: 0%; }
  to   { width: 100%; }
}

/* Loader exit */
.loader-done {
  animation: loaderOut 0.75s cubic-bezier(0.76,0,0.24,1) forwards;
}
@keyframes loaderOut {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}

/* ── Page Transition Overlay ──────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 99980;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* =========================
   Careers Page
   ========================= */
.careers-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--wine-50);
  color: var(--wine);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 17px; font-weight: 700;
  margin: 0 0 12px; color: var(--navy-900);
}
.why-card p { font-size: 14px; color: var(--ink-2); line-height: 1.8; margin: 0; }

/* Job Cards */
.job-list { display: flex; flex-direction: column; gap: 20px; }
.job-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 36px;
  background: #fff;
  transition: box-shadow .3s ease;
}
.job-card:hover { box-shadow: var(--shadow-md); }
.job-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.job-type {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: var(--wine); background: var(--wine-50);
  padding: 4px 10px; border-radius: 40px;
  margin-bottom: 10px; letter-spacing: .04em;
}
.job-title { font-size: 20px; font-weight: 700; margin: 0 0 6px; color: var(--navy-900); }
.job-sub { font-size: 14px; color: var(--ink-2); margin: 0; }
.job-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.job-detail-item {
  display: flex; gap: 12px;
  font-size: 13px; color: var(--ink-2);
}
.job-detail-item .label {
  flex-shrink: 0; font-weight: 600;
  color: var(--navy-700); min-width: 72px;
}

/* Process Steps */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  flex: 1; min-width: 160px;
  text-align: center;
  padding: 0 16px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800;
  color: var(--wine); opacity: .15;
  line-height: 1; margin-bottom: 12px;
}
.process-step h4 {
  font-size: 16px; font-weight: 700;
  margin: 0 0 8px; color: var(--navy-900);
}
.process-step p { font-size: 13px; color: var(--ink-2); line-height: 1.7; margin: 0; }
.step-arrow {
  flex-shrink: 0; padding-top: 20px;
  color: var(--navy-200);
}

/* Intern Step Cards */
.job-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
  padding: 24px;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.job-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-tag {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--wine);
  background: var(--wine-50);
  padding: 4px 10px;
  border-radius: 40px;
  margin-top: 2px;
}
.job-step b { display: block; font-size: 14px; font-weight: 700; color: var(--navy-900); margin-bottom: 4px; }
.job-step p { font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.7; }
.job-appeal {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.8;
  margin: 0;
  padding: 16px 20px;
  border-left: 3px solid var(--wine);
  background: var(--wine-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

@media (max-width: 900px) {
  .careers-why-grid { grid-template-columns: 1fr; }
  .job-details { grid-template-columns: 1fr; }
  .job-header { flex-direction: column; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
}

/* =========================
   Careers – New Split Hero
   ========================= */
.careers-split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 72px; /* nav offset */
}

.careers-hero-left {
  background: var(--navy-900);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 100px) clamp(36px, 5vw, 80px);
}

.careers-hero-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.careers-hero-big {
  font-family: var(--font-sans);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: 0 0 32px;
}

.careers-hero-copy {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255, 255, 255, .55);
  line-height: 1.85;
  max-width: 380px;
  margin: 0 0 44px;
}

.careers-hero-right {
  position: relative;
  overflow: hidden;
}

.careers-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.careers-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,34,46,.25) 0%, transparent 60%);
  pointer-events: none;
}

/* =========================
   Careers – Tab Bar
   ========================= */
.careers-tabs-bar {
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  position: sticky;
  top: 72px;
  z-index: 40;
}

.careers-tabs {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.careers-tabs::-webkit-scrollbar { display: none; }

.careers-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .4);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
  white-space: nowrap;
  letter-spacing: .01em;
}

.careers-tab:hover { color: rgba(255, 255, 255, .75); }

.careers-tab.active {
  color: #fff;
  border-bottom-color: var(--gold);
}

.careers-tab svg {
  opacity: .4;
  transition: opacity .2s ease, transform .2s ease;
}

.careers-tab.active svg,
.careers-tab:hover svg {
  opacity: 1;
  transform: translateX(2px);
}

/* =========================
   Careers – Job Panels
   ========================= */
.job-panels-section { padding-top: 60px; }

.job-panel { display: none; }
.job-panel.active { display: block; }

.job-panel-intro {
  margin-bottom: 40px;
}

.panel-lead {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 640px;
  margin: 0;
}

/* New job card (2-column grid) */
.job-card-new {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease;
}

.job-card-new:hover { box-shadow: var(--shadow-md); }

.job-card-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
}

.job-card-main {
  padding: 44px 48px;
  border-right: 1px solid var(--line);
}

.jcn-header {
  margin-bottom: 36px;
}

.jcn-section {
  margin-bottom: 28px;
}

.jcn-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}

.jcn-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jcn-list li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.jcn-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wine);
  opacity: .6;
}

.job-card-side {
  padding: 40px 32px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jcs-block {}

.jcs-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.jcs-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.5;
}

.jcs-value small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-2);
  margin-top: 2px;
}

/* =========================
   Careers – Culture Statement
   ========================= */
.culture-statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.culture-stmt-photo {
  position: relative;
  overflow: hidden;
}

.culture-stmt-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}

.culture-stmt-photo:hover img { transform: scale(1.04); }

.culture-stmt-text {
  background: var(--navy-900);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 96px) clamp(44px, 5vw, 84px);
}

.culture-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.culture-big-text {
  font-family: var(--font-sans);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 0 36px;
}

.culture-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 2.1;
  margin: 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

/* =========================
   Responsive – Careers
   ========================= */
@media (max-width: 1024px) {
  .job-card-grid { grid-template-columns: 1fr; }
  .job-card-main { border-right: none; border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
  .careers-split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
  }
  .careers-hero-right {
    height: 45vw;
    min-height: 240px;
  }
  .careers-hero-left {
    padding: 56px 24px 48px;
  }
  .careers-hero-big { font-size: clamp(36px, 8vw, 56px); }
  .careers-hero-copy { max-width: 100%; }
  .culture-statement {
    grid-template-columns: 1fr;
  }
  .culture-stmt-photo { height: 300px; }
  .culture-stmt-text { padding: 56px 24px; }
  .culture-big-text { font-size: clamp(40px, 9vw, 64px); }
  .job-card-main { padding: 32px 24px; }
  .job-card-side { padding: 28px 24px; }
  .job-panel-intro { margin-bottom: 28px; }
}


/* =====================
   Privacy Modal
   ===================== */
.privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26,34,46,.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.privacy-modal.is-open { display: flex; }
.privacy-modal-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(26,34,46,.2);
}
.privacy-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.privacy-modal-head h2 {
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  margin: 0;
}
.privacy-modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s;
  flex-shrink: 0;
}
.privacy-modal-close:hover { background: var(--line); }
.privacy-modal-body {
  overflow-y: auto;
  padding: 28px 36px 36px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-2);
}
.privacy-modal-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 8px;
  text-wrap: initial;
}
.privacy-modal-body h3:first-child { margin-top: 0; }
.privacy-modal-body p { margin-bottom: 8px; }
.privacy-modal-body ul { padding-left: 1.4em; list-style: disc; margin-bottom: 8px; }
.privacy-modal-body li { margin-bottom: 4px; }
@media (max-width: 600px) {
  .privacy-modal { padding: 16px; }
  .privacy-modal-head { padding: 20px 20px 16px; }
  .privacy-modal-body { padding: 20px 20px 28px; }
}
