    :root {
      --navy: #071D3E;
      --navy-deep: #020c1f;
      --navy-mid: #0a2347;
      --gold: #B38F3F;
      --gold-light: #E4C46A;
      --gold-glow: rgba(179, 143, 63, .4);
      --white: #ffffff;
      --gray-50: #f8fafc;
      --gray-100: #f1f5f9;
      --gray-400: #94a3b8;
      --gray-600: #475569;
      --text: #0f172a;
      --glass-bg: rgba(7, 29, 62, .6);
      --glass-border: rgba(255, 255, 255, .08);
      --radius: 24px;
      --ease: cubic-bezier(.22, 1, .36, 1);
    }

    /* ===== LOADER ===== */
    .loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--navy-deep);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      transition: opacity .6s ease, visibility .6s ease;
    }
    .loader.hidden {
      opacity: 0;
      visibility: hidden;
    }
    .loader-ring {
      width: 48px;
      height: 48px;
      border: 3px solid rgba(255,255,255,.1);
      border-top-color: var(--gold);
      border-radius: 50%;
      animation: spin .8s linear infinite;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    .loader-text {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .15em;
      color: rgba(255,255,255,.5);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Inter", "Noto Sans JP", sans-serif;
      color: var(--text);
      background: #c8d0dc !important;

      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: calc(100vh - 32px);
      margin: 16px 16px 16px 16px;
      border-radius: 24px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    #three-canvas {
      position: fixed;
      top: 16px;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
    }
    .tag-section {
      position: relative;
      z-index: 2;
      padding: 48px 0;
      overflow: hidden;
      background: transparent;
    }
    .tag-row {
      overflow: hidden;
      margin-bottom: 12px;
    }
    .tag-row:last-child { margin-bottom: 0; }
    .tag-track {
      display: flex;
      width: max-content;
    }
    .tag-row--rtl .tag-track {
      animation: tagRTL 60s linear infinite;
    }
    .tag-row--ltr .tag-track {
      animation: tagLTR 60s linear infinite;
    }
    @keyframes tagRTL {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes tagLTR {
      0% { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }
    .tag-list {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 10px;
      flex-shrink: 0;
      padding-right: 10px;
    }
    .tag-list li {
      padding: 10px 20px;
      border-radius: 100px;
      border: 1px solid rgba(255,255,255,.15);
      background: rgba(255,255,255,.45);
      color: var(--navy);
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
      backdrop-filter: blur(6px);
      transition: all .3s var(--ease);
    }
    .tag-list li:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(255,255,255,.95);
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(179, 143, 63, .12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(30, 80, 160, .15) 0%, transparent 40%),
        linear-gradient(180deg, rgba(2, 8, 20, .85) 0%, rgba(4, 14, 32, .7) 50%, rgba(2, 8, 20, .9) 100%);
      z-index: 2;
      pointer-events: none;
    }
    .hero-center {
      position: relative;
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      width: 100%;
      min-height: inherit;
      padding: 0;
    }
    .hero-mission {
      font-size: clamp(22px, 3.5vw, 38px);
      font-weight: 800;
      color: var(--white);
      margin-top: 32px;
      margin-bottom: 20px;
      line-height: 1.5;
      letter-spacing: .04em;
      opacity: 0;
      transform: translateY(20px);
    }
    .hero-sub {
      font-size: clamp(13px, 1.6vw, 16px);
      color: rgba(255,255,255,.5);
      line-height: 2;
      letter-spacing: .02em;
      opacity: 0;
      transform: translateY(20px);
    }
    .hero-marquee {
      width: 100vw;
      overflow: hidden;
      opacity: 0;
      transform: translateY(30px);
    }
    .hero-marquee__track {
      display: flex;
      width: max-content;
      animation: marquee 18s linear infinite;
    }
    .hero-marquee__track span {
      flex-shrink: 0;
      padding-right: 80px;
      font-size: clamp(52px, 10vw, 110px);
      font-weight: 900;
      line-height: 1.1;
      white-space: nowrap;
      background: linear-gradient(110deg, var(--white) 20%, var(--gold-light) 50%, var(--white) 80%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: shimmer 4s linear infinite;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-33.333%); }
    }
    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      border-radius: 100px;
      font-size: 15px;
      font-weight: 700;
      transition: all .4s var(--ease);
      border: none;
      cursor: pointer;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy);
      box-shadow: 0 16px 48px rgba(179, 143, 63, .35);
    }
    .btn-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 24px 60px rgba(179, 143, 63, .5);
    }
    .btn-ghost {
      background: rgba(255,255,255,.05);
      color: var(--white);
      border: 1px solid rgba(255,255,255,.15);
      backdrop-filter: blur(10px);
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,.1);
      border-color: rgba(255,255,255,.3);
      transform: translateY(-2px);
    }

    /* Hero news */
    .hero-news {
      position: absolute;
      bottom: 40px;
      left: 40px;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 0;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 100px;
      padding: 6px 8px;
      backdrop-filter: blur(12px);
      transition: all .4s var(--ease);
      cursor: pointer;
    }
    .hero-news:hover {
      background: rgba(255,255,255,.1);
      border-color: rgba(179, 143, 63, .3);
    }
    .hero-news__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      margin-right: 12px;
      flex-shrink: 0;
      box-shadow: 0 0 8px var(--gold-glow);
      animation: newsPulse 2s ease-in-out infinite;
    }
    @keyframes newsPulse {
      0%, 100% { box-shadow: 0 0 6px var(--gold-glow); }
      50% { box-shadow: 0 0 14px var(--gold-glow), 0 0 24px rgba(179,143,63,.2); }
    }
    .hero-news__label {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .12em;
      color: var(--gold-light);
      margin-right: 14px;
      flex-shrink: 0;
    }
    .hero-news__link {
      font-size: 13px;
      color: rgba(255,255,255,.7);
      font-weight: 500;
      margin-right: 12px;
      white-space: nowrap;
    }
    .hero-news__arrow {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      display: grid;
      place-items: center;
      color: var(--gold-light);
      font-size: 12px;
      flex-shrink: 0;
      transition: all .3s var(--ease);
    }
    .hero-news:hover .hero-news__arrow {
      background: var(--gold);
      color: var(--navy-deep);
      transform: translateX(2px);
    }
    @media (max-width: 768px) {
      .hero-news {
        left: 16px;
        right: 16px;
        bottom: 100px;
      }
    }

    /* Hero scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;

    }
    .hero-scroll-mouse {
      width: 26px;
      height: 42px;
      border: 2px solid var(--white);
      border-radius: 14px;
      position: relative;
      opacity: .7;
    }
    .hero-scroll-mouse::after {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 8px;
      border-radius: 3px;
      background: var(--white);
      animation: scrollWheel 1.6s ease-in-out infinite;
    }
    @keyframes scrollWheel {
      0% { opacity: 1; top: 8px; }
      100% { opacity: 0; top: 24px; }
    }
    .hero-scroll span {
      font-size: 11px;
      letter-spacing: .2em;
      color: var(--white);
      font-weight: 700;
      opacity: .6;
    }

    /* ===== SERVICES ===== */
    /* ===== ABOUT ===== */
    .about {
      position: relative;
      z-index: 2;
      padding: 140px 0;
      background: transparent;
    }
    .about-grid {
      display: grid;
      gap: 60px;
      max-width: 800px;
    }
    .about-body {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .about .section-label { margin-bottom: 0; }
    .about .section-title {
      color: var(--white);
      font-size: clamp(32px, 5vw, 56px);
      font-size: clamp(28px, 4vw, 48px);
    }
    .about-text {
      font-size: 17px;
      line-height: 2;
      color: var(--white);
      opacity: .85;
    }
    .about-link {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 16px 24px 16px 32px;
      border-radius: 100px;
      border: none;
      font-size: 14px;
      font-weight: 800;
      color: var(--white);
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a6a 100%);
      position: relative;
      overflow: hidden;
      transition: all .5s var(--ease);
      box-shadow: 0 8px 24px rgba(7, 29, 62, .3);
    }
    .about-link:hover {
      box-shadow: 0 12px 36px rgba(7, 29, 62, .45);
      transform: translateY(-2px);
      color: var(--white);
    }
    .about-link span,
    .about-link i {
      position: relative;
      z-index: 1;
    }
    .about-link i {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--navy);
      display: grid;
      place-items: center;
      font-size: 11px;
      transition: all .4s var(--ease);
    }
    .about-link:hover i {
      background: var(--gold-light);
      transform: translateX(4px);
    }

    /* ===== COMMON ===== */
    .container {
      width: min(calc(100% - 40px), 1200px);
      margin: 10px auto 0;
    }
    .section-label {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: clamp(28px, 5vw, 48px);
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-label::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
    }
    .section-title {
      font-size: clamp(36px, 6vw, 64px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 20px;
      color: var(--text);
    }
    .section-lead {
      font-size: 16px;
      color: var(--gray-600);
      max-width: 600px;
      line-height: 1.8;
      margin-bottom: 60px;
    }

    /* ===== TAGLINE ===== */
    .tagline-section {
      position: relative;
      z-index: 2;
      padding: 200px 0;
      text-align: center;
    }
    .tagline {
      font-size: clamp(36px, 7vw, 72px);
      font-weight: 900;
      line-height: 1.2;
      color: var(--navy);
    }
    .tagline-big {
      display: inline;
      font-size: 1.2em;
    }

    /* ===== NEWS ===== */
    .news-section {
      position: relative;
      z-index: 2;
      padding: 100px 0;
      background: transparent;
    }
    .news-grid {
      display: grid;
      grid-template-columns: 35% 60%;
      gap: 60px;
      align-items: start;
      margin-top: 16px;
    }
    .news-left {
      position: sticky;
      top: 40%;
    }
    .news-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
  .news-item {
      display: grid;
      grid-template-columns: 200px 1fr auto;
      align-items: center;
      gap: 20px;
      padding: 14px;
      border-radius: 16px;
      text-decoration: none;
      color: var(--navy);
      background: var(--white);
      transition: all .3s var(--ease);
      margin-bottom: 28px;
    }
    .news-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,.1);
    }
    .news-thumb {
      width: 200px;
      height: 140px;
      border-radius: 12px;
      background: var(--gray-100);
      object-fit: cover;
      flex-shrink: 0;
    }
    .news-cat {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .06em;
      color: var(--white);
      background: var(--navy);
      padding: 4px 12px;
      border-radius: 100px;
    }
    .news-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 6px;
    }
    .news-item:hover .news-arrow {
      background: var(--gold);
      color: var(--navy);
      transform: translateX(4px);
    }
    .news-body {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 8px 16px;
    }
    .news-date {
      font-size: 11px;
      color: var(--gray-400);
      font-weight: 600;
      letter-spacing: .04em;
      font-variant-numeric: tabular-nums;
    }
    .news-title {
      font-size: 16px;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.5;
    }
    .news-arrow {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--gray-100);
      color: var(--navy);
      display: grid;
      place-items: center;
      font-size: 11px;
      transition: all .3s var(--ease);
    }
    .news-item:hover .news-arrow {
      background: var(--gold);
      color: var(--navy);
      transform: translateX(4px);
    }
    @media (max-width: 768px) {
      .news-grid { grid-template-columns: 1fr; gap: 32px; }
  }
  .news-left {
    margin-bottom: 24px !important;
    position: static !important;
      .news-left { position: static; }
    }

    /* ===== ACHIEVEMENT ===== */
    .achievement {
      position: relative;
      z-index: 2;
      padding: 140px 0;
      background: rgba(248, 250, 252, 0.93);
      backdrop-filter: blur(2px);
    }
    .stats-grid {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(3, 1fr);
    }
    @media (min-width: 768px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 1024px) {
      .stats-grid { grid-template-columns: repeat(4, 1fr); }
    }
    .stat-card {
      padding: 36px 28px;
      background: var(--white);
      border: 1px solid rgba(0,0,0,.04);
      border-radius: var(--radius);
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(7, 29, 62, .04);
      transition: all .4s var(--ease);
    }
    .stat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(7, 29, 62, .1);
    }
    .stat-card::after {
      content: '';
      position: absolute;
      top: 16px;
      right: 0;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(179, 143, 63, .1), transparent 70%);
      transform: translate(30%, -30%);
    }
    .stat-value {
      font-size: clamp(44px, 8vw, 64px);
      font-weight: 900;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-unit {
      font-size: 20px;
      color: var(--gold);
      font-weight: 800;
    }
    .stat-label {
      font-size: 14px;
      color: var(--gray-600);
      font-weight: 600;
      margin-top: 12px;
    }

    /* ===== CTA ===== */
    .cta {
      position: relative;
      z-index: 2;
      padding: 100px 0;
      background: rgba(255,255,255,.85);
      backdrop-filter: blur(8px);
      color: var(--navy);
      overflow: hidden;
      margin: 0;
      border-radius: 0;
      transition: margin .6s var(--ease), border-radius .6s var(--ease);
    }
    .cta.shrink {
      margin: 16px 16px 80px;
      border-radius: var(--radius);
    }
    .cta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 48px;
    }
    .cta-grid {
      align-items: stretch;
    }
    .cta-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 36px;
      border-radius: 14px;
      text-decoration: none;
      color: var(--white);
      transition: all .4s var(--ease);
      box-shadow: 0 12px 40px rgba(7, 29, 62, .15);
      height: 360px;
      position: relative;
      overflow: hidden;
    }
    .cta-card:nth-child(1) {
      background: linear-gradient(160deg, #0f2d5e 0%, var(--navy) 60%, var(--navy-deep) 100%);
      margin-top: 16px;
    }
    .cta-card:nth-child(2) {
      background: linear-gradient(160deg, #1a3a6a 0%, #0f2d5e 60%, var(--navy-deep) 100%);
      margin-top: 60px;
    }
    .cta-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(7, 29, 62, .3);
    }
    .cta-card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }
    .cta-card-tagline {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,.7);
      line-height: 1.6;
    }
    .cta-card-img {
      width: 180px;
      height: 120px;
      border-radius: 14px;
      object-fit: cover;
      box-shadow: none;
    }
    .cta-card-bottom {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-top: auto;
    }
    .cta-card-bottom h3 {
      font-size: clamp(32px, 4vw, 44px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
    }
    .cta-card-bottom h3 small {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,.55);
      margin-top: 6px;
    }
    .cta-card-arrow {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }
    .cta-card-arrow::before {
      content: '';
      width: 1px;
      height: 48px;
      background: rgba(255,255,255,.25);
    }
    .cta-card-arrow i {
      font-size: 20px;
      color: var(--white);
      transition: transform .3s var(--ease);
    }
    .cta-card:hover .cta-card-arrow i {
      transform: translateX(6px);
    }
    @media (max-width: 768px) {
      .cta-grid { grid-template-columns: 1fr; }
      .cta-card:nth-child(2) { margin-top: 16px; }
    }
    .cta-orb {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(179, 143, 63, .15), transparent 60%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }
    .cta .container { position: relative; z-index: 1; }
    .cta-title {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 900;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .cta-desc {
      font-size: 16px;
      color: var(--gray-600);
      max-width: 560px;
      margin: 0 0 40px;
      line-height: 1.8;
    }
    .cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ===== FOOTER ===== */
    .footer {
      position: relative;
      z-index: 2;
      padding: 80px 0 32px;
      background: var(--navy-deep);
      color: rgba(255,255,255,.5);
      font-size: 13px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }
    .footer-brand img {
      height: 36px;
      margin-bottom: 20px;
    }
    .footer-info {
      font-size: 13px;
      line-height: 2;
      color: rgba(255,255,255,.45);
    }
    .footer-info a {
      color: rgba(255,255,255,.45);
      text-decoration: none;
      transition: color .3s;
    }
    .footer-info a:hover { color: var(--gold-light); }
    .footer-col h4 {
      font-size: 13px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-col ul li {
      margin-bottom: 12px;
    }
    .footer-col ul a {
      color: rgba(255,255,255,.45);
      text-decoration: none;
      font-size: 13px;
      transition: color .3s;
    }
    .footer-col ul a:hover { color: var(--gold-light); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,.06);
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-copy {
      font-size: 12px;
      color: rgba(255,255,255,.3);
    }
    .footer-sns {
      display: flex;
      gap: 16px;
    }
    .footer-sns a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.4);
      display: grid;
      place-items: center;
      font-size: 14px;
      transition: all .3s var(--ease);
      text-decoration: none;
    }
    .footer-sns a:hover {
      background: var(--gold);
      color: var(--navy);
    }
    @media (max-width: 768px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    /* ===== REVEAL ANIMATION ===== */
    .reveal {
      opacity: 0;
      transform: translateY(50px);
    }
    .reveal-left {
      opacity: 0;
      transform: translateX(-50px);
    }
    .reveal-right {
      opacity: 0;
      transform: translateX(50px);
    }

    /* ===== SERVICES - SCROLL RIGHT PANEL ===== */
    .services {
      position: relative;
      z-index: 2;
    }
    .services-pin {
      height: 300vh;
    }
    .services-sticky {
      position: sticky;
      top: 16px;
      height: calc(100vh - 32px);
      display: flex;
      align-items: stretch;
      background: rgba(7, 29, 62, .82);
      backdrop-filter: blur(8px);
      border-radius: var(--radius);
      margin: 0 16px;
      overflow: hidden;
    }
    /* Left fixed panel */
    .services-left {
      flex: 0 0 42%;
      flex-direction: column;
      justify-content: center;
      display: flex;
      padding: 60px 48px;
      color: var(--white);
      position: relative;
      z-index: 5;
    }
    .services-left .section-lead {
      color: rgba(255,255,255,.5);
      margin-bottom: 32px;
    }
    .services-counter {
      font-size: 16px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .06em;
      margin-top: 28px;
      display: flex;
      align-items: baseline;
      gap: 4px;
    }
    #svc-num {
      font-size: 48px;
      font-weight: 900;
    }
    .services-progress {
      width: 100%;
      height: 14px;
      background: rgba(255,255,255,.1);
      border-radius: 14px;
      margin-top: 12px;
      overflow: hidden;
    }
    .services-progress-bar {
      height: 100%;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), #e8d08a);
      border-radius: 14px;
      transition: width .5s var(--ease);
    }
    /* Right scrolling cards */
    .services-right {
      flex: 1;
      position: relative;
      overflow: hidden;
      padding: 0 40px;
      z-index: 5;
    }
    .services-right-inner {
      position: absolute;
      top: 16px;
      left: 40px;
      right: 40px;
      display: flex;
      flex-direction: column;
      gap: 60px;
      padding: 50vh 0;
      will-change: transform;
    }
    .svc-card {
      display: flex;
      flex-direction: column;
      padding: 40px 36px;
      border-radius: 20px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.08);
      text-decoration: none;
      color: var(--white);
      transition: opacity .5s var(--ease), border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
      opacity: 0.2;
    }
    .svc-card.active {
      opacity: 1;
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.12);
    }
    .svc-card:hover {
      border-color: rgba(255,255,255,.2);
    }
    .svc-card .service-num {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .16em;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .svc-card h3 {
      font-size: 24px;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 12px;
    }
    .svc-card p {
      font-size: 14px;
      color: rgba(255,255,255,.6);
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .svc-card .service-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .svc-card .service-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      color: rgba(255,255,255,.5);
      text-transform: uppercase;
    }
    .svc-card .service-arrow {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,.1);
      color: var(--white);
      display: grid;
      place-items: center;
      font-size: 12px;
      transition: all .3s var(--ease);
    }
    .svc-card.active .service-arrow {
      background: rgba(255,255,255,.15);
      color: var(--white);
    }
