:root {
  --ink: #0a1f4b;
  --ink-2: #102b61;
  --blue: #1b5be7;
  --aqua: #22ced1;
  --orange: #ff9f1c;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --muted: #59657c;
  --line: rgba(10, 31, 75, .18);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font: 16px/1.55 var(--sans); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; transform: translateY(-160%); padding: .75rem 1rem; border-radius: 999px; background: #fff; color: var(--ink); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: fixed; inset: 0 0 auto; z-index: 20; border-bottom: 1px solid rgba(255,255,255,.25); color: #fff; transition: color .3s ease, border-color .3s ease; }
.site-header::before { content: ''; position: absolute; inset: 0; z-index: 0; background: rgba(248,250,255,.78); -webkit-backdrop-filter: blur(18px) saturate(1.25); backdrop-filter: blur(18px) saturate(1.25); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.site-header.is-scrolled { color: var(--ink); border-bottom-color: rgba(10,31,75,.12); }
.site-header.is-scrolled::before { opacity: 1; }
.nav-shell { position: relative; z-index: 1; width: min(calc(100% - 48px), 1360px); height: 94px; margin: auto; display: grid; grid-template-columns: 220px 1fr auto; grid-template-rows: 94px; align-items: center; gap: 36px; }
.brand { position: relative; isolation: isolate; align-self: start; width: 188px; height: 122px; display: grid; place-items: center; padding: 12px 18px 9px; text-decoration: none; }
.brand::before { content: ''; position: absolute; inset: 0; z-index: -1; background: #0061e0; clip-path: polygon(0 0, 100% 0, 100% 91%, 54% 100%, 0 91%); transform-origin: top center; animation: brand-drop .9s cubic-bezier(.18,.8,.25,1) both; }
.brand img { width: 152px; height: auto; animation: brand-reveal .58s ease-out .48s both; }
@keyframes brand-drop { from { transform: translateY(-105%); } to { transform: translateY(0); } }
@keyframes brand-reveal { from { opacity: 0; transform: translateY(-12px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.main-nav { display: flex; justify-content: center; gap: 28px; }
.main-nav a { text-decoration: none; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.main-nav a::after { content: ''; display: block; height: 1px; margin-top: 4px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.header-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: .78rem 1.2rem; border: 1px solid currentColor; border-radius: 999px; text-decoration: none; font-weight: 750; transition: transform .2s ease, background .2s ease, color .2s ease; }
.header-cta:hover, .button:hover { transform: translateY(-2px); }
.header-cta { border-color: var(--orange); background: var(--orange); color: var(--ink); font-weight: 800; box-shadow: 0 6px 24px rgba(3,17,47,.24); }
.header-cta:hover { border-color: #fff; background: #fff; }
.header-cta:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; }
.site-header.is-scrolled .menu-toggle { border-color: rgba(10,31,75,.4); color: var(--ink); }

.detail-hero { display: grid; grid-template-columns: 53% 47%; min-height: 740px; background: var(--ink); color: #fff; }
.detail-hero__text { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 180px clamp(28px, 5vw, 84px) 76px; }
.kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.kicker::before { content: ''; width: 34px; height: 2px; flex: none; background: var(--orange); }
.detail-hero h1 { max-width: 720px; margin: 0; font: 400 clamp(4.2rem, 6.4vw, 7rem)/.89 var(--serif); letter-spacing: -.065em; text-wrap: balance; }
.detail-hero__text > p:not(.kicker) { max-width: 590px; margin: 28px 0 0; color: rgba(255,255,255,.85); font-size: clamp(1.05rem, 1.35vw, 1.25rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.button-light { border-color: #fff; background: #fff; color: var(--ink); }
.button-light:hover { border-color: var(--orange); background: var(--orange); }
.button-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.button-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.detail-hero__media { position: relative; min-height: 740px; overflow: hidden; }
.detail-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero__media::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(10,31,75,.55), transparent 27%, transparent 70%, rgba(10,31,75,.22)); }
.detail-hero__index { position: absolute; z-index: 1; right: clamp(24px,4.5vw,72px); bottom: 52px; width: 106px; height: 106px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: var(--ink); font-size: 1.8rem; font-family: var(--serif); }

.section { padding: 108px 24px; }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: #fff; }
.wrap { width: min(100%, 1280px); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: minmax(210px, .36fr) 1fr; gap: 55px; margin-bottom: 52px; }
.section-kicker { margin: 9px 0 0; font-size: .78rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.section h2, .contact-panel h2 { max-width: 940px; margin: 0; font: 400 clamp(3rem, 5.4vw, 6rem)/.95 var(--serif); letter-spacing: -.055em; text-wrap: balance; }
.section h2 em { color: var(--blue); font-style: normal; }
.section--ink h2 em { color: var(--aqua); }
.lead { max-width: 850px; margin: 0; font-size: clamp(1.1rem, 1.65vw, 1.5rem); line-height: 1.55; }
.body-copy { max-width: 710px; color: var(--muted); font-size: 1.06rem; }
.body-copy p { margin: 0 0 1.2em; }
.body-copy p:last-child { margin-bottom: 0; }
.section--ink .body-copy { color: rgba(255,255,255,.75); }
.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.fact { padding: 28px 32px 0 0; border-right: 1px solid var(--line); }
.fact + .fact { padding-left: 32px; }
.fact:last-child { border-right: 0; }
.fact strong { display: block; margin-bottom: 8px; font: 400 clamp(2.6rem, 4vw, 4.4rem)/1 var(--serif); letter-spacing: -.05em; }
.fact span { color: var(--muted); font-size: .94rem; }
.editorial { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; align-items: center; }
.editorial--reverse { grid-template-columns: .94fr 1.06fr; }
.editorial figure { margin: 0; overflow: hidden; }
.editorial img { width: 100%; aspect-ratio: 1.18; object-fit: cover; }
.editorial--reverse img { aspect-ratio: 1.3; }
.editorial-copy .section-kicker { margin: 0 0 22px; }
.editorial-copy h2 { margin-bottom: 28px; }
.editorial-copy > p { max-width: 580px; margin: 0 0 22px; color: var(--muted); font-size: 1.07rem; }
.editorial-copy > p:last-child { margin-bottom: 0; }
.group-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.group { padding: 22px; border-top: 2px solid var(--blue); background: #fff; }
.group strong { display: block; margin-bottom: 6px; font-size: 1.08rem; }
.group span { color: var(--muted); font-size: .94rem; }
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.3); margin-top: 50px; }
.feature { padding: 30px 34px 0 0; }
.feature + .feature { padding-left: 34px; border-left: 1px solid rgba(255,255,255,.3); }
.feature strong { display: block; margin-bottom: 12px; color: var(--aqua); font: 400 2rem/1.1 var(--serif); }
.feature p { max-width: 335px; margin: 0; color: rgba(255,255,255,.76); }
.image-band { display: grid; grid-template-columns: 1.4fr .6fr; gap: 16px; padding: 16px; background: var(--cream); }
.image-band img { width: 100%; height: 390px; object-fit: cover; }
.kita-gallery { padding: 94px 24px 110px; background: var(--cream); }
.kita-gallery__heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 38px; }
.kita-gallery__heading .section-kicker { margin: 0 0 8px; }
.kita-gallery h2 { max-width: 700px; margin: 0; font: 400 clamp(3rem, 5.4vw, 6rem)/.95 var(--serif); letter-spacing: -.055em; }
.kita-gallery h2 em { color: var(--blue); font-style: normal; }
.kita-gallery__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.kita-gallery figure { position: relative; min-width: 0; min-height: 300px; margin: 0; overflow: hidden; background: var(--ink); }
.kita-gallery__wide { grid-column: span 2; min-height: 360px; }
.kita-gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.kita-gallery figure:hover img { transform: scale(1.035); }
.kita-gallery figcaption { position: absolute; inset: auto 0 0; padding: 32px 20px 18px; background: linear-gradient(transparent, rgba(4,15,38,.78)); color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; }
.level { min-height: 200px; padding: 27px; display: flex; flex-direction: column; justify-content: space-between; background: #fff; border-top: 3px solid var(--blue); }
.level strong { font: 400 clamp(3.2rem, 5.5vw, 6rem)/1 var(--serif); letter-spacing: -.055em; }
.level span { color: var(--muted); }
.benefit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 34px; margin-top: 35px; border-top: 1px solid var(--line); }
.benefit-list div { padding: 21px 0; border-bottom: 1px solid var(--line); font-size: 1.06rem; }
.benefit-list div::before { content: '↗'; margin-right: 13px; color: var(--blue); }
.contact-panel { padding: 100px 24px; background: var(--orange); }
.contact-shell { width: min(100%, 1280px); margin: auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; }
.contact-panel h2 { margin: 0 0 24px; }
.contact-panel p:not(.section-kicker) { max-width: 650px; margin: 0 0 30px; font-size: 1.06rem; }
.contact-panel .button { border-color: var(--ink); background: var(--ink); color: #fff; }
.contact-panel .button:hover { background: var(--blue); border-color: var(--blue); }
.contact-details { margin: 0; font-style: normal; border-top: 1px solid rgba(10,31,75,.28); }
.contact-row { display: grid; grid-template-columns: 145px 1fr; gap: 16px; padding: 21px 0; border-bottom: 1px solid rgba(10,31,75,.28); }
.contact-row > span { font-size: .75rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-row a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.next-link { padding: 0 24px; background: var(--cream); }
.next-link a { width: min(100%, 1280px); min-height: 155px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-decoration: none; border-top: 1px solid var(--line); }
.next-link span { font: 400 clamp(2rem, 4vw, 4.5rem)/1 var(--serif); letter-spacing: -.05em; }
.next-link b { font-size: 2rem; font-weight: 400; transition: transform .2s ease; }
.next-link a:hover b { transform: translateX(8px); }
footer { padding: 30px 24px; background: var(--ink); color: rgba(255,255,255,.78); }
.footer-shell { width: min(100%, 1280px); margin: auto; display: flex; justify-content: space-between; gap: 24px; font-size: .85rem; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }

@media (max-width: 1000px) {
  .nav-shell { grid-template-columns: 190px 1fr auto; gap: 20px; }
  .main-nav { gap: 15px; }
  .main-nav a { font-size: .73rem; }
  .detail-hero h1 { font-size: clamp(3.5rem, 7vw, 6rem); }
  .editorial { gap: 5vw; }
}
@media (max-width: 760px) {
  html { scroll-padding-top: 78px; }
  .nav-shell { width: min(calc(100% - 32px), 1360px); height: 78px; grid-template-columns: 1fr auto; grid-template-rows: 78px; }
  .brand { width: 158px; height: 100px; padding: 8px 15px 5px; }
  .brand img { width: 128px; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .main-nav { display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 22px 24px 28px; flex-direction: column; align-items: flex-start; background: var(--ink); box-shadow: 0 16px 30px rgba(0,0,0,.2); }
  .main-nav.open { display: flex; }
  .site-header.is-scrolled .main-nav.open { color: #fff; }
  .main-nav a { font-size: .9rem; padding: 6px 0; }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-hero__text { min-height: 550px; padding: 155px 24px 62px; }
  .detail-hero h1 { font-size: clamp(3.7rem, 13.4vw, 5.6rem); }
  .detail-hero__media { min-height: 370px; max-height: 480px; }
  .detail-hero__index { width: 82px; height: 82px; right: 24px; bottom: 24px; font-size: 1.45rem; }
  .section { padding: 75px 22px; }
  .section-head, .editorial, .editorial--reverse, .contact-shell { grid-template-columns: 1fr; gap: 28px; }
  .section-head { margin-bottom: 36px; }
  .section h2, .contact-panel h2 { font-size: clamp(3rem, 10vw, 5rem); }
  .fact-grid { grid-template-columns: 1fr; }
  .fact, .fact + .fact { padding: 21px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .editorial figure { order: 2; }
  .editorial-copy { order: 1; }
  .editorial img { aspect-ratio: 1.3; }
  .feature-list, .levels, .benefit-list { grid-template-columns: 1fr; }
  .feature, .feature + .feature { padding: 24px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.3); }
  .image-band { grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; }
  .image-band img { height: 220px; }
  .kita-gallery { padding: 72px 22px 78px; }
  .kita-gallery__heading { display: block; }
  .kita-gallery__heading .section-kicker { margin-bottom: 18px; }
  .kita-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .kita-gallery figure, .kita-gallery__wide { min-height: 230px; }
  .contact-panel { padding: 78px 22px; }
  .next-link a { min-height: 130px; }
  .footer-shell { flex-direction: column; }
}
@media (max-width: 480px) {
  .detail-hero__text { min-height: 560px; }
  .kicker { font-size: .7rem; }
  .group-list { grid-template-columns: 1fr; }
  .image-band { grid-template-columns: 1fr; }
  .image-band img { height: 230px; }
  .kita-gallery__grid { grid-template-columns: 1fr; }
  .kita-gallery__wide { grid-column: auto; }
  .kita-gallery figure, .kita-gallery__wide { min-height: 260px; }
  .contact-row { grid-template-columns: 1fr; gap: 5px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
