:root {
  --navy: #021a38;
  --navy-deep: #00142e;
  --gold: #c5963c;
  --gold-light: #ddb762;
  --ink: #071630;
  --white: #fff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Trebuchet MS", "Segoe UI", sans-serif;
  --shadow: 0 10px 28px rgba(0, 13, 35, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--navy); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(2320px, calc(100% - 10vw)); margin: 0 auto; }
.eyebrow { margin: 0; color: var(--gold); font-size: 26px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--white);
  transition: background .25s, box-shadow .25s, transform .25s;
}
.site-header.is-fixed {
  position: fixed;
  background: rgba(0, 20, 46, .96);
  box-shadow: 0 6px 30px rgba(0,0,0,.2);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(2420px, calc(100% - 6vw));
  min-height: 176px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.brand { display: flex; align-items: center; flex: 0 0 auto; gap: 18px; }
.brand-mark {
  position: relative;
  width: 108px;
  height: 108px;
  overflow: hidden;
  border: 4px solid #f4e1ad;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 16%, #a6395d 0 7%, transparent 8%), linear-gradient(145deg, #183766 0 49%, #e9d18c 50% 52%, #163865 53%);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.25);
}
.brand-mark::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 17px;
  width: 70px;
  height: 35px;
  border-bottom: 5px solid #fff;
  transform: skewY(-13deg);
}
.brand-mark i { position: absolute; left: 13px; width: 80px; height: 19px; border: 3px solid transparent; border-top-color: #e8d59a; border-radius: 50%; }
.brand-mark i:nth-child(1) { bottom: 26px; }
.brand-mark i:nth-child(2) { bottom: 17px; left: 20px; }
.brand-mark i:nth-child(3) { bottom: 8px; left: 9px; }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { font-family: var(--serif); font-size: 47px; line-height: 1; white-space: nowrap; }
.brand-copy small { margin-top: 14px; color: var(--gold-light); font-size: 20px; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(22px, 2.4vw, 58px); font-size: 19px; font-weight: 800; text-transform: uppercase; }
.main-nav > a { white-space: nowrap; transition: color .2s; }
.main-nav > a:hover { color: var(--gold-light); }
.main-nav .nav-chevron {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin: 0 0 4px 10px;
  padding: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: inherit;
  transform: rotate(45deg);
  transition: color .2s, transform .2s;
}
.main-nav > a:hover .nav-chevron { transform: translateY(2px) rotate(45deg); }
.nav-quote { display: flex; align-items: center; gap: 18px; padding: 26px 36px; border-radius: 7px; background: var(--gold); box-shadow: 0 7px 20px rgba(0,0,0,.18); }
.nav-quote:hover { color: var(--white) !important; background: #d2a749; }
.nav-quote svg, .button svg, .program-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 1000px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: url("../images/01_banner_fuji_main_2560w.png") center center / cover no-repeat;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,20,48,.94) 0%, rgba(0,20,48,.72) 36%, rgba(0,20,48,.12) 70%, rgba(0,20,48,.08) 100%), linear-gradient(0deg, rgba(0,14,35,.46), transparent 45%);
}
.hero-content { position: relative; z-index: 1; padding-top: 150px; }
.hero h1 { max-width: 1480px; margin: 28px 0 36px; font-family: var(--serif); font-size: clamp(72px, 4vw, 104px); line-height: 1.06; letter-spacing: -.035em; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-text { margin: 0; font-size: 32px; line-height: 1.55; text-shadow: 0 2px 6px rgba(0,0,0,.28); }
.hero-actions { display: flex; gap: 32px; margin-top: 52px; }
.button { min-height: 82px; padding: 0 42px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; border: 2px solid transparent; border-radius: 5px; font-size: 22px; font-weight: 800; text-transform: uppercase; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-3px); }
.button-gold { color: var(--white); background: var(--gold); box-shadow: 0 10px 28px rgba(0,0,0,.17); }
.button-gold:hover { background: #d2a749; }
.button-outline { border-color: var(--white); color: var(--white); background: rgba(0,17,42,.25); }
.button-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

.platforms { padding: 36px 0 44px; color: var(--white); background: var(--navy-deep); text-align: center; }
.platforms h2 { margin: 0 0 10px; font-size: 30px; text-transform: uppercase; }
.platforms p { margin: 0; font-size: 22px; }
.platform-list { margin-top: 35px; display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; }
.platform-list > span { min-height: 78px; display: flex; align-items: center; justify-content: center; padding: 0 28px; border-right: 1px solid rgba(255,255,255,.28); font-weight: 800; white-space: nowrap; }
.platform-list > span:last-child { border-right: 0; }
.tripadvisor { font-size: 34px; }.tripadvisor b { margin-right: 10px; color: #20dda7; }
.viator { font-family: var(--serif); font-size: 53px; }
.getguide { color: #ff493d; font-size: 25px; line-height: .75; text-align: left; }
.klook { color: #ff6f37; font-size: 44px; }.klook b { color: #2a93da; margin-right: 9px; }
.kkday { color: #20c9c8; font-size: 45px; font-weight: 500 !important; }
.traveloka { font-size: 35px; }.traveloka i { margin-left: 8px; color: #2aaae1; }

.stats { color: var(--ink); background: #fbfaf7; }
.stats-grid { min-height: 235px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.stats article { min-height: 120px; display: flex; align-items: center; justify-content: center; gap: 34px; border-right: 1px solid #d9d9d5; }
.stats article:last-child { border: 0; }
.stats svg { width: 82px; height: 82px; fill: none; stroke: var(--gold); stroke-width: 1.5; }
.stats strong { display: block; font-family: var(--serif); font-size: 58px; line-height: 1; }
.stats p { margin: 12px 0 0; font-size: 20px; }

.section-light { background: var(--white); }
.services { padding: 44px 0 52px; }
.section-heading { text-align: center; }
.section-heading h2 { margin: 14px 0 8px; font-family: var(--serif); font-size: 53px; line-height: 1.1; }
.section-heading > p:last-child { margin: 0; font-size: 21px; }
.service-grid { margin-top: 34px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.service-grid article {
  min-height: 326px;
  padding: 36px 34px 30px;
  border: 1px solid #d7d9dc;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,15,40,.04);
  text-align: center;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.service-grid article:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow); }
.service-grid svg { width: 74px; height: 74px; margin: 0 auto 18px; fill: none; stroke: var(--ink); stroke-width: 1.5; }
.service-grid h3 { margin: 0 0 15px; font-size: 27px; }
.service-grid p { margin: 0; font-size: 19px; line-height: 1.55; }

.programs { padding: 44px 0 42px; color: var(--white); background: var(--navy-deep); }
.heading-dark h2 { color: var(--white); }
.heading-dark > p:last-child { color: var(--white); }
.program-grid { margin-top: 35px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.program-card { overflow: hidden; min-width: 0; border-radius: 8px; color: var(--ink); background: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,.24); transition: transform .25s; }
.program-card:hover { transform: translateY(-8px); }
.program-image { height: 215px; background-size: cover; background-position: center; }
.program-copy { min-height: 345px; display: flex; flex-direction: column; align-items: flex-start; padding: 24px 24px 20px; }
.program-copy h3 { margin: 0 0 5px; font-size: 23px; }
.program-copy b { color: var(--gold); font-size: 17px; }
.program-copy p { margin: 14px 0 0; font-size: 16px; line-height: 1.5; }
.program-copy span { margin-top: auto; padding: 7px 12px; border-radius: 5px; background: #f0dfb7; font-size: 14px; font-weight: 800; }
.program-button { width: 530px; max-width: 100%; min-height: 58px; margin: 26px auto 0; display: flex; align-items: center; justify-content: center; gap: 22px; border: 1px solid var(--gold); border-radius: 4px; color: var(--gold-light); font-size: 18px; font-weight: 800; text-transform: uppercase; transition: color .2s, background .2s; }
.program-button:hover { color: var(--navy); background: var(--gold-light); }

.advantages { position: relative; overflow: hidden; padding: 42px 0 55px; }
.advantages::after { content: ""; position: absolute; right: -110px; bottom: -85px; width: 340px; height: 240px; opacity: .22; background: url("../images/02_kyoto_image_2560w.png") center / cover; clip-path: polygon(25% 0,100% 0,100% 100%,0 100%); }
.advantages > .container { position: relative; z-index: 1; }
.advantage-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(6, 1fr); }
.advantage-grid article { min-height: 160px; display: flex; gap: 22px; padding: 6px 30px; border-right: 1px solid #d8d8d8; }
.advantage-grid article:last-child { border: 0; }
.advantage-grid svg, .money { flex: 0 0 auto; width: 67px; height: 67px; fill: none; stroke: var(--ink); stroke-width: 1.5; }
.money { display: grid; place-items: center; border: 3px solid var(--ink); border-radius: 50%; font-family: var(--serif); font-size: 35px; }
.advantage-grid h3 { margin: 5px 0 12px; font-size: 20px; }
.advantage-grid p { margin: 0; font-size: 16px; line-height: 1.55; }

.site-footer { color: var(--white); background: #031a38; }
.footer-grid { display: grid; grid-template-columns: 1.75fr repeat(5, 1fr) 1.45fr; padding: 43px 0 32px; }
.footer-grid > div { min-width: 0; padding: 0 30px; border-right: 1px solid rgba(255,255,255,.25); }
.footer-grid > div:first-child { padding-left: 0; }
.footer-grid > div:last-child { padding-right: 0; border-right: 0; }
.footer-grid h3 { margin: 0 0 25px; color: var(--gold-light); font-size: 18px; text-transform: uppercase; }
.footer-grid a:not(.brand):not(.button) { display: block; margin: 0 0 17px; font-size: 15px; transition: color .2s; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand .brand-mark { width: 90px; height: 90px; }
.footer-brand .brand-copy strong { font-size: 34px; }
.footer-about > p { max-width: 330px; margin: 18px 0; font-size: 15px; line-height: 1.45; }
.socials { display: flex; gap: 16px; }
.socials a:not(.brand):not(.button) { width: 42px; height: 42px; display: grid; place-items: center; margin: 0; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-weight: 800; }
.footer-more { margin-top: 30px !important; color: var(--gold-light); font-weight: 800; }
.footer-contact p { display: flex; align-items: center; gap: 13px; margin: 0 0 20px; font-size: 15px; white-space: nowrap; }
.footer-contact p svg { width: 22px; height: 22px; fill: none; stroke: var(--gold-light); stroke-width: 2; }
.footer-contact .button { width: 100%; min-height: 66px; margin-top: 10px; padding: 0 20px; font-size: 17px; }
.footer-bottom { min-height: 86px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.25); font-size: 15px; }
.footer-bottom div { display: flex; align-items: center; gap: 28px; }
.footer-bottom i { width: 1px; height: 22px; background: rgba(255,255,255,.55); }

@media (max-width: 1800px) {
  .container { width: min(1600px, calc(100% - 7vw)); }
  .header-inner { width: calc(100% - 5vw); min-height: 125px; }
  .brand-mark { width: 78px; height: 78px; }
  .brand-copy strong { font-size: 34px; }
  .brand-copy small { margin-top: 8px; font-size: 14px; }
  .main-nav { gap: 24px; font-size: 14px; }
  .nav-quote { padding: 19px 24px; }
  .hero { min-height: 700px; }
  .hero-content { padding-top: 110px; }
  .hero .eyebrow { font-size: 18px; }
  .hero h1 { margin: 20px 0 25px; font-size: 76px; }
  .hero-text { font-size: 22px; }
  .hero-actions { margin-top: 36px; gap: 22px; }
  .button { min-height: 58px; padding: 0 30px; font-size: 15px; }
  .platforms { padding: 26px 0 30px; }
  .platforms h2 { font-size: 21px; }
  .platforms p { font-size: 16px; }
  .platform-list { margin-top: 25px; }
  .platform-list > span { min-height: 55px; }
  .tripadvisor { font-size: 24px; }.viator { font-size: 38px; }.getguide { font-size: 18px; }.klook { font-size: 31px; }.kkday { font-size: 32px; }.traveloka { font-size: 25px; }
  .stats-grid { min-height: 165px; }
  .stats article { min-height: 85px; gap: 24px; }
  .stats svg { width: 58px; height: 58px; }
  .stats strong { font-size: 41px; }.stats p { margin-top: 8px; font-size: 14px; }
  .eyebrow { font-size: 17px; }
  .section-heading h2 { font-size: 38px; }
  .section-heading > p:last-child { font-size: 15px; }
  .service-grid article { min-height: 230px; padding: 25px 22px 20px; }
  .service-grid svg { width: 52px; height: 52px; margin-bottom: 12px; }
  .service-grid h3 { font-size: 19px; margin-bottom: 10px; }.service-grid p { font-size: 13px; }
  .program-image { height: 150px; }
  .program-copy { min-height: 245px; padding: 17px; }
  .program-copy h3 { font-size: 16px; }.program-copy b { font-size: 12px; }.program-copy p { margin-top: 9px; font-size: 11px; }.program-copy span { padding: 5px 8px; font-size: 10px; }
  .advantage-grid article { padding: 4px 18px; gap: 14px; }
  .advantage-grid svg, .money { width: 48px; height: 48px; }
  .advantage-grid h3 { font-size: 14px; }.advantage-grid p { font-size: 11px; }
  .footer-grid > div { padding: 0 18px; }
  .footer-grid h3 { font-size: 13px; }.footer-grid a:not(.brand):not(.button), .footer-about > p, .footer-contact p { font-size: 11px; }
  .footer-brand .brand-mark { width: 66px; height: 66px; }.footer-brand .brand-copy strong { font-size: 24px; }
}

@media (max-width: 1180px) {
  .site-header { position: fixed; background: rgba(0,20,46,.95); }
  .header-inner { position: relative; min-height: 88px; }
  .brand-mark { width: 58px; height: 58px; border-width: 2px; }
  .brand-mark::before { top: 11px; left: 8px; width: 39px; height: 24px; border-width: 3px; }
  .brand-mark i { left: 7px; width: 43px; height: 10px; }
  .brand-mark i:nth-child(1) { bottom: 14px; }.brand-mark i:nth-child(2) { bottom: 9px; left: 11px; }.brand-mark i:nth-child(3) { bottom: 4px; left: 5px; }
  .brand-copy strong { font-size: 27px; }.brand-copy small { font-size: 11px; }
  .menu-toggle { position: absolute; right: 0; z-index: 2; width: 44px; height: 42px; padding: 8px; display: flex; flex-direction: column; justify-content: space-around; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle span { width: 100%; height: 2px; background: #fff; transition: transform .2s, opacity .2s; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .main-nav { position: absolute; top: 88px; left: 0; width: 100%; max-height: 0; overflow: hidden; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: #031a38; transition: max-height .35s; }
  .main-nav.open { max-height: 620px; }
  .main-nav > a { padding: 17px 6vw; border-top: 1px solid rgba(255,255,255,.08); }
  .main-nav .nav-quote { border-radius: 0; }
  .hero { min-height: 720px; background-position: 58% center; }
  .hero h1 { font-size: clamp(50px, 7vw, 76px); }
  .platform-list { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 18px; }
  .platform-list > span:nth-child(3) { border-right: 0; }
  .stats-grid, .service-grid, .program-grid, .advantage-grid { grid-template-columns: repeat(3, 1fr); }
  .stats article:nth-child(2) { border-right: 0; }
  .stats article { margin: 24px 0; }
  .service-grid article { min-height: 240px; }
  .program-copy { min-height: 250px; }
  .advantage-grid { row-gap: 35px; }
  .advantage-grid article:nth-child(3) { border-right: 0; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); row-gap: 42px; }
  .footer-grid > div:nth-child(4), .footer-grid > div:last-child { border-right: 0; }
  .footer-grid > div:nth-child(5) { padding-left: 0; }
}

@media (max-width: 700px) {
  .container { width: calc(100% - 36px); }
  .header-inner { width: calc(100% - 28px); min-height: 76px; }
  .main-nav { top: 76px; }
  .brand { gap: 10px; }.brand-mark { width: 50px; height: 50px; }.brand-copy strong { font-size: 22px; }.brand-copy small { margin-top: 5px; font-size: 9px; }
  .hero { min-height: 720px; align-items: flex-end; padding-bottom: 68px; background-position: 66% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,20,48,.92), rgba(0,20,48,.37)), linear-gradient(0deg, rgba(0,14,35,.75), transparent 65%); }
  .hero-content { padding-top: 120px; }
  .hero h1 { margin: 16px 0 22px; font-size: 45px; }
  .hero-text { font-size: 17px; line-height: 1.55; }
  .desktop-only { display: none; }
  .hero-actions { flex-direction: column; margin-top: 30px; gap: 13px; }
  .button { width: 100%; }
  .platforms h2 { font-size: 18px; line-height: 1.35; }.platforms p { font-size: 13px; line-height: 1.5; }
  .platform-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-list > span { min-width: 0; min-height: 48px; padding: 0 8px; border-right: 0; white-space: normal; }
  .tripadvisor { font-size: 16px; }.viator { font-size: 29px; }.getguide { font-size: 13px; }.klook { font-size: 23px; }.kkday { font-size: 24px; }.traveloka { font-size: 18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 22px 0; }
  .stats article { min-height: 100px; margin: 0; padding: 12px; gap: 12px; border-bottom: 1px solid #ddd; }
  .stats article:nth-child(3) { border-bottom: 0; }.stats article:last-child { border-bottom: 0; }
  .stats svg { width: 42px; height: 42px; }.stats strong { font-size: 31px; }.stats p { font-size: 11px; }
  .services, .programs, .advantages { padding: 48px 0; }
  .section-heading h2 { font-size: 33px; }
  .service-grid, .program-grid, .advantage-grid { grid-template-columns: 1fr; }
  .service-grid { gap: 14px; }
  .service-grid article { min-height: 0; padding: 24px; }
  .program-grid { gap: 22px; }
  .program-image { height: 210px; }
  .program-copy { min-height: 275px; padding: 22px; }
  .program-copy h3 { font-size: 21px; }.program-copy b { font-size: 15px; }.program-copy p { font-size: 14px; }.program-copy span { font-size: 12px; }
  .advantage-grid { row-gap: 0; }
  .advantage-grid article { min-height: 135px; padding: 23px 6px; border-right: 0; border-bottom: 1px solid #ddd; }
  .advantage-grid article:last-child { border-bottom: 0; }
  .advantage-grid h3 { font-size: 18px; }.advantage-grid p { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div { padding: 0 14px; border: 0; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; padding: 0; }
  .footer-grid > div:nth-child(odd):not(:first-child):not(:last-child) { padding-left: 0; }
  .footer-about { margin-bottom: 8px; }
  .footer-grid h3 { font-size: 14px; }.footer-grid a:not(.brand):not(.button), .footer-about > p, .footer-contact p { font-size: 13px; }
  .footer-contact { padding-top: 10px !important; }
  .footer-bottom { flex-direction: column; justify-content: center; gap: 16px; padding: 22px 0; text-align: center; }
  .footer-bottom div { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