@media (max-width: 768px) {
  .services-pin {
    height: auto !important;
  }
  .services-sticky {
    flex-direction: column !important;
    height: auto !important;
    position: relative !important;
  }
  .services-left {
    flex: none !important;
    padding: 32px 24px 16px !important;
  }
  .services-right {
    flex: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 16px 24px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .services-right-inner {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    flex-direction: row !important;
    gap: 16px !important;
    padding: 0 !important;
    width: max-content !important;
    transform: none !important;
  }
  .svc-card {
    min-width: 280px !important;
    max-width: 280px !important;
    padding: 28px 24px !important;
  }
  .svc-card h3 {
    font-size: 18px !important;
  }
  .services-progress,
  .services-counter {
    display: none !important;
  }
}








/* ===== SWELL OVERRIDE ===== */
.page-template-page-top .l-content,
.page-template-page-top .l-mainContent,
.page-template-page-top .post_content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.page-template-page-top .c-pageTitle,
.page-template-page-top .p-breadcrumb,
.page-template-page-top #content {
  display: none !important;
}
.page-template-page-top .news-item {
  display: grid !important;
  grid-template-columns: 200px 1fr auto !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 14px !important;
  border-radius: 16px !important;
  background: var(--white) !important;
  margin-bottom: 28px !important;
  text-decoration: none !important;
}

/* ===== TEXT EMPHASIS ===== */
.page-template-page-top .news-item {
  text-align: left !important;
}
.page-template-page-top .news-title {
  font-size: 18px !important;
  font-weight: 900 !important;
  color: var(--navy) !important;
  line-height: 1.5 !important;
}
.page-template-page-top .news-cat {
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 5px 14px !important;
}
.page-template-page-top .news-date {
  font-size: 13px !important;
  font-weight: 700 !important;
}
.page-template-page-top .section-label {
  font-size: clamp(32px, 5vw, 52px) !important;
  font-weight: 900 !important;
}
.page-template-page-top .section-title {
  font-size: clamp(24px, 3.5vw, 36px) !important;
  font-weight: 900 !important;
}
.page-template-page-top .about-text {
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 2.2 !important;
}
.page-template-page-top .svc-card h3 {
  font-size: 28px !important;
  font-weight: 900 !important;
}
.page-template-page-top .svc-card p {
  font-size: 16px !important;
  line-height: 1.9 !important;
}
.page-template-page-top .tagline {
  font-size: clamp(40px, 8vw, 80px) !important;
  font-weight: 900 !important;
}

/* ===== PAGE HERO (共通) ===== */
.page-hero {
  position: relative;
  z-index: 2;
  padding: 180px 0 100px;
}
.page-hero__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}
.page-hero__lead {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  line-height: 1.9;
  max-width: 640px;
}

/* ===== ABOUT MISSION ===== */
.about-mission {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}
.about-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-mission__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.6;
}
.about-mission__text {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 2;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about-mission__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== ABOUT INFO ===== */
.about-info {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}
.about-info__heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 40px;
}
.info-dl {
  margin: 0;
}
.info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.info-row:first-child {
  border-top: 1px solid rgba(255,255,255,.08);
}
.info-row dt {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}
.info-row dd {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  line-height: 1.8;
}
.info-row dd a {
  color: var(--gold-light);
  text-decoration: none;
}
.info-row dd a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .info-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ===== ABOUT CTA ===== */
.about-cta {
  position: relative;
  z-index: 2;
  padding: 80px 0 120px;
}
.page-template-page-top .nav:not(.scrolled) {
  background: transparent !important;
  backdrop-filter: none !important;
  border-color: transparent !important;
  box-shadow: 8px 8px 0 0 rgba(7,29,62,.12) !important;
}

/* ===== ABOUT PAGE BODY ===== */
.page-template-page-about body,
.page-template-page-about {
  background: #c8d0dc !important;
}
.page-template-page-about .l-content {
  padding: 0 !important;
  margin-top: 0 !important;
}
.page-template-page-about .l-mainContent {
  padding: 0 !important;
  max-width: 100% !important;
}
.page-template-page-about .post_content {
  max-width: 100% !important;
  padding: 0 !important;
}
.page-template-page-about .c-pageTitle,
.page-template-page-about .p-breadcrumb {
  display: none !important;
}

/* ===== ABOUT PAGE TEXT COLOR: NAVY ===== */
.page-hero__title {
  color: var(--navy) !important;
}
.page-hero__lead {
  color: var(--gray-600) !important;
}
.about-mission__title {
  color: var(--navy) !important;
}
.about-mission__text {
  color: var(--gray-600) !important;
}
.about-info__heading {
  color: var(--navy) !important;
}
.info-row dt {
  color: var(--gray-600) !important;
}
.info-row dd {
  color: var(--navy) !important;
}

/* ===== ABOUT INFO TABLE WIDER ===== */
.about-info .info-dl {
  max-width: 100% !important;
}
.info-row {
  grid-template-columns: 35% 65% !important;
}

.info-row, .info-row:first-child {
  border-color: rgba(7, 29, 62, .15) !important;
}

.about-info {
  background: var(--navy) !important;
  border-radius: var(--radius);
  margin: 0 16px;
  padding: 100px 60px !important;
}
.about-info .section-label {
  color: var(--gold) !important;
}
.about-info__heading {
  color: var(--white) !important;
}
.info-row dt {
  color: rgba(255,255,255,.5) !important;
}
.info-row dd {
  color: var(--white) !important;
}
.info-row dd a {
  color: var(--gold-light) !important;
}
.info-row, .info-row:first-child {
  border-color: rgba(255,255,255,.1) !important;
}

/* ===== MAP ===== */
.about-map {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}
.map-wrap {
  margin-top: 32px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.map-wrap iframe {
  display: block;
}

/* ===== NEWS PAGE ===== */
.news-page-hero {
  position: relative;
  z-index: 2;
  padding: 180px 0 60px;
}
.news-page-hero__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
}
.news-page-hero__lead {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
}
.news-filter {
  position: relative;
  z-index: 2;
  padding: 0 0 40px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.news-filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(7, 29, 62, .15);
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s var(--ease);
  text-decoration: none;
}
.news-filter-btn:hover,
.news-filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.news-page-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 80px;
}
.news-page-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  text-decoration: none;
  color: var(--navy);
  transition: all .4s var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.news-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}
.news-page-card__thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--gray-100);
}
.news-page-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.news-page-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-page-card__cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  padding: 4px 12px;
  border-radius: 100px;
}
.news-page-card__date {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
}
.news-page-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.6;
  flex: 1;
}
.news-page-card__arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 8px;
}
.news-page-card__arrow i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 11px;
  transition: all .3s var(--ease);
}
.news-page-card:hover .news-page-card__arrow i {
  background: var(--gold);
  color: var(--navy);
}
@media (max-width: 1024px) {
  .news-page-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .news-page-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .news-page-card__body { padding: 12px; gap: 6px; }
  .news-page-card__title { font-size: 12px; line-height: 1.4; }
  .news-page-card__cat { font-size: 9px; padding: 3px 8px; }
  .news-page-card__date { font-size: 10px; }
  .news-page-card__arrow { display: none; }
}
.news-pagination {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-bottom: 100px;
}
.news-pagination a,
.news-pagination span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s var(--ease);
}
.news-pagination a {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
}
.news-pagination a:hover {
  background: var(--navy);
  color: var(--white);
}
.news-pagination .current {
  background: var(--navy);
  color: var(--white);
}

/* ===== PAGE HERO / BREADCRUMB FIX ===== */
.news-page-hero,
.page-hero {
  padding-top: 20px !important;
}

.custom-breadcrumb {
  position: relative;
  z-index: 2;
  padding: 100px 0 0;
  font-size: 13px;
}
.custom-breadcrumb a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color .3s;
}
.custom-breadcrumb a:hover {
  color: var(--navy);
}
.custom-breadcrumb span {
  color: var(--navy);
  font-weight: 600;
}
.custom-breadcrumb .sep {
  margin: 0 10px;
  color: var(--gray-400);
}

.news-page-hero__title {
  font-size: clamp(20px, 3vw, 32px) !important;
}

/* ===== NEWS 2-COLUMN LIST ===== */
.news-2col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}
.news-2col__left {
  position: sticky;
  top: 100px;
  align-self: start;
}
.news-2col__heading {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.news-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-cat-list li {
  margin-bottom: 4px;
}
.news-cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  transition: all .3s var(--ease);
}
.news-cat-list a:hover {
  background: rgba(7, 29, 62, .05);
  color: var(--navy);
}
.news-cat-list a.active {
  background: var(--navy);
  color: var(--white);
}
.news-cat-list a.active .news-cat-count {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.news-cat-count {
  font-size: 11px;
  font-weight: 700;
  background: rgba(0,0,0,.06);
  color: var(--gray-600);
  padding: 2px 8px;
  border-radius: 100px;
}
/* List items */
.news-list-item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
  text-decoration: none;
  color: var(--navy);
  margin-bottom: 16px;
  transition: all .3s var(--ease);
}
.news-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.news-list-item__thumb {
  width: 160px;
  height: 110px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--gray-100);
}
.news-list-item__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0;
}
.news-list-item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-list-item__cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  padding: 4px 12px;
  border-radius: 100px;
}
.news-list-item__date {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
}
.news-list-item__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.6;
}
.news-list-item__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 11px;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.news-list-item:hover .news-list-item__arrow {
  background: var(--gold);
  color: var(--navy);
}
@media (max-width: 768px) {
  .news-2col { grid-template-columns: 1fr; gap: 32px; }
  .news-2col__left { position: static; }
  .news-list-item { grid-template-columns: 120px 1fr auto; gap: 16px; padding: 14px; }
  .news-list-item__thumb { width: 120px; height: 80px; }
}
@media (max-width: 480px) {
  .news-list-item { grid-template-columns: 1fr; }
  .news-list-item__thumb { width: 100%; height: 180px; }
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  position: relative;
  z-index: 2;
  padding: 60px 0 100px;
}
.page-template-page-contact .contact-section {
  padding-bottom: 0 !important;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 32px;
}
.contact-info__item {
  display: flex !important;
  flex-direction: row !important;
  gap: 16px !important;
  align-items: flex-start !important;
  margin-bottom: 28px !important;
}
.contact-info__item > div:last-child {
  flex: 1;
  min-width: 0;
}
.contact-info__item h3 {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  margin: 0 0 4px 0 !important;
  padding: 0 !important;
}
.contact-info__item p,
.contact-info__item a {
  font-size: 14px !important;
  color: var(--gray-600) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  padding: 0 !important;
}






.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
/* CF7 Form Styling */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,.04);
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 8px;
}
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100% !important;
  padding: 14px 18px !important;
  border: 1.5px solid rgba(7, 29, 62, .12) !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-family: inherit !important;
  background: var(--gray-50) !important;
  transition: border-color .3s !important;
  outline: none !important;
  box-sizing: border-box !important;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--navy) !important;
  background: var(--white) !important;
}
.contact-form textarea {
  min-height: 160px !important;
  resize: vertical !important;
}
.contact-form input[type="submit"] {
  width: 100% !important;
  padding: 16px 32px !important;
  border: none !important;
  border-radius: 100px !important;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%) !important;
  color: var(--white) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  transition: all .3s var(--ease) !important;
  margin-top: 12px !important;
}
.contact-form input[type="submit"]:hover {
  box-shadow: 0 12px 32px rgba(7, 29, 62, .3) !important;
  transform: translateY(-2px) !important;
}
.contact-form .wpcf7-response-output {
  border-radius: 12px !important;
  padding: 16px !important;
  margin-top: 16px !important;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 24px; }
}

.contact-form {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: 8px 8px 0 0 rgba(7,29,62,.12) !important;
}


.custom-breadcrumb {
  padding-top: 120px !important;
}
@media (max-width: 767px) {
  .custom-breadcrumb {
    padding-top: 80px !important;
  }
  .about-mission {
    padding: 0 !important;
  }
  .about-info {
    padding: 30px 16px !important;
  }
}

/* ===== SINGLE POST ===== */
.single-article {
  position: relative;
  z-index: 2;
  padding: 40px 0 80px;
}
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.single-header {
  margin-bottom: 32px;
}
.single-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.single-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  padding: 4px 14px;
  border-radius: 100px;
}
.single-date {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 600;
}
.single-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
}
.single-thumb {
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
}
.single-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
/* Article content */
.single-content {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  font-size: 16px;
  line-height: 2;
  color: var(--text);
}
.single-content h2 {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  background: none !important;
  padding: 0 0 12px !important;
  margin: 48px 0 24px !important;
  border-bottom: 2px solid var(--navy) !important;
}
.single-content h2::before {
  display: none !important;
}
.single-content h3 {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  padding: 0 0 0 16px !important;
  margin: 36px 0 16px !important;
  border-left: 3px solid var(--gold) !important;
}
.single-content h3::before {
  display: none !important;
}
.single-content h4 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin: 28px 0 12px !important;
}
.single-content p {
  margin-bottom: 24px;
}
.single-content img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
}
.single-content a {
  color: var(--gold);
  text-decoration: underline;
}
.single-content ul, .single-content ol {
  margin: 16px 0 24px 24px;
}
.single-content li {
  margin-bottom: 8px;
}
.single-content blockquote {
  border-left: 3px solid var(--gold) !important;
  background: var(--gray-50);
  padding: 24px 28px !important;
  border-radius: 12px;
  margin: 24px 0;
}
/* Post navigation */
.single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.single-nav__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--white);
  border-radius: 14px;
  text-decoration: none;
  color: var(--navy);
  transition: all .3s var(--ease);
}
.single-nav__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.single-nav__label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 700;
}
.single-nav__next .single-nav__label {
  text-align: right;
}
.single-nav__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
/* Sidebar */
.single-sidebar__inner {
  position: sticky;
  top: 100px;
}
.single-sidebar__section {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
}
.single-sidebar__heading {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.single-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-sidebar__list li {
  margin-bottom: 16px;
}
.single-sidebar__list li:last-child {
  margin-bottom: 0;
}
.single-sidebar__item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  transition: opacity .3s;
}
.single-sidebar__item:hover {
  opacity: .7;
}
.single-sidebar__thumb {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.single-sidebar__date {
  font-size: 11px;
  color: var(--gray-400);
  display: block;
  margin-bottom: 2px;
}
.single-sidebar__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .single-layout { grid-template-columns: 1fr; }
  .single-content { padding: 32px 24px; }
  .single-nav { grid-template-columns: 1fr; }
}

/* ===== SINGLE: Let SWELL handle content styling ===== */
.single-content.post_content h2,
.single-content.post_content h2::before,
.single-content.post_content h3,
.single-content.post_content h3::before,
.single-content.post_content h4,
.single-content.post_content blockquote {
  all: revert !important;
}
.single-content.post_content {
  background: var(--white) !important;
  border-radius: 20px !important;
  padding: 48px 40px !important;
}
/* ===== RESPONSIVE: TOP PAGE MOBILE ===== */
@media (max-width: 767px) {
  html, body {
    overflow-x: clip !important;
  }
  .hero {
    width: calc(100% - 16px) !important;
    margin: 8px auto !important;
    min-height: calc(100vh - 16px) !important;
  }
  .hero-marquee {
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-news__link {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news-section {
    padding: 60px 0 !important;
  }
  .news-grid {
    display: block !important;
  }


  .news-left {
    margin-bottom: 24px !important;
    position: static !important;
    display: block !important;
  }
  .news-list {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 16px !important;
    padding: 0 16px 16px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .page-template-page-top .news-item {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: column !important;
    min-width: 260px !important;
    max-width: 260px !important;
    gap: 0 !important;
    padding: 0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .news-thumb {
    width: 100% !important;
    height: 160px !important;
    border-radius: 0 !important;
  }
  .news-body {
    padding: 14px 16px !important;
  }
  .news-title {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  .news-arrow {
    display: none !important;
  }
  .hero-scroll {
    left: 24px !important;
    transform: none !important;
    align-items: flex-start !important;
    bottom: 24px !important;
  }
  .hero-news {
    left: auto !important;
    right: 16px !important;
    bottom: 24px !important;
    border-radius: 16px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    padding: 10px 14px !important;
    max-width: 200px !important;
  }
  .hero-news__link {
    white-space: normal !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
  .hero-news__label {
    font-size: 9px !important;
  }
  .hero-news__arrow {
    display: none !important;
  }
  .cta {
    padding: 30px 16px !important;
  }
  .contact-info.reveal {
    display: none !important;
  }
  .contact-section {
    padding: 0 !important;
  }
}

/* Hide scrollbars on mobile */
@media (max-width: 767px) {
  .news-list::-webkit-scrollbar,
  .services-right::-webkit-scrollbar {
    display: none;
  }
}
.privacy-body {
  position: relative;
  z-index: 2;
  padding: 0 0 80px;
}
.privacy-content {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 56px 48px;
  box-shadow: 0 2px 20px rgba(7,29,62,.06);
}
.privacy-intro {
  font-size: 15px;
  line-height: 2;
  color: var(--gray-700, #333);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(7,29,62,.08);
}
.privacy-section {
  margin-bottom: 40px;
}
.privacy-section:last-child {
  margin-bottom: 0;
}
.privacy-section__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy, #071d3e);
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--gold, #c8a84e);
}
.privacy-section p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--gray-700, #444);
  margin-bottom: 12px;
}
.privacy-list {
  list-style: none;
  counter-reset: privacy-counter;
  padding-left: 0;
  margin: 12px 0 0;
}
.privacy-list > li {
  counter-increment: privacy-counter;
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 2;
  color: var(--gray-700, #444);
  margin-bottom: 12px;
}
.privacy-list > li::before {
  content: counter(privacy-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--navy, #071d3e);
}
.privacy-list--sub {
  margin-top: 8px;
  margin-bottom: 4px;
  counter-reset: privacy-sub-counter;
}
.privacy-list--sub > li {
  counter-increment: privacy-sub-counter;
  padding-left: 24px;
  font-size: 13.5px;
}
.privacy-list--sub > li::before {
  content: counter(privacy-sub-counter) ".";
}
.privacy-contact {
  background: rgba(7,29,62,.03);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 12px;
}
.privacy-contact p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 0;
}
.privacy-contact a {
  color: var(--navy, #071d3e);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-contact a:hover {
  color: var(--gold, #c8a84e);
}
@media (max-width: 767px) {
  .privacy-content {
    padding: 32px 20px;
    border-radius: 14px;
  }
  .privacy-section__title {
    font-size: 16px;
  }
}

