:root{
  --bg: #f6f1e8;
  --ink: #15252a;
  --muted: rgba(21,37,42,.70);
  --card: rgba(255,255,255,.86);
  --shadow: 0 24px 70px rgba(0,0,0,.12);
  --radius: 28px;
  --accent: #0f7b84;
  --max: 1180px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x:hidden;
}

/* fixed background */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index:-2;
  background-image: url("../img/hero-ocean-flow.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: saturate(1.05) contrast(1.02);
}
body::after{
  content:"";
  position: fixed;
  inset:0;
  z-index:-1;
  background: linear-gradient(180deg, rgba(246,241,232,.12) 0%, rgba(246,241,232,.84) 60%, rgba(246,241,232,1) 100%);
}

a{ color: inherit; }
.container{ width:min(var(--max), calc(100% - 48px)); margin-inline:auto; }
@media (max-width: 640px){ .container{ width: calc(100% - 28px);} }

.site-header{
  position: sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(246,241,232,.72);
  border-bottom: 1px solid rgba(21,37,42,.08);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:18px; padding:14px 0; }
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; }
.brand-mark{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(15,123,132,.22), rgba(15,123,132,.04));
  border: 1px solid rgba(15,123,132,.20);
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
  font-weight: 800;
}
.brand-name{ font-weight:800; letter-spacing:.02em; }

.nav{ display:flex; align-items:center; gap:18px; }
.nav ul{ list-style:none; display:flex; align-items:center; gap:18px; margin:0; padding:0; }
.nav a{ text-decoration:none; font-weight:700; color: rgba(21,37,42,.82); padding:10px 10px; border-radius:12px; }
.nav a:hover{ background: rgba(15,123,132,.08); color: rgba(21,37,42,1); }

/* stop TOPICS button styling */
.nav .btn, .nav .menu-item.btn > a, .nav a.btn{
  background: transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

.cta{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 18px; border-radius:999px;
  border: 1px solid rgba(15,123,132,.18);
  background: rgba(15,123,132,.10);
  text-decoration:none; font-weight:800;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}
.cta:hover{ background: rgba(15,123,132,.14); }

.nav-toggle{
  display:none;
  border: 1px solid rgba(21,37,42,.12);
  background: rgba(255,255,255,.50);
  border-radius:14px;
  padding:10px 12px;
  font-weight:800;
}

@media (max-width: 900px){
  .nav-toggle{ display:inline-flex; }
  .nav{
    position: fixed;
    inset: 70px 14px auto 14px;
    background: rgba(246,241,232,.92);
    border: 1px solid rgba(21,37,42,.10);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events:none;
    transition: .18s ease;
  }
  .nav.is-open{ opacity:1; transform: translateY(0); pointer-events:auto; }
  .nav ul{ flex-direction:column; align-items:stretch; gap:8px; }
  .nav a{ display:block; padding:12px 12px; }
}

main{ padding: 34px 0 80px; }

.hero{ min-height: calc(100svh - 90px); display:grid; place-items:center; padding: 54px 0 34px; }
.hero-card{
  background: rgba(21,37,42,.18);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: 0 34px 120px rgba(0,0,0,.35);
  overflow:hidden;
}
.hero-inner{ padding: 56px 54px; text-align:center; color: rgba(255,255,255,.92); backdrop-filter: blur(10px); }
.hero h1{ margin:0 0 10px; font-size: clamp(30px, 4vw, 56px); letter-spacing: .02em; text-shadow: 0 12px 34px rgba(0,0,0,.35); }
.hero p{ margin: 0 auto 22px; max-width: 56ch; color: rgba(255,255,255,.88); text-shadow: 0 12px 28px rgba(0,0,0,.35); }
.hero-actions{ display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 18px; border-radius:999px;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  text-decoration:none; font-weight:800;
}
.btn:hover{ background: rgba(255,255,255,.14); }
.btn.primary{ border-color: rgba(217,199,154,.55); background: rgba(217,199,154,.22); }

.section{ padding: 70px 0; }
.section-title{ text-align:center; margin:0 0 22px; font-size: clamp(24px, 3vw, 42px); letter-spacing:.02em; }
.lead{ text-align:center; margin: 0 auto; max-width: 70ch; color: var(--muted); }

.panel{
  margin: 26px auto 0;
  background: var(--card);
  border: 1px solid rgba(21,37,42,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  max-width: 920px;
}

.pillars-wrap{ margin-top: 30px; }
.pillars-wrap .swiper,
.pillars-wrap .swiper-wrapper,
.pillars-wrap .swiper-slide{
  height: 100%;
}

html[lang="en-US"] body{font-family:"Noto Sans",system-ui,-apple-system,"Segoe UI",sans-serif}
html[lang="zh-CN"] body{font-family:"Noto Sans SC","Noto Sans",sans-serif}
html[lang="zh-TW"] body{font-family:"Noto Sans TC","Noto Sans",sans-serif}
html[lang="ko-KR"] body{font-family:"Noto Sans KR","Noto Sans",sans-serif}
html[lang="en-US"] :is(.brand-hero h1,.editorial-statement,.vision-section h2,.philosophy-hero h1,.culture-integrity,.years-section h2,.philosophy-vision h2){font-family:"Noto Serif",serif}
html[lang="zh-CN"] :is(.brand-hero h1,.editorial-statement,.vision-section h2,.philosophy-hero h1,.culture-integrity,.years-section h2,.philosophy-vision h2){font-family:"Noto Serif SC","Noto Serif",serif}
html[lang="zh-TW"] :is(.brand-hero h1,.editorial-statement,.vision-section h2,.philosophy-hero h1,.culture-integrity,.years-section h2,.philosophy-vision h2){font-family:"Noto Serif TC","Noto Serif",serif}
html[lang="ko-KR"] :is(.brand-hero h1,.editorial-statement,.vision-section h2,.philosophy-hero h1,.culture-integrity,.years-section h2,.philosophy-vision h2){font-family:"Noto Serif KR","Noto Serif",serif}
.section-index,.foundation-pillar,.principle-item,.design-area,.commitment-card,.philosophy-purpose__grid>div{min-width:0;height:auto;overflow-wrap:anywhere}

/* NOMADOX Digital Brand Experience v2 */
:root{
  --nd-black:#111111;--nd-white:#fff;--nd-navy:#123660;--nd-blue:#2479c8;
  --nd-aqua:#67d4d8;--nd-sky:#76b8f5;--nd-mint:#8fe0c2;--nd-lavender:#a998f5;--nd-pink:#f3a0c6;
  --nd-neutral:#f5f7f8;--nd-line:rgba(18,54,96,.14);--nd-radius:24px;
  --nd-shadow:0 24px 70px rgba(18,54,96,.12);--nd-content:1200px;
}
html{scroll-behavior:smooth}.home{background:var(--nd-white);color:var(--nd-black)}
.home .container{width:min(calc(100% - 40px),var(--nd-content));margin-inline:auto}
.home .site-header{position:fixed;inset:0 0 auto;z-index:1000;background:rgba(255,255,255,.88);border-bottom:1px solid rgba(18,54,96,.08);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}
.home .header-inner{min-height:78px}.home .brand-logo{width:172px;height:auto;object-fit:contain}.home .nav ul{gap:clamp(16px,2vw,32px)}
.home .nav a{font-size:12px;letter-spacing:.1em;color:var(--nd-navy)}.home .nav .cta{min-height:44px;padding:0 20px;border-radius:999px;background:var(--nd-navy);color:#fff}
.home .lang-label{font-size:13px;color:var(--nd-navy)}.home .lang-switcher{font-size:12px;border:1px solid rgba(103,212,216,.72);background:var(--nd-navy);color:#fff}
.home .nav{margin-left:auto;justify-content:flex-end;flex-wrap:nowrap}
.home .nav>ul{flex:0 1 auto;justify-content:flex-end}
.home .nav>.lang-switcher-wrap,.home .nav>.cta{flex:0 0 auto}
.brand-hero{position:relative;display:grid;min-height:100svh;overflow:hidden;color:#fff;background:var(--nd-navy)}
.brand-hero__media,.brand-hero__veil{position:absolute;inset:0;width:100%;height:100%}.brand-hero__media{object-fit:cover;filter:saturate(.72) contrast(1.05)}
.brand-hero__veil{background:linear-gradient(90deg,rgba(8,20,34,.78) 0%,rgba(8,20,34,.48) 48%,rgba(8,20,34,.12) 100%),linear-gradient(0deg,rgba(8,20,34,.35),transparent 48%)}
.brand-hero__content{position:relative;z-index:2;align-self:center;padding-block:150px 90px}.eyebrow,.section-index{margin:0 0 26px;font-weight:800;letter-spacing:.18em;text-transform:uppercase}.eyebrow{font-size:clamp(14px,1.05vw,17px);line-height:1.5}
.brand-hero h1{max-width:950px;margin:0;font-family:"Noto Serif JP","Noto Serif",serif;font-size:clamp(48px,7.2vw,108px);font-weight:500;line-height:1.18;letter-spacing:-.035em;text-wrap:balance}
.brand-hero__support{width:min(100%,920px);max-width:none;margin:32px 0 0;font-size:clamp(16px,1.4vw,20px);line-height:1.9;text-wrap:pretty;line-break:strict}.brand-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:42px}
.brand-button{display:inline-flex;min-height:52px;padding:0 26px;align-items:center;justify-content:center;border:1px solid transparent;border-radius:999px;font-weight:800;text-decoration:none;transition:.25s ease}
.brand-button--primary{background:#fff;color:var(--nd-navy)}.brand-button--quiet{border-color:rgba(255,255,255,.55);color:#fff}.brand-button:hover{transform:translateY(-2px)}
.brand-hero__scroll{position:absolute;z-index:2;right:40px;bottom:30px;display:flex;gap:12px;align-items:center;color:#fff;font-size:10px;letter-spacing:.18em;text-decoration:none;writing-mode:vertical-rl}.brand-hero__scroll i{width:1px;height:54px;background:rgba(255,255,255,.7)}
.brand-section{position:relative;padding:clamp(90px,12vw,170px) 0;border-top:1px solid rgba(18,54,96,.08);box-shadow:inset 0 34px 54px -58px rgba(36,121,200,.72)}.section-index{color:var(--nd-blue)}.brand-section__head{max-width:760px;margin-bottom:56px}.brand-section__head h2,.digital-grid h2,.club-panel h2,.story-heading h2,.journal-head h2,.contact-band h2{margin:0;font-size:clamp(36px,5vw,68px);line-height:1.18;letter-spacing:-.04em}.brand-section__head>p:last-child,.digital-grid>div>p:last-child,.club-panel>div>p:last-child,.story-copy>p,.journal-head>div>p:last-child{max-width:620px;margin:24px 0 0;color:#52606b;font-size:17px;line-height:2}
.section-index{font-size:clamp(13px,1vw,15px);font-weight:800;line-height:1.5;letter-spacing:.15em}
.purpose-section{display:grid;min-height:78svh;place-items:center;background:#fff}.statement-wrap{text-align:center}.editorial-statement{margin:0;font-family:"Noto Serif JP","Noto Serif",serif;font-size:clamp(38px,5.8vw,78px);font-weight:500;line-height:1.45;letter-spacing:-.035em}.statement-body{width:100%;max-width:none;margin:38px auto 0;color:#4c5963;font-size:17px;line-height:2.1;text-wrap:pretty}
.foundation-section{background:var(--nd-neutral)}.foundation-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.foundation-card{position:relative;min-height:350px;padding:34px;overflow:hidden;border:1px solid rgba(255,255,255,.9);border-radius:var(--nd-radius);background:rgba(255,255,255,.74);box-shadow:var(--nd-shadow);backdrop-filter:blur(16px)}
.foundation-section .brand-section__head{max-width:none}.foundation-section .brand-section__head>p:last-child{max-width:none;width:100%;white-space:normal;overflow-wrap:anywhere;text-wrap:pretty}
.foundation-card>p{position:relative;z-index:2;margin:0;color:var(--nd-navy);font-size:16px;font-weight:800;line-height:1;letter-spacing:.12em}.foundation-card h3{margin:72px 0 4px;font-size:clamp(32px,4vw,48px);letter-spacing:.02em}.foundation-card strong{display:block;color:var(--nd-navy);font-size:16px}.foundation-card>span:last-child{display:block;max-width:240px;margin-top:18px;color:#51606a;line-height:1.8}.foundation-card__icon{position:absolute;z-index:1;right:18px;top:18px;width:132px;height:132px;border-radius:28px;object-fit:cover;object-position:center 43%;box-shadow:0 14px 34px rgba(18,54,96,.18)}
.foundation-card--1{border-color:rgba(226,74,143,.62);box-shadow:0 0 0 1px rgba(243,160,198,.28),0 0 34px rgba(226,74,143,.42),0 26px 72px rgba(226,74,143,.22)}
.foundation-card--2{border-color:rgba(36,121,200,.62);box-shadow:0 0 0 1px rgba(118,184,245,.3),0 0 34px rgba(36,121,200,.42),0 26px 72px rgba(36,121,200,.22)}
.foundation-card--3{border-color:rgba(47,166,124,.68);box-shadow:0 0 0 1px rgba(143,224,194,.34),0 0 34px rgba(47,166,124,.46),0 26px 72px rgba(47,166,124,.24)}
.foundation-card--1>p{color:#c62f73}.foundation-card--2>p{color:#1768ad}.foundation-card--3>p{color:#197a59}
.model-detail-section .brand-section__head{max-width:none}.model-detail-section .brand-section__head>p:last-child{width:100%;max-width:none}.layer-bridge{max-width:900px;margin:56px auto 0;padding:24px 30px;border-left:4px solid var(--nd-blue);border-radius:0 16px 16px 0;background:rgba(255,255,255,.76);color:var(--nd-navy);font-size:18px;font-weight:700;line-height:1.9;box-shadow:0 16px 42px rgba(18,54,96,.09)}
.principles-section{background:#fff}.principle-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}.principle-card{min-height:390px;padding:26px 22px;border:1px solid var(--nd-line);border-radius:20px;background:#fff;box-shadow:0 18px 46px rgba(18,54,96,.09)}.principle-card__number{font-size:14px;font-weight:800;color:var(--nd-blue)}.principle-card__icon{display:block;width:92px;height:92px;margin:20px 0 0;border:1px solid rgba(255,255,255,.85);border-radius:22px;object-fit:cover;object-position:center 43%;box-shadow:0 14px 34px rgba(18,54,96,.13)}.principle-card h3{margin:20px 0 5px;font-size:clamp(23px,2vw,30px)}.principle-card strong{display:block;min-height:3.2em;color:var(--nd-navy);font-size:14px;line-height:1.6}.principle-card p{margin:18px 0 0;color:#52606b;font-size:14px;line-height:1.8}.principle-card--1{border-top:4px solid var(--nd-mint)}.principle-card--2{border-top:4px solid var(--nd-sky)}.principle-card--3{border-top:4px solid var(--nd-pink)}.principle-card--4{border-top:4px solid var(--nd-lavender)}.principle-card--5{border-top:4px solid #c78bc7}
.connection-section{background:linear-gradient(135deg,var(--nd-navy),#1d5680);color:#fff}.connection-statement{max-width:1060px;text-align:center}.connection-statement .section-index{color:var(--nd-aqua)}.connection-statement h2{margin:0;font-family:"Noto Serif JP","Noto Serif",serif;font-size:clamp(40px,5.8vw,76px);font-weight:500;line-height:1.45}.connection-statement>p:last-child{max-width:900px;margin:34px auto 0;color:rgba(255,255,255,.82);font-size:18px;line-height:2.15}
.areas-section{background:linear-gradient(145deg,#f5fbfb,#f7f6ff)}.areas-section .brand-section__head h2{width:100%;max-width:none;font-size:clamp(36px,4.2vw,60px)}.area-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}.area-card{position:relative;min-height:340px;padding:34px;border:1px solid rgba(36,121,200,.42);border-radius:24px;background:rgba(255,255,255,.86);box-shadow:0 0 30px rgba(36,121,200,.2),0 22px 58px rgba(18,54,96,.14)}.area-card>span{color:var(--nd-blue);font-size:14px;font-weight:800}.area-card__icon{position:absolute;right:24px;top:24px;width:128px;height:128px;border-radius:26px;object-fit:cover;object-position:center 43%;box-shadow:0 16px 38px rgba(18,54,96,.18)}.area-card h3{max-width:calc(100% - 150px);margin:72px 0 5px;color:var(--nd-navy);font-size:clamp(25px,3vw,38px)}.area-card strong{font-size:15px}.area-card p{max-width:560px;margin:18px 0 0;color:#52606b;line-height:1.9}.area-card--1{border-color:rgba(70,190,158,.62);box-shadow:0 0 34px rgba(70,190,158,.3),0 22px 58px rgba(18,54,96,.12)}.area-card--2{border-color:rgba(72,157,225,.62);box-shadow:0 0 34px rgba(72,157,225,.3),0 22px 58px rgba(18,54,96,.12)}.area-card--3{border-color:rgba(142,111,224,.58);box-shadow:0 0 34px rgba(142,111,224,.28),0 22px 58px rgba(18,54,96,.12)}.area-card--4{border-color:rgba(225,104,167,.55);box-shadow:0 0 34px rgba(225,104,167,.25),0 22px 58px rgba(18,54,96,.12)}.portfolio-club{margin-top:70px}.reference-section{border-top:1px solid rgba(36,121,200,.2);box-shadow:inset 0 44px 70px -66px rgba(36,121,200,.95)}
.model-section{color:#fff;background:radial-gradient(circle at 15% 15%,rgba(103,212,216,.2),transparent 30%),radial-gradient(circle at 85% 70%,rgba(169,152,245,.18),transparent 30%),var(--nd-navy)}.brand-section__head--light .section-index{color:var(--nd-aqua)}.brand-section__head--light>p:last-child{color:rgba(255,255,255,.72)}
.model-section .brand-section__head{max-width:none}.model-section .brand-section__head h2,.model-section .brand-section__head>p:last-child{max-width:none;width:100%}
.connection-model{display:grid;gap:20px;padding:clamp(22px,4vw,54px);border:1px solid rgba(255,255,255,.18);border-radius:32px;background:rgba(255,255,255,.08);box-shadow:0 30px 90px rgba(0,0,0,.2);backdrop-filter:blur(18px)}
.connection-model-figure{max-width:980px;margin:0 auto;padding:clamp(10px,2vw,20px);border:1px solid rgba(255,255,255,.18);border-radius:32px;background:rgba(255,255,255,.09);box-shadow:0 30px 90px rgba(0,0,0,.24);backdrop-filter:blur(18px)}
.connection-model-figure img{display:block;width:100%;height:auto;border-radius:22px}.connection-model-figure figcaption{max-width:720px;margin:20px auto 4px;color:rgba(255,255,255,.76);font-size:14px;line-height:1.8;text-align:center}
.model-layer{display:grid;gap:12px}.model-layer--foundation{grid-template-columns:repeat(3,1fr)}.model-layer--foundation span,.model-areas span{padding:18px;border:1px solid rgba(255,255,255,.15);border-radius:14px;background:rgba(255,255,255,.08);text-align:center;font-size:12px;font-weight:900;letter-spacing:.14em}.model-layer--principles{grid-template-columns:repeat(5,1fr)}.model-layer--principles div{padding:22px 12px;border-radius:18px;background:linear-gradient(145deg,rgba(255,255,255,.2),rgba(255,255,255,.06));text-align:center}.model-layer--principles strong,.model-layer--principles span{display:block}.model-layer--principles strong{font-size:14px;letter-spacing:.08em}.model-layer--principles span{margin-top:7px;color:rgba(255,255,255,.72);font-size:11px}.model-connector{width:1px;height:30px;margin:auto;background:linear-gradient(var(--nd-aqua),var(--nd-lavender))}.model-core{padding:28px;border-radius:20px;background:linear-gradient(110deg,var(--nd-aqua),var(--nd-sky),var(--nd-lavender),var(--nd-pink));color:var(--nd-navy);text-align:center}.model-core span{font-size:20px;font-weight:900;letter-spacing:.14em}.model-core p{max-width:650px;margin:10px auto 0;line-height:1.7}.model-areas{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.projects-section,.journal-section{background:var(--nd-neutral)}.projects-section .brand-section__head{max-width:none}.projects-section .brand-section__head h2{width:100%;max-width:none}.project-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.project-card{position:relative;min-height:560px;overflow:hidden;border-radius:var(--nd-radius);color:#fff;box-shadow:var(--nd-shadow)}.project-card img,.project-card__scrim{position:absolute;inset:0;width:100%;height:100%}.project-card img{object-fit:cover;transition:transform .7s ease}.project-card__scrim{background:linear-gradient(0deg,rgba(5,15,26,.88),rgba(5,15,26,.06) 70%)}.project-card>div{position:absolute;inset:auto 30px 30px}.project-card p{margin:0 0 8px;font-size:10px;letter-spacing:.18em}.project-card h3{margin:0;font-size:clamp(26px,2.5vw,36px)}.project-card div>span{display:block;margin-top:14px;line-height:1.7}.project-card b{position:absolute;right:0;bottom:0;display:grid;width:44px;height:44px;place-items:center;border:1px solid rgba(255,255,255,.5);border-radius:50%}.project-card:hover img{transform:scale(1.04)}
.digital-section{background:linear-gradient(135deg,#f4fbfb,#f6f5ff)}.digital-grid{display:grid;grid-template-columns:1fr;gap:48px}.digital-grid>div:first-child{width:100%;max-width:none}.digital-grid>div:first-child>p:last-child{max-width:none;width:100%}.digital-foundation-figure{width:min(100%,900px);margin:0 auto;padding:clamp(10px,1.5vw,18px);overflow:hidden;border:1px solid rgba(36,121,200,.2);border-radius:28px;background:rgba(255,255,255,.82);box-shadow:var(--nd-shadow)}.digital-foundation-figure img{display:block;width:100%;height:auto;object-fit:contain;border-radius:16px}
.club-section{background:#fff}.club-panel{display:grid;grid-template-columns:.78fr 1.22fr;gap:34px 70px;padding:clamp(34px,6vw,80px);border:1px solid rgba(255,255,255,.8);border-radius:32px;background:linear-gradient(135deg,rgba(143,224,194,.2),rgba(118,184,245,.17),rgba(169,152,245,.18),rgba(243,160,198,.18));box-shadow:var(--nd-shadow)}.club-panel__heading{grid-column:1/-1;width:100%}.club-panel__heading h2{width:100%;max-width:none}.club-panel__body{align-self:center}.club-panel__body p{margin:0;color:#52606b;font-size:17px;line-height:2}.club-figure{margin:0;overflow:hidden;border:1px solid rgba(169,152,245,.2);border-radius:24px;background:rgba(255,255,255,.74);box-shadow:0 22px 60px rgba(86,86,175,.17)}.club-figure img{display:block;width:100%;height:auto;aspect-ratio:1373/1145;object-fit:cover}
.story-section{background:var(--nd-neutral)}.story-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:34px clamp(40px,7vw,100px);align-items:center}.story-heading{grid-column:1/-1;width:100%;max-width:none}.story-heading h2{width:100%;max-width:none}.story-heading .story-label{margin:0 0 12px}.story-copy{width:100%;max-width:none}.story-copy>p{max-width:none!important;margin-top:0!important}.story-media{overflow:hidden;border-radius:var(--nd-radius);box-shadow:var(--nd-shadow)}.story-media img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover}.story-label{color:var(--nd-navy)!important;font-weight:900;letter-spacing:.12em}.brand-text-link{display:inline-flex;margin-top:26px;color:var(--nd-blue);font-weight:900;text-decoration:none}
.vision-section{display:grid;min-height:85svh;padding:clamp(100px,12vw,170px) 0;place-items:center;text-align:center;background:#fff}.vision-section h2{margin:0;font-family:"Noto Serif JP","Noto Serif",serif;font-size:clamp(42px,6.6vw,88px);font-weight:500;line-height:1.5;letter-spacing:-.045em}.vision-rationale{max-width:860px;margin:42px auto 0;color:#52606b;font-size:17px;line-height:2.15;text-align:left;text-wrap:pretty}.journal-head{display:flex;justify-content:space-between;gap:30px;align-items:end;margin-bottom:48px}.journal-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.journal-card{color:var(--nd-black);text-decoration:none}.journal-card img,.journal-card__placeholder{display:block;width:100%;aspect-ratio:4/3;border-radius:16px;object-fit:cover;background:linear-gradient(135deg,var(--nd-mint),var(--nd-sky),var(--nd-lavender))}.journal-card time{display:block;margin-top:18px;color:#6d7880;font-size:11px;letter-spacing:.1em}.journal-card h3{margin:8px 0 0;font-size:20px;line-height:1.5}
.model-detail-section .brand-section__head>p:last-child,.connection-statement>p:last-child,.club-panel__body p,.story-copy>p{white-space:normal;overflow-wrap:anywhere;text-wrap:pretty}
.contact-band{padding:clamp(80px,10vw,140px) 0;color:#fff;background:var(--nd-navy);text-align:center}.contact-band .section-index{color:var(--nd-aqua)}.contact-band h2{width:100%;max-width:none;margin-inline:auto;font-size:clamp(36px,4.2vw,60px)}.contact-band p:not(.section-index){margin:24px auto 34px;color:rgba(255,255,255,.74);font-size:17px}.brand-button--white{background:#fff;color:var(--nd-navy)}
.brand-section__head h2,.digital-grid h2,.club-panel h2,.story-heading h2,.journal-head h2,.contact-band h2{font-family:"Noto Sans JP","Noto Sans",sans-serif;font-weight:700;text-wrap:balance;line-break:strict}
.brand-hero h1,.editorial-statement,.vision-section h2{font-family:"Noto Serif JP","Noto Serif",serif;font-weight:500;text-wrap:balance;line-break:strict}
.brand-hero h1 br,.editorial-statement br,.vision-section h2 br{display:block}
.home .site-footer{background:#0b233f}.home .site-footer .footer-grid{padding-top:10px}.home .site-footer a:focus-visible,.home a:focus-visible,.home button:focus-visible,.home select:focus-visible{outline:3px solid var(--nd-aqua);outline-offset:4px}
.reveal{opacity:0;transform:translateY(24px);transition:opacity .8s ease,transform .8s ease}.reveal.is-visible{opacity:1;transform:none}
@media(max-width:980px){.foundation-grid,.project-grid,.journal-grid,.principle-grid,.area-grid{grid-template-columns:1fr}.foundation-section .brand-section__head>p:last-child{white-space:normal;text-wrap:pretty}.foundation-card{min-height:280px}.principle-card{min-height:0}.principle-card h3{margin-top:32px}.principle-card strong{min-height:0}.area-card:last-child{grid-template-columns:1fr}.area-card:last-child img{grid-column:1;grid-row:auto;margin-top:20px}.project-card{min-height:480px}.model-layer--principles{grid-template-columns:1fr}.model-layer--foundation,.model-areas{grid-template-columns:repeat(2,1fr)}.digital-grid,.club-panel,.story-grid{grid-template-columns:1fr}.digital-orbit{min-height:420px}.journal-head{align-items:start;flex-direction:column}}
@media(max-width:720px){.home .container{width:min(calc(100% - 32px),var(--nd-content))}.brand-hero__content{padding-top:130px}.brand-hero h1{font-size:clamp(40px,12vw,60px)}.brand-hero__support{font-size:15px}.brand-hero__scroll{display:none}.brand-actions{align-items:stretch;flex-direction:column}.brand-button{width:100%}.brand-section{padding:88px 0}.section-index{font-size:13px}.foundation-card h3{margin-top:45px}.model-layer--foundation,.model-areas{grid-template-columns:1fr}.connection-model{padding:18px}.connection-model-figure{margin-inline:-4px;padding:6px;border-radius:18px}.connection-model-figure img{border-radius:13px}.connection-model-figure figcaption{padding-inline:10px}.project-card{min-height:440px}.digital-foundation-figure{border-radius:18px}.club-panel{padding:28px}.vision-section{min-height:70svh}.journal-head .brand-text-link{margin-top:0}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.reveal{opacity:1;transform:none;transition:none}.project-card img,.brand-button{transition:none}}

.pillar-slide{
  border-radius: var(--radius);
  overflow:hidden;
  position: relative;
  min-height: 420px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(21,37,42,.10);
  isolation: isolate;
}
.pillar-slide::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.22) 55%, rgba(0,0,0,.10) 100%);
}
.pillar-visual{
  position:absolute;
  inset:0;
  z-index:0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1 !important;
  filter: none !important;
}
.pillar-bg{
  position:absolute;
  inset:0;
  z-index: 0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transform: scale(1.02);
}
.pillar-content{ position:relative; z-index:2; padding:34px 34px 28px; color: rgba(255,255,255,.92); max-width: 680px; }
.pillar-content h3{ margin:0 0 6px; font-size: 34px; letter-spacing:.02em; }
.pillar-content .sub{ margin:0 0 14px; font-weight:800; color: rgba(255,255,255,.86); }
.pillar-content ul{ margin:0 0 16px; padding-left:18px; }
.pillar-content li{ margin:6px 0; color: rgba(255,255,255,.88); }
.pillar-cta{
  display:inline-flex; gap:10px; align-items:center;
  padding:12px 16px; border-radius:999px;
  background: rgba(15,123,132,.55);
  border: 1px solid rgba(255,255,255,.22);
  text-decoration:none; font-weight:900;
  color: rgba(255,255,255,.92);
}
.pillar-cta:hover{ background: rgba(15,123,132,.68); }
.pillar-cta.is-disabled,
.pillar-cta.is-disabled:hover{
  opacity: .7;
  cursor: not-allowed;
  pointer-events: none;
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.28);
}

.home-special-shortcut{
  margin-top: 16px;
  text-align: center;
  color: rgba(245,249,255,.96);
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(6,16,30,.62) 0%, rgba(6,16,30,.74) 100%),
    url('../img/nomadox-concept.png') center/cover no-repeat;
}

.home-special-shortcut .kicker{
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  color: rgba(245,249,255,.80);
}

.home-special-shortcut h3{
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.home-special-shortcut p{
  margin: 0 auto 12px;
  max-width: 70ch;
  color: rgba(245,249,255,.96);
}
/* Home project cards: larger visual for full-screen style background */
.home .pillar-slide,
body.home .pillar-slide{
  min-height: min(82vh, 820px);
}

@media (max-width: 1024px){
  .home .pillar-slide,
  body.home .pillar-slide{
    min-height: min(76vh, 740px);
  }
}

@media (max-width: 768px){
  .home .pillar-slide,
  body.home .pillar-slide{
    min-height: min(70svh, 640px);
  }
}

.pillars-controls{ display:flex; justify-content:center; align-items:center; gap:12px; margin-top:14px; }
.pillars-btn{
  width:44px; height:44px; border-radius:999px;
  display:grid; place-items:center;
  border: 1px solid rgba(21,37,42,.12);
  background: rgba(255,255,255,.66);
  cursor:pointer;
}
.pillars-btn:hover{ background: rgba(255,255,255,.82); }

.posts-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-top:26px; }
@media (max-width: 900px){ .posts-grid{ grid-template-columns: 1fr; } }

.home-topics-more{
  margin-top: 16px;
  text-align: center;
}

.topics-toolbar{
  margin: 10px 0 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topics-toolbar label{
  font-weight: 700;
  color: rgba(21,37,42,.76);
}

.topics-toolbar select{
  height: 40px;
  min-width: 110px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(21,37,42,.18);
  background: rgba(255,255,255,.9);
}

.topics-dot-pager{
  margin-top: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.topics-dot-pager .dot{
  display: inline-flex;
}

.topics-dot-pager .dot a,
.topics-dot-pager .dot span{
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 999px;
  background: rgba(21,37,42,.22);
  border: 1px solid rgba(21,37,42,.18);
  color: transparent;
  overflow: hidden;
  text-indent: -9999px;
}

.topics-dot-pager .dot.is-current span,
.topics-dot-pager .dot.is-current a{
  background: #1f7fe8;
  border-color: #1f7fe8;
}
.post-card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(21,37,42,.10);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  text-decoration:none;
  color: inherit;
}
.post-card img{ width:100%; height:180px; object-fit:cover; display:block; }
.post-card .pc-body{ padding:16px 16px 18px; }
/* FIX: 見出しが白文字にならないように明示 */
.post-card h3{ margin:0 0 8px; font-size:18px; color: rgba(21,37,42,.92); }
.post-card p{ margin:0; color: rgba(21,37,42,.70); }

.page-hero{ padding:24px 0 8px; }
.page-hero .kicker{ text-transform: uppercase; letter-spacing:.14em; font-weight:800; color: rgba(21,37,42,.55); font-size:12px; }
.page-hero h1{
  margin: 6px auto 8px;
  font-size: clamp(28px, 3vw, 46px);
  text-align: center;
}
.page-hero p{
  margin: 0 auto;
  color: rgba(21,37,42,.70);
  max-width: 78ch;
  text-align: center;
}
.page-hero.is-centered{ text-align:center; }
.page-hero.is-centered p{ margin-inline:auto; }

.page-title-marker{
  display: table;
  margin: 0 auto 18px;
  text-align: center;
  background-image: linear-gradient(transparent 62%, rgba(120, 205, 255, .88) 62%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 .08em;
}

.page-hero h1.page-title-marker{
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.page-card{
  margin-top:22px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(21,37,42,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.related-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap:14px; margin-top:18px; }
@media (max-width: 800px){ .related-grid{ grid-template-columns: 1fr; } }
.related-card{
  background: rgba(15,123,132,.10);
  border: 1px solid rgba(15,123,132,.18);
  border-radius: 22px;
  padding: 18px;
  text-decoration:none;
  color: rgba(21,37,42,.92);
}
.related-card p{ margin:0; color: rgba(21,37,42,.70); }

.ceo-wrap{ display:grid; grid-template-columns: 240px 1fr; gap:22px; align-items:stretch; }
@media (max-width: 700px){ .ceo-wrap{ grid-template-columns: 1fr; } }
.ceo-side{
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 92% at 10% 12%, rgba(125, 188, 255, .36) 0%, rgba(125, 188, 255, 0) 58%),
    radial-gradient(90% 80% at 88% 86%, rgba(255, 156, 218, .34) 0%, rgba(255, 156, 218, 0) 62%),
    linear-gradient(140deg, rgba(234, 244, 255, .52) 0%, rgba(242, 234, 255, .46) 55%, rgba(255, 238, 247, .52) 100%);
  border: 1px solid rgba(255,255,255,.48);
  backdrop-filter: blur(12px) saturate(126%);
  -webkit-backdrop-filter: blur(12px) saturate(126%);
  box-shadow:
    0 14px 34px rgba(40, 58, 122, .20),
    inset 0 1px 0 rgba(255,255,255,.55);
}
@media (max-width: 700px){ .ceo-side{ width: 100%; } }
.ceo-logo-stage{
  position: relative;
  width: 100%;
  min-height: 360px;
}
@media (max-width: 700px){
  .ceo-logo-stage{ min-height: 240px; }
  .ceo-photo-interactive{ top: 50%; }
}
.ceo-photo{
  width: 100%;
  max-width: 210px;
  aspect-ratio: 1 / 1;
  border-radius:999px; overflow:hidden;
  border: 1px solid rgba(21,37,42,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  background: rgba(255,255,255,.6);
}
.ceo-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.ceo-shared-photo{
  margin: 0 0 14px;
}
.ceo-shared-photo img{
  width: min(240px, 100%);
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(8, 18, 36, .18);
}

.ceo-photo-interactive{
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0 !important;
  transform: translate(calc(-50% + var(--ceo-x, 0px)), calc(-50% + var(--ceo-y, 0px)));
  animation: ceo-logo-float 5.8s ease-in-out infinite;
  cursor: grab;
  touch-action: none;
  user-select: none;
  will-change: transform;
  perspective: 1000px;
  transform-style: preserve-3d;
  box-shadow:
    0 26px 42px rgba(3, 10, 24, .42),
    0 10px 24px rgba(32, 112, 219, .20),
    inset 0 -10px 24px rgba(0,0,0,.24),
    inset 0 6px 14px rgba(255,255,255,.12);
}

.ceo-coin{
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 50%;
  transform-style: preserve-3d;
  will-change: transform, filter;
  z-index: 1;
}

.ceo-coin-face{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #000000;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.ceo-coin-face img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14%;
  background: #000000;
  display: block;
}

.page-template-page-ceo-message .ceo-coin-face img,
.page-template-page-ceo-message-php .ceo-coin-face img{
  object-fit: cover;
  padding: 0;
}

.ceo-coin-back{
  transform: rotateY(180deg);
}

.ceo-coin-back img{
  filter: brightness(.90) saturate(.90) contrast(1.04);
}

.ceo-coin-edge{
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 3px solid rgba(170, 220, 255, .38);
  box-shadow:
    inset 0 2px 7px rgba(255,255,255,.26),
    inset 0 -6px 12px rgba(0,0,0,.26),
    0 0 14px rgba(84, 178, 255, .22);
  pointer-events: none;
  z-index: 3;
}

.ceo-photo-interactive::before{
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 28%, rgba(183, 224, 255, .55), rgba(183, 224, 255, 0) 36%),
    radial-gradient(circle at 50% 50%, rgba(97, 164, 255, .30), rgba(97, 164, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.ceo-photo-interactive::after{
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 1px solid rgba(154, 208, 255, .56);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,.30),
    0 0 26px rgba(80, 171, 255, .24);
  pointer-events: none;
}

.ceo-photo-interactive.is-dragging{
  animation: none;
  cursor: grabbing;
  filter: saturate(1.08);
}

.ceo-photo-interactive.is-inertia{
  animation: none;
}

.ceo-photo-interactive.is-spin .ceo-coin{
  animation: ceo-coin-spin var(--ceo-spin-duration, 680ms) cubic-bezier(.2,.84,.22,1) 1;
}

@keyframes ceo-logo-float{
  0%{ transform: translate(calc(-50% + var(--ceo-x, 0px)), calc(-50% + var(--ceo-y, 0px))) translateY(0px); }
  50%{ transform: translate(calc(-50% + var(--ceo-x, 0px)), calc(-50% + var(--ceo-y, 0px))) translateY(-8px); }
  100%{ transform: translate(calc(-50% + var(--ceo-x, 0px)), calc(-50% + var(--ceo-y, 0px))) translateY(0px); }
}

@keyframes ceo-coin-spin{
  0%{
    transform: rotateY(0deg) scale(1);
    filter: brightness(1);
  }
  30%{
    transform: rotateY(calc(var(--ceo-spin-dir, 1) * 360deg)) scale(1.02);
    filter: brightness(1.08);
  }
  60%{
    transform: rotateY(calc(var(--ceo-spin-dir, 1) * 720deg)) scale(.99);
    filter: brightness(1.03);
  }
  100%{
    transform: rotateY(calc(var(--ceo-spin-dir, 1) * 1080deg)) scale(1);
    filter: brightness(1);
  }
}

.site-footer{
  margin-top: 50px;
  padding: 54px 0 40px;
  background: linear-gradient(180deg, rgba(15,123,132,.86), rgba(15,123,132,.70));
  color: rgba(255,255,255,.90);
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}
.footer-grid{ display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:18px; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr; } }
.site-footer a{ color: rgba(255,255,255,.92); text-decoration:none; }
.site-footer a:hover{ text-decoration:underline; }
.contact-external-link{position:relative!important;z-index:5!important;pointer-events:auto!important;cursor:pointer!important}
.site-header .contact-external-link,.site-footer .contact-external-link{display:inline-flex;align-items:center}
.footer-contact-link{padding:4px 0;font-weight:700}
.footer-small{ margin-top:18px; opacity:.82; font-size:13px; }
.back-to-top{
  position: fixed;
  right: 24px;
  bottom: 24px;
  right: calc(24px + env(safe-area-inset-right));
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 70;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding: 10px 8px 8px;
  border: 3px solid rgba(255,255,255,.96);
  border-radius: 999px;
  background: rgba(20, 147, 214, .96);
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 14px 30px rgba(8, 26, 34, .24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.back-to-top-icon{
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 26px solid #fff;
  margin-bottom: 6px;
}

.back-to-top-text{
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .03em;
}

.back-to-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 900px){
  .back-to-top{
    right: 14px;
    bottom: 14px;
    right: calc(14px + env(safe-area-inset-right));
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 74px;
    height: 74px;
    padding: 8px 6px 6px;
  }

  .back-to-top-icon{
    border-left-width: 18px;
    border-right-width: 18px;
    border-bottom-width: 22px;
    margin-bottom: 4px;
  }

  .back-to-top-text{
    font-size: 15px;
  }
}

/* Brand journey v3: experiential, image-led home narrative */
.home .journey-intro,.home .foundation-stage,.home .principles-stage,.home .connection-peak,.home .areas-stage,.home .project-stories,.home .club-experience{padding:clamp(110px,10vw,180px) 0;overflow:hidden}
.home .journey-intro{color:#fff;background:radial-gradient(circle at 78% 22%,rgba(36,121,200,.34),transparent 38%),linear-gradient(145deg,#07101d,#163f6d)}
.home .journey-intro__inner{max-width:none}
.home .journey-intro .section-index,.home .connection-peak .section-index{color:#77d7eb}
.home .journey-intro__eyebrow{margin:36px 0 22px;font-size:clamp(18px,2vw,28px);font-weight:600;letter-spacing:.06em}
.home .journey-intro h2{width:100%;max-width:none;margin:0;font-size:clamp(36px,5vw,68px);font-weight:600;line-height:1.18;letter-spacing:-.035em;text-wrap:pretty}
.home .journey-intro__inner>p:not(.section-index):not(.journey-intro__eyebrow){width:100%;max-width:none;margin:40px 0 0;font-size:clamp(16px,1.35vw,20px);line-height:2;color:rgba(255,255,255,.78);text-wrap:pretty}
.home .journey-intro__line{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:90px;border-top:1px solid rgba(255,255,255,.3)}
.home .journey-intro__line span{position:relative;padding-top:18px;font-size:11px;letter-spacing:.14em;color:rgba(255,255,255,.65)}
.home .journey-intro__line span:before{content:"";position:absolute;top:-5px;left:0;width:9px;height:9px;border-radius:50%;background:#67c8e6;box-shadow:0 0 18px #67c8e6}
.home .brand-section__head{width:100%;max-width:1180px}
.home .brand-section__head h2,.home .project-stories h2,.home .club-experience h2{max-width:1100px;font-weight:600;text-wrap:balance}
html[lang^="ja"] .home .principles-stage .brand-section__head{max-width:1100px}
html[lang^="ja"] .home .principles-stage .brand-section__head h2{
  width:100%;
  max-width:none;
  font-size:clamp(18px,5vw,44px);
  white-space:nowrap;
  text-wrap:nowrap;
}
.home .brand-section__head>p:last-child{max-width:960px;font-weight:400;line-height:2}
.home .foundation-stage{background:radial-gradient(circle at 12% 20%,rgba(243,160,198,.18),transparent 30%),radial-gradient(circle at 87% 25%,rgba(143,224,194,.2),transparent 32%),#f7fbfd}
.home .foundation-pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(32px,5vw,88px);margin-top:90px}
.home .foundation-pillar{padding:38px 26px 42px;text-align:center;border:1px solid transparent;border-radius:30px;background:rgba(255,255,255,.72);transition:transform .5s ease,box-shadow .5s ease}
.home .foundation-pillar img{width:min(100%,260px);aspect-ratio:1;object-fit:contain;filter:drop-shadow(0 24px 34px rgba(18,53,90,.16));transition:transform .5s ease}
.home .foundation-pillar:hover img{transform:translateY(-10px) scale(1.025)}
.home .foundation-pillar:nth-child(2),.home .principle-item:nth-child(2){transition-delay:.08s}.home .foundation-pillar:nth-child(3),.home .principle-item:nth-child(3){transition-delay:.16s}.home .principle-item:nth-child(4){transition-delay:.24s}.home .principle-item:nth-child(5){transition-delay:.32s}
.home .foundation-pillar h3{margin:24px 0 5px;font-size:clamp(30px,3vw,46px);font-weight:600;letter-spacing:.05em}
.home .foundation-pillar strong{display:block;color:#163e6e;font-size:16px}
.home .foundation-pillar p{margin:16px auto 0;max-width:280px;line-height:1.9;color:#526276}
.home .foundation-pillar--1{border-color:rgba(243,160,198,.82);box-shadow:0 24px 58px rgba(243,160,198,.24),0 0 32px rgba(243,160,198,.34)}
.home .foundation-pillar--2{border-color:rgba(118,184,245,.86);box-shadow:0 24px 58px rgba(118,184,245,.24),0 0 32px rgba(118,184,245,.34)}
.home .foundation-pillar--3{border-color:rgba(143,224,194,.9);box-shadow:0 24px 58px rgba(143,224,194,.25),0 0 32px rgba(143,224,194,.38)}
.home .foundation-pillar--1 h3{color:#d94f8c}.home .foundation-pillar--2 h3{color:#2679c8}.home .foundation-pillar--3 h3{color:#218b70}
.home .principles-stage{background:#fff}
.home .principle-stage{display:grid;grid-template-columns:repeat(5,1fr);gap:clamp(12px,2vw,30px);margin-top:82px}
.home .principle-item{padding:22px 14px 30px;text-align:center;border:1px solid transparent;border-radius:24px;background:rgba(255,255,255,.82);transition:transform .45s ease,box-shadow .45s ease}
.home .principle-item:nth-child(1){border-color:rgba(243,160,198,.8);box-shadow:0 20px 46px rgba(243,160,198,.2),0 0 25px rgba(243,160,198,.28)}
.home .principle-item:nth-child(2){border-color:rgba(118,184,245,.82);box-shadow:0 20px 46px rgba(118,184,245,.2),0 0 25px rgba(118,184,245,.28)}
.home .principle-item:nth-child(3){border-color:rgba(143,224,194,.86);box-shadow:0 20px 46px rgba(143,224,194,.21),0 0 25px rgba(143,224,194,.3)}
.home .principle-item:nth-child(4){border-color:rgba(169,150,245,.84);box-shadow:0 20px 46px rgba(169,150,245,.21),0 0 25px rgba(169,150,245,.3)}
.home .principle-item:nth-child(5){border-color:rgba(243,160,198,.8);box-shadow:0 20px 46px rgba(243,160,198,.2),0 0 25px rgba(243,160,198,.28)}
.home .principle-item:hover,.home .foundation-pillar:hover{transform:translateY(-8px)}
.home .principle-item img{width:min(100%,180px);aspect-ratio:1;object-fit:contain;filter:drop-shadow(0 20px 28px rgba(15,55,95,.13))}
.home .principle-item h3{margin:22px 0 8px;font-size:clamp(22px,2.1vw,32px);font-weight:600}
.home .principle-item p{margin:0;color:#526276;line-height:1.7}
.home .connection-peak{min-height:80vh;display:flex;align-items:center;color:#fff;background:radial-gradient(circle at 50% 52%,#225c92 0,#123e6b 42%,#07182b 100%)}
.home .connection-peak .container{max-width:1120px;text-align:center}
.home .connection-peak h2{margin:48px auto 40px;font-family:"Noto Serif JP",serif;font-size:clamp(44px,6.8vw,96px);font-weight:500;line-height:1.35;text-wrap:balance}
.home .connection-peak p:last-child{max-width:800px;margin:auto;font-size:clamp(16px,1.45vw,21px);line-height:2.15;color:rgba(255,255,255,.8)}
.home .areas-stage{background:#fff}
.home .areas-stage .brand-section__head{width:100%;max-width:none}
.home .areas-stage .brand-section__head h2,.home .areas-stage .brand-section__head>p:last-child{width:100%;max-width:none;text-wrap:pretty}
.home .design-areas{display:grid;grid-template-columns:repeat(2,1fr);gap:30px;margin-top:78px}
.home .design-area{display:grid;grid-template-columns:40% 60%;align-items:center;min-height:330px;padding:30px;border:1px solid transparent;border-radius:30px;background:linear-gradient(135deg,rgba(255,255,255,.94),rgba(239,248,253,.76));transition:transform .45s ease,box-shadow .45s ease}
.home .design-area:nth-child(1){border-color:rgba(103,208,222,.84);box-shadow:0 24px 60px rgba(103,208,222,.2),0 0 34px rgba(103,208,222,.3)}
.home .design-area:nth-child(2){border-color:rgba(118,184,245,.84);box-shadow:0 24px 60px rgba(118,184,245,.2),0 0 34px rgba(118,184,245,.3)}
.home .design-area:nth-child(3){border-color:rgba(169,150,245,.84);box-shadow:0 24px 60px rgba(169,150,245,.2),0 0 34px rgba(169,150,245,.3)}
.home .design-area:nth-child(4){border-color:rgba(243,160,198,.84);box-shadow:0 24px 60px rgba(243,160,198,.2),0 0 34px rgba(243,160,198,.3)}
.home .design-area:hover{transform:translateY(-7px)}
.home .design-area img{width:100%;max-height:260px;object-fit:contain;filter:drop-shadow(0 18px 28px rgba(28,92,130,.18))}
.home .design-area>div{padding:18px 30px}
.home .design-area h3{margin:0 0 8px;font-size:clamp(22px,2vw,32px);font-weight:600;word-break:keep-all}
.home .design-area strong{display:block;color:#1e659b}
.home .design-area p{margin:18px 0 0;line-height:1.9;color:#526276}
.home .model-overview{max-width:1180px;margin:180px auto 40px;padding:72px 0 20px;border:0;border-radius:0;background:transparent;text-align:center;box-shadow:none}
.home .model-overview figcaption{margin:0 0 58px;font-size:clamp(23px,2.3vw,34px);font-weight:600;line-height:1.6;color:#123660;text-wrap:balance}
.home .model-overview figcaption span{display:block;margin-bottom:18px;color:#2479c8;font-size:12px;font-weight:800;letter-spacing:.18em}
.home .model-overview>a{display:block;text-decoration:none}
.home .model-overview img{display:block;width:100%;height:auto;border-radius:0;box-shadow:none}
.home .project-stories{background:#f3f7f9}
.home .project-stories .brand-section__head{width:100%;max-width:none}
.home .project-stories .brand-section__head h2{width:100%;max-width:none;text-wrap:pretty}
.home .project-story-list{display:grid;gap:90px;margin-top:80px}
.home .project-story{display:grid;grid-template-columns:minmax(0,68%) minmax(300px,32%);min-height:520px;color:#101820;text-decoration:none;border:1px solid transparent;background:#fff;box-shadow:0 28px 75px rgba(11,42,70,.1)}
.home .project-story:nth-child(1){border-color:rgba(143,224,194,.9);box-shadow:0 28px 75px rgba(48,148,116,.18),0 0 34px rgba(143,224,194,.38)}
.home .project-story:nth-child(2){border-color:rgba(118,184,245,.9);box-shadow:0 28px 75px rgba(36,121,200,.18),0 0 34px rgba(118,184,245,.38)}
.home .project-story:nth-child(3){border-color:rgba(243,160,198,.9);box-shadow:0 28px 75px rgba(217,79,140,.17),0 0 34px rgba(243,160,198,.38)}
.home .project-story:nth-child(even){grid-template-columns:minmax(300px,32%) minmax(0,68%)}
.home .project-story:nth-child(even) figure{order:2}
.home .project-story figure{margin:0;overflow:hidden}
.home .project-story figure img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .8s ease}
.home .project-story:hover figure img{transform:scale(1.035)}
.home .project-story>div{display:flex;flex-direction:column;justify-content:center;padding:clamp(42px,6vw,88px)}
.home .project-story>div{position:relative;background:#fff}
.home .project-story>div::before{content:"";position:absolute;inset:0 auto 0 0;width:5px;background:#67cfae}
.home .project-story:nth-child(2)>div::before{background:#5aa9ec}
.home .project-story:nth-child(3)>div::before{background:#eb78ad}
.home .project-story>div>span{font-size:13px;color:#2479c8;letter-spacing:.16em}
.home .project-story h3{margin:22px 0 18px;font-size:clamp(30px,3.2vw,52px);font-weight:600;line-height:1.15}
.home .project-story:nth-child(1) h3{color:#18765f}
.home .project-story:nth-child(2) h3{color:#176eb8}
.home .project-story:nth-child(3) h3{color:#c53c7a}
.home .project-story p{line-height:1.9;color:#33485a}
.home .project-story__subcopy{margin:0;color:#1d3142!important;font-weight:700}
.home .project-story__body{margin:18px 0 0;font-size:14px;line-height:1.85!important}
.home .project-story b{margin-top:30px;font-size:13px;color:#1265a5;letter-spacing:.06em}
.home .club-experience{background:radial-gradient(circle at 75% 40%,rgba(166,143,245,.24),transparent 38%),radial-gradient(circle at 20% 20%,rgba(103,208,222,.18),transparent 35%),#f7f8fc}
.home .club-experience__grid{display:grid;grid-template-columns:minmax(0,2fr) minmax(0,3fr);align-items:center;gap:clamp(45px,7vw,110px)}
.home .club-experience h2{margin:30px 0;font-size:clamp(42px,5.2vw,76px);line-height:1.22}
.home .club-experience p:last-child{line-height:2;color:#526276}
.home .club-experience__copy>p:not(.section-index){line-height:2;color:#526276}
.home .club-experience__link{align-items:center;gap:.45em;margin-top:30px}
.home .club-experience__link span{transition:transform .25s ease}
.home .club-experience__link:hover span{transform:translateX(4px)}
.home .club-experience figure{margin:0}
.home .club-experience figure img{display:block;width:100%;height:auto;object-fit:contain;filter:drop-shadow(0 35px 50px rgba(55,52,120,.18))}
.home .vision-section{padding:clamp(150px,15vw,240px) 0;background:#fff}
.home .vision-section h2{max-width:1100px;margin:40px auto;font-weight:500}
.home .vision-rationale{max-width:760px!important;margin-inline:auto!important;line-height:2!important}
.home .journal-section{background:#f6f7f9}
.home .journal-head h2{font-weight:600}
.home .journal-card__category{display:block;margin-top:18px;color:#2479c8;font-size:12px;font-weight:600;letter-spacing:.12em}
.home .journal-card time{display:block;margin-top:14px;color:#7a8793}
.home .eyebrow,.home .section-index{font-weight:600;letter-spacing:.18em}

@media (max-width:900px){
  .home .journey-intro,.home .foundation-stage,.home .principles-stage,.home .connection-peak,.home .areas-stage,.home .project-stories,.home .club-experience{padding:clamp(82px,20vw,120px) 0}
  .home .journey-intro__line{grid-template-columns:1fr 1fr;gap:26px;margin-top:60px;border-top:0}
  .home .journey-intro__line span{border-top:1px solid rgba(255,255,255,.28)}
  .home .foundation-pillars{grid-template-columns:1fr;gap:72px;margin-top:68px}
  .home .principle-stage{grid-template-columns:1fr 1fr;gap:44px 16px;margin-top:64px}
  .home .principle-item:last-child{grid-column:1/-1;max-width:50%;width:100%;margin:auto}
  .home .connection-peak{min-height:72vh}
  .home .design-areas{grid-template-columns:1fr}
  .home .design-area{grid-template-columns:38% 62%;min-height:250px;padding:18px}
  .home .design-area>div{padding:16px}
  .home .model-overview{width:100%;max-width:none;margin:120px auto 0;padding:54px 0 20px;border-radius:0}
  .home .model-overview figcaption{margin:0 auto 42px;padding:0 18px;font-size:clamp(21px,6vw,28px)}
  .home .model-overview>a{width:100%}
  .home .model-overview img{width:100%;border-radius:12px}
  .home .project-story-list{gap:42px}
  .home .project-story,.home .project-story:nth-child(even){grid-template-columns:1fr}
  .home .project-story:nth-child(even) figure{order:0}
  .home .project-story figure{aspect-ratio:3/2}
  .home .club-experience__grid{grid-template-columns:minmax(0,1fr)}
}
@media (max-width:560px){
  .home .journey-intro h2{font-size:clamp(36px,5vw,68px)}
  .home .principle-stage{grid-template-columns:1fr}
  .home .principle-item:last-child{grid-column:auto;max-width:none}
  .home .principle-item img{width:170px}
  .home .design-area{grid-template-columns:1fr;text-align:center}
  .home .design-area img{height:210px}
  .home .project-story h3{font-size:32px}
  .home .foundation-pillar,.home .principle-item{transition-delay:0s!important}
}
/* Public philosophy translated from NOMADOX's internal principles */
.philosophy-page{background:#fff;color:#111}
.philosophy-page .container{width:min(calc(100% - 40px),1200px);margin-inline:auto}
.philosophy-hero{display:grid;min-height:78svh;place-items:center;padding:160px 0;color:#fff;background:radial-gradient(circle at 75% 28%,rgba(36,121,200,.36),transparent 34%),linear-gradient(145deg,#07111f,#123e6b)}
.philosophy-hero .container{max-width:1080px;text-align:center}
.philosophy-hero .section-index{color:#67d4d8}
.philosophy-hero h1{margin:0;font-family:"Noto Serif JP",serif;font-size:clamp(48px,7vw,94px);font-weight:500;line-height:1.35;letter-spacing:-.04em}
.philosophy-hero p:last-child{max-width:760px;margin:42px auto 0;color:rgba(255,255,255,.8);font-size:clamp(17px,1.5vw,21px);line-height:2}
.philosophy-section{padding:clamp(120px,11vw,170px) 0;border-top:1px solid rgba(18,54,96,.08)}
.philosophy-heading{max-width:920px;margin-bottom:72px}
.philosophy-heading h2,.technology-people h2,.sustainability-bridge h2,.years-section h2{margin:0;font-size:clamp(38px,5vw,68px);font-weight:600;line-height:1.3;letter-spacing:-.035em}
.philosophy-heading>p:last-child{max-width:760px;margin:28px 0 0;color:#526276;font-size:17px;line-height:2}
.philosophy-purpose{background:#fff}
.philosophy-purpose__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.philosophy-purpose__grid>div{padding:34px 30px;border:1px solid transparent;border-top-width:3px;border-radius:20px;background:#fff;box-shadow:0 20px 54px rgba(18,54,96,.1)}
.philosophy-purpose__grid>div:nth-child(1){border-color:rgba(243,160,198,.72);background:linear-gradient(145deg,#fff 48%,rgba(243,160,198,.17));box-shadow:0 20px 54px rgba(222,74,142,.18),0 0 28px rgba(243,160,198,.22)}
.philosophy-purpose__grid>div:nth-child(2){border-color:rgba(118,184,245,.78);background:linear-gradient(145deg,#fff 48%,rgba(118,184,245,.18));box-shadow:0 20px 54px rgba(36,121,200,.18),0 0 28px rgba(118,184,245,.24)}
.philosophy-purpose__grid>div:nth-child(3){border-color:rgba(143,224,194,.82);background:linear-gradient(145deg,#fff 48%,rgba(143,224,194,.2));box-shadow:0 20px 54px rgba(49,164,123,.18),0 0 28px rgba(143,224,194,.26)}
.philosophy-purpose__grid>div:nth-child(1) span{color:#c62f72}
.philosophy-purpose__grid>div:nth-child(2) span{color:#176eb8}
.philosophy-purpose__grid>div:nth-child(3) span{color:#147b5b}
.philosophy-purpose__grid span{color:#2479c8;font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase}
.philosophy-purpose__grid p{margin:18px 0 0;line-height:1.9}
.philosophy-foundation{background:linear-gradient(145deg,#f6fbfd,#fbf7fb)}
.philosophy-model{width:min(100%,1120px);margin:0 auto}
.philosophy-model a{display:block}
.philosophy-model img{display:block;width:100%;height:auto;border-radius:24px;box-shadow:0 30px 80px rgba(18,54,96,.14)}
.philosophy-token-row{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:30px}
.philosophy-token-row--five{grid-template-columns:repeat(5,1fr);margin-top:22px}
.philosophy-token-row span{padding:26px 16px;border:1px solid rgba(36,121,200,.18);border-radius:18px;background:rgba(255,255,255,.82);color:#123660;font-weight:700;letter-spacing:.08em;text-align:center;box-shadow:0 18px 45px rgba(18,54,96,.08)}
.commitments-section{background:#fff}
.commitments-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.commitment-card{padding:42px 34px;border:1px solid rgba(36,121,200,.68);border-radius:26px;background:#fff;box-shadow:0 24px 65px rgba(36,121,200,.2),0 0 34px rgba(103,212,216,.25)}
.commitment-card>p{margin:0;color:#2479c8;font-size:12px;font-weight:700;letter-spacing:.15em}
.commitment-card h3{margin:30px 0 22px;font-size:clamp(25px,2.5vw,36px);font-weight:600;line-height:1.5}
.commitment-card div{color:#526276;line-height:2}
.commitment-card:nth-child(2){border-color:rgba(169,150,245,.76);box-shadow:0 24px 65px rgba(124,101,214,.2),0 0 34px rgba(169,150,245,.28)}
.commitment-card:nth-child(3){border-color:rgba(143,224,194,.82);box-shadow:0 24px 65px rgba(49,164,123,.2),0 0 34px rgba(143,224,194,.3)}
.technology-people{color:#fff;background:linear-gradient(135deg,#0b223e,#194f7c)}
.technology-people .section-index{color:#67d4d8}
.technology-people__grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.technology-people p:last-child{margin:30px 0 0;color:rgba(255,255,255,.78);line-height:2}
.technology-people img{display:block;width:100%;height:auto;object-fit:contain;filter:drop-shadow(0 28px 55px rgba(0,0,0,.2))}
.culture-section{background:#fff}
.culture-section .philosophy-heading{max-width:none}
.culture-section .philosophy-heading h2{width:100%;max-width:none}
.culture-integrity{max-width:820px;margin:0;padding:30px 34px;border-left:3px solid #76b8f5;background:#f5f8fb;color:#334b61;font-family:"Noto Serif JP",serif;font-size:20px;line-height:2}
.sustainability-bridge{position:relative;isolation:isolate;overflow:hidden;background:linear-gradient(135deg,#effaf6,#f4f9fd)}
.sustainability-bridge::before{content:"";position:absolute;z-index:0;top:50%;right:clamp(24px,8vw,140px);width:clamp(260px,34vw,520px);aspect-ratio:1;transform:translateY(-50%);background:url("../img/sdg_icon_wheel_3.png") center/contain no-repeat;opacity:.2;filter:saturate(.9);pointer-events:none}
.sustainability-bridge::after{content:"";position:absolute;z-index:0;inset:0;background:linear-gradient(90deg,rgba(239,250,246,.98) 0%,rgba(244,249,253,.9) 55%,rgba(244,249,253,.55) 100%);pointer-events:none}
.sustainability-bridge .container{position:relative;z-index:1;max-width:1000px;text-align:center}
.sustainability-bridge p:not(.section-index){max-width:720px;margin:30px auto;color:#526276;line-height:2}
.sustainability-bridge a{display:inline-flex;margin-top:18px;color:#176eb8;font-weight:700;text-decoration:none}
.years-section{padding-block:clamp(150px,15vw,220px);background:#fff;text-align:center}
.years-section .container{max-width:980px}
.years-section h2{font-family:"Noto Serif JP",serif;font-weight:500;font-size:clamp(48px,6.4vw,88px)}
.years-section p:last-child{max-width:760px;margin:42px auto 0;color:#526276;line-height:2}
.philosophy-vision{padding:clamp(150px,16vw,240px) 0;color:#fff;background:#123660;text-align:center}
.philosophy-vision p{margin:0;color:#8ddce8;font-weight:600}
.philosophy-vision span{display:block;margin:30px 0;color:rgba(255,255,255,.6);font-size:12px;letter-spacing:.13em}
.philosophy-vision h2{margin:0;font-family:"Noto Serif JP",serif;font-size:clamp(48px,6.5vw,88px);font-weight:500;line-height:1.5}
.home-belief-links{padding:64px 0;background:#f5f8fa}
.home-belief-links .container{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.home-belief-links a{display:flex;min-height:210px;padding:34px;flex-direction:column;border:1px solid rgba(118,184,245,.75);border-radius:22px;background:#fff;color:#111;text-decoration:none;box-shadow:0 20px 52px rgba(36,121,200,.17),0 0 30px rgba(118,184,245,.24)}
.home-belief-links a:nth-child(1){border-color:rgba(169,150,245,.82);box-shadow:0 20px 52px rgba(124,101,214,.19),0 0 32px rgba(169,150,245,.3)}
.home-belief-links a:nth-child(2){border-color:rgba(143,224,194,.86);box-shadow:0 20px 52px rgba(49,164,123,.19),0 0 32px rgba(143,224,194,.32)}
.home-belief-links span{color:#2479c8;font-size:11px;font-weight:700;letter-spacing:.15em}
.home-belief-links strong{margin:24px 0;font-size:clamp(21px,2.2vw,30px);font-weight:600;line-height:1.6}
.home-belief-links b{margin-top:auto;color:#176eb8;font-size:13px}
.project-value{text-align:center;background:linear-gradient(145deg,#f6fbfd,#fff)}
.project-value .kicker{color:#2479c8}
.project-value h2{margin:28px 0;font-family:"Noto Serif JP",serif;font-size:clamp(38px,5vw,68px);font-weight:500;line-height:1.45}
.project-value>p:last-child{max-width:720px;margin:0 auto;color:#526276;line-height:2}
.company-culture{text-align:center}
.company-culture h2{margin:30px 0;font-family:"Noto Serif JP",serif;font-size:clamp(38px,5vw,66px);font-weight:500;line-height:1.45}
.company-culture>p:not(.kicker){max-width:760px;margin:0 auto;color:#526276;line-height:2}
.company-culture blockquote{max-width:780px;margin:48px auto 0;padding:30px;border-left:3px solid #76b8f5;background:#f5f8fb;color:#334b61;font-size:18px;line-height:2;text-align:left}
.sdgs-philosophy-lead{max-width:820px;margin:22px auto 0;color:#526276;font-size:17px;line-height:2;text-align:center}

/* Community / NOMADOX CLUB */
.community-page{background:#fff;color:#111}
.community-page .container{width:min(calc(100% - 40px),1200px);margin-inline:auto}
.community-hero{padding:clamp(120px,12vw,180px) 0;background:linear-gradient(145deg,#f8fbff,#f9f6ff 55%,#f1fcf8)}
.community-hero__grid{display:grid;grid-template-columns:minmax(0,.92fr) minmax(420px,1.08fr);gap:clamp(48px,7vw,96px);align-items:center}
.community-hero h1,.community-copy h2,.community-principles h2,.community-cta h2{margin:0;font-size:clamp(38px,5vw,68px);font-weight:600;line-height:1.35;letter-spacing:-.035em;text-wrap:balance}
.community-hero p:last-child,.community-copy>p:last-child,.community-principles__grid>div>p:last-child{margin:30px 0 0;color:#526276;font-size:17px;line-height:2}
.community-hero figure{margin:0;padding:14px;border:1px solid rgba(169,150,245,.45);border-radius:32px;background:rgba(255,255,255,.72);box-shadow:0 28px 75px rgba(124,101,214,.17)}
.community-hero img{display:block;width:100%;height:auto;border-radius:22px}
.community-section{padding:clamp(110px,11vw,170px) 0;border-top:1px solid rgba(18,54,96,.08)}
.community-copy{width:100%;max-width:none}
.community-copy h2{width:100%;max-width:none;text-wrap:pretty}
.community-how{background:linear-gradient(145deg,#f7fbfd,#fff)}
.community-step-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px;margin-top:64px}
.community-step{min-width:0;height:auto;padding:36px 32px;border:1px solid rgba(36,121,200,.32);border-radius:24px;background:#fff;box-shadow:0 22px 55px rgba(18,54,96,.1)}
.community-step:nth-child(2){border-color:rgba(243,160,198,.58);box-shadow:0 22px 55px rgba(222,74,142,.13)}
.community-step:nth-child(3){border-color:rgba(143,224,194,.72);box-shadow:0 22px 55px rgba(49,164,123,.14)}
.community-step span{color:#176eb8;font-size:13px;font-weight:800;letter-spacing:.16em}
.community-step p{margin:24px 0 0;color:#526276;line-height:2}
.community-principles{background:linear-gradient(135deg,#0b223e,#194f7c);color:#fff}
.community-principles__grid{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);gap:80px;align-items:center}
.community-principles .section-index{color:#67d4d8}
.community-principles__grid>div>p:last-child{color:rgba(255,255,255,.8)}
.community-principle-tags{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.community-principle-tags article{display:flex;min-width:0;min-height:142px;padding:14px;align-items:center;justify-content:center;flex-direction:column;border:1px solid rgba(243,160,198,.82);border-radius:20px;background:rgba(255,255,255,.12);box-shadow:0 18px 42px rgba(243,160,198,.18),0 0 25px rgba(243,160,198,.28);backdrop-filter:blur(12px)}
.community-principle-tags article:nth-child(2){border-color:rgba(118,184,245,.86);box-shadow:0 18px 42px rgba(118,184,245,.2),0 0 25px rgba(118,184,245,.3)}
.community-principle-tags article:nth-child(3){border-color:rgba(143,224,194,.9);box-shadow:0 18px 42px rgba(143,224,194,.21),0 0 25px rgba(143,224,194,.32)}
.community-principle-tags article:nth-child(4){border-color:rgba(169,150,245,.88);box-shadow:0 18px 42px rgba(169,150,245,.21),0 0 25px rgba(169,150,245,.32)}
.community-principle-tags article:nth-child(5){grid-column:1/-1;border-color:rgba(243,160,198,.82);box-shadow:0 18px 42px rgba(243,160,198,.18),0 0 25px rgba(243,160,198,.28)}
.community-principle-tags img{display:block;width:92px;height:72px;object-fit:contain;filter:drop-shadow(0 10px 18px rgba(0,0,0,.2))}
.community-principle-tags span{margin-top:8px;color:#fff;font-size:13px;font-weight:800;letter-spacing:.1em;text-align:center}
.community-cta{padding:clamp(130px,14vw,210px) 0;background:#123660;color:#fff;text-align:center}
.community-cta .section-index{color:#8ddce8}
.community-cta p:not(.section-index){max-width:720px;margin:32px auto 40px;color:rgba(255,255,255,.78);font-size:17px;line-height:2}
@media(max-width:900px){
  .philosophy-hero{min-height:68svh;padding:120px 0}
  .philosophy-section{padding:90px 0}
  .philosophy-purpose__grid,.commitments-grid,.technology-people__grid,.home-belief-links .container{grid-template-columns:1fr}
  .philosophy-token-row--five{grid-template-columns:repeat(2,1fr)}
  .philosophy-token-row--five span:last-child{grid-column:1/-1}
  .technology-people__grid{gap:50px}
  .home-belief-links{padding:46px 0}
  .community-hero__grid,.community-principles__grid{grid-template-columns:1fr;gap:50px}
  .community-step-grid{grid-template-columns:1fr}
}
@media(max-width:560px){
  .philosophy-page .container{width:calc(100% - 32px)}
  .philosophy-token-row{grid-template-columns:1fr}
  .philosophy-token-row--five{grid-template-columns:1fr}
  .philosophy-token-row--five span:last-child{grid-column:auto}
  .commitment-card{padding:34px 26px}
  .philosophy-vision span{line-height:2}
  .community-page .container{width:calc(100% - 32px)}
  .community-hero{padding:100px 0 80px}
  .community-hero figure{padding:8px;border-radius:20px}
  .community-hero img{border-radius:14px}
  .community-principle-tags{grid-template-columns:1fr}
  .community-principle-tags article:nth-child(5){grid-column:auto}
}

.footer-social{
  margin-top: 12px;
  display: grid;
  gap: 8px;
}
.social-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255,255,255,.95);
  font-weight: 700;
}
.social-link img{
  width: 16px;
  height: 16px;
  object-fit: cover;
  display: block;
}

.entry-content p{ margin: 0 0 14px; }
.entry-content h2{ margin: 28px 0 10px; }
.entry-content h3{ margin: 22px 0 10px; }

/* =========================
   1) 固定背景をもっとクリアに
   ========================= */

/* 背景画像のフィルターを弱めて “そのまま見せる” */
body::before{
  filter: none;                 /* 既存のsaturate/contrastを無効化 */
  opacity: 1;                   /* 念のため */
}

/* 背景の白いグラデーションベールを薄くする（クリア化） */
body::after{
  background: linear-gradient(
    180deg,
    rgba(246,241,232,.04) 0%,
    rgba(246,241,232,.30) 40%,
    rgba(246,241,232,.70) 85%,
    rgba(246,241,232,1) 100%
  );
}

/* =========================
   2) ヘッダー直下のスペースを消す
   ========================= */

/* main の上余白をなくして、ヒーローを最上部へ */
main{
  padding-top: 0 !important;    /* 既存の 34px を打ち消し */
}

/* ヒーローの上パディングも消す（ヘッダー直下にぴったり） */
.hero{
  padding-top: 0 !important;
  margin-top: 0 !important;
  min-height: calc(100svh - 70px); /* ヘッダー分だけ差し引き（必要なら調整） */
}

/* ヘッダーの下線余白が気になる場合（任意） */
.site-header{
  margin-bottom: 0;
}

/* =========================
   3) ヒーローカードを青系で読みやすく
   ========================= */

/* カード自体を “青みのガラス” に */
.hero-card{
  background: rgba(8, 35, 64, .55) !important;  /* 濃い青系 */
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 34px 120px rgba(0,0,0,.40);
}

/* 文字を「薄い白」→「青系でクッキリ」に */
.hero-inner{
  color: #EAF4FF !important;  /* 青みがかった白 */
}

.hero h1{
  color: #FFFFFF !important;
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}

.hero p{
  color: rgba(234, 244, 255, .92) !important;
  text-shadow: 0 10px 26px rgba(0,0,0,.40);
}

/* ボタンも青系に寄せる（primaryを濃い青、通常を淡い青） */
.btn{
  border: 1px solid rgba(234,244,255,.28);
  background: rgba(13, 80, 140, .18);
  color: #EAF4FF;
}

.btn:hover{
  background: rgba(13, 80, 140, .26);
}

.btn.primary{
  border-color: rgba(64, 170, 255, .55);
  background: rgba(25, 122, 210, .45);
}

.btn.primary:hover{
  background: rgba(25, 122, 210, .58);
}

/* =========================
   A) 背景画像をクリアに（白ベールを薄く）
   ※背景オーバーレイ候補を全部叩く
   ========================= */

/* まず「背景の上に乗ってる白い層」を薄くする */
body::after,
.bg-overlay,
.page-overlay,
.hero::before,
.hero::after{
  opacity: .10 !important;
}

/* 背景画像がくすむ原因のfilterを無効化（背景側候補を全部叩く） */
body::before,
.bg-fixed,
.page-bg,
.hero-bg,
.hero .bg,
.hero picture,
.hero img{
  filter: none !important;
}

/* 画像が “薄い” のは opacity が落ちてるケースがあるので戻す */
.bg-fixed,
.page-bg,
.hero-bg{
  opacity: 1 !important;
}

/* =========================
   B) ヘッダー直下の余白をゼロに（最上部に詰める）
   ========================= */

main{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.hero{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* header が sticky で下に余白を作ってる場合の保険 */
.site-header + main .hero{
  padding-top: 0 !important;
}

/* =========================
   C) ヒーローカード：文字が薄い → 青系でくっきり
   ========================= */

.hero-card{
  background: rgba(6, 40, 74, .62) !important; /* 深い青 */
  border: 1px solid rgba(255,255,255,.22) !important;
  box-shadow: 0 30px 90px rgba(0,0,0,.35) !important;
}

.hero-inner,
.hero-inner p{
  color: rgba(234, 245, 255, .96) !important;
  text-shadow: 0 10px 26px rgba(0,0,0,.35) !important;
}

.hero-inner h1{
  color: #ffffff !important;
  text-shadow: 0 14px 40px rgba(0,0,0,.45) !important;
}

/* ボタンも青系に寄せて可読性UP */
.hero .btn{
  color: #EAF5FF !important;
  border-color: rgba(234,245,255,.30) !important;
  background: rgba(12, 92, 160, .18) !important;
}

.hero .btn.primary{
  background: rgba(12, 92, 160, .45) !important;
  border-color: rgba(80, 185, 255, .55) !important;
}

/* =========================
   A) 背景画像をクリアに（白ベールを薄く）
   ※背景オーバーレイ候補を全部叩く
   ========================= */

/* まず「背景の上に乗ってる白い層」を薄くする */
body::after,
.bg-overlay,
.page-overlay,
.hero::before,
.hero::after{
  opacity: .10 !important;
}

/* 背景画像がくすむ原因のfilterを無効化（背景側候補を全部叩く） */
body::before,
.bg-fixed,
.page-bg,
.hero-bg,
.hero .bg,
.hero picture,
.hero img{
  filter: none !important;
}

/* 画像が “薄い” のは opacity が落ちてるケースがあるので戻す */
.bg-fixed,
.page-bg,
.hero-bg{
  opacity: 1 !important;
}

/* =========================
   B) ヘッダー直下の余白をゼロに（最上部に詰める）
   ========================= */

main{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.hero{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* header が sticky で下に余白を作ってる場合の保険 */
.site-header + main .hero{
  padding-top: 0 !important;
}

/* =========================
   C) ヒーローカード：文字が薄い → 青系でくっきり
   ========================= */

.hero-card{
  background: rgba(6, 40, 74, .62) !important; /* 深い青 */
  border: 1px solid rgba(255,255,255,.22) !important;
  box-shadow: 0 30px 90px rgba(0,0,0,.35) !important;
}

.hero-inner,
.hero-inner p{
  color: rgba(234, 245, 255, .96) !important;
  text-shadow: 0 10px 26px rgba(0,0,0,.35) !important;
}

.hero-inner h1{
  color: #ffffff !important;
  text-shadow: 0 14px 40px rgba(0,0,0,.45) !important;
}

/* ボタンも青系に寄せて可読性UP */
.hero .btn{
  color: #EAF5FF !important;
  border-color: rgba(234,245,255,.30) !important;
  background: rgba(12, 92, 160, .18) !important;
}

.hero .btn.primary{
  background: rgba(12, 92, 160, .45) !important;
  border-color: rgba(80, 185, 255, .55) !important;
}

/* =========================
   背景（ヒーロー）をヘッダー直下に詰める
   ========================= */

body{
  margin-top: 0 !important;
}

/* WPが admin-bar やテーマ側で上余白を入れているケースを潰す */
main, .site-main{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* hero自体の上余白をゼロに */
.hero{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 背景要素（テーマによって名前が違うので候補をまとめて叩く） */
.bg-fixed,
.page-bg,
.hero-bg,
.hero .bg,
.hero picture,
.hero img{
  top: 0 !important;
  margin-top: 0 !important;
}
/* ヘッダー直下の余白を殺す（保険） */
.site-header{
  margin-bottom: 0 !important;
}
.site-header + main,
.site-header + .site-main{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =========================
   モバイル：ハンバーガー（三本線）化
   ========================= */
@media (max-width: 1024px){
  /* 「メニュー」文字を消す（ボタン・リンク両対応） */
  .menu-toggle,
  .mobile-menu-toggle,
  .nav-toggle{
    font-size: 0 !important;
    letter-spacing: 0 !important;
  }

  /* 既存アイコンが無い場合に三本線を描画 */
  .menu-toggle::before,
  .mobile-menu-toggle::before,
  .nav-toggle::before{
    content: "" !important;
    display: block !important;
    width: 22px !important;
    height: 16px !important;
    background:
      linear-gradient(rgba(10, 40, 80, .90), rgba(10, 40, 80, .90)) 0 0 / 22px 2px no-repeat,
      linear-gradient(rgba(10, 40, 80, .90), rgba(10, 40, 80, .90)) 0 7px / 22px 2px no-repeat,
      linear-gradient(rgba(10, 40, 80, .90), rgba(10, 40, 80, .90)) 0 14px / 22px 2px no-repeat !important;
    border-radius: 2px !important;
    margin: 0 auto !important;
  }

  /* 押しやすいサイズ */
  .menu-toggle,
  .mobile-menu-toggle,
  .nav-toggle{
    width: 44px !important;
    height: 44px !important;
    display: grid !important;
    place-items: center !important;
    line-height: 0 !important;
    padding: 0 !important;
  }
}

/* =========================
   3本柱カード：画像を大きく（coverでトリミング）
   ========================= */

.pillars .card img,
.pillars .project-card img,
.business-cards .card img{
  width: 100% !important;
  height: 320px !important;      /* PCの見栄え */
  object-fit: cover !important;
  border-radius: 18px !important;
  display: block !important;
}

@media (max-width: 768px){
  .pillars .card img,
  .pillars .project-card img,
  .business-cards .card img{
    height: 220px !important;    /* スマホ */
  }
}

/* =========================
   heroをヘッダー直下に完全密着
   ========================= */

main#content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* header直下の隙間を完全削除 */
.site-header + main,
.site-header + #content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* もしbodyに余白がある場合の保険 */
body {
  margin: 0 !important;
}

/* ===== 2026-02 homepage/header updates ===== */

/* ヘッダー高さを一般的なサイズへ */
.site-header{
  min-height: 64px;
}

.header-inner{
  min-height: 64px;
  padding: 8px 0;
}

@media (max-width: 1024px){
  .site-header,
  .header-inner{
    min-height: 60px;
  }
}

@media (max-width: 768px){
  .site-header,
  .header-inner{
    min-height: 56px;
  }
  .header-inner{
    padding: 6px 0;
  }
}

/* ロゴサイズ最適化: PC / Pad / Mobile */
.brand-logo{
  width: 164px;
  height: auto;
  max-width: 100%;
  display: block;
}

@media (max-width: 1024px){
  .brand-logo{
    width: 142px;
  }
}

@media (max-width: 768px){
  .brand-logo{
    width: 118px;
  }
}

/* プロジェクト画像: カード幅に合わせて縮小（見切れ防止） */
.pillar-thumb{
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  margin: 0 0 14px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.10);
}

@media (max-width: 1024px){
  .pillar-thumb{
    max-height: 156px;
  }
}

@media (max-width: 768px){
  .pillar-thumb{
    max-height: 132px;
  }
}

/* =========================
   A) 背景画像をクリアに（白ベールを薄く）
   ※ホーム画面で確実に当たるよう .home を付与
   ========================= */
.home .bg-overlay,
.home .page-overlay,
.home .hero::before,
.home .hero::after,
body.home::after{
  opacity: .10 !important;
}

.home .bg-fixed,
.home .page-bg,
.home .hero-bg,
.home .hero .bg,
.home .hero picture,
.home .hero img,
body.home::before{
  filter: none !important;
}

.home .bg-fixed,
.home .page-bg,
.home .hero-bg{
  opacity: 1 !important;
}

/* =========================
   B) ヘッダー直下の余白をゼロに（最上部に詰める）
   ※ホーム画面で確実に当たるよう .home を付与
   ========================= */
.home main,
.home main#content,
body.home main#content{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.home .hero,
body.home .hero{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.home .site-header + main .hero,
.home .site-header + #content .hero,
body.home .site-header + main .hero{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ヘッダー直下から背景を開始 */
body.home{
  margin-top: 0 !important;
}

body.home main#content{
  display: block;
}

/* =========================
   C) ヒーローカード：文字が薄い → 青系でくっきり
   ※ホーム画面で確実に当たるよう .home を付与
   ========================= */
.home .hero-card,
body.home .hero-card{
  background: rgba(6, 40, 74, .62) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  box-shadow: 0 30px 90px rgba(0,0,0,.35) !important;
}

.home .hero-inner,
.home .hero-inner p,
body.home .hero-inner,
body.home .hero-inner p{
  color: rgba(234, 245, 255, .96) !important;
  text-shadow: 0 10px 26px rgba(0,0,0,.35) !important;
}

.home .hero-inner h1,
body.home .hero-inner h1{
  color: #ffffff !important;
  text-shadow: 0 14px 40px rgba(0,0,0,.45) !important;
}

.home .hero .btn,
body.home .hero .btn{
  color: #EAF5FF !important;
  border-color: rgba(234,245,255,.30) !important;
  background: rgba(12, 92, 160, .18) !important;
}

.home .hero .btn.primary,
body.home .hero .btn.primary{
  background: rgba(12, 92, 160, .45) !important;
  border-color: rgba(80, 185, 255, .55) !important;
}

/* ===== homepage final overrides (2026-02-15) ===== */

/* 1) header: dark palette to match black logo background */
.site-header{
  background: rgba(12, 16, 24, .90) !important;
  border-bottom: 1px solid rgba(255,255,255,.12) !important;
  backdrop-filter: blur(10px);
}

.nav a{
  color: rgba(238, 243, 250, .92) !important;
}

.nav a:hover{
  background: rgba(255,255,255,.10) !important;
  color: #ffffff !important;
}

.cta{
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.26) !important;
  color: #f5f9ff !important;
}

/* 2) hero heading and paragraph wrapping */
.home .hero h1,
body.home .hero h1{
  font-size: clamp(24px, 3vw, 42px) !important;
  white-space: nowrap;
  line-height: 1.2;
  letter-spacing: 0;
}

.home .hero p,
body.home .hero p{
  width: 100% !important;
  max-width: 100% !important;
  white-space: normal !important;
}

/* 3) project image width fits card fully */
.pillar-thumb{
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  object-fit: cover;
}

/* 4) reduce visible white gap at very top of home background */
body.home{
  background: #9ab7d1 !important;
}

body.home::after{
  background: linear-gradient(
    180deg,
    rgba(154,183,209,.32) 0%,
    rgba(154,183,209,.18) 22%,
    rgba(246,241,232,.58) 68%,
    rgba(246,241,232,1) 100%
  ) !important;
}

/* 5) hero card: taller + wider text spacing */
.home .hero-card,
body.home .hero-card{
  min-height: 560px !important;
  display: flex;
  align-items: center;
}

.home .hero-inner,
body.home .hero-inner{
  width: 100%;
  padding: 88px 72px !important;
}

.home .hero h1,
body.home .hero h1{
  line-height: 1.5 !important;
  margin-bottom: 20px !important;
}

.home .hero p,
body.home .hero p{
  line-height: 2 !important;
  margin-bottom: 28px !important;
}

@media (max-width: 900px){
  .home .hero-card,
  body.home .hero-card{
    min-height: 500px !important;
  }
  .home .hero-inner,
  body.home .hero-inner{
    padding: 64px 28px !important;
  }
}

/* 6) pillars controls: dots pagination only */
.pillars-controls{
  justify-content: center !important;
}

.pillars-controls .pillars-btn{
  display: none !important;
}

.pillars-controls .swiper-pagination{
  position: static !important;
  width: auto !important;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}

.pillars-controls .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  opacity: 1;
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(255,255,255,.7);
}

.pillars-controls .swiper-pagination-bullet-active{
  background: #ffffff;
  transform: scale(1.12);
}

/* ===== contact links + mobile hero adjustments ===== */
.ext-link-icon{
  font-size: .9em;
  line-height: 1;
  margin-left: 4px;
  display: inline-block;
}

.ext-link::after{
  content: "↗";
  font-size: .85em;
  margin-left: 6px;
  vertical-align: baseline;
}

/* Header gradient: left black -> right current dark tone */
.site-header{
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.96) 0%,
    rgba(7,10,16,.94) 34%,
    rgba(12,16,24,.90) 72%,
    rgba(12,16,24,.82) 100%
  ) !important;
}

/* Philosophy card title a bit larger */
.home #philosophy .panel h3{
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.35;
}

/* Mobile: prevent clipping by allowing wrapping and smaller sizing */
@media (max-width: 768px){
  .home .hero-card,
  body.home .hero-card{
    min-height: auto !important;
  }

  .home .hero-inner,
  body.home .hero-inner{
    padding: 36px 18px !important;
  }

  .home .hero h1,
  body.home .hero h1{
    font-size: clamp(22px, 7vw, 30px) !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
    line-height: 1.4 !important;
  }

  .home .hero p,
  body.home .hero p{
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    line-height: 1.8 !important;
  }

  /* Mobile buttons: stack vertically */
  .home .hero-actions,
  body.home .hero-actions{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

.home .hero-actions .btn,
  body.home .hero-actions .btn{
    width: 100%;
    justify-content: center;
  }
}

/* CEO image and marker underline */
.page-template-page-ceo-message .ceo-photo:not(.ceo-photo-interactive){
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
}

.page-template-page-ceo-message .ceo-photo:not(.ceo-photo-interactive) img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-template-page-ceo-message .entry-content strong{
  background-image: linear-gradient(transparent 62%, rgba(120, 205, 255, .88) 62%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 .08em;
}

/* ===== 2026-02-15 final overrides ===== */

/* Use image icon for external links */
.ext-link::after{
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 6px;
  display: inline-block;
  background-image: url("../img/external_link_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: text-bottom;
  filter: brightness(0) invert(1);
}

/* Header left color sampled from logo background: RGB(17,17,17) */
.site-header{
  background: linear-gradient(
    90deg,
    #111111 0%,
    #111111 24%,
    rgba(18, 34, 62, .92) 62%,
    rgba(32, 86, 178, .90) 100%
  ) !important;
}

/* Hero image inside card */
.home .hero-inline-image,
body.home .hero-inline-image{
  width: 100%;
  max-width: 780px;
  height: auto;
  display: block;
  margin: 0 auto 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.20);
}

@media (max-width: 768px){
  .home .hero-inline-image,
  body.home .hero-inline-image{
    margin-bottom: 14px;
    border-radius: 12px;
  }
}

/* Hero card as background image with text overlay */
.home .hero{
  padding-top: 28px !important;
}

.home .hero-card,
body.home .hero-card{
  background-image: url("../img/hero-image.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
}

.home .hero-card::before,
body.home .hero-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,20,36,.35) 0%, rgba(8,20,36,.58) 100%);
  z-index: 0;
}

.home .hero-inner,
body.home .hero-inner{
  position: relative;
  z-index: 1;
  background: transparent !important;
  backdrop-filter: none;
}

@media (max-width: 768px){
  .home .hero{
    padding-top: 18px !important;
  }
}

/* Topics yearly archive cards: increase contrast */
.page-template-page-topics .related-card{
  background: rgba(8, 20, 36, .96);
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.96);
}

.page-template-page-topics .related-card p{
  color: rgba(255,255,255,.86);
}

.page-template-page-topics .posts-grid .post-card img{
  height: clamp(320px, 42vh, 520px);
  object-fit: contain;
  background: rgba(244, 247, 251, .92);
}

.page-template-page-topics .posts-grid .post-card .pc-body{
  padding: 14px 16px 16px;
}

/* Business hero: avoid forced line break on desktop */
.page-template-page-business .page-hero p{
  white-space: nowrap;
}

@media (max-width: 900px){
  .page-template-page-business .page-hero p{
    white-space: normal;
  }
}

/* Ensure CEO marker underline also applies on template php body class */
.page-template-page-ceo-message-php .entry-content strong{
  background-image: linear-gradient(transparent 62%, rgba(120, 205, 255, .88) 62%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 .08em;
}

/* Company page content alignment */
.page-template-page-company .entry-content,
.page-template-page-company-php .entry-content,
.page.page-slug-company .entry-content{
  text-align: left !important;
}

/* Mobile/Pad menu contrast */
@media (max-width: 1024px){
  .nav{
    background: rgba(12,16,24,.96) !important;
    border-color: rgba(255,255,255,.20) !important;
  }
  .nav a{
    color: rgba(242,246,255,.96) !important;
  }
  .nav a:hover{
    background: rgba(255,255,255,.14) !important;
    color: #ffffff !important;
  }
}

/* Home hero redesign */
.home .hero{
  padding-top: 32px !important;
}

.home .hero-card,
body.home .hero-card{
  border-radius: 28px !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  box-shadow:
    0 40px 100px rgba(0,0,0,.36),
    0 6px 24px rgba(0,0,0,.24) !important;
  isolation: isolate;
}

.home .hero-card::before,
body.home .hero-card::before{
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(47,125,255,.30) 0%, rgba(47,125,255,0) 55%),
    radial-gradient(120% 100% at 100% 100%, rgba(28,204,169,.20) 0%, rgba(28,204,169,0) 60%),
    linear-gradient(180deg, rgba(6,14,26,.44) 0%, rgba(6,14,26,.70) 100%) !important;
}

.home .hero-inner,
body.home .hero-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 82px 72px !important;
}

.home .hero-badges{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.home .hero-badges span{
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.10);
  color: rgba(245,250,255,.94);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.home .hero h1,
body.home .hero h1{
  text-wrap: balance;
  letter-spacing: .01em;
  margin-bottom: 18px !important;
}

.home .hero p,
body.home .hero p{
  max-width: 72ch !important;
  margin-inline: auto;
  color: rgba(240,247,255,.94) !important;
}

@media (max-width: 768px){
  .home .hero{
    padding-top: 20px !important;
  }
  .home .hero-inner,
  body.home .hero-inner{
    padding: 34px 18px !important;
  }
  .home .hero-badges{
    margin-bottom: 12px;
  }
}

/* Disable hero background image and badges per latest request */
.home .hero-card,
body.home .hero-card{
  background-image: none !important;
}

.home .hero-badges,
body.home .hero-badges{
  display: none !important;
}

/* Home philosophy card: match width and use background image */
.home #philosophy .panel{
  max-width: none;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image: url("../img/hirosophy-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255,255,255,.24);
}

.home #philosophy .panel::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,14,26,.48) 0%, rgba(6,14,26,.62) 100%);
  z-index: 0;
}

.home #philosophy .panel > *{
  position: relative;
  z-index: 1;
  color: rgba(245,250,255,.95);
}

/* Use attached hero image file */
.home .hero-card,
body.home .hero-card{
  background-image: url("../img/hero-image.jpg") !important;
}

/* Auto-compact nav when text wrapping/overflow is detected */
body.nav-compact .nav-toggle{
  display: inline-flex !important;
  font-size: 0 !important;
  letter-spacing: 0 !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  line-height: 0 !important;
  place-items: center !important;
}

body.nav-compact .nav-toggle::before{
  content: "" !important;
  display: block !important;
  width: 22px !important;
  height: 16px !important;
  background:
    linear-gradient(rgba(10, 40, 80, .90), rgba(10, 40, 80, .90)) 0 0 / 22px 2px no-repeat,
    linear-gradient(rgba(10, 40, 80, .90), rgba(10, 40, 80, .90)) 0 7px / 22px 2px no-repeat,
    linear-gradient(rgba(10, 40, 80, .90), rgba(10, 40, 80, .90)) 0 14px / 22px 2px no-repeat !important;
  margin: 0 auto !important;
}

body.nav-compact .nav{
  position: fixed;
  top: 78px;
  right: auto;
  bottom: auto;
  left: 50%;
  width: min(520px, calc(100% - 28px));
  background: rgba(12,16,24,.96) !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translate(-50%, -10px);
  opacity: 0;
  pointer-events: none;
  max-height: calc(100vh - 92px);
  max-height: calc(100dvh - 92px - env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: .18s ease;
}

body.nav-compact .nav.is-open{
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

body.nav-compact .nav ul{
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

body.nav-compact .nav a{
  display: block;
  padding: 12px 12px;
  text-align: center;
  color: rgba(242,246,255,.96) !important;
}

body.nav-compact .nav .lang-switcher-wrap{
  width: 100%;
  margin: 0;
  padding: 12px;
  justify-content: center;
}

body.nav-compact .nav .cta{
  width: min(100%, 320px);
  justify-content: center;
  text-align: center;
}

/* ===== latest tweak: larger logo + remove white icon background feel ===== */
.brand-logo{
  width: 220px !important;
  height: auto;
}

@media (max-width: 1024px){
  .brand-logo{
    width: 188px !important;
  }
}

@media (max-width: 768px){
  .brand-logo{
    width: 156px !important;
  }
}

.footer-social .social-link img{
  width: 20px;
  height: 20px;
  background: transparent !important;
}

.footer-social .social-link img.icon-instagram{
  border-radius: 5px;
}

/* Header contact external-link icon (desktop only) */
.ext-link-icon-header{
  width: 13px;
  height: 13px;
  object-fit: contain;
  display: none;
  margin-left: 6px;
  filter: brightness(0) invert(1);
}
@media (min-width: 901px){
  .ext-link-icon-header{ display: inline-block; }
}

/* Header menu: keep single-line on desktop and add marker underline */
@media (min-width: 1025px){
  .site-header .header-inner{
    gap: 10px !important;
  }

  .site-header .brand-logo{
    width: 186px !important;
  }

  .site-header .nav{
    gap: 10px;
    min-width: 0;
  }

  .site-header .nav ul{
    gap: 6px;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .site-header .nav li{
    white-space: nowrap;
    min-width: max-content;
  }

  .site-header .nav a{
    position: relative;
    isolation: isolate;
    white-space: nowrap;
    font-size: 13px;
    line-height: 1.15;
    padding: 8px 8px 10px;
    border-radius: 10px;
  }

  .site-header .nav a::after{
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 4px;
    height: 6px;
    border-radius: 999px;
    background: rgba(120, 205, 255, .78);
    z-index: -1;
  }

  .site-header .nav a.cta::after,
  .site-header .nav a.ext-link::after{
    content: none !important;
  }

  .site-header .lang-label{
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 700;
    color: rgba(238, 243, 250, .92);
    background: none;
    padding: 0;
    transform: translateY(1px);
  }
}

/* Hamburger hover cursor */
.nav-toggle,
.menu-toggle,
.mobile-menu-toggle{
  cursor: pointer !important;
}

/* Topics yearly archive page layout */
.archive-hero{
  margin-bottom: 16px;
}

.breadcrumbs{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  color: rgba(21,37,42,.72);
  font-weight: 700;
  font-size: 13px;
}

.breadcrumbs a{
  color: rgba(21,37,42,.86);
  text-decoration: none;
}

.breadcrumbs a:hover{
  text-decoration: underline;
}

.business-breadcrumbs{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8px 0 0 18px;
  justify-content: flex-start;
}

.archive-year-links{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.archive-year-links a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(21,37,42,.16);
  background: rgba(255,255,255,.78);
  color: rgba(21,37,42,.9);
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
}

.archive-year-links a:hover{
  background: rgba(255,255,255,.92);
}

.archive-year-links a.is-current{
  background: rgba(15,123,132,.18);
  border-color: rgba(15,123,132,.36);
}

.archive-posts-grid{
  margin-top: 12px;
}

/* Homepage section titles: larger */
.home #philosophy .section-title,
.home #pillars .section-title,
.home #latest .section-title{
  font-size: clamp(34px, 5vw, 56px) !important;
  line-height: 1.18;
}

/* Project slider dots: blue for higher visibility */
.pillars-controls .swiper-pagination-bullet{
  background: rgba(48, 138, 255, .55) !important;
  border-color: rgba(35, 120, 235, .92) !important;
}

.pillars-controls .swiper-pagination-bullet-active{
  background: #1f7fe8 !important;
  border-color: #1f7fe8 !important;
  box-shadow: 0 0 0 4px rgba(31, 127, 232, .22);
}

/* Topics cards: publish date */
.post-card .post-date{
  margin: 2px 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  color: rgba(21,37,42,.58);
}

/* SDGs declaration cards */
.sdgs-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 900px){
  .sdgs-grid{
    grid-template-columns: 1fr;
  }
}

.sdgs-item-card{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(21,37,42,.12);
  border-radius: 18px;
  padding: 16px;
}

.sdgs-item-head{
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 12px;
}

.sdgs-item-head img{
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.sdgs-num{
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  color: rgba(21,37,42,.56);
}

.sdgs-item-card h3{
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  color: rgba(21,37,42,.92);
}

.sdgs-item-text{
  margin: 12px 0 0;
  color: rgba(21,37,42,.76);
}

.sdgs-goal{
  margin: 12px 0 8px;
  color: rgba(21,37,42,.82);
  font-weight: 700;
}

.sdgs-actions{
  margin: 0;
  padding: 0;
  list-style: none;
}

.sdgs-actions li{
  position: relative;
  margin: 8px 0 0;
  padding-left: 1.2em;
  color: rgba(21,37,42,.76);
  line-height: 1.7;
}

.sdgs-actions li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f7fe8;
  font-weight: 900;
}

/* SDGs page contrast: blue container background */
.page-template-page-sdgs .page-card,
.page-template-page-sdgs-php .page-card{
  background: rgba(198, 220, 247, .58);
  border-color: rgba(46, 108, 182, .26);
}

.page-template-page-sdgs .sdgs-item-card,
.page-template-page-sdgs-php .sdgs-item-card{
  background: rgba(255,255,255,.92);
  border-color: rgba(21,37,42,.12);
}

/* Company page: section headings with blue marker underline */
.page-template-page-company .entry-content h3,
.page-template-page-company-php .entry-content h3{
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
  background-image: linear-gradient(transparent 62%, rgba(120, 205, 255, .88) 62%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 .08em .02em;
  display: inline-block;
}

/* Company page: sub copy in bold (no marker, indented one level) */
.page-template-page-company .entry-content .company-subcopy,
.page-template-page-company-php .entry-content .company-subcopy{
  display: inline-block;
  margin-left: 1em;
  font-size: 1em;
  line-height: 1.7;
  background: none !important;
  padding: 0;
}

.page-template-page-company .entry-content .company-meta-title,
.page-template-page-company-php .entry-content .company-meta-title{
  display: inline-block;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
  background-image: linear-gradient(transparent 62%, rgba(120, 205, 255, .88) 62%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 .08em .02em;
}

/* Mobile: keep fixed background but smooth rendering */
@media (max-width: 900px), (hover: none) and (pointer: coarse){
  body::before,
  body::after{
    position: fixed !important;
    inset: 0;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
  }

  body::before{
    background-attachment: scroll !important;
    background-position: center top !important;
  }
}

/* Home section headings: blue marker underline */
.home #philosophy .section-title,
.home #pillars .section-title,
.home #latest .section-title{
  display: block !important;
  width: fit-content;
  margin: 0 auto 22px !important;
  text-align: center !important;
  background-image: linear-gradient(transparent 62%, rgba(120, 205, 255, .88) 62%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 .12em .02em;
}

/* Home lead text: improve visibility */
.home #philosophy .lead,
.home #pillars .lead,
.home #latest .lead{
  color: rgba(15, 34, 56, .92);
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}

/* i18n language switcher */
.lang-switcher-wrap{
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin-left: 6px;
}

.lang-label{
  font-size: 16px;
  font-weight: 700;
  color: rgba(242,246,255,.96);
}

.lang-switcher{
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: #123660;
  color: #fff;
  padding: 8px 12px;
  font-weight: 700;
  color-scheme: light;
}

.lang-switcher option{
  background: #fff;
  color: #0b2340;
  font-weight: 600;
}

.lang-switcher option:checked{
  background: #dceeff;
  color: #082f5c;
}

@media (max-width: 900px){
  .nav{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .lang-switcher-wrap{
    width: 100%;
    margin: 0;
    justify-content: flex-start;
    gap: 14px;
    padding: 12px 12px;
    border-radius: 12px;
  }

  .lang-label{
    white-space: nowrap;
    flex: 0 0 auto;
    min-width: max-content;
    color: #fff;
  }

  .lang-switcher{
    width: min(190px, calc(100% - 72px));
    min-width: 160px;
    max-width: 220px;
    flex: 0 1 190px;
    background: #fff;
    color: #123660;
    border-color: #67d4d8;
    color-scheme: light;
  }

  .home .lang-label{
    color: #fff;
  }

  .home .lang-switcher{
    border: 1px solid #67d4d8;
    background: #fff;
    color: #123660;
  }

  .nav .cta{
    width: 100%;
    justify-content: center;
  }
}

/* INSIDE BEACH ARENA LP (Before edition) */
.iba-hero{
  position: relative;
  min-height: min(88svh, 900px);
  display: grid;
  align-items: end;
  margin-top: 10px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4,12,24,.20) 0%, rgba(4,12,24,.66) 70%, rgba(4,12,24,.80) 100%),
    var(--iba-hero-image) center/cover no-repeat;
}

.iba-hero::before{
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 20% 10%, rgba(40,98,190,.22) 0%, rgba(40,98,190,0) 65%);
}

.iba-hero-inner{
  position: relative;
  z-index: 1;
  padding: clamp(26px, 4vw, 54px);
  color: rgba(246,250,255,.96);
}

.iba-hero-social{
  position: absolute;
  right: clamp(16px, 2.4vw, 28px);
  bottom: clamp(16px, 2.4vw, 24px);
  display: flex;
  gap: 10px;
}

.iba-social-link{
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(8,20,36,.46);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.iba-social-link svg{
  width: 18px;
  height: 18px;
  fill: rgba(246,250,255,.96);
}

.iba-social-link.is-instagram{
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.iba-social-link.is-instagram svg{
  width: 100%;
  height: 100%;
  display: block;
}

.iba-badge{
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
}

.iba-hero h1{
  margin: 0 0 10px;
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.iba-subcopy{
  margin: 0 0 18px;
  font-size: clamp(16px, 2.2vw, 24px);
  line-height: 1.6;
  max-width: 34ch;
}

.iba-cta-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.iba-feature-grid{
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.iba-feature-card h3{
  margin: 0 0 6px;
  font-size: 20px;
}

.iba-feature-card p{
  margin: 0;
}

.iba-gallery{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
  user-select: none;
  -webkit-user-select: none;
}

.iba-gallery-item{
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(21,37,42,.10);
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

.iba-gallery img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: sepia(.56) saturate(.82) contrast(1.03);
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

.iba-story-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.iba-story-media img{
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: sepia(.72) saturate(.76) contrast(1.05);
  border-radius: 22px;
  border: 1px solid rgba(21,37,42,.10);
  box-shadow: var(--shadow);
}

.iba-left{
  text-align: left;
}

.iba-list{
  margin: 14px 0 0;
  padding-left: 1.2em;
}

.iba-coming-visual{
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(21,37,42,.20);
  background: #0c1720;
}

.iba-coming-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) brightness(.62) contrast(1.08) blur(.3px);
  transform: scale(1.02);
}

.iba-coming-visual::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,.54) 100%),
    linear-gradient(180deg, rgba(0,0,0,.24) 0%, rgba(0,0,0,.62) 100%);
}

.iba-coming-label{
  position: absolute;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(9,15,22,.62);
  color: rgba(244,248,255,.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.iba-nowrap{
  white-space: nowrap;
}

.iba-chip-list{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.iba-chip-list li{
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(21,37,42,.16);
  background: rgba(255,255,255,.74);
  font-weight: 700;
}

.iba-timeline{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.iba-timeline li{
  background:
    linear-gradient(140deg, rgba(88, 176, 255, .30) 0%, rgba(255, 135, 214, .28) 52%, rgba(139, 185, 255, .30) 100%),
    rgba(255,255,255,.90);
  border: 1px solid rgba(122, 76, 168, .22);
  border-radius: 14px;
  padding: 12px 14px;
  display: grid;
  gap: 2px;
}

.iba-timeline strong{
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(21,37,42,.54);
}

.iba-faq details{
  background:
    linear-gradient(140deg, rgba(88, 176, 255, .30) 0%, rgba(255, 135, 214, .28) 52%, rgba(139, 185, 255, .30) 100%),
    rgba(255,255,255,.90);
  border: 1px solid rgba(122, 76, 168, .22);
  border-radius: 14px;
  padding: 10px 12px;
  margin: 8px 0;
}

.iba-faq summary{
  cursor: pointer;
  font-weight: 800;
}

.iba-faq p{
  margin: 10px 0 2px;
}

.iba-cta-section .page-card{
  max-width: 860px;
  margin-inline: auto;
}

.iba-contact-link-wrap{
  text-align: center;
}

.iba-contact-link-wrap .btn.ext-link{
  background: #135f9c;
  border-color: #135f9c;
  color: #ffffff;
}

.iba-contact-link-wrap .btn.ext-link:hover{
  background: #0e4f82;
  border-color: #0e4f82;
  color: #ffffff;
}

.iba-note{
  margin: 14px 0 8px;
  color: rgba(21,37,42,.70);
}

.iba-back-wrap{
  text-align: center;
}

.iba-marker{
  display: inline;
  background-image: linear-gradient(transparent 62%, rgba(120, 205, 255, .88) 62%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 .06em;
}

.iba-marker-copy{
  display: inline;
  line-height: 1.9;
  background-image: linear-gradient(transparent 70%, rgba(120, 205, 255, .42) 70%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 .08em;
}

.iba-title-marker{
  display: table;
  margin: 0 auto 22px;
  text-align: center;
  background-image: linear-gradient(transparent 62%, rgba(120, 205, 255, .88) 62%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 .06em;
}

/* Match home lead styling under marker titles */
.iba-lp .lead{
  color: rgba(15, 34, 56, .92);
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}

.iba-lp .page-card{
  background:
    linear-gradient(140deg, rgba(88, 176, 255, .30) 0%, rgba(255, 135, 214, .28) 52%, rgba(139, 185, 255, .30) 100%),
    rgba(255,255,255,.90);
  border: 1px solid rgba(122, 76, 168, .22);
  box-shadow: 0 16px 38px rgba(35, 36, 120, .14);
}

@media (max-width: 1024px){
  .iba-gallery{
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

@media (max-width: 900px){
  .iba-feature-grid{
    grid-template-columns: 1fr;
  }

  .iba-gallery{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .iba-story-grid{
    grid-template-columns: 1fr;
  }

  .iba-cta-row{
    flex-direction: column;
    align-items: stretch;
  }

  .iba-cta-row .btn{
    width: 100%;
    justify-content: center;
  }

  .iba-hero-social{
    position: static;
    margin-top: 12px;
  }
}

@media (max-width: 768px){
  .iba-lp.lang-en .iba-nowrap{
    white-space: normal;
  }
}

/* Business page redesign */
.business-page{
  padding-bottom: 12px;
}

.business-sync{
  margin-top: 12px;
  overflow: hidden;
}

.business-sync-title{
  margin: 0;
  text-align: center;
  font-size: clamp(22px, 2.8vw, 36px);
}

.business-sync-lead{
  margin: 12px auto 0;
  max-width: 78ch;
  text-align: center;
  color: rgba(21,37,42,.76);
}

.business-orbit{
  margin: 20px auto 0;
  max-width: 860px;
  min-height: 270px;
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(21,37,42,.08);
  background:
    radial-gradient(120% 90% at 50% 50%, rgba(15,123,132,.12) 0%, rgba(15,123,132,0) 70%),
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(248,251,255,.9));
}

.business-orbit::before,
.business-orbit::after{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 999px;
  border: 1px dashed rgba(15,123,132,.28);
  pointer-events: none;
}

.business-orbit::before{
  width: min(82%, 620px);
  height: min(58%, 210px);
}

.business-orbit::after{
  width: min(64%, 460px);
  height: min(42%, 140px);
  opacity: .7;
}

.orbit-core{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  letter-spacing: .03em;
  color: #fff;
  background: linear-gradient(160deg, #0f7b84, #1e4f9f);
  box-shadow: 0 14px 36px rgba(19,53,91,.32);
  z-index: 1;
}

.orbit-node{
  position: absolute;
  width: 148px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .04em;
  color: #122e40;
  border: 1px solid rgba(21,37,42,.15);
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  z-index: 2;
}

.orbit-node.is-disabled{
  opacity: .62;
  pointer-events: none;
  cursor: not-allowed;
}

.orbit-resort{ left: 8%; top: 16%; }
.orbit-urban{ right: 8%; top: 16%; }
.orbit-shitamachi{ left: 50%; bottom: 12%; transform: translateX(-50%); }

.business-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.business-project-card{
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(21,37,42,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 32px rgba(11,22,44,.10);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.business-project-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(11,22,44,.14);
  border-color: rgba(15,123,132,.35);
}

.business-project-card.is-disabled,
.business-project-card.is-disabled:hover{
  transform: none;
  box-shadow: 0 14px 32px rgba(11,22,44,.08);
  border-color: rgba(21,37,42,.10);
  cursor: default;
}

.business-project-media{
  position: relative;
  overflow: hidden;
}

.business-project-media img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.business-project-body{
  padding: 16px;
}

.business-project-body h2{
  margin: 0 0 8px;
  font-size: 24px;
}

.business-project-sub{
  margin: 0 0 10px;
  font-weight: 800;
  color: rgba(21,37,42,.74);
}

.business-project-cta{
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  color: #0f7b84;
}

.business-project-cta::after{
  content: "→";
}

.business-project-cta.is-disabled{
  color: rgba(21,37,42,.56);
}

.business-project-cta.is-disabled::after{
  content: "";
}

.business-feature{
  margin-top: 16px;
  text-align: center;
}

.business-feature--inside{
  color: rgba(245,249,255,.96);
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(6,16,30,.62) 0%, rgba(6,16,30,.74) 100%),
    url('../img/nomadox-concept.png') center/cover no-repeat;
}

.business-feature--inside .business-feature-kicker{
  color: rgba(245,249,255,.80);
}

.business-feature--inside h2,
.business-feature--inside p{
  color: rgba(245,249,255,.96);
}

.business-feature-kicker{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 800;
  color: rgba(21,37,42,.66);
}

@media (max-width: 1024px){
  .business-grid{
    grid-template-columns: 1fr;
  }

  .business-project-media img{
    height: 260px;
  }
}

@media (max-width: 760px){
  .business-orbit{
    min-height: 290px;
  }

  .orbit-node{
    width: 126px;
    height: 46px;
    font-size: 13px;
  }

  .orbit-resort{ left: 4%; top: 12%; }
  .orbit-urban{ right: 4%; top: 12%; }
  .orbit-shitamachi{ bottom: 10%; }

  .orbit-core{
    width: 146px;
    height: 146px;
    font-size: 13px;
  }
}

/* Project pages */
.project-page{
  padding-bottom: 28px;
}

.project-lead{
  color: rgba(15, 34, 56, .92);
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}

.project-focus{
  margin-top: 12px;
}

.project-focus-media{
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(21,37,42,.10);
}

.project-focus-media img{
  width: 100%;
  height: min(52vw, 380px);
  object-fit: cover;
  display: block;
}

.project-focus-actions{
  margin-top: 14px;
}

.project-pillars{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.project-pillars h3{
  margin: 0 0 8px;
}

.project-coming{
  margin-top: 12px;
  text-align: center;
}

.project-overview h2,
.resort-overview h2,
.resort-map-card h2{
  margin-top: 0;
}

.resort-title-marker{
  display: table;
  margin: 0 auto 18px;
  text-align: center;
  background-image: linear-gradient(transparent 62%, rgba(120, 205, 255, .88) 62%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 .08em;
}

.project-overview-list,
.resort-overview-list{
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.resort-hero-card{
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(0,0,0,.84) 0%, rgba(6,10,18,.88) 44%, rgba(8,8,10,.86) 100%),
    var(--resort-hero-bg) center/cover no-repeat !important;
  border: 1px solid rgba(255,255,255,.22);
}

.resort-hero-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(0,0,0,.56), rgba(0,0,0,.22) 46%, rgba(0,0,0,.64));
  pointer-events: none;
}

.resort-hero-card > *{
  position: relative;
  z-index: 1;
}

.resort-hero-card .business-sync-title,
.resort-hero-card .business-sync-lead{
  color: rgba(245,249,255,.96);
  text-shadow: 0 2px 16px rgba(0,0,0,.42);
}

.resort-sync .business-orbit{
  margin: 8px auto 0;
  width: min(100%, 620px);
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(120% 92% at 50% 50%, rgba(80,176,255,.14) 0%, rgba(80,176,255,0) 72%),
    linear-gradient(180deg, rgba(10,16,25,.62), rgba(12,18,29,.64));
  border-color: rgba(255,255,255,.14);
}

.resort-orbit .orbit-node.is-highlight{
  color: #fff;
  border-color: rgba(85, 203, 255, .86);
  background: linear-gradient(135deg, rgba(43, 156, 255, .92), rgba(37, 95, 226, .92));
  box-shadow: 0 0 0 4px rgba(87, 208, 255, .22), 0 14px 30px rgba(24, 83, 176, .34);
}

.resort-orbit::before,
.resort-orbit::after{
  display: none;
}

.resort-orbit-ring{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 76%;
  height: 76%;
  border-radius: 999px;
  animation: resort-ring-spin 13s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.resort-orbit-svg{
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 5px 12px rgba(74, 128, 255, .34));
}

.resort-core-image{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 36px rgba(0,0,0,.38);
  z-index: 2;
}

.resort-core-image img{
  width: 88%;
  height: 88%;
  object-fit: cover;
  border-radius: 999px;
  display: block;
}

.resort-map-wrap{
  position: relative;
  max-width: 820px;
  margin: 14px auto 0;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(247,251,255,.95), rgba(229,239,248,.92));
  border: 1px solid rgba(76, 115, 146, .25);
  padding: 92px 18px 46px;
}

.resort-locations-floating{
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  z-index: 3;
  width: min(92%, 560px);
  border-radius: 14px;
  padding: 10px 12px 12px;
  background: linear-gradient(145deg, rgba(8,20,38,.92), rgba(16,38,66,.90));
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 12px 28px rgba(5,14,26,.32);
}

.resort-locations-title{
  margin: 0 0 8px;
  color: rgba(245,249,255,.94);
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 800;
  text-align: center;
}

.resort-locations-handle{
  cursor: grab;
  touch-action: none;
  user-select: none;
  padding-bottom: 2px;
  border-bottom: 1px dashed rgba(255,255,255,.24);
}

.resort-locations-floating.is-dragging .resort-locations-handle{
  cursor: grabbing;
}

.resort-locations-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.resort-location-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.resort-locations-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  color: rgba(245,249,255,.96);
  border: 1px solid rgba(113,190,255,.58);
  background: linear-gradient(135deg, rgba(47,126,236,.32), rgba(70,182,255,.24));
}

.resort-locations-link:hover{
  border-color: rgba(145,206,255,.86);
  background: linear-gradient(135deg, rgba(60,145,255,.44), rgba(94,194,255,.36));
}

.resort-location-focus{
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: url('../img/pin_blue.png') center/auto 100% no-repeat;
  box-shadow: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  flex: 0 0 34px;
}

.resort-location-focus::after{
  content: none;
}

.resort-location-focus:hover{
  transform: translateY(-1px) scale(1.03);
}

.resort-map-frame{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(76, 115, 146, .30);
  background: rgba(214, 226, 239, .8);
}

.resort-map-iframe{
  width: 100%;
  height: min(64vw, 520px);
  min-height: 360px;
  border: 0;
  display: block;
}

.resort-japan-map{
  width: 100%;
  height: auto;
  display: block;
}

.resort-map-marker{
  position: absolute;
  left: 62.8%;
  top: 60.4%;
  transform: translate(-2px, 8px);
  width: 24px;
  height: 24px;
  margin-left: -12px;
  margin-top: -12px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #ff8e8e 0%, #ff3d3d 56%, #d61010 100%);
  border: 2px solid #fff;
  box-shadow: 0 10px 20px rgba(178, 18, 18, .36);
  z-index: 2;
}

.resort-map-pulse{
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  border: 2px solid rgba(233, 44, 44, .36);
  animation: resort-pulse 1.8s ease-out infinite;
}

.resort-map-label{
  position: absolute;
  left: 62.8%;
  top: calc(60.4% - 40px);
  transform: translate(calc(-50% - 2px), 8px);
  background: rgba(7, 35, 58, .86);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.resort-map-note{
  margin: 14px 0 0;
  text-align: center;
  color: rgba(15, 34, 56, .76);
}

.resort-orbit .orbit-shitamachi{
  left: 50%;
  right: auto;
  top: 80%;
  bottom: auto;
  transform: translate(-50%, -50%);
}

.resort-orbit .orbit-resort{
  left: 24%;
  top: 24%;
  transform: translate(-50%, -50%);
}

.resort-orbit .orbit-urban{
  left: 76%;
  right: auto;
  top: 24%;
  transform: translate(-50%, -50%);
}

.resort-page .resort-overview{
  background:
    linear-gradient(180deg, rgba(7,15,28,.62), rgba(7,15,28,.72)),
    url('../img/resort.png') center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.20);
  color: rgba(245,249,255,.96);
}

.resort-page .resort-overview p,
.resort-page .resort-overview li{
  color: rgba(245,249,255,.94);
}

.resort-page .resort-map-card{
  background:
    radial-gradient(circle at 82% 16%, rgba(255,125,181,.20), transparent 46%),
    radial-gradient(circle at 10% 90%, rgba(120,170,255,.18), transparent 48%),
    linear-gradient(148deg, rgba(255,255,255,.95), rgba(236,246,255,.90));
  border: 1px solid rgba(92, 120, 173, .20);
}

.urban-page .page-card{
  background:
    radial-gradient(circle at 82% 22%, rgba(125,225,255,.20), transparent 48%),
    radial-gradient(circle at 12% 88%, rgba(178,148,255,.20), transparent 48%),
    linear-gradient(150deg, rgba(255,255,255,.95), rgba(236,248,255,.88));
  border: 1px solid rgba(97, 131, 184, .20);
}

.shitamachi-page .page-card{
  background:
    radial-gradient(circle at 84% 18%, rgba(255,174,108,.20), transparent 50%),
    radial-gradient(circle at 14% 86%, rgba(255,119,180,.18), transparent 48%),
    linear-gradient(150deg, rgba(255,255,255,.95), rgba(255,242,235,.88));
  border: 1px solid rgba(182, 119, 98, .20);
}

@keyframes resort-pulse{
  0%{ transform: scale(.86); opacity: .78; }
  70%{ transform: scale(1.35); opacity: .12; }
  100%{ transform: scale(1.45); opacity: 0; }
}

@keyframes resort-ring-spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

.btn.is-disabled,
.btn.is-disabled:hover{
  opacity: .62;
  cursor: not-allowed;
  pointer-events: none;
  border-color: rgba(21,37,42,.2);
  background: rgba(21,37,42,.08);
}

@media (max-width: 960px){
  .project-pillars{
    grid-template-columns: 1fr;
  }

  .resort-map-wrap{
    padding: 118px 10px 52px;
  }

  .resort-locations-floating{
    width: calc(100% - 18px);
    top: 10px;
    padding: 9px 10px 10px;
  }

  .resort-map-iframe{
    height: min(78vw, 460px);
    min-height: 320px;
  }

  .resort-map-marker{
    width: 22px;
    height: 22px;
    margin-left: -11px;
    margin-top: -11px;
  }

  .resort-map-label{
    font-size: 11px;
    padding: 6px 9px;
    max-width: calc(100% - 20px);
    text-align: center;
    white-space: normal;
  }

  .resort-orbit-ring{
    width: 74%;
    height: 74%;
  }

  .resort-sync .business-orbit{
    width: min(100%, 520px);
  }
}

/* Ensure home special shortcut card keeps dark visual (wins over .page-card) */
.home .page-card.home-special-shortcut{
  color: rgba(245,249,255,.96);
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(6,16,30,.62) 0%, rgba(6,16,30,.74) 100%),
    url('../img/nomadox-concept.png') center/cover no-repeat;
}

.home .page-card.home-special-shortcut .kicker{
  color: rgba(245,249,255,.80);
}

.home .page-card.home-special-shortcut h3,
.home .page-card.home-special-shortcut p{
  color: rgba(245,249,255,.96);
}

/* CEO side strip: force perfect circle logo/photo without overflow */
.page-template-page-ceo-message .ceo-side .ceo-photo:not(.ceo-photo-interactive),
.page-template-page-ceo-message-php .ceo-side .ceo-photo:not(.ceo-photo-interactive){
  width: 100% !important;
  max-width: 210px !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  border-radius: 50% !important;
  margin: 0 auto;
}

.page-template-page-ceo-message .ceo-side .ceo-photo:not(.ceo-photo-interactive) img,
.page-template-page-ceo-message-php .ceo-side .ceo-photo:not(.ceo-photo-interactive) img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block;
}

@media (max-width: 760px){
  .resort-sync .business-orbit{
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }

  .resort-sync .orbit-node{
    width: 110px;
    height: 40px;
    font-size: 12px;
  }

  .resort-sync .orbit-resort{ left: 22%; top: 22%; }
  .resort-sync .orbit-urban{ left: 78%; top: 22%; right: auto; }
  .resort-sync .orbit-shitamachi{ left: 50%; top: 82%; bottom: auto; transform: translate(-50%, -50%); }

  .resort-sync .orbit-core{
    width: 128px;
    height: 128px;
    font-size: 12px;
  }

  .resort-sync .resort-orbit-ring{
    width: 70%;
    height: 70%;
  }
}

.page-template-page-topics .topics-latest-title{
  margin-top: 0;
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-image: linear-gradient(transparent 62%, rgba(120, 205, 255, .88) 62%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 .08em;
}

.home-brand-hero{
  min-height: calc(100svh - 70px);
  padding: 72px 0 44px;
}

.home-brand-hero .hero-card{
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.home-brand-hero .hero-inner h1{
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.08;
}

.home-hero-kicker,
.home-project-card .kicker,
.home-location-card .kicker{
  margin: 0 0 10px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-hero-lead{
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.home-hero-copy{
  font-size: clamp(15px, 1.55vw, 18px);
}

.home-copy-panel{
  text-align: center;
}

.home-about-panel{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  color: rgba(245,249,255,.96);
  border-color: rgba(255,255,255,.16);
  background:
    linear-gradient(180deg, rgba(6,16,30,.58) 0%, rgba(6,16,30,.74) 100%),
    var(--home-about-bg) center/cover no-repeat;
}

.home-about-panel::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(65, 197, 255, .22), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(255, 130, 210, .18), transparent 38%);
  pointer-events: none;
}

.home-about-panel p{
  position: relative;
  color: rgba(245,249,255,.96);
  text-shadow: 0 2px 18px rgba(0,0,0,.24);
}

.home-approach-panel{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  border-color: rgba(255,255,255,.16);
  background:
    linear-gradient(180deg, rgba(7,18,34,.42) 0%, rgba(7,18,34,.58) 100%),
    var(--home-approach-bg) center/cover no-repeat;
}

.home-approach-panel::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(125, 205, 255, .18), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(112, 110, 255, .16), transparent 28%),
    radial-gradient(circle at 74% 86%, rgba(255, 151, 196, .14), transparent 24%);
  pointer-events: none;
}

.home-approach-panel > *{
  position: relative;
}

.home-copy-panel p,
.home-story-card p,
.home-location-copy p{
  margin: 0;
}

.home-copy-panel,
.home-story-grid,
.home-style-grid,
.home-project-grid,
.home-location-card,
.home-footer-copy-card{
  margin-top: 30px;
}

.home-copy-panel,
.home-community-panel,
.home-footer-copy-card{
  display: grid;
  gap: 18px;
}

.home-story-grid,
.home-project-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-style-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.home-style-card,
.home-project-card,
.home-story-card{
  height: 100%;
}

.home-style-card{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 240px;
  border: 1px solid rgba(255,255,255,.26);
  box-shadow:
    0 18px 40px rgba(16,26,54,.16),
    inset 0 1px 0 rgba(255,255,255,.30);
}

.home-style-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.10)),
    var(--home-card-bg) center/cover no-repeat;
  opacity: 1;
  z-index: -2;
}

.home-style-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.36), transparent 26%),
    linear-gradient(145deg, rgba(33,176,255,.64), rgba(116,87,255,.44) 52%, rgba(255,96,166,.54) 100%);
  z-index: -1;
}

.home-card-inner{
  display: grid;
  place-content: center;
  min-height: 100%;
  text-align: center;
  padding: 18px;
  background: linear-gradient(180deg, rgba(7,20,38,.18), rgba(7,20,38,.32));
}

.home-style-card h3,
.home-project-card .kicker,
.home-location-card h2,
.home-vision-title,
.home-footer-copy-lines,
.home-footer-copy-tag{
  margin-top: 0;
}

.home-style-card h3{
  margin: 0 0 10px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,.98);
  text-shadow: 0 6px 20px rgba(0,0,0,.22);
}

.home-style-card p,
.home-project-card p{
  color: rgba(255,255,255,.92);
}

.home-style-card p{
  margin: 0;
  font-weight: 800;
  letter-spacing: .04em;
  text-shadow: 0 4px 14px rgba(0,0,0,.20);
}

.home-concept-image-panel{
  position: relative;
  min-height: 0;
  align-content: stretch;
  justify-items: stretch;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.home-concept-image-panel::before{
  content: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 78%, rgba(8,24,45,.20), transparent 40%),
    linear-gradient(180deg, transparent 0%, rgba(4,12,24,.22) 82%, rgba(4,12,24,.36) 100%);
}

.home-concept-picture{
  display: block;
  width: 100%;
  height: auto;
}

.home-concept-media{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.home-concept-copy{
  display: none;
}

.home-approach-list{
  display: grid;
  gap: clamp(22px, 3vw, 38px);
  margin-top: 30px;
}

.home-approach-wrap,
.home-approach-wrap .js-approach-swiper,
.home-approach-wrap .swiper-wrapper,
.home-approach-wrap .swiper-slide{
  height: 100%;
}

.home-approach-wrap .swiper-slide{
  display: flex;
  align-items: stretch;
}

.home-approach-image-card{
  display: grid;
  place-items: center;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.82);
  box-shadow:
    0 24px 70px rgba(16,26,54,.18),
    0 0 42px rgba(51,148,255,.16);
}

.home-approach-image-card img{
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.home-brand-image-card{
  overflow: hidden;
  padding: 0;
  margin-top: 30px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.82);
  box-shadow:
    0 24px 70px rgba(16,26,54,.18),
    0 0 42px rgba(51,148,255,.16);
}

.home-brand-image-card img{
  display: block;
  width: 100%;
  height: auto;
}

.home-brand-image-card picture{
  display: block;
}

.home-project-card{
  display: grid;
  gap: 14px;
  align-content: start;
}

.home-location-card{
  text-align: center;
  color: rgba(245,249,255,.96);
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(6,16,30,.62) 0%, rgba(6,16,30,.74) 100%),
    var(--home-vision-bg) center/cover no-repeat;
}

.home-vision-title{
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.28;
  color: rgba(245,249,255,.98);
}

.home-location-card .kicker,
.home-location-card h2,
.home-location-card p{
  color: rgba(245,249,255,.96);
}

.home-location-card .page-title-marker{
  background-image: linear-gradient(transparent 62%, rgba(120, 205, 255, .58) 62%);
}

.home-location-subcopy{
  margin: 0 0 18px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

.home-location-copy{
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 24px;
}

.home-community-panel{
  width: 100%;
  max-width: none;
}

.home-luxury-panel,
.home-luxury-card{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: rgba(245,247,250,.96);
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.10), transparent 24%),
    radial-gradient(circle at 82% 82%, rgba(15,123,132,.16), transparent 28%),
    linear-gradient(145deg, rgba(5,6,8,.98), rgba(18,20,24,.96) 48%, rgba(8,9,12,.98) 100%);
  box-shadow:
    0 22px 54px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.home-luxury-panel::before,
.home-luxury-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.10), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  pointer-events: none;
}

.home-community-panel{
  background:
    linear-gradient(180deg, rgba(5,10,18,.72) 0%, rgba(7,12,22,.82) 100%),
    var(--home-structural-bg) center/cover no-repeat;
}

.home-luxury-panel p,
.home-luxury-card p{
  position: relative;
  color: rgba(245,247,250,.94);
}

.home-luxury-logo{
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.home-luxury-logo img{
  width: min(220px, 52vw);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 10px 24px rgba(0,0,0,.36))
    drop-shadow(0 0 20px rgba(255,255,255,.06));
}

.home-coming-soon{
  font-weight: 900;
  letter-spacing: .16em;
  color: rgba(255,255,255,.98);
}

.home-footer-copy{
  padding-top: 0;
}

.home-footer-copy-card{
  text-align: center;
}

.home-footer-copy-card p{
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.home-footer-copy-lines{
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
}

.home-footer-copy-tag{
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: rgba(21,37,42,.72);
}

.home-luxury-card .home-footer-copy-tag{
  color: rgba(245,247,250,.80);
}

@media (max-width: 1024px){
  .home-style-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px){
  .home-brand-hero{
    padding: 54px 0 34px;
  }

  .home-story-grid,
  .home-project-grid,
  .home-style-grid{
    grid-template-columns: 1fr;
  }

  .home-copy-panel,
  .home-community-panel,
  .home-footer-copy-card{
    gap: 14px;
  }

  .home-location-copy{
    gap: 14px;
  }
}

/* Full-screen section layout */
:root{
  --fullscreen-header-offset: 88px;
  --fullscreen-stage-width: min(calc((100svh - 120px) * 16 / 9), calc(100vw - 56px));
}

.home-fullscreen-section,
.fullscreen-section,
.fullscreen-section-header{
  min-height: calc(100svh - var(--fullscreen-header-offset));
  display: grid;
  align-items: center;
}

.home-fullscreen-section{
  padding-block: 24px;
  min-height: auto;
}

.container.fullscreen-page-shell,
.home-fullscreen-section > .container.fullscreen-stage{
  width: var(--fullscreen-stage-width);
  max-width: none;
}

.container.fullscreen-page-shell{
  display: grid;
  gap: clamp(18px, 4svh, 36px);
  padding-block: 24px 48px;
}

.business-page.fullscreen-page-shell{
  gap: clamp(14px, 2.4svh, 24px);
  padding-block: 8px 18px;
}

.business-page.fullscreen-page-shell > .business-sync.fullscreen-surface{
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
}

.business-page.fullscreen-page-shell > .business-sync .business-orbit{
  width: min(100%, 780px);
}

.business-projects-slider{
  min-width: 0;
}

.business-projects-wrap{
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}

.business-projects-wrap .swiper,
.business-projects-wrap .swiper-wrapper,
.business-projects-wrap .swiper-slide{
  height: auto;
  min-width: 0;
}

.business-project-slide{
  display: block;
  width: 100vw;
  text-decoration: none;
  margin-inline: calc(50% - 50vw);
}

.business-project-picture,
.business-project-image,
.project-hero-image-card picture,
.project-hero-image-card img{
  display: block;
  width: 100%;
  height: auto;
}

.project-hero-image-card{
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.fullscreen-stage{
  min-height: calc(100svh - var(--fullscreen-header-offset));
  display: grid;
  align-content: center;
  gap: clamp(18px, 2.4svh, 28px);
}

.home-fullscreen-section > .fullscreen-stage{
  min-height: auto;
}

.fullscreen-section-header{
  align-content: center;
  gap: 14px;
  padding-block: 24px;
  text-align: center;
}

.fullscreen-section.fullscreen-surface,
.home-fullscreen-section .fullscreen-surface{
  width: 100%;
  min-height: calc(100svh - var(--fullscreen-header-offset) - 48px);
  margin-top: 0;
  padding: clamp(24px, 3vw, 48px);
  box-shadow: none;
}

.home-fullscreen-section .fullscreen-surface{
  min-height: auto;
}

.fullscreen-page-shell .page-card.fullscreen-surface,
.fullscreen-page-shell .fullscreen-section.fullscreen-surface{
  border-radius: 0;
}

.fullscreen-page-shell .page-card.fullscreen-surface{
  border: 0;
  background:
    linear-gradient(135deg, rgba(248,251,255,.92), rgba(236,243,249,.82));
}

.project-page.fullscreen-page-shell > .page-card.fullscreen-surface,
.project-page.fullscreen-page-shell > .fullscreen-section.fullscreen-surface{
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
}

.ceo-message-page > .page-card.fullscreen-surface,
.company-page > .page-card.fullscreen-surface,
.company-page > .fullscreen-section.fullscreen-surface,
.sdgs-page > .page-card{
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
}

.privacy-policy-section + .privacy-policy-section{
  margin-top: 32px;
}

.privacy-policy-section h2{
  margin: 0 0 12px;
  font-size: clamp(20px, 2vw, 28px);
}

.privacy-policy-section ul{
  margin: 12px 0 0;
  padding-left: 1.4em;
}

.privacy-policy-section li + li,
.privacy-policy-contact p + p{
  margin-top: 8px;
}

.privacy-policy-contact{
  margin-top: 16px;
}

.resort-page .resort-overview,
.urban-page .project-overview,
.urban-page .project-coming,
.shitamachi-page .project-overview,
.shitamachi-page .project-coming{
  color: rgba(15, 34, 56, .96) !important;
}

.resort-page .resort-overview{
  background:
    radial-gradient(circle at 18% 18%, rgba(123, 214, 255, .24), transparent 42%),
    radial-gradient(circle at 82% 84%, rgba(255, 197, 132, .22), transparent 44%),
    linear-gradient(145deg, rgba(242, 248, 255, .96), rgba(225, 239, 250, .92)) !important;
}

.urban-page .project-overview,
.urban-page .project-coming{
  background:
    radial-gradient(circle at 84% 18%, rgba(125,225,255,.24), transparent 48%),
    radial-gradient(circle at 12% 88%, rgba(178,148,255,.22), transparent 48%),
    linear-gradient(150deg, rgba(244,250,255,.96), rgba(231,242,252,.92)) !important;
}

.shitamachi-page .project-overview,
.shitamachi-page .project-coming{
  background:
    radial-gradient(circle at 84% 18%, rgba(255,174,108,.22), transparent 50%),
    radial-gradient(circle at 14% 86%, rgba(255,119,180,.18), transparent 48%),
    linear-gradient(150deg, rgba(255,248,244,.96), rgba(250,236,226,.92)) !important;
}

.resort-page .resort-overview h2,
.resort-page .resort-overview p,
.resort-page .resort-overview li,
.urban-page .page-card h2,
.urban-page .page-card p,
.urban-page .page-card li,
.shitamachi-page .page-card h2,
.shitamachi-page .page-card p,
.shitamachi-page .page-card li{
  color: rgba(15, 34, 56, .96) !important;
}

.project-page .page-hero h1.page-title-marker{
  background-image: linear-gradient(transparent 62%, rgba(120, 205, 255, .88) 62%) !important;
}

.resort-page .resort-map-wrap{
  width: 100%;
  max-width: none;
  margin: 14px 0 0;
}

.resort-page .resort-map-frame{
  width: 100%;
}

.resort-page .resort-map-iframe{
  height: min(52vw, 760px);
  min-height: 520px;
}

.project-coming .btn.is-disabled{
  display: inline-flex;
  width: auto;
  margin: 18px auto 0;
  align-items: center;
  justify-content: center;
}

.fullscreen-section--split{
  align-content: center;
}

.fullscreen-section--split .ceo-wrap{
  min-height: min(72svh, 760px);
  align-items: center;
}

.business-grid.fullscreen-section{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(18px, 2vw, 28px);
  margin-bottom: 0;
}

.business-grid.fullscreen-section .business-project-card{
  min-height: min(66svh, 700px);
}

.home-approach-list{
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.home-approach-image-card.fullscreen-surface{
  min-height: min(70svh, 780px);
}

.home-approach-image-card img,
.home-brand-image-card img{
  width: 100%;
  height: 100%;
  object-position: center;
}

.home-brand-image-card img{
  object-fit: contain;
}

.posts-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.posts-grid .post-card{
  min-height: min(56svh, 560px);
  border-radius: 0;
  box-shadow: none;
  border: 0;
  background: rgba(255,255,255,.78);
}

.posts-grid .post-card img{
  height: clamp(220px, 28vh, 320px);
}

.home .pillar-slide,
body.home .pillar-slide{
  min-height: min(72svh, 780px);
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.home .home-brand-section,
body.home .home-brand-section{
  min-height: auto;
}

.home .home-brand-section .fullscreen-stage,
body.home .home-brand-section .fullscreen-stage,
.home .home-brand-section .fullscreen-surface,
body.home .home-brand-section .fullscreen-surface{
  min-height: auto;
}

.home #about.home-brand-section,
body.home #about.home-brand-section{
  min-height: calc(100svh - var(--fullscreen-header-offset));
}

.home #about.home-brand-section .fullscreen-stage,
body.home #about.home-brand-section .fullscreen-stage{
  min-height: calc(100svh - var(--fullscreen-header-offset));
}

.home #about .home-concept-image-panel,
body.home #about .home-concept-image-panel{
  min-height: min(calc(100svh - var(--fullscreen-header-offset) - 110px), 980px);
}

.home #style.home-brand-section,
body.home #style.home-brand-section,
.home #style.home-brand-section .fullscreen-stage,
body.home #style.home-brand-section .fullscreen-stage{
  min-height: auto;
}

.home #style .home-approach-wrap,
body.home #style .home-approach-wrap{
  width: 100%;
  max-width: 100%;
}

.home #style .js-approach-swiper,
body.home #style .js-approach-swiper{
  min-height: min(72svh, 780px);
}

.home #style .home-approach-image-card.fullscreen-surface,
body.home #style .home-approach-image-card.fullscreen-surface{
  min-height: min(72svh, 780px);
  padding: 0;
}

.home .js-pillars-swiper .swiper-slide,
.home .js-approach-swiper .swiper-slide,
body.home .js-pillars-swiper .swiper-slide,
body.home .js-approach-swiper .swiper-slide{
  height: auto;
}

@media (max-width: 900px){
  :root{
    --fullscreen-header-offset: 78px;
    --fullscreen-stage-width: calc(100vw - 28px);
  }

  .home-fullscreen-section,
  .fullscreen-section,
  .fullscreen-section-header{
    min-height: calc(100svh - var(--fullscreen-header-offset));
  }

  .home-fullscreen-section{
    min-height: auto;
  }

  .container.fullscreen-page-shell,
  .home-fullscreen-section > .container.fullscreen-stage{
    width: var(--fullscreen-stage-width);
  }

  .fullscreen-stage,
  .fullscreen-section.fullscreen-surface,
  .home-fullscreen-section .fullscreen-surface{
    min-height: calc(100svh - var(--fullscreen-header-offset) - 20px);
  }

  .home-fullscreen-section > .fullscreen-stage,
  .home-fullscreen-section .fullscreen-surface{
    min-height: auto;
  }

  .posts-grid,
  .business-grid.fullscreen-section{
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .posts-grid > *,
  .business-grid.fullscreen-section > *{
    scroll-snap-align: center;
  }

  .home-approach-image-card.fullscreen-surface,
  .business-grid.fullscreen-section .business-project-card,
  .posts-grid .post-card{
    min-height: calc(100svh - var(--fullscreen-header-offset) - 120px);
  }

  .fullscreen-section--split .ceo-wrap{
    min-height: auto;
  }
}

/* Home screen rebuild */
:root{
  --home-screen-header-offset: 88px;
  --home-screen-stage-width: calc(100vw - 32px);
}

.home-screen-section{
  padding-block: 24px;
}

.home-brand-hero.home-screen-section{
  padding-top: 0;
}

.home-screen-section > .container.home-screen-stage{
  width: var(--home-screen-stage-width);
  max-width: none;
}

.home-screen-stage{
  min-height: calc(100svh - var(--home-screen-header-offset));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
  gap: clamp(18px, 2.4svh, 28px);
  min-width: 0;
}

.home-screen-surface{
  width: 100%;
  height: min(calc(100svh - var(--home-screen-header-offset) - 144px), 920px);
  min-height: 0;
  margin-top: 0;
  padding: clamp(24px, 3vw, 48px);
  box-shadow: none;
}

.home-screen-section .hero-card.home-screen-surface{
  height: calc(100svh - var(--home-screen-header-offset)) !important;
  min-height: calc(100svh - var(--home-screen-header-offset)) !important;
  margin-top: 0 !important;
}

.home-brand-hero.home-screen-section{
  min-height: calc(100svh - var(--home-screen-header-offset)) !important;
  padding: 0 !important;
}

.home-brand-hero.home-screen-section .hero-card.home-screen-surface{
  display: flex !important;
  align-items: stretch !important;
}

.home-brand-hero.home-screen-section .hero-inner{
  width: 100%;
  max-width: none;
  min-height: calc(100svh - var(--home-screen-header-offset));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 72px) !important;
}

#about.home-screen-section .home-screen-stage{
  min-height: calc(100svh - var(--home-screen-header-offset));
  width: 100vw;
  max-width: none;
}

.home-brand-hero.home-screen-section .home-screen-stage,
#style .home-screen-stage,
#project .home-screen-stage,
#first-location .home-screen-stage,
#community .home-screen-stage,
.home-footer-copy.home-screen-section .home-screen-stage{
  width: 100vw;
  max-width: none;
}

#about .home-concept-image-panel.home-screen-surface{
  width: 100vw;
  height: auto;
  min-height: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  margin-inline: calc(50% - 50vw);
}

.home-screen-section .hero-card.home-screen-surface,
#style .home-approach-image-card.home-screen-surface,
#project .pillars-wrap,
#project .pillar-slide,
#first-location .home-brand-image-card.home-screen-surface,
#community .home-brand-image-card.home-screen-surface,
.home-footer-copy.home-screen-section .home-brand-image-card.home-screen-surface{
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  border-radius: 0 !important;
}

#style .home-approach-wrap,
#project .pillars-wrap{
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
}

#about .home-concept-copy{
  display: none;
}

#about .home-concept-copy p{
  display: none;
}

#style .home-screen-stage,
#project .home-screen-stage,
#first-location .home-screen-stage,
#community .home-screen-stage,
.home-footer-copy.home-screen-section .home-screen-stage{
  align-items: stretch;
}

#style .home-approach-wrap,
#project .pillars-wrap{
  width: 100vw;
  margin-top: 0;
  min-width: 0;
  overflow: hidden;
  max-width: none;
  margin-inline: calc(50% - 50vw);
}

#style .home-approach-wrap{
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  max-width: none;
  margin-inline: calc(50% - 50vw);
}

#style .js-approach-swiper,
#style .home-approach-wrap .swiper-wrapper,
#style .home-approach-wrap .swiper-slide{
  width: 100vw;
  max-width: none;
}

#style .home-approach-wrap .js-approach-swiper,
#style .home-approach-wrap .swiper-wrapper,
#style .home-approach-wrap .swiper-slide,
#project .pillars-wrap .js-pillars-swiper,
#project .pillars-wrap .swiper-wrapper,
#project .pillars-wrap .swiper-slide{
  height: auto;
  min-width: 0;
}

#style .home-approach-wrap .swiper-slide,
#project .pillars-wrap .swiper-slide{
  display: flex;
  align-items: stretch;
}

#project .home-projects-wrap{
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
}

#project .js-pillars-swiper{
  min-height: calc(100svh - var(--home-screen-header-offset) - 126px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

#style .js-approach-swiper{
  width: 100vw;
  max-width: none;
  min-width: 0;
  overflow: hidden;
  margin-inline: calc(50% - 50vw);
}

#style .home-approach-image-card.home-screen-surface{
  width: 100vw;
  min-height: 0;
  height: auto;
  padding: 0;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  margin-top: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

#style .home-approach-picture,
#style .home-approach-media{
  width: 100%;
  height: auto;
  display: block;
}

#project .pillar-slide{
  width: 100%;
  min-height: 0;
  height: auto;
}

#project .pillar-slide-link{
  display: block;
  text-decoration: none;
}

#project .pillar-picture,
#project .pillar-media{
  width: 100%;
  height: auto;
  display: block;
}

#project .pillars-controls,
#style .approach-controls{
  margin-top: 18px;
}

#first-location .home-brand-image-card.home-screen-surface,
#community .home-brand-image-card.home-screen-surface,
.home-footer-copy.home-screen-section .home-brand-image-card.home-screen-surface{
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

#first-location .home-brand-image-card.home-screen-surface img,
#community .home-brand-image-card.home-screen-surface img,
.home-footer-copy.home-screen-section .home-brand-image-card.home-screen-surface img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

#latest.home-screen-section .home-screen-stage{
  min-height: calc(100svh - var(--home-screen-header-offset));
}

#latest .posts-grid{
  align-items: stretch;
}

#latest .posts-grid .post-card{
  min-height: min(56svh, 560px);
}

#latest .home-topics-wrap{
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}

#latest .js-topics-swiper,
#latest .js-topics-swiper .swiper-wrapper,
#latest .js-topics-swiper .swiper-slide{
  width: 100%;
  height: auto;
  min-width: 0;
}

#latest .js-topics-swiper .swiper-slide{
  display: flex;
  align-items: stretch;
}

#latest .js-topics-swiper .post-card{
  width: 100%;
}

#latest .post-card img,
#latest .js-topics-swiper .post-card img{
  height: clamp(320px, 42vh, 520px);
  object-fit: contain;
  background: rgba(244, 247, 251, .92);
}

#latest .post-card .pc-body,
#latest .js-topics-swiper .post-card .pc-body{
  padding: 14px 16px 16px;
}

#latest .topics-controls{
  margin-top: 18px;
}

@media (max-width: 900px){
  :root{
    --home-screen-header-offset: 78px;
    --home-screen-stage-width: calc(100vw - 16px);
  }

  .home-screen-stage{
    min-height: calc(100svh - var(--home-screen-header-offset));
    gap: 16px;
  }

  .home-screen-surface,
  .home-screen-section .hero-card.home-screen-surface,
  #about .home-concept-image-panel.home-screen-surface,
  #style .home-approach-image-card.home-screen-surface,
  #first-location .home-brand-image-card.home-screen-surface,
  #community .home-brand-image-card.home-screen-surface,
  .home-footer-copy.home-screen-section .home-brand-image-card.home-screen-surface{
    height: auto;
  }

  #about .home-concept-image-panel.home-screen-surface{
    min-height: 0;
    height: auto;
    border-radius: 0 !important;
  }

  .home-brand-hero.home-screen-section{
    padding-top: 0;
  }

  .home-screen-section .hero-card.home-screen-surface{
    height: calc(100svh - var(--home-screen-header-offset)) !important;
    min-height: calc(100svh - var(--home-screen-header-offset)) !important;
    margin-top: 0 !important;
  }

  .home-brand-hero.home-screen-section .hero-inner{
    min-height: calc(100svh - var(--home-screen-header-offset));
    padding: 28px 18px !important;
  }

  .home-brand-hero .hero-inner h1{
    font-size: clamp(36px, 9vw, 56px);
  }

  .home-hero-kicker{
    font-size: clamp(18px, 4.6vw, 24px);
  }

  #style .home-approach-wrap{
    min-height: 0;
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
  }

  #style .home-approach-wrap .js-approach-swiper,
  #style .home-approach-wrap .swiper-wrapper,
  #style .home-approach-wrap .swiper-slide,
  #style .home-approach-image-card.home-screen-surface{
    min-height: 0;
    height: auto;
  }

  #style .home-approach-image-card.home-screen-surface{
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
  }

  #first-location .home-brand-image-card.home-screen-surface,
  #community .home-brand-image-card.home-screen-surface,
  .home-footer-copy.home-screen-section .home-brand-image-card.home-screen-surface{
    height: auto;
  }

  #about .home-concept-copy p{
    font-size: clamp(13px, 3.8vw, 18px);
    line-height: 1.7;
  }

  #latest.home-screen-section .home-screen-stage{
    min-height: calc(100svh - var(--home-screen-header-offset));
  }

  #latest .posts-grid{
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  #latest .posts-grid > *{
    scroll-snap-align: center;
  }

  #latest .posts-grid .post-card{
    min-height: calc(100svh - var(--home-screen-header-offset) - 180px);
  }
}

/* Hard override for home slider media */
#style .home-approach-image-card.home-screen-surface{
  position: relative !important;
  background: transparent !important;
}

#style .home-approach-image-card.home-screen-surface .home-approach-picture,
#style .home-approach-image-card.home-screen-surface .home-approach-media{
  display: block !important;
  position: static !important;
  width: 100% !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 100% !important;
  max-height: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
}

#project .pillar-slide{
  position: relative !important;
  background: transparent !important;
}

#project .pillar-slide::before{
  content: none !important;
}

#project .pillar-slide .pillar-picture,
#project .pillar-slide .pillar-media{
  display: block !important;
  position: static !important;
  inset: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100% !important;
  height: auto !important;
  filter: none !important;
  transform: none !important;
}

#project .pillar-content{
  display: none !important;
}

/* Multilingual overlays for image-based project cards */
#project .pillar-slide,
.business-project-slide,
.project-hero-image-card{
  position: relative;
  overflow: hidden;
}

#project .pillar-overlay{
  display: grid !important;
  position: absolute !important;
  top: clamp(36px, 4vw, 64px);
  right: 0;
  bottom: clamp(36px, 4vw, 56px);
  left: auto;
  z-index: 3 !important;
  align-content: space-between;
  justify-items: center;
  gap: 24px;
  width: 50%;
  padding: 0 clamp(28px, 3vw, 56px);
  color: rgba(255,255,255,.96);
  background: none;
  border: 0;
  backdrop-filter: none;
  pointer-events: none;
}

.project-overlay-head,
.project-overlay-body-wrap{
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  width: 100%;
}

.project-overlay-brand{
  margin: 0;
  font-size: clamp(22px, 1.9vw, 34px);
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  color: rgba(255,255,255,.98);
}

#project .pillar-overlay h3,
.business-project-overlay h2,
.project-image-overlay h2{
  margin: 0;
  font-size: clamp(28px, 2.4vw, 44px);
  line-height: 1.02;
  letter-spacing: .12em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
}

#project .pillar-overlay h3::before,
#project .pillar-overlay h3::after,
.business-project-overlay h2::before,
.business-project-overlay h2::after,
.project-image-overlay h2::before,
.project-image-overlay h2::after{
  content: "";
  display: block;
  width: clamp(64px, 6vw, 120px);
  height: 1px;
  background: rgba(255,255,255,.72);
}

#project .swiper-slide:nth-child(3) .pillar-overlay h3,
.business-projects-slider .swiper-slide:nth-child(3) .business-project-overlay h2,
.shitamachi-page .project-image-overlay h2{
  white-space: nowrap;
}

#project .swiper-slide:nth-child(3) .pillar-overlay h3::before,
#project .swiper-slide:nth-child(3) .pillar-overlay h3::after,
.business-projects-slider .swiper-slide:nth-child(3) .business-project-overlay h2::before,
.business-projects-slider .swiper-slide:nth-child(3) .business-project-overlay h2::after,
.shitamachi-page .project-image-overlay h2::before,
.shitamachi-page .project-image-overlay h2::after{
  width: clamp(32px, 3vw, 68px);
}

.project-overlay-headline{
  margin: 0;
  font-size: clamp(28px, 2.8vw, 56px);
  line-height: 1.45;
  font-weight: 700;
  color: #fff;
}

#project .pillar-overlay .sub,
.business-project-overlay .sub{
  margin: 0;
  font-size: clamp(28px, 2.9vw, 54px);
  line-height: 1.35;
  color: rgba(255,255,255,.95);
  font-weight: 700;
}

#project .pillar-overlay-body,
.business-project-overlay .pillar-overlay-body,
.project-image-overlay .pillar-overlay-body{
  margin: 0;
  font-size: clamp(16px, 1.4vw, 28px);
  line-height: 2;
  color: rgba(255,255,255,.88);
}

.business-project-overlay,
.project-image-overlay{
  position: absolute;
  top: clamp(36px, 4vw, 64px);
  right: 0;
  bottom: clamp(36px, 4vw, 56px);
  left: auto;
  z-index: 3;
  display: grid;
  align-content: space-between;
  justify-items: center;
  gap: 24px;
  width: 50%;
  padding: 0 clamp(28px, 3vw, 56px);
  color: rgba(255,255,255,.96);
  background: none;
  border: 0;
  backdrop-filter: none;
  pointer-events: none;
}

.project-image-overlay{
  width: 50%;
}

.urban-page .project-hero-image-card .project-image-overlay h2,
.urban-page .project-hero-image-card .project-image-overlay p,
.shitamachi-page .project-hero-image-card .project-image-overlay h2,
.shitamachi-page .project-hero-image-card .project-image-overlay p{
  color: rgba(255,255,255,.98) !important;
}

#project .swiper-slide:nth-child(1) .project-overlay-headline,
.business-projects-slider .swiper-slide:nth-child(1) .project-overlay-headline,
.resort-page .project-overlay-headline{
  white-space: nowrap;
}

.project-overlay-body-wrap{
  padding-top: 14px;
}

.project-overlay-body-wrap::before{
  content: "";
  display: block;
  width: min(100%, 520px);
  height: 1px;
  margin-left: 0;
  background: rgba(255,255,255,.55);
}

@media (max-width: 900px){
  #project .pillar-overlay,
  .business-project-overlay,
  .project-image-overlay{
    inset: 0;
    width: auto;
    padding: 32px 24px 28px;
    gap: 0;
    background:
      linear-gradient(180deg, rgba(4, 18, 44, .72) 0%, rgba(4, 18, 44, .12) 32%, rgba(4, 18, 44, 0) 48%, rgba(4, 18, 44, .22) 62%, rgba(4, 18, 44, .84) 100%);
    border: 0;
    backdrop-filter: none;
    align-content: space-between;
  }

  .project-overlay-head{
    justify-items: center;
    align-content: start;
    gap: 12px;
    text-align: center;
  }

  .project-overlay-body-wrap{
    align-content: end;
    justify-items: center;
    gap: 10px;
    text-align: center;
    padding: 22px 0 2px;
  }

  .project-overlay-brand{
    font-size: clamp(28px, 7.8vw, 42px);
    letter-spacing: .1em;
    color: #fff !important;
    opacity: 1 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
  }

  #project .pillar-overlay h3,
  .business-project-overlay h2,
  .project-image-overlay h2{
    font-size: clamp(20px, 5.4vw, 28px);
    letter-spacing: .08em;
    text-align: center;
    color: #fff !important;
    opacity: 1 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
    justify-content: center;
  }

  #project .pillar-overlay h3::before,
  #project .pillar-overlay h3::after,
  .business-project-overlay h2::before,
  .business-project-overlay h2::after,
  .project-image-overlay h2::before,
  .project-image-overlay h2::after{
    width: clamp(56px, 12vw, 92px);
  }

  .project-overlay-headline{
    font-size: clamp(18px, 6vw, 34px);
    line-height: 1.55;
    text-align: center;
    color: #fff !important;
    opacity: 1 !important;
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
  }

  #project .pillar-overlay .sub,
  .business-project-overlay .sub{
    font-size: clamp(18px, 6vw, 34px);
    line-height: 1.45;
    font-weight: 800;
    text-align: center;
    color: #fff !important;
    opacity: 1 !important;
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
  }

  #project .pillar-overlay-body,
  .business-project-overlay .pillar-overlay-body,
  .project-image-overlay .pillar-overlay-body{
    font-size: clamp(13px, 3.6vw, 18px);
    line-height: 1.9;
    text-align: center;
    color: rgba(255,255,255,.98) !important;
    opacity: 1 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
  }

  .project-overlay-body-wrap::before{
    width: min(72vw, 320px);
    margin-left: 0;
    background: rgba(255,255,255,.8);
  }
}

/* Concept multilingual overlay */
.business-projects-slider .business-project-overlay{
  top: clamp(24px,3vw,48px);
  right: clamp(18px,2.2vw,38px);
  bottom: clamp(24px,3vw,48px);
  width:min(48%,660px);
  padding:clamp(28px,3.2vw,54px);
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
}
.business-projects-slider .business-project-overlay :is(.project-overlay-brand,h2,.project-overlay-headline,.pillar-overlay-body){color:#fff!important;text-shadow:0 2px 4px rgba(0,0,0,.95),0 4px 16px rgba(0,0,0,.86),0 0 28px rgba(0,0,0,.65)}
.business-projects-slider .business-project-overlay .pillar-overlay-body{font-weight:500}
.business-projects-slider .project-overlay-body-wrap{padding:20px 22px;border:0;border-radius:0;background:transparent;box-shadow:none;backdrop-filter:none}

.project-hero-image-card .project-image-overlay{
  border:0;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
}
.project-hero-image-card .project-image-overlay :is(.project-overlay-brand,h2,.project-overlay-headline,.pillar-overlay-body){
  color:#fff!important;
  text-shadow:0 2px 4px rgba(0,0,0,.95),0 4px 16px rgba(0,0,0,.86),0 0 28px rgba(0,0,0,.65);
}
.project-hero-image-card .project-image-overlay .pillar-overlay-body{font-weight:500}
.project-hero-image-card .project-overlay-body-wrap{border:0;background:transparent;box-shadow:none;backdrop-filter:none}
.project-hero-image-card .project-image-overlay h2::before,
.project-hero-image-card .project-image-overlay h2::after,
.project-hero-image-card .project-overlay-body-wrap::before{background:rgba(255,255,255,.86);box-shadow:0 2px 8px rgba(0,0,0,.55)}

/* Refined first-view title system for existing fixed pages */
.fullscreen-section-header.page-hero{
  position:relative;
  isolation:isolate;
  padding:clamp(72px,9vw,128px) clamp(16px,3vw,44px) clamp(58px,7vw,96px);
  text-align:center;
}
.fullscreen-section-header.page-hero::before{
  content:"";
  position:absolute;
  inset:10% 4% 4%;
  z-index:-1;
  background:radial-gradient(ellipse at center,rgba(255,255,255,.68) 0%,rgba(255,255,255,.34) 38%,rgba(255,255,255,0) 74%);
  pointer-events:none;
}
.fullscreen-section-header.page-hero .kicker{
  display:inline-flex;
  margin:0 auto 24px;
  padding:8px 16px;
  align-items:center;
  border:1px solid rgba(18,54,96,.2);
  border-radius:999px;
  background:rgba(255,255,255,.46);
  color:#175f98;
  font-size:11px;
  font-weight:800;
  letter-spacing:.2em;
  line-height:1;
  backdrop-filter:blur(8px);
}
.fullscreen-section-header.page-hero h1.page-title-marker{
  display:block;
  width:fit-content;
  max-width:100%;
  margin:0 auto;
  padding:0 0 28px;
  background:none!important;
  color:#0b223e;
  font-size:clamp(42px,5.4vw,78px);
  font-weight:700;
  line-height:1.14;
  letter-spacing:-.045em;
  text-wrap:balance;
  text-shadow:0 2px 18px rgba(255,255,255,.9),0 1px 3px rgba(255,255,255,.95);
}
.fullscreen-section-header.page-hero h1.page-title-marker::after{
  content:"";
  display:block;
  width:clamp(72px,9vw,132px);
  height:4px;
  margin:24px auto 0;
  border-radius:999px;
  background:linear-gradient(90deg,#67d4d8,#76b8f5 48%,#a996f5);
  box-shadow:0 5px 18px rgba(36,121,200,.28);
}
.fullscreen-section-header.page-hero .lead,
.fullscreen-section-header.page-hero p{
  max-width:880px;
  margin:0 auto;
  color:#294357;
  font-size:clamp(15px,1.4vw,19px);
  font-weight:500;
  line-height:1.95;
  text-shadow:0 1px 12px rgba(255,255,255,.95);
}

@media(max-width:720px){
  .fullscreen-section-header.page-hero{padding:64px 8px 54px}
  .fullscreen-section-header.page-hero .kicker{margin-bottom:20px;font-size:10px;letter-spacing:.14em}
  .fullscreen-section-header.page-hero h1.page-title-marker{font-size:clamp(34px,10vw,52px);padding-bottom:20px}
  .fullscreen-section-header.page-hero h1.page-title-marker::after{height:3px;margin-top:18px}
}

/* Philosophy: let editorial copy use the content width and wrap at natural sentence boundaries */
.philosophy-hero p:last-child{
  width:100%;
  max-width:1080px;
  text-wrap:pretty;
}
.philosophy-heading{
  width:100%;
  max-width:1120px;
}
.philosophy-heading>p:last-child{
  width:100%;
  max-width:1080px;
  text-wrap:pretty;
}
.years-section .container{max-width:1120px}
.years-section p:last-child{
  width:100%;
  max-width:1080px;
  text-wrap:pretty;
}

/* Philosophy public-language refresh */
.philosophy-brand-message{background:linear-gradient(145deg,#fff 0%,#f7fbff 58%,#f7fffc 100%)}
.philosophy-brand-message .philosophy-heading,
.philosophy-principles-public .philosophy-heading,
.philosophy-v4-story .philosophy-heading{margin-inline:auto;text-align:center}
.philosophy-readable-copy{white-space:normal;text-wrap:pretty}
.philosophy-principle-list{display:grid;height:auto;min-height:0;grid-template-columns:repeat(5,minmax(0,1fr));grid-auto-rows:auto;gap:clamp(14px,2vw,28px);align-content:start;align-items:start}
.philosophy-principle-list article{display:grid;justify-items:center;gap:12px;padding:18px 10px;text-align:center}
.philosophy-principle-list img{width:min(100%,112px);height:112px;max-width:100%;aspect-ratio:1;object-fit:contain;filter:drop-shadow(0 14px 22px rgba(18,54,96,.14))}
.philosophy-principle-list strong{font-size:17px;letter-spacing:.08em;color:#123e6b}
.philosophy-principle-list span{color:#526276;font-size:14px;line-height:1.7}
.commitment-card div{line-height:1.9}
.technology-people__note{display:block;margin-top:28px;color:#fff;font-size:clamp(16px,1.4vw,20px);line-height:1.8}
@media(max-width:760px){
  .philosophy-principle-list{grid-template-columns:repeat(2,minmax(0,1fr))}
  .philosophy-principle-list article:last-child{grid-column:1/-1}
}

/* Projects: premium presentation for the business relationship map; orbit motion stays intact */
.business-page .business-sync.resort-hero-card{
  position:relative;
  padding:clamp(72px,8vw,118px) clamp(20px,5vw,72px) clamp(82px,9vw,132px);
  border:0;
  background:
    linear-gradient(145deg,rgba(3,10,20,.58),rgba(7,16,29,.68)),
    var(--resort-hero-bg) center/cover no-repeat!important;
  isolation:isolate;
}
.business-page .business-sync.resort-hero-card::before{
  z-index:0;
  background:
    radial-gradient(circle at 50% 52%,rgba(36,121,200,.3),transparent 35%),
    linear-gradient(180deg,rgba(4,10,20,.08),rgba(7,16,30,.3));
}
.business-page .business-sync.resort-hero-card::after{
  content:"";
  position:absolute;
  inset:clamp(18px,2.5vw,38px);
  z-index:0;
  border:1px solid rgba(141,220,232,.18);
  border-radius:clamp(24px,3vw,44px);
  background:linear-gradient(135deg,rgba(255,255,255,.045),transparent 42%,rgba(118,184,245,.055));
  box-shadow:inset 0 1px rgba(255,255,255,.12),0 30px 90px rgba(0,0,0,.22);
  pointer-events:none;
}
.business-page .business-sync-title{
  max-width:980px;
  margin-inline:auto;
  font-size:clamp(36px,5vw,66px);
  font-weight:650;
  line-height:1.35;
  letter-spacing:-.035em;
  text-wrap:balance;
}
.business-page .business-sync-title::after{
  content:"";
  display:block;
  width:96px;
  height:3px;
  margin:28px auto 0;
  border-radius:999px;
  background:linear-gradient(90deg,#67d4d8,#76b8f5 52%,#f3a0c6);
  box-shadow:0 0 22px rgba(103,212,216,.55);
}
.business-page .business-sync-lead{
  max-width:900px;
  margin-top:26px;
  font-size:clamp(15px,1.35vw,19px);
  line-height:1.9;
}
.business-page .resort-sync .business-orbit{
  margin-top:clamp(42px,5vw,70px);
  border-color:rgba(118,184,245,.28);
  border-radius:34px;
  background:
    radial-gradient(circle at 50% 50%,rgba(58,128,218,.2),transparent 45%),
    linear-gradient(145deg,rgba(8,24,43,.68),rgba(12,27,47,.42));
  box-shadow:inset 0 1px rgba(255,255,255,.1),0 32px 80px rgba(0,0,0,.3),0 0 50px rgba(36,121,200,.12);
  backdrop-filter:blur(8px);
}
.business-page .resort-orbit .orbit-node.is-highlight{
  border-color:rgba(126,218,255,.95);
  background:linear-gradient(135deg,#269ce9,#315bd8);
  box-shadow:0 0 0 4px rgba(103,212,216,.16),0 12px 34px rgba(29,102,211,.42),0 0 24px rgba(103,212,216,.24);
}
@media(max-width:720px){
  .business-page .business-sync.resort-hero-card{padding:64px 12px 76px}
  .business-page .business-sync.resort-hero-card::after{inset:12px;border-radius:24px}
  .business-page .business-sync-title{font-size:clamp(32px,10vw,46px)}
  .business-page .business-sync-lead{padding-inline:12px}
  .business-page .resort-sync .business-orbit{margin-top:38px;border-radius:24px}
}

/* Home belief cards: photographic, human and inviting */
.home-belief-links{
  padding:clamp(72px,8vw,112px) 0;
  background:linear-gradient(180deg,#f5f9fc 0%,#fff 100%);
}
.home-belief-links .container{gap:clamp(22px,3vw,38px)}
.home-belief-links .home-belief-card{
  position:relative;
  isolation:isolate;
  min-height:clamp(360px,36vw,500px);
  overflow:hidden;
  justify-content:flex-end;
  padding:clamp(28px,3.4vw,48px);
  border-radius:30px;
  background:#0b223e;
  color:#fff;
  box-shadow:0 28px 70px rgba(18,54,96,.2);
  transition:transform .45s cubic-bezier(.2,.7,.2,1),box-shadow .45s ease;
}
.home-belief-links .home-belief-card::before,
.home-belief-links .home-belief-card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}
.home-belief-links .home-belief-card::before{
  z-index:0;
  background-position:center;
  background-size:cover;
  transition:transform .8s cubic-bezier(.2,.7,.2,1);
}
.home-belief-links .home-belief-card::after{
  z-index:0;
  background:linear-gradient(180deg,rgba(4,13,25,.04) 22%,rgba(4,13,25,.34) 55%,rgba(4,13,25,.9) 100%);
}
.home-belief-links .home-belief-card--work{
  border-color:rgba(169,150,245,.9);
  box-shadow:0 28px 70px rgba(82,68,160,.2),0 0 38px rgba(169,150,245,.3);
}
.home-belief-links .home-belief-card--work::before{background-image:url('../img/work-inclusion.png')}
.home-belief-links .home-belief-card--work::after{
  background:linear-gradient(180deg,rgba(25,20,70,.02) 18%,rgba(28,25,72,.3) 52%,rgba(15,18,48,.92) 100%);
}
.home-belief-links .home-belief-card--local{
  border-color:rgba(143,224,194,.95);
  box-shadow:0 28px 70px rgba(34,112,82,.2),0 0 38px rgba(143,224,194,.34);
}
.home-belief-links .home-belief-card--local::before{background-image:url('../img/local-regeneration.png')}
.home-belief-links .home-belief-card--local::after{
  background:linear-gradient(180deg,rgba(10,42,31,.01) 18%,rgba(9,45,33,.26) 52%,rgba(6,31,24,.94) 100%);
}
.home-belief-links .home-belief-card span,
.home-belief-links .home-belief-card strong,
.home-belief-links .home-belief-card b{
  position:relative;
  z-index:1;
  color:#fff;
  text-shadow:0 2px 5px rgba(0,0,0,.85),0 7px 22px rgba(0,0,0,.65);
}
.home-belief-links .home-belief-card span{
  width:fit-content;
  padding:8px 13px;
  border:1px solid rgba(255,255,255,.38);
  border-radius:999px;
  background:rgba(7,20,35,.32);
  font-size:11px;
  line-height:1.45;
  letter-spacing:.11em;
  backdrop-filter:blur(10px);
}
.home-belief-links .home-belief-card strong{
  max-width:20em;
  margin:22px 0 20px;
  font-size:clamp(23px,2.35vw,35px);
  line-height:1.6;
  text-wrap:pretty;
}
.home-belief-links .home-belief-card b{
  margin-top:0;
  font-size:13px;
  letter-spacing:.05em;
}
@media(hover:hover){
  .home-belief-links .home-belief-card:hover{
    transform:translateY(-8px);
  }
  .home-belief-links .home-belief-card:hover::before{transform:scale(1.045)}
  .home-belief-links .home-belief-card--work:hover{box-shadow:0 36px 86px rgba(82,68,160,.3),0 0 48px rgba(169,150,245,.4)}
.home-belief-links .home-belief-card--local:hover{box-shadow:0 36px 86px rgba(34,112,82,.3),0 0 48px rgba(143,224,194,.42)}
}
@media(max-width:760px){
  .home-belief-links .home-belief-card{min-height:430px;padding:28px 24px;border-radius:24px}
  .home-belief-links .home-belief-card strong{font-size:clamp(22px,6.8vw,30px)}
}

/* Community principles: use the available line width before wrapping */
.community-principles__grid{
  grid-template-columns:minmax(0,1.55fr) minmax(320px,.8fr);
  gap:clamp(48px,6vw,84px);
}
.community-principles__grid>div:first-child{
  width:100%;
  max-width:none;
}
.community-principles h2{
  width:100%;
  max-width:none;
  text-wrap:wrap;
}

/* Fixed-page first views: relaxed tracking and an underline that follows the title width */
.fullscreen-section-header.page-hero h1.page-title-marker{
  letter-spacing:.035em;
}
.fullscreen-section-header.page-hero h1.page-title-marker::after{
  width:100%;
  max-width:none;
}
html[lang="ja"] .fullscreen-section-header.page-hero h1.page-title-marker,
html[lang="ja-JP"] .fullscreen-section-header.page-hero h1.page-title-marker{
  letter-spacing:.11em;
}
@media(max-width:900px){
  .community-principles__grid{grid-template-columns:1fr;gap:50px}
}
@media(max-width:720px){
  .fullscreen-section-header.page-hero h1.page-title-marker{letter-spacing:.025em}
  html[lang="ja"] .fullscreen-section-header.page-hero h1.page-title-marker,
  html[lang="ja-JP"] .fullscreen-section-header.page-hero h1.page-title-marker{letter-spacing:.06em}
}

/* Business portfolio model: Design Book glass / soft-gradient treatment */
.business-page .business-sync.resort-hero-card{
  padding:clamp(96px,10vw,148px) clamp(20px,5vw,72px) clamp(104px,11vw,164px);
  color:#0b223e;
  background:
    radial-gradient(circle at 14% 18%,rgba(143,224,194,.28),transparent 27%),
    radial-gradient(circle at 84% 20%,rgba(118,184,245,.28),transparent 29%),
    radial-gradient(circle at 52% 86%,rgba(243,160,198,.22),transparent 30%),
    linear-gradient(145deg,#f7fbfd 0%,#fff 46%,#f7f7fc 100%)!important;
}
.business-page .business-sync.resort-hero-card::before{
  z-index:0;
  opacity:.75;
  background:
    linear-gradient(rgba(18,54,96,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(18,54,96,.035) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(180deg,transparent,black 20%,black 80%,transparent);
}
.business-page .business-sync.resort-hero-card::after{
  inset:clamp(24px,3vw,48px);
  border-color:rgba(18,54,96,.1);
  background:linear-gradient(135deg,rgba(255,255,255,.48),rgba(255,255,255,.08));
  box-shadow:inset 0 1px rgba(255,255,255,.9),0 30px 90px rgba(18,54,96,.08);
}
.business-page .business-sync-title,
.resort-hero-card .business-sync-title{
  color:#0b223e;
  text-shadow:none;
}
.business-page .business-sync-title::before{
  content:"BUSINESS PORTFOLIO";
  display:block;
  width:fit-content;
  margin:0 auto 24px;
  padding:8px 14px;
  border:1px solid rgba(36,121,200,.18);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:#2479c8;
  font-size:11px;
  font-weight:800;
  line-height:1;
  letter-spacing:.18em;
  box-shadow:0 8px 24px rgba(36,121,200,.08);
}
.business-page .business-sync-lead,
.resort-hero-card .business-sync-lead{
  color:#526276;
  text-shadow:none;
}
.business-page .resort-sync .business-orbit{
  width:min(100%,680px);
  margin-top:clamp(52px,6vw,82px);
  border:1px solid rgba(255,255,255,.9);
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 48%,rgba(255,255,255,.84) 0%,rgba(247,251,255,.58) 38%,rgba(235,244,250,.2) 72%,rgba(255,255,255,.48) 100%),
    url('../img/nomadox_business.png') center/cover no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(36,121,200,.08),
    inset 0 0 70px rgba(118,184,245,.14),
    0 40px 100px rgba(18,54,96,.14),
    0 0 54px rgba(103,212,216,.16);
  backdrop-filter:blur(18px);
}
.business-page .resort-sync .business-orbit{
  background-position:center,center;
}
.business-page .resort-sync .business-orbit::before,
.business-page .resort-sync .business-orbit::after{
  content:"";
  display:block;
  position:absolute;
  inset:8%;
  border:1px solid rgba(36,121,200,.09);
  border-radius:50%;
}
.business-page .resort-sync .business-orbit::after{inset:20%;border-color:rgba(36,121,200,.07)}
.business-page .resort-orbit-ring{
  width:70%;
  height:70%;
  animation-duration:16s;
}
.business-page .resort-orbit-svg{
  filter:drop-shadow(0 7px 14px rgba(82,97,230,.22));
}
.business-page .resort-core-image{
  border:8px solid rgba(255,255,255,.88);
  background:#07111f;
  box-shadow:0 18px 48px rgba(18,54,96,.24),0 0 0 1px rgba(36,121,200,.16),0 0 38px rgba(118,184,245,.18);
}
.business-page .resort-orbit .orbit-node.is-highlight{
  border:1px solid rgba(255,255,255,.82);
  color:#fff;
  box-shadow:0 14px 32px rgba(18,54,96,.16),inset 0 1px rgba(255,255,255,.42);
  backdrop-filter:blur(10px);
}
.business-page .resort-orbit .orbit-node.orbit-resort.is-highlight{
  background:linear-gradient(135deg,#42ad91,#79d3b7);
  border-color:rgba(143,224,194,.96);
  box-shadow:0 0 0 4px rgba(143,224,194,.16),0 14px 32px rgba(42,154,121,.3),0 0 32px rgba(143,224,194,.58);
}
.business-page .resort-orbit .orbit-node.orbit-urban.is-highlight{
  background:linear-gradient(135deg,#2479c8,#76b8f5);
  border-color:rgba(118,184,245,.98);
  box-shadow:0 0 0 4px rgba(118,184,245,.16),0 14px 32px rgba(36,121,200,.3),0 0 32px rgba(118,184,245,.58);
}
.business-page .resort-orbit .orbit-node.orbit-shitamachi.is-highlight{
  background:linear-gradient(135deg,#d95191,#f3a0c6);
  border-color:rgba(243,160,198,.98);
  box-shadow:0 0 0 4px rgba(243,160,198,.16),0 14px 32px rgba(205,65,132,.28),0 0 32px rgba(243,160,198,.6);
}
@media(max-width:720px){
  .business-page .business-sync.resort-hero-card{padding:76px 10px 88px}
  .business-page .business-sync.resort-hero-card::after{inset:10px;border-radius:26px}
  .business-page .business-sync-title::before{margin-bottom:20px;font-size:9px}
  .business-page .resort-sync .business-orbit{margin-top:44px;border-radius:50%}
}

/* Mobile key-message fitting is completed with measured font sizing in theme.js */
@media(max-width:600px){
  .mobile-fit-message{
    display:block!important;
    width:100%!important;
    max-width:100%!important;
    white-space:nowrap;
    word-break:keep-all;
    overflow-wrap:normal;
    text-wrap:nowrap;
  }
  .mobile-fit-message.mobile-fit-message--wrap{
    white-space:normal;
    overflow-wrap:anywhere;
    text-wrap:balance;
  }
}

@media(max-width:900px){
  .container.project-page.resort-page.fullscreen-page-shell{
    width:calc(100% - 28px);
    max-width:calc(100% - 28px);
  }
}

/* Keep the Technology & People illustration inside its responsive column */
.technology-people{
  overflow:hidden;
}
.technology-people__grid,
.technology-people__grid>*{
  min-width:0;
  max-width:100%;
}
.technology-people__grid img{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
  margin-inline:auto;
  object-fit:contain;
}
@media(max-width:900px){
  .technology-people__grid img{
    width:min(100%,680px);
  }
}

/* Header polish for the wider 2026 logo and centered external contact CTA */
.site-header{
  background:linear-gradient(
    90deg,
    #111 0%,
    #111 34%,
    rgba(18,34,62,.94) 70%,
    rgba(32,86,178,.92) 100%
  )!important;
}
.site-header .contact-external-link{
  align-items:center;
  justify-content:center;
  gap:7px;
  text-align:center;
  line-height:1.2;
}
.site-header .contact-external-link .ext-link-icon-header{
  flex:0 0 auto;
  margin-left:0;
}
body.nav-compact .nav a.contact-external-link{
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  width:min(100%,320px);
  margin-inline:auto;
  text-align:center;
}
body.nav-compact .nav .contact-external-link .ext-link-icon-header{
  display:inline-block!important;
  width:13px;
  height:13px;
}
@media(max-width:768px){
  .site-header{
    background:linear-gradient(
      90deg,
      #111 0%,
      #111 44%,
      rgba(18,34,62,.96) 76%,
      rgba(32,86,178,.92) 100%
    )!important;
  }
}

/* Community principles: prevent the five mobile cards from exceeding the viewport */
.community-principles,
.community-principles__grid,
.community-principles__grid>*{
  min-width:0;
  max-width:100%;
  box-sizing:border-box;
}
@media(max-width:900px){
  .community-principles{
    overflow:hidden;
  }
  .community-principles .container.community-principles__grid{
    width:min(calc(100% - 32px),1200px);
    margin-inline:auto;
    padding-inline:0;
  }
  .community-principle-tags{
    display:grid;
    width:100%;
    min-width:0;
    max-width:100%;
    grid-template-columns:minmax(0,1fr);
  }
  .community-principle-tags article,
  .community-principle-tags article:nth-child(5){
    grid-column:auto;
    width:100%;
    min-width:0;
    max-width:100%;
    box-sizing:border-box;
  }
  .community-principles__grid>div:first-child{
    overflow:hidden;
  }
  .community-principles h2,
  .community-principles__grid>div:first-child>p{
    max-width:100%;
    overflow-wrap:anywhere;
  }
  .community-principles h2.mobile-fit-message{
    white-space:normal!important;
    word-break:normal;
    text-wrap:balance;
  }
}

/* NOMADOX CLUB expansion: relationships growing into shared possibility */
.community-story{
  color:#fff;
  background:
    radial-gradient(circle at 12% 18%,rgba(103,212,216,.18),transparent 28%),
    radial-gradient(circle at 88% 78%,rgba(169,150,245,.2),transparent 30%),
    linear-gradient(145deg,#07111f,#123e6b);
}
.community-story__grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:clamp(48px,8vw,120px);
  align-items:center;
}
.community-story .section-index{color:#67d4d8}
.community-story h2{
  margin:0;
  font-family:"Noto Serif JP","Noto Serif",serif;
  font-size:clamp(40px,5.5vw,72px);
  font-weight:500;
  line-height:1.5;
  letter-spacing:-.035em;
}
.community-story__grid>p{
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:clamp(16px,1.45vw,19px);
  line-height:2.2;
}
.community-activities{
  background:linear-gradient(145deg,#f6fbfd,#fff 48%,#f8f6fc);
}
.community-activity-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
  margin-top:64px;
}
.community-activity{
  min-width:0;
  overflow:hidden;
  border:1px solid rgba(36,121,200,.2);
  border-radius:24px;
  background:#fff;
  box-shadow:0 22px 55px rgba(18,54,96,.11);
}
.community-activity figure{
  position:relative;
  margin:0;
  overflow:hidden;
  aspect-ratio:4/3;
  background:#eaf2f7;
}
.community-activity figure::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 55%,rgba(7,17,31,.18));
}
.community-activity img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .65s ease;
}
.community-activity--1 img,
.community-activity--2 img,
.community-activity--3 img,
.community-activity--4 img,
.community-activity--5 img{object-position:center}
.community-activity>div{padding:26px 22px 30px}
.community-activity span{color:#2479c8;font-size:12px;font-weight:800;letter-spacing:.16em}
.community-activity h3{margin:15px 0 0;color:#0b223e;font-size:clamp(21px,1.8vw,28px);line-height:1.5}
.community-activity p{margin:16px 0 0;color:#526276;font-size:14px;line-height:1.9}
.community-activities .community-copy>p:last-child{max-width:880px;white-space:pre-line;text-wrap:pretty}
.community-activity--1{border-color:rgba(103,212,216,.58);box-shadow:0 22px 55px rgba(66,172,181,.14),0 0 25px rgba(103,212,216,.2)}
.community-activity--2{border-color:rgba(118,184,245,.62);box-shadow:0 22px 55px rgba(36,121,200,.14),0 0 25px rgba(118,184,245,.22)}
.community-activity--3{border-color:rgba(243,160,198,.68);box-shadow:0 22px 55px rgba(205,65,132,.13),0 0 25px rgba(243,160,198,.23)}
.community-activity--4{border-color:rgba(143,224,194,.78);box-shadow:0 22px 55px rgba(42,154,121,.14),0 0 25px rgba(143,224,194,.25)}
.community-activity--5{border-color:rgba(169,150,245,.7);box-shadow:0 22px 55px rgba(105,82,196,.14),0 0 25px rgba(169,150,245,.24)}
@media(hover:hover){.community-activity:hover img{transform:scale(1.045)}}
.community-charter-links{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  margin-top:32px;
}
.community-charter-heading{
  width:100%;
  max-width:1040px;
  margin-top:clamp(90px,10vw,140px);
}
.community-charter-heading h2{
  margin:0;
  color:#0b223e;
  font-size:clamp(34px,4.5vw,60px);
  line-height:1.4;
  letter-spacing:-.035em;
  text-wrap:pretty;
}
.community-charter-heading>p:last-child{
  max-width:960px;
  margin:28px 0 0;
  color:#526276;
  font-size:17px;
  line-height:2;
}
.community-charter-links article{
  padding:32px;
  border:1px solid rgba(103,212,216,.68);
  border-radius:22px;
  background:rgba(255,255,255,.82);
  box-shadow:0 20px 50px rgba(52,147,158,.12),0 0 28px rgba(103,212,216,.22);
}
.community-charter-links article:nth-child(2){border-color:rgba(169,150,245,.68);box-shadow:0 20px 50px rgba(105,82,196,.12),0 0 28px rgba(169,150,245,.22)}
.community-charter-links article:nth-child(3){border-color:rgba(143,224,194,.76);box-shadow:0 20px 50px rgba(42,154,121,.12),0 0 28px rgba(143,224,194,.22)}
.community-charter-links h3{margin:0 0 16px;color:#0b223e;font-size:clamp(22px,2vw,30px);line-height:1.55}
.community-charter-links span{display:block;color:#176eb8;font-size:11px;font-weight:800;line-height:1.7;letter-spacing:.06em}
.community-charter-links p{margin:18px 0 0;color:#526276;line-height:2}
@media(max-width:1100px){.community-activity-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:760px){
  .community-story__grid,.community-charter-links{grid-template-columns:1fr}
  .community-activity-grid{grid-template-columns:1fr;gap:22px}
  .community-activity{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);align-items:stretch}
  .community-activity figure{height:100%;min-height:220px;aspect-ratio:auto}
  .community-activity>div{display:flex;padding:24px 20px;justify-content:center;flex-direction:column}
}
@media(max-width:460px){
  .community-activity{grid-template-columns:1fr}
  .community-activity figure{min-height:230px;aspect-ratio:4/3}
}

/* A simple top-page bridge to the formal philosophy, without introducing another numbered system */
.home-belief-bridge{
  padding:clamp(92px,10vw,150px) 0;
  border-block:1px solid rgba(18,54,96,.08);
  background:
    radial-gradient(circle at 12% 24%,rgba(143,224,194,.2),transparent 27%),
    radial-gradient(circle at 88% 76%,rgba(169,150,245,.18),transparent 28%),
    linear-gradient(145deg,#f7fbfd,#fff 52%,#f8f6fc);
}
.home-belief-bridge .container{max-width:1040px;text-align:center}
.home-belief-bridge h2{
  margin:0;
  color:#0b223e;
  font-family:"Noto Serif JP","Noto Serif",serif;
  font-size:clamp(38px,5.2vw,70px);
  font-weight:500;
  line-height:1.5;
  letter-spacing:-.035em;
  text-wrap:balance;
}
.home-belief-bridge> .container>p:not(.section-index){
  max-width:900px;
  margin:34px auto 0;
  color:#526276;
  font-size:clamp(16px,1.45vw,19px);
  line-height:2.15;
  text-wrap:pretty;
}
.home-belief-bridge .brand-text-link{margin-top:30px}

/* Constitution v4.0: connection grows into co-creation and value circulation */
.journey-intro__line--v4{grid-template-columns:repeat(5,minmax(0,1fr))}
.creation-stage{
  --journey-accent:#d9942f;
  --journey-accent-rgb:217,148,47;
  color:#0b223e;
  overflow:hidden;
  background:
    radial-gradient(circle at 8% 12%,rgba(255,190,92,.16),transparent 30%),
    radial-gradient(circle at 94% 88%,rgba(169,150,245,.13),transparent 32%),
    linear-gradient(145deg,#fffaf3,#fff 48%,#faf8ff);
}
.circulation-stage{
  --journey-accent:#2f9b74;
  --journey-accent-rgb:47,155,116;
  color:#0b223e;
  overflow:hidden;
  background:
    radial-gradient(circle at 86% 12%,rgba(143,224,194,.2),transparent 32%),
    radial-gradient(circle at 8% 92%,rgba(118,184,245,.12),transparent 30%),
    linear-gradient(145deg,#f3fbf7,#fff 52%,#f4f9fd);
}
.journey-editorial{
  display:grid;
  grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr);
  grid-template-areas:"copy visual" "rail rail";
  gap:clamp(46px,6vw,88px) clamp(48px,7vw,110px);
  align-items:center;
}
.journey-editorial--circulation{grid-template-columns:repeat(2,minmax(0,1fr));grid-template-areas:"visual copy" "rail rail"}
.journey-editorial__copy{grid-area:copy;min-width:0}
.journey-editorial__copy .brand-section__head{max-width:none;margin:0;text-align:left}
.journey-editorial__copy .brand-section__head h2{
  max-width:11em;
  font-family:"Noto Serif JP","Noto Serif",serif;
  font-size:clamp(40px,4.3vw,64px);
  font-weight:500;
  line-height:1.45;
  letter-spacing:-.045em;
  text-wrap:balance;
}
html[lang^="ja"] .home .journey-editorial--circulation .brand-section__head h2{
  width:max-content;
  max-width:100%;
  font-size:clamp(19px,5.7vw,34px);
  letter-spacing:-.055em;
  white-space:nowrap;
  text-wrap:nowrap;
}
.journey-editorial__copy .brand-section__head>p:last-child{
  max-width:42em;
  margin-top:30px;
  color:#526276;
  font-size:clamp(15px,1.25vw,18px);
  line-height:2.05;
}
.journey-editorial__visual{
  position:relative;
  z-index:0;
  grid-area:visual;
  margin:0;
}
.journey-editorial__visual::before{
  content:"";
  position:absolute;
  z-index:-1;
  inset:clamp(16px,2vw,28px) clamp(-18px,-1.2vw,-10px) clamp(-18px,-1.2vw,-10px) clamp(16px,2vw,28px);
  border:1px solid rgba(var(--journey-accent-rgb),.28);
  border-radius:clamp(28px,3vw,44px);
  box-shadow:0 0 38px rgba(var(--journey-accent-rgb),.12);
}
.journey-editorial__visual img{
  display:block;
  width:100%;
  height:auto;
  border:1px solid rgba(255,255,255,.86);
  border-radius:clamp(26px,3vw,42px);
  object-fit:contain;
  box-shadow:0 30px 80px rgba(18,54,96,.17),inset 0 1px 0 rgba(255,255,255,.9);
}
.v4-flow{
  display:grid;
  grid-area:rail;
  grid-template-columns:minmax(0,1fr) 24px minmax(0,1fr) 24px minmax(0,1fr) 24px minmax(0,1fr) 24px minmax(0,1fr);
  gap:8px;
  align-items:center;
  margin-top:4px;
  counter-reset:co-creation-step;
}
.v4-flow span{
  display:grid;
  min-height:92px;
  padding:18px 14px;
  place-items:center;
  border:1px solid rgba(var(--journey-accent-rgb),.3);
  border-radius:20px;
  background:rgba(255,255,255,.82);
  box-shadow:0 16px 38px rgba(18,54,96,.07),0 0 24px rgba(var(--journey-accent-rgb),.08);
  font-size:clamp(13px,1.05vw,16px);
  font-weight:800;
  line-height:1.65;
  text-align:center;
  counter-increment:co-creation-step;
}
.v4-flow span::before{
  content:"0" counter(co-creation-step);
  display:block;
  margin-bottom:6px;
  color:var(--journey-accent);
  font-size:10px;
  line-height:1;
  letter-spacing:.14em;
}
.v4-flow i{color:var(--journey-accent);font-size:20px;font-style:normal;text-align:center}
.circulation-values{
  display:grid;
  grid-area:rail;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
  align-items:center;
  margin-top:4px;
}
.circulation-values span,.circulation-values strong{
  display:grid;
  min-height:86px;
  padding:16px;
  place-items:center;
  border-radius:22px;
  text-align:center;
}
.circulation-values span{
  border:1px solid rgba(var(--journey-accent-rgb),.3);
  color:#173452;
  background:rgba(255,255,255,.84);
  box-shadow:0 16px 38px rgba(18,54,96,.07),0 0 24px rgba(var(--journey-accent-rgb),.08);
  font-weight:700;
}
.circulation-values strong{
  position:relative;
  color:#fff;
  background:linear-gradient(145deg,#58bd91,#208b68);
  box-shadow:0 20px 50px rgba(32,139,104,.25),0 0 30px rgba(143,224,194,.22);
  font-size:17px;
}
.philosophy-v4-story{background:linear-gradient(145deg,#fffaf1,#fff 48%,#f0faf5)}
.philosophy-v4-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px;margin-top:58px}
.philosophy-v4-grid article{padding:clamp(32px,4vw,54px);border:1px solid rgba(230,154,43,.42);border-radius:28px;background:rgba(255,255,255,.82);box-shadow:0 24px 65px rgba(150,101,29,.1),0 0 30px rgba(255,190,92,.15)}
.philosophy-v4-grid article:nth-child(2){border-color:rgba(82,185,143,.5);box-shadow:0 24px 65px rgba(49,164,123,.11),0 0 30px rgba(143,224,194,.2)}
.philosophy-v4-grid span{color:#176eb8;font-size:12px;font-weight:800;letter-spacing:.14em}
.philosophy-v4-grid h3{margin:22px 0 18px;font-size:clamp(24px,2.7vw,38px);line-height:1.55}
.philosophy-v4-grid p{margin:0;color:#526276;line-height:2.1}
.model-overview img,.philosophy-model img{width:100%;height:auto;object-fit:contain}

/* Purpose story: explain why place matters through time and relationships */
.purpose-section--story{
  display:block;
  min-height:0;
  padding:clamp(120px,13vw,200px) 0;
  background:
    radial-gradient(circle at 10% 8%,rgba(118,184,245,.12),transparent 28%),
    radial-gradient(circle at 90% 78%,rgba(143,224,194,.14),transparent 30%),
    #fff;
}
.purpose-story{max-width:1080px;margin-inline:auto}
.purpose-story__header{max-width:1000px}
.purpose-story__header h2{
  max-width:980px;
  margin:24px 0 0;
  color:#0b223e;
  font-family:"Noto Serif JP","Noto Serif",serif;
  font-size:clamp(42px,5vw,64px);
  font-weight:500;
  line-height:1.48;
  letter-spacing:-.04em;
  text-wrap:balance;
}
.purpose-story__lead{
  max-width:920px;
  margin:clamp(76px,9vw,130px) 0 0;
  color:#203d59;
  font-family:"Noto Serif JP","Noto Serif",serif;
  font-size:clamp(24px,2.8vw,36px);
  line-height:1.8;
  letter-spacing:-.025em;
  text-wrap:pretty;
}
.purpose-story__background{
  max-width:800px;
  margin:clamp(86px,10vw,150px) 0 0 auto;
}
.purpose-story__background--with-visual{
  display:grid;
  grid-template-columns:minmax(260px,.72fr) minmax(0,1.28fr);
  max-width:none;
  margin:clamp(86px,10vw,150px) 0 0;
  align-items:start;
  gap:clamp(48px,7vw,96px);
}
.purpose-story__visual{
  position:relative;
  width:100%;
  max-width:390px;
  margin:0;
  justify-self:start;
}
.purpose-story__visual::before{
  content:"";
  position:absolute;
  z-index:0;
  inset:18px -18px -18px 18px;
  border:1px solid rgba(118,184,245,.34);
  border-radius:30px;
  background:linear-gradient(145deg,rgba(103,212,216,.16),rgba(169,150,245,.12));
  box-shadow:0 0 34px rgba(103,212,216,.2);
}
.purpose-story__visual img{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  aspect-ratio:1/1.72;
  border:1px solid rgba(255,255,255,.72);
  border-radius:30px;
  object-fit:cover;
  object-position:center;
  box-shadow:0 30px 70px rgba(11,34,62,.22);
}
/* On desktop the story copy defines the row height; the portrait follows it. */
@media(min-width:901px){
  .purpose-story__background--with-visual{align-items:stretch}
  .purpose-story__background--with-visual .purpose-story__visual{align-self:stretch;min-height:0}
  .purpose-story__background--with-visual .purpose-story__visual img{
    position:absolute;
    inset:0;
    height:100%;
    aspect-ratio:auto;
    object-position:center 62%;
  }
}
@media(max-width:900px){
  .purpose-story__background--with-visual{
    grid-template-columns:1fr;
    margin-top:76px;
    gap:clamp(42px,7vw,58px);
  }
  .purpose-story__background--with-visual .purpose-story__visual{
    width:min(calc(100% - 24px),320px);
    max-width:320px;
    margin-inline:auto;
    justify-self:center;
    align-self:start;
  }
  .purpose-story__background--with-visual .purpose-story__visual::before{
    inset:10px -8px -8px 10px;
    border-radius:22px;
  }
  .purpose-story__background--with-visual .purpose-story__visual img{
    width:100%;
    height:auto;
    aspect-ratio:4/3;
    border-radius:22px;
    object-position:center 68%;
  }
}
.purpose-story__background-copy{min-width:0;padding-top:clamp(8px,2vw,28px)}
.purpose-story__background p{margin:0;color:#526276;font-size:clamp(16px,1.4vw,19px);line-height:2.25;text-wrap:pretty}
.purpose-story__background p+p{margin-top:clamp(52px,6vw,86px)}
.purpose-story__statement{
  max-width:1000px;
  margin:clamp(120px,13vw,190px) auto 0;
  padding:0;
  border:0;
  color:#0b223e;
  font-family:"Noto Serif JP","Noto Serif",serif;
  font-size:clamp(34px,4vw,52px);
  font-weight:500;
  line-height:1.65;
  letter-spacing:-.04em;
  text-align:center;
  text-wrap:balance;
}
.purpose-story__statement::before{content:"";display:block;width:74px;height:2px;margin:0 auto 46px;background:linear-gradient(90deg,#67d4d8,#2479c8,#f3a0c6)}
.purpose-story__transition{max-width:720px;margin:clamp(96px,10vw,150px) auto 0;color:#2479c8;font-size:clamp(17px,1.6vw,21px);font-weight:700;line-height:2;text-align:center}

.contact-purpose-list{display:flex;max-width:920px;margin:34px auto 38px;padding:0;flex-wrap:wrap;justify-content:center;gap:10px 14px;list-style:none}
.contact-purpose-list li{padding:9px 16px;border:1px solid rgba(255,255,255,.28);border-radius:999px;color:rgba(255,255,255,.88);font-size:13px;line-height:1.5}
.company-action-ending{padding:clamp(100px,12vw,170px) 20px;background:linear-gradient(145deg,#f4fbff,#fff 52%,#f2fbf7);text-align:center}
.company-action-ending .container{max-width:880px}
.company-action-ending h2{margin:22px 0 0;color:#0b223e;font-family:"Noto Serif JP","Noto Serif",serif;font-size:clamp(38px,5.4vw,68px);font-weight:500;line-height:1.45}
.company-action-ending p:not(.section-index){max-width:700px;margin:28px auto 34px;color:#526276;font-size:clamp(16px,1.5vw,19px);line-height:2}

html[lang="en-US"] .purpose-story :is(h2,.purpose-story__lead,.purpose-story__statement){font-family:"Noto Serif",serif}
html[lang="zh-CN"] .purpose-story :is(h2,.purpose-story__lead,.purpose-story__statement){font-family:"Noto Serif SC","Noto Serif",serif}
html[lang="zh-TW"] .purpose-story :is(h2,.purpose-story__lead,.purpose-story__statement){font-family:"Noto Serif TC","Noto Serif",serif}
html[lang="ko-KR"] .purpose-story :is(h2,.purpose-story__lead,.purpose-story__statement){font-family:"Noto Serif KR","Noto Serif",serif}

@media(max-width:980px){
  .journey-editorial,
  .journey-editorial--circulation{
    grid-template-columns:1fr;
    grid-template-areas:"copy" "visual" "rail";
    gap:44px;
  }
  .journey-editorial__copy{max-width:760px}
  .journey-editorial__visual{width:100%}
}

@media(max-width:760px){
  .journey-intro__line--v4{grid-template-columns:1fr}
  .creation-stage,.circulation-stage{padding-block:100px}
  .journey-editorial,.journey-editorial--circulation{gap:34px}
  .journey-editorial__copy .brand-section__head h2{font-size:clamp(32px,9vw,44px);line-height:1.5}
  .journey-editorial__copy .brand-section__head>p:last-child{margin-top:24px;font-size:15px;line-height:2}
  .journey-editorial__visual::before{inset:12px -8px -8px 12px;border-radius:26px}
  .journey-editorial__visual img{border-radius:24px}
  .v4-flow{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:8px}
  .v4-flow span{width:100%;min-height:82px;padding:14px 10px;border-radius:17px}
  .v4-flow span:last-child{grid-column:1/-1}
  .v4-flow i{display:none}
  .circulation-values{grid-template-columns:repeat(2,minmax(0,1fr))}
  .circulation-values strong{grid-column:1/-1;grid-row:1;border-radius:20px}
  .circulation-values span,.circulation-values strong{min-height:78px;border-radius:18px}
  .philosophy-v4-grid{grid-template-columns:1fr}
  .purpose-section--story{padding:96px 0 110px}
  .purpose-story__header h2{font-size:clamp(32px,9vw,42px);line-height:1.55}
  .purpose-story__lead{margin-top:62px;font-size:clamp(22px,6.3vw,29px);line-height:1.8}
  .purpose-story__background{margin-top:76px}
  .purpose-story__background--with-visual{grid-template-columns:1fr;margin-top:76px;gap:clamp(40px,11vw,46px)}
  .purpose-story__visual{width:min(calc(100% - 24px),320px);max-width:320px;margin-inline:auto;justify-self:center}
  .purpose-story__visual::before{inset:10px -8px -8px 10px;border-radius:22px}
  .purpose-story__visual img{width:100%;height:auto;aspect-ratio:4/3;border-radius:22px;object-position:center 68%}
  .purpose-story__background-copy{padding-top:0}
  .purpose-story__background p{font-size:16px;line-height:2.2}
  .purpose-story__background p+p{margin-top:48px}
  .purpose-story__statement{margin-top:100px;font-size:clamp(28px,7.8vw,36px);line-height:1.75}
  .purpose-story__statement::before{margin-bottom:34px}
  .purpose-story__transition{margin-top:88px}
}

@media(max-width:900px){
  .business-projects-slider .business-project-overlay{
    inset:0;
    width:auto;
    padding:28px 20px 24px;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    backdrop-filter:none;
  }
  .business-projects-slider .project-overlay-body-wrap{width:100%;padding:18px 16px;border:0;background:transparent;box-shadow:none;backdrop-filter:none}
}

.home .home-concept-image-panel{
  position: relative;
}

.home .home-concept-image-panel::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 20, 42, .06) 0%, rgba(8, 20, 42, 0) 24%, rgba(6, 18, 38, .12) 56%, rgba(5, 16, 34, .74) 100%);
  pointer-events: none;
}

.home .home-concept-copy,
#about .home-concept-copy{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block !important;
  color: rgba(255,255,255,.98);
  text-shadow: 0 2px 14px rgba(0,0,0,.34);
  pointer-events: none;
}

.home .home-concept-copy-top{
  position: absolute;
  top: 32.8%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 10px;
  text-align: center;
  width: min(78%, 760px);
  padding: 0;
}

.home .home-concept-brand{
  display: block !important;
  margin: 0;
  font-size: clamp(52px, 6.7vw, 86px);
  font-weight: 300;
  letter-spacing: .08em;
  line-height: .94;
  font-family: "Avenir Next", "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

.home .home-concept-tagline{
  display: block !important;
  margin: 0;
  font-size: clamp(22px, 2.45vw, 34px);
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.15;
}

.home .home-concept-copy-bottom{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: clamp(8px, .9vw, 14px);
  align-content: end;
  justify-items: center;
  width: min(100%, 1120px);
  padding: 0 clamp(40px, 4.2vw, 52px) clamp(24px, 2.6vw, 34px);
  margin-inline: auto;
  text-align: center;
}

.home .home-concept-copy-bottom::before{
  content: "";
  display: block;
  width: min(100%, 510px);
  height: 1px;
  margin: 0 auto 6px;
  background: rgba(255,255,255,.58);
}

.home .home-concept-line,
#about .home-concept-copy .home-concept-line{
  display: block !important;
  margin: 0 !important;
  font-size: clamp(18px, 1.54vw, 26px);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: .02em;
}

.home .home-concept-line.is-strong{
  font-size: calc(clamp(20px, 1.86vw, 34px) + 2px);
  font-weight: 800;
  line-height: 1.34;
}

.home .home-concept-copy-bottom .home-concept-line:nth-of-type(3){
  order: 2;
  font-size: calc(clamp(20px, 1.86vw, 34px) + 2px) !important;
  font-weight: 800 !important;
  line-height: 1.34;
}

.home .home-concept-copy-bottom::before{
  order: 1;
}

.home .home-concept-copy-bottom .home-concept-line:nth-of-type(4){
  order: 3;
}

@media (max-width: 900px){
  .home .home-concept-copy,
  #about .home-concept-copy{
    display: block !important;
  }

  .home .home-concept-copy-top{
    top: 19%;
    left: 50%;
    transform: translate(-50%, 0);
    gap: 4px;
    width: min(92%, 380px);
    padding: 0;
  }

  .home .home-concept-brand{
    display: block !important;
    font-size: clamp(30px, 9.8vw, 48px);
    letter-spacing: .06em;
  }

  .home .home-concept-tagline{
    display: block !important;
    font-size: clamp(13px, 4.1vw, 18px);
    letter-spacing: .03em;
    line-height: 1.1;
  }

  .home .home-concept-copy-bottom{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    justify-items: center;
    text-align: center;
    gap: 8px;
    padding: 0 18px 18px;
  }

  .home .home-concept-copy-bottom::before{
    width: min(82vw, 320px);
    margin: 4px auto 2px;
  }

  .home .home-concept-line,
  #about .home-concept-copy .home-concept-line{
    font-size: clamp(12px, 3.5vw, 17px);
    line-height: 1.5;
  }

  .home .home-concept-line.is-strong{
    font-size: clamp(14px, 4.2vw, 22px);
    line-height: 1.42;
  }

  .home .home-concept-copy-bottom .home-concept-line:nth-of-type(3){
    font-size: calc(clamp(14px, 4.2vw, 22px) + 2px) !important;
    font-weight: 800 !important;
  }
}

/* Accommodation booking */
.booking-page,
.booking-management-page{
  padding-block: clamp(24px, 4vw, 56px) clamp(56px, 7vw, 96px);
}

.booking-hero{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(26px, 4vw, 48px) 0 clamp(22px, 3.2vw, 36px);
  border-bottom: 1px solid rgba(16, 38, 45, .14);
}

.booking-kicker{
  margin: 0 0 10px;
  color: rgba(16, 38, 45, .62);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.booking-hero h1{
  margin: 0;
  color: #10262d;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}

.booking-hero p:not(.booking-kicker){
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(16, 38, 45, .74);
  font-size: clamp(15px, 1.55vw, 19px);
  line-height: 1.9;
}

.booking-hero-actions,
.booking-management-actions,
.booking-ops-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-link-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #10262d;
  border-radius: 6px;
  background: #10262d;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.booking-link-button:hover{
  color: #fff;
  opacity: .9;
}

.booking-link-button.is-secondary{
  background: #fff;
  color: #10262d;
}

.booking-link-button.is-secondary:hover{
  color: #10262d;
}

.booking-shell{
  margin-top: clamp(24px, 4vw, 42px);
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(16, 38, 45, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 39, 48, .08);
  overflow-x: auto;
}

.booking-shell #booking-package{
  min-width: min(100%, 320px);
}

.booking-stay-summary{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
  margin-top: clamp(24px, 4vw, 42px);
  padding: clamp(22px, 3.5vw, 36px);
  border: 1px solid rgba(16, 38, 45, .12);
  border-radius: 8px;
  background: #f7faf8;
}

.booking-stay-copy h2,
.booking-calendar-heading h2{
  margin: 0;
  color: #10262d;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.35;
  letter-spacing: 0;
}

.booking-stay-copy p:not(.booking-kicker),
.booking-calendar-heading p:not(.booking-kicker){
  margin: 14px 0 0;
  color: rgba(16, 38, 45, .74);
  font-size: 15px;
  line-height: 1.9;
}

.booking-stay-points{
  display: grid;
  gap: 12px;
}

.booking-stay-points div{
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 3px;
  padding: 16px;
  border: 1px solid rgba(16, 38, 45, .1);
  border-radius: 8px;
  background: #fff;
}

.booking-stay-points span{
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #10262d;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.booking-stay-points strong{
  color: #10262d;
  font-size: 16px;
  line-height: 1.4;
}

.booking-stay-points p{
  margin: 0;
  color: rgba(16, 38, 45, .68);
  font-size: 14px;
  line-height: 1.6;
}

.booking-calendar-heading{
  margin-bottom: clamp(18px, 3vw, 28px);
}

.booking-notice{
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.booking-notice h2,
.booking-info-panel h2,
.booking-management-card h2,
.booking-ops-panel h2{
  margin: 0;
  color: #10262d;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  letter-spacing: 0;
}

.booking-notice p,
.booking-info-panel p,
.booking-management-note,
.booking-ops-panel li{
  margin: 0;
  color: rgba(16, 38, 45, .74);
  font-size: 15px;
  line-height: 1.8;
}

.booking-info-grid,
.booking-management-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(20px, 3vw, 34px);
}

.booking-info-panel,
.booking-management-card,
.booking-ops-panel{
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(16, 38, 45, .12);
  border-radius: 8px;
  background: #fff;
}

.booking-info-panel{
  display: grid;
  align-content: start;
  gap: 12px;
}

.booking-management-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-management-card{
  display: grid;
  gap: 18px;
}

.booking-management-card.is-current{
  border-color: rgba(11, 105, 124, .42);
  box-shadow: 0 14px 34px rgba(11, 105, 124, .1);
}

.booking-management-card-head{
  display: grid;
  gap: 4px;
}

.booking-management-meta{
  display: grid;
  gap: 12px;
  margin: 0;
}

.booking-management-meta div{
  display: grid;
  gap: 4px;
  min-width: 0;
}

.booking-management-meta dt{
  color: rgba(16, 38, 45, .56);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.booking-management-meta dd{
  min-width: 0;
  margin: 0;
  color: #10262d;
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.booking-management-meta code{
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(16, 38, 45, .06);
  color: #10262d;
  font-size: 13px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.booking-ops-panel{
  display: grid;
  gap: 18px;
  margin-top: clamp(20px, 3vw, 34px);
}

.booking-ops-panel ol{
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.35em;
}

.booking-faq-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(20px, 3vw, 34px);
}

.booking-faq-section{
  margin-top: clamp(20px, 3vw, 34px);
}

.booking-faq-heading h2{
  margin: 0;
  color: #10262d;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.25;
  letter-spacing: 0;
}

.booking-faq-item{
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(16, 38, 45, .12);
  border-radius: 8px;
  background: #fff;
}

.booking-faq-item h2,
.booking-faq-item h3{
  margin: 0;
  color: #10262d;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: 0;
}

.booking-faq-item p{
  margin: 10px 0 0;
  color: rgba(16, 38, 45, .74);
  font-size: 15px;
  line-height: 1.8;
}

.booking-info-panel a,
.booking-notice a,
.booking-faq-item a{
  color: #0f7b84;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px){
  .booking-hero{
    display: grid;
    align-items: start;
  }

  .booking-hero-actions,
  .booking-management-actions,
  .booking-ops-links{
    width: 100%;
  }

  .booking-link-button{
    flex: 1 1 180px;
  }

  .booking-info-grid,
  .booking-management-grid,
  .booking-faq-grid{
    grid-template-columns: 1fr;
  }

  .booking-stay-summary{
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .booking-shell{
    padding: 14px;
  }
}

/* Booking page polish */
.page-template-page-booking body,
body.page-template-page-booking,
body.page-template-page-booking-php{
  background: #edf5f2 !important;
}

body.page-template-page-booking::after,
body.page-template-page-booking-php::after{
  background:
    linear-gradient(180deg, rgba(237, 245, 242, .02) 0%, rgba(237, 245, 242, .58) 32%, rgba(237, 245, 242, .96) 72%, #edf5f2 100%) !important;
}

body.page-template-page-booking main#content,
body.page-template-page-booking-php main#content{
  padding-top: 0;
}

body.page-template-page-booking .breadcrumbs,
body.page-template-page-booking-php .breadcrumbs{
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
  padding-top: 18px;
}

.container.booking-page{
  width: min(1480px, calc(100% - 64px));
  padding-block: clamp(28px, 5vw, 72px) clamp(70px, 8vw, 112px);
}

.booking-page .booking-hero{
  min-height: clamp(420px, 54svh, 680px);
  align-items: center;
  padding: clamp(36px, 6vw, 84px);
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(242, 249, 247, .92) 0%, rgba(242, 249, 247, .76) 42%, rgba(242, 249, 247, .08) 78%),
    url("../img/resort.png") center / cover no-repeat;
  box-shadow: 0 30px 90px rgba(9, 33, 39, .22);
}

.booking-page .booking-hero > div:first-child{
  max-width: 1040px;
}

.booking-page .booking-kicker{
  color: #0f7b84;
}

.booking-page .booking-hero h1{
  max-width: none;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.03;
  white-space: nowrap;
  text-wrap: nowrap;
}

.booking-page .booking-hero p:not(.booking-kicker){
  max-width: 920px;
  color: rgba(16,38,45,.82);
  font-size: clamp(16px, 1.45vw, 20px);
}

.booking-page .booking-hero-actions{
  flex: 0 0 auto;
  min-width: 210px;
}

.booking-page .booking-link-button{
  min-height: 48px;
  border-color: rgba(15,123,132,.95);
  background: #0f7b84;
  box-shadow: 0 16px 34px rgba(15, 123, 132, .22);
}

.booking-page .booking-link-button.is-secondary{
  background: rgba(255,255,255,.92);
  color: #0f7b84;
  box-shadow: none;
}

.booking-page .booking-stay-summary,
.booking-page .booking-shell{
  width: 100%;
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,.74);
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 70px rgba(9, 33, 39, .14);
  backdrop-filter: blur(12px);
}

.booking-page .booking-stay-summary{
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, .82fr);
  padding: clamp(30px, 4vw, 56px);
}

.booking-page .booking-stay-copy h2,
.booking-page .booking-calendar-heading h2{
  max-width: none;
  font-size: clamp(30px, 3.35vw, 52px);
  white-space: nowrap;
  text-wrap: nowrap;
}

.booking-page .booking-stay-copy p:not(.booking-kicker),
.booking-page .booking-calendar-heading p:not(.booking-kicker){
  max-width: 900px;
}

.booking-page .booking-stay-points div{
  min-height: 92px;
  border-color: rgba(15,123,132,.14);
  background: linear-gradient(180deg, #fff, #f6fbfa);
}

.booking-page .booking-stay-points strong,
.booking-page .booking-info-panel h2,
.booking-page .booking-faq-item h2,
.booking-page .booking-faq-item h3{
  white-space: nowrap;
  text-wrap: nowrap;
}

.booking-page .booking-stay-points span{
  background: #0f7b84;
}

.booking-page .booking-info-grid{
  grid-template-columns: repeat(3, minmax(360px, 1fr));
  gap: 18px;
}

.booking-page .booking-info-panel,
.booking-page .booking-faq-item{
  min-width: 0;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 48px rgba(9, 33, 39, .12);
  backdrop-filter: blur(10px);
}

.booking-page .booking-shell{
  padding: clamp(30px, 4vw, 56px);
  overflow: visible;
}

.booking-page .booking-shell #booking-package,
.booking-page .booking-shell .booking-package,
.booking-page .booking-shell .start_booking_package{
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

.booking-page #booking-package_calendarPage,
.booking-page #booking-package_durationStay,
.booking-page #booking-package_schedulePage,
.booking-page #booking-package_inputFormPanel{
  width: 100% !important;
  max-width: none !important;
}

.booking-page #booking-package_calendarPage table{
  width: 100% !important;
  table-layout: fixed;
  border-collapse: separate !important;
  border-spacing: 6px;
}

.booking-page #booking-package_calendarPage th,
.booking-page #booking-package_calendarPage td{
  border: 0 !important;
  border-radius: 8px;
}

.booking-page #booking-package_calendarPage td,
.booking-page #booking-package_calendarPage td *,
.booking-page #booking-package_calendarPage .day,
.booking-page #booking-package_calendarPage .calendarData{
  pointer-events: auto !important;
}

.booking-page #booking-package_calendarPage td{
  cursor: pointer;
  background: #f4f7f6 !important;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.booking-page #booking-package_calendarPage td:hover{
  transform: translateY(-2px);
  background: #e6f3f1 !important;
  box-shadow: 0 10px 24px rgba(15,123,132,.16);
}

.booking-page .nomadox-booking-price-breakdown{
  margin: 18px 0;
  padding: 18px 20px;
  border: 1px solid rgba(15,123,132,.24);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(241,250,248,.98), rgba(255,255,255,.98));
  color: #10282f;
}

.booking-page .nomadox-booking-price-breakdown__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15,123,132,.18);
  font-weight: 800;
}

.booking-page .nomadox-booking-price-breakdown__header span{
  font-size: 15px;
}

.booking-page .nomadox-booking-price-breakdown__header strong{
  white-space: nowrap;
  color: #087b84;
  font-size: 20px;
}

.booking-page .nomadox-booking-price-breakdown ul{
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.booking-page .nomadox-booking-price-breakdown li{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  font-size: 14px;
}

.booking-page .nomadox-booking-price-breakdown li span{
  color: #52666b;
}

.booking-page .nomadox-booking-price-breakdown li strong{
  white-space: nowrap;
  text-align: right;
  font-weight: 800;
}

.booking-page .nomadox-booking-price-breakdown p{
  margin: 14px 0 0;
  color: #52666b;
  font-size: 13px;
  line-height: 1.7;
}

.booking-page .booking-faq-grid{
  grid-template-columns: repeat(2, minmax(420px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

@media (max-width: 1180px){
  .booking-page .booking-hero{
    display: grid;
    min-height: auto;
  }

  .booking-page .booking-hero h1,
  .booking-page .booking-stay-copy h2,
  .booking-page .booking-calendar-heading h2{
    white-space: normal;
    text-wrap: balance;
  }

  .booking-page .booking-info-grid,
  .booking-page .booking-faq-grid{
    grid-template-columns: 1fr;
  }

  .booking-page .booking-stay-summary{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px){
  body.page-template-page-booking .breadcrumbs,
  body.page-template-page-booking-php .breadcrumbs,
  .container.booking-page{
    width: calc(100% - 28px);
  }

  .booking-page .booking-hero{
    padding: 24px;
    background:
      linear-gradient(180deg, rgba(242,249,247,.92), rgba(242,249,247,.82)),
      url("../img/resort.png") center / cover no-repeat;
  }

  .booking-page .booking-hero h1{
    font-size: clamp(34px, 10vw, 50px);
  }

  .booking-page .booking-link-button{
    width: 100%;
  }

  .booking-page .nomadox-booking-price-breakdown li,
  .booking-page .nomadox-booking-price-breakdown__header{
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .booking-page .nomadox-booking-price-breakdown li strong{
    text-align: left;
    white-space: normal;
  }
}

/* Booking page collision fixes */
.booking-page .booking-hero{
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  align-items: start;
  gap: clamp(22px, 3vw, 34px);
}

.booking-page .booking-hero > div:first-child{
  width: 100%;
  max-width: 1220px;
}

.booking-page .booking-hero h1{
  display: block;
  width: 100%;
  max-width: none;
}

.booking-page .booking-hero-actions{
  width: 100%;
  min-width: 0;
  justify-content: flex-start;
}

.booking-page .booking-stay-summary{
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 36px);
}

.booking-page .booking-stay-copy{
  width: 100%;
  max-width: none;
}

.booking-page .booking-stay-copy h2{
  display: block;
  width: 100%;
  max-width: none;
}

.booking-page .booking-stay-points{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-page .booking-stay-points div{
  min-width: 0;
}

.booking-page .booking-stay-points strong{
  white-space: nowrap;
}

@media (max-width: 1180px){
  .booking-page .booking-stay-points{
    grid-template-columns: 1fr;
  }
}

/* Booking page color refresh */
body.page-template-page-booking,
body.page-template-page-booking-php{
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 174, 209, .28), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(255, 184, 77, .24), transparent 32%),
    radial-gradient(circle at 70% 72%, rgba(17, 144, 129, .26), transparent 36%),
    #edf7f5 !important;
}

body.page-template-page-booking::after,
body.page-template-page-booking-php::after{
  background:
    linear-gradient(180deg, rgba(245, 251, 250, .08) 0%, rgba(237, 247, 245, .52) 38%, rgba(237, 247, 245, .9) 72%, #edf7f5 100%),
    linear-gradient(120deg, rgba(0, 128, 148, .18), rgba(255, 176, 73, .12), rgba(49, 95, 184, .14)) !important;
}

.booking-page .booking-hero,
.booking-page .booking-stay-summary,
.booking-page .booking-shell,
.booking-page .booking-stay-points div,
.booking-page .booking-info-panel,
.booking-page .booking-faq-item{
  position: relative;
}

.booking-page .booking-hero{
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.76);
  background:
    linear-gradient(105deg, rgba(255,255,255,.95) 0%, rgba(222, 247, 244, .86) 42%, rgba(24, 82, 151, .16) 100%),
    linear-gradient(20deg, rgba(255, 191, 87, .22), rgba(0, 145, 168, .08)),
    url("../img/resort.png") center / cover no-repeat;
  box-shadow: 0 34px 92px rgba(10, 51, 72, .24), inset 0 1px 0 rgba(255,255,255,.65);
}

.booking-page .booking-hero::before,
.booking-page .booking-stay-summary::before,
.booking-page .booking-shell::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

.booking-page .booking-hero::before{
  background:
    linear-gradient(90deg, rgba(0, 153, 174, .22), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,.36), transparent 44%);
}

.booking-page .booking-hero > *{
  position: relative;
  z-index: 1;
}

.booking-page .booking-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 140, 166, .14), rgba(255, 186, 83, .2));
  color: #007f98;
  font-weight: 900;
}

.booking-page .booking-kicker::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffb044;
  box-shadow: 0 0 0 5px rgba(255, 176, 68, .2);
}

.booking-page .booking-hero h1,
.booking-page .booking-stay-copy h2,
.booking-page .booking-calendar-heading h2,
.booking-page .booking-faq-heading h2{
  position: relative;
  z-index: 0;
  display: inline;
  font-weight: 900;
  color: #092c39;
  background:
    linear-gradient(transparent 62%, rgba(0, 167, 199, .34) 62%, rgba(0, 167, 199, .34) 88%, transparent 88%),
    linear-gradient(90deg, #092c39, #075d78 46%, #0f7b84);
  -webkit-background-clip: border-box, text;
  background-clip: border-box, text;
  -webkit-text-fill-color: transparent;
}

.booking-page .booking-hero h1{
  filter: drop-shadow(0 8px 22px rgba(255,255,255,.42));
}

.booking-page .booking-stay-summary,
.booking-page .booking-shell{
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.86);
  background:
    linear-gradient(135deg, rgba(255,255,255,.97), rgba(232, 249, 248, .94) 54%, rgba(255, 246, 229, .92));
  box-shadow: 0 26px 76px rgba(9, 57, 74, .18);
}

.booking-page .booking-stay-summary::before,
.booking-page .booking-shell::before{
  background:
    linear-gradient(90deg, #00a7c7, #18a999, #ffb044);
  height: 5px;
  inset: 0 0 auto;
  border-radius: 8px 8px 0 0;
}

.booking-page .booking-stay-points div,
.booking-page .booking-info-panel,
.booking-page .booking-faq-item{
  border-color: rgba(0, 143, 168, .18);
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(242, 251, 250, .96) 58%, rgba(255, 247, 232, .9));
  box-shadow: 0 16px 40px rgba(9, 57, 74, .12);
}

.booking-page .booking-stay-points div::after,
.booking-page .booking-info-panel::after,
.booking-page .booking-faq-item::after{
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 181, 66, .22), transparent 70%);
  pointer-events: none;
}

.booking-page .booking-stay-points span{
  background: linear-gradient(135deg, #008ca8, #18a999);
  box-shadow: 0 10px 22px rgba(0, 140, 168, .22);
}

.booking-page .booking-info-panel h2,
.booking-page .booking-faq-item h2,
.booking-page .booking-faq-item h3,
.booking-page .booking-stay-points strong{
  color: #093344;
  font-weight: 900;
}

.booking-page .booking-info-panel h2,
.booking-page .booking-faq-item h2,
.booking-page .booking-faq-item h3{
  display: inline;
  background: linear-gradient(transparent 68%, rgba(255, 190, 72, .46) 68%);
}

.booking-page .booking-link-button{
  border: 0;
  background: linear-gradient(135deg, #008ca8, #18a999);
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 140, 168, .28);
}

.booking-page .booking-link-button.is-secondary{
  border: 1px solid rgba(0, 140, 168, .3);
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(232, 249, 248, .94));
  color: #007f98;
}

.booking-page #booking-package_calendarPage table{
  border-spacing: 8px;
}

.booking-page #booking-package_calendarPage th{
  background: linear-gradient(135deg, rgba(0, 140, 168, .12), rgba(255, 176, 68, .14)) !important;
  color: #093344;
  font-weight: 900;
}

.booking-page #booking-package_calendarPage td{
  background: linear-gradient(180deg, #ffffff, #f2fbfa) !important;
  box-shadow: inset 0 0 0 1px rgba(0, 140, 168, .1);
}

.booking-page #booking-package_calendarPage td:hover{
  background: linear-gradient(180deg, #e1fbf8, #fff7e8) !important;
  box-shadow: 0 12px 26px rgba(0, 140, 168, .18), inset 0 0 0 1px rgba(0, 140, 168, .2);
}

.booking-page .nomadox-booking-price-breakdown{
  border-color: rgba(0, 140, 168, .24);
  background:
    linear-gradient(135deg, rgba(235, 251, 249, .98), rgba(255,255,255,.98) 52%, rgba(255, 246, 229, .96));
  box-shadow: 0 14px 34px rgba(9, 57, 74, .1);
}

.booking-page .nomadox-booking-price-breakdown__header strong{
  color: #008ca8;
}

.booking-page #booking-package_inputFormPanel{
  color: #10282f;
  font-size: 14px;
  line-height: 1.75;
}

.booking-page #booking-package_inputFormPanel > div{
  border-color: rgba(0, 140, 168, .14) !important;
}

.booking-page .nomadox-booking-detail-title,
.booking-page .nomadox-booking-summary-title{
  margin: 18px 0 10px !important;
  padding: 10px 0 8px !important;
  border: 0 !important;
  background: transparent !important;
  color: #092c39 !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

.booking-page .nomadox-booking-detail-title,
.booking-page .nomadox-booking-summary-title{
  background-image: linear-gradient(transparent 64%, rgba(0, 167, 199, .32) 64%, rgba(0, 167, 199, .32) 88%, transparent 88%) !important;
  background-repeat: no-repeat !important;
  background-size: auto 100% !important;
}

.booking-page .nomadox-booking-total-block{
  margin-top: 16px !important;
  padding: 16px 18px !important;
  border: 1px solid rgba(0, 140, 168, .18) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255, 247, 232, .95)) !important;
  color: #092c39 !important;
  font-weight: 900 !important;
  box-shadow: 0 12px 26px rgba(9, 57, 74, .08);
}

.booking-page .nomadox-booking-price-breakdown{
  margin: 20px 0;
  padding: 22px;
}

.booking-page .nomadox-booking-price-breakdown__header{
  align-items: flex-start;
  border-bottom: 0;
}

.booking-page .nomadox-booking-price-breakdown__header span{
  display: inline;
  color: #092c39;
  font-size: 21px;
  font-weight: 900;
  background: linear-gradient(transparent 64%, rgba(0, 167, 199, .32) 64%, rgba(0, 167, 199, .32) 88%, transparent 88%);
}

.booking-page .nomadox-booking-price-breakdown__header strong{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 140, 168, .1);
  font-size: 19px;
}

.booking-page .nomadox-booking-price-breakdown__lead{
  margin: 8px 0 16px;
  color: #52666b;
  font-size: 13px;
}

.booking-page .nomadox-booking-price-breakdown ul{
  gap: 10px;
  margin-top: 0;
}

.booking-page .nomadox-booking-price-breakdown li{
  position: relative;
  padding: 11px 14px 11px 34px;
  border: 1px solid rgba(0, 140, 168, .12);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}

.booking-page .nomadox-booking-price-breakdown li::before{
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #008ca8, #ffb044);
  transform: translateY(-50%);
}

.booking-page .nomadox-booking-price-breakdown li span{
  color: #35545b;
  font-weight: 800;
}

.booking-page .nomadox-booking-price-breakdown li strong{
  color: #092c39;
}

body.page-template-page-booking .nomadox-booking-detail-title,
body.page-template-page-booking-php .nomadox-booking-detail-title,
body.page-template-page-booking .nomadox-booking-summary-title,
body.page-template-page-booking-php .nomadox-booking-summary-title,
body.page-template-page-booking #bookingDetailsTitleOneInputPanel,
body.page-template-page-booking-php #bookingDetailsTitleOneInputPanel,
body.page-template-page-booking .nomadox-booking-guest-title,
body.page-template-page-booking-php .nomadox-booking-guest-title,
body.page-template-page-booking #booking-package_durationStay .guestsTitle,
body.page-template-page-booking-php #booking-package_durationStay .guestsTitle{
  margin: 18px 0 10px !important;
  padding: 10px 0 8px !important;
  border: 0 !important;
  background-image: linear-gradient(transparent 64%, rgba(0, 167, 199, .32) 64%, rgba(0, 167, 199, .32) 88%, transparent 88%) !important;
  background-repeat: no-repeat !important;
  background-size: auto 100% !important;
  color: #092c39 !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

body.page-template-page-booking #booking-package_durationStay .summary,
body.page-template-page-booking-php #booking-package_durationStay .summary{
  margin: 16px 0 !important;
  padding: 16px 18px !important;
  border: 1px solid rgba(0, 140, 168, .14) !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,.78) !important;
  color: #10282f !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.75 !important;
}

body.page-template-page-booking #booking-package_durationStay .summary div,
body.page-template-page-booking-php #booking-package_durationStay .summary div{
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.75 !important;
}

body.page-template-page-booking #booking-package_durationStay .guestsTitle,
body.page-template-page-booking-php #booking-package_durationStay .guestsTitle{
  display: block !important;
}

body.page-template-page-booking #booking-package_durationStay .name,
body.page-template-page-booking-php #booking-package_durationStay .name,
body.page-template-page-booking #booking-package_durationStay .guestsTitle,
body.page-template-page-booking-php #booking-package_durationStay .guestsTitle,
body.page-template-page-booking #booking-package_durationStay .optionsTitle,
body.page-template-page-booking-php #booking-package_durationStay .optionsTitle{
  display: inline-block !important;
  width: auto !important;
  float: none !important;
  margin: 14px 0 8px !important;
  padding: 3px 0 4px !important;
  background: linear-gradient(transparent 62%, rgba(0, 167, 199, .3) 62%, rgba(0, 167, 199, .3) 88%, transparent 88%) !important;
  color: #092c39 !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1.45 !important;
  text-align: left !important;
}

body.page-template-page-booking #booking-package_durationStay .value,
body.page-template-page-booking-php #booking-package_durationStay .value{
  width: 100% !important;
  float: none !important;
  color: #092c39 !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

body.page-template-page-booking #booking-package_durationStay .row,
body.page-template-page-booking-php #booking-package_durationStay .row{
  clear: both !important;
}

body.page-template-page-booking #booking-package_durationStay select,
body.page-template-page-booking-php #booking-package_durationStay select{
  margin-top: 6px !important;
}

body.page-template-page-booking .nomadox-booking-guest-limit-error,
body.page-template-page-booking-php .nomadox-booking-guest-limit-error{
  display: grid;
  gap: 6px;
  margin: 14px 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(206, 71, 71, .32);
  border-left: 5px solid #ce4747;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 246, 246, .98), rgba(255, 255, 255, .96));
  color: #7f2020;
  box-shadow: 0 10px 24px rgba(127, 32, 32, .08);
}

body.page-template-page-booking .nomadox-booking-guest-limit-error strong,
body.page-template-page-booking-php .nomadox-booking-guest-limit-error strong{
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

body.page-template-page-booking .nomadox-booking-guest-limit-error span,
body.page-template-page-booking-php .nomadox-booking-guest-limit-error span{
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

body.page-template-page-booking .nomadox-booking-total-block,
body.page-template-page-booking-php .nomadox-booking-total-block{
  margin-top: 16px !important;
  padding: 16px 18px !important;
  border: 1px solid rgba(0, 140, 168, .18) !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255, 247, 232, .95)) !important;
  color: #092c39 !important;
  font-weight: 900 !important;
  box-shadow: 0 12px 26px rgba(9, 57, 74, .08);
}

body.page-template-page-booking .nomadox-booking-price-breakdown,
body.page-template-page-booking-php .nomadox-booking-price-breakdown{
  margin: 20px 0;
  padding: 22px;
  border: 1px solid rgba(0, 140, 168, .24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(235, 251, 249, .98), rgba(255,255,255,.98) 52%, rgba(255, 246, 229, .96));
  box-shadow: 0 14px 34px rgba(9, 57, 74, .1);
  color: #10282f;
}

body.page-template-page-booking .nomadox-booking-price-breakdown__header,
body.page-template-page-booking-php .nomadox-booking-price-breakdown__header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 0;
  font-weight: 900;
}

body.page-template-page-booking .nomadox-booking-price-breakdown__header span,
body.page-template-page-booking-php .nomadox-booking-price-breakdown__header span{
  display: inline;
  color: #092c39;
  font-size: 21px;
  font-weight: 900;
  background: linear-gradient(transparent 64%, rgba(0, 167, 199, .32) 64%, rgba(0, 167, 199, .32) 88%, transparent 88%);
}

body.page-template-page-booking .nomadox-booking-price-breakdown__header strong,
body.page-template-page-booking-php .nomadox-booking-price-breakdown__header strong{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 140, 168, .1);
  color: #008ca8;
  font-size: 19px;
  white-space: nowrap;
}

body.page-template-page-booking .nomadox-booking-price-breakdown__lead,
body.page-template-page-booking-php .nomadox-booking-price-breakdown__lead{
  margin: 8px 0 16px;
  color: #52666b;
  font-size: 13px;
}

body.page-template-page-booking .nomadox-booking-price-breakdown ul,
body.page-template-page-booking-php .nomadox-booking-price-breakdown ul{
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.page-template-page-booking .nomadox-booking-price-breakdown li,
body.page-template-page-booking-php .nomadox-booking-price-breakdown li{
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 14px 11px 34px;
  border: 1px solid rgba(0, 140, 168, .12);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  font-size: 14px;
}

body.page-template-page-booking .nomadox-booking-price-breakdown li::before,
body.page-template-page-booking-php .nomadox-booking-price-breakdown li::before{
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #008ca8, #ffb044);
  transform: translateY(-50%);
}

body.page-template-page-booking .nomadox-booking-price-breakdown li span,
body.page-template-page-booking-php .nomadox-booking-price-breakdown li span{
  color: #35545b;
  font-weight: 800;
}

body.page-template-page-booking .nomadox-booking-price-breakdown li strong,
body.page-template-page-booking-php .nomadox-booking-price-breakdown li strong{
  color: #092c39;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

body.page-template-page-booking #booking-package_durationStay .next_page_button:not(.hidden_panel),
body.page-template-page-booking-php #booking-package_durationStay .next_page_button:not(.hidden_panel){
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-width: 180px;
  min-height: 46px;
  margin: 18px 0 0 auto !important;
  padding: 12px 22px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #008ca8, #0b66d8) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  box-shadow: 0 14px 30px rgba(0, 104, 160, .22);
}

body.page-template-page-booking #booking-package_durationStay .next_page_button:not(.hidden_panel):hover,
body.page-template-page-booking-php #booking-package_durationStay .next_page_button:not(.hidden_panel):hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 104, 160, .28);
}

@media (max-width: 760px){
  .booking-page .booking-hero h1,
  .booking-page .booking-stay-copy h2,
  .booking-page .booking-calendar-heading h2,
  .booking-page .booking-faq-heading h2{
    display: inline;
    -webkit-text-fill-color: transparent;
  }
}

/* Booking page heading alignment */
.booking-page .booking-kicker{
  display: flex !important;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 14px !important;
  text-align: left !important;
  white-space: nowrap;
}

.booking-page .booking-hero > div:first-child,
.booking-page .booking-stay-copy,
.booking-page .booking-calendar-heading,
.booking-page .booking-faq-heading{
  width: 100%;
}

.booking-page .booking-hero h1,
.booking-page .booking-stay-copy h2,
.booking-page .booking-calendar-heading h2,
.booking-page .booking-faq-heading h2{
  display: block !important;
  width: 100%;
  max-width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  white-space: nowrap;
  text-wrap: nowrap;
}

.booking-page .booking-hero h1{
  font-size: clamp(34px, 4.4vw, 66px) !important;
}

.booking-page .booking-stay-copy h2{
  font-size: clamp(25px, 2.65vw, 42px) !important;
}

.booking-page .booking-calendar-heading h2,
.booking-page .booking-faq-heading h2{
  font-size: clamp(30px, 3.1vw, 48px) !important;
}

.booking-page .booking-stay-copy p:not(.booking-kicker),
.booking-page .booking-calendar-heading p:not(.booking-kicker){
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 900px){
  .booking-page .booking-hero h1,
  .booking-page .booking-stay-copy h2,
  .booking-page .booking-calendar-heading h2,
  .booking-page .booking-faq-heading h2{
    white-space: normal;
    text-wrap: balance;
  }

  .booking-page .booking-kicker{
    white-space: normal;
  }
}

/* Community final flow: why, possibility, activity, trust, and a distinct Journal ending */
.community-page{overflow:clip}
.community-hero__grid>div>p:last-child{max-width:690px;text-wrap:pretty}
.community-story__grid>p{text-wrap:pretty}
.community-principles .community-principles__copy{
  width:100%;
  max-width:960px;
}
.community-principles .community-principles__copy h2{
  width:100%;
  max-width:none;
}
.community-principles .community-principles__copy>p:last-child{
  max-width:860px;
  color:rgba(255,255,255,.82);
  white-space:normal;
  text-wrap:pretty;
}
.community-values-visual{
  display:grid;
  gap:clamp(28px,4vw,48px);
  margin-top:clamp(64px,8vw,108px);
}
.community-foundation-tags,
.community-values-visual .community-principle-tags{
  display:grid;
  width:100%;
  gap:clamp(12px,1.7vw,20px);
  margin-inline:auto;
}
.community-foundation-tags{
  max-width:840px;
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.community-values-visual .community-principle-tags{
  max-width:1120px;
  grid-template-columns:repeat(5,minmax(0,1fr));
}
.community-foundation-tags article,
.community-values-visual .community-principle-tags article{
  display:flex;
  width:100%;
  min-width:0;
  min-height:160px;
  padding:18px 12px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  border:1px solid rgba(255,255,255,.38);
  border-radius:22px;
  background:rgba(255,255,255,.1);
  box-sizing:border-box;
  backdrop-filter:blur(12px);
}
.community-foundation-tags img,
.community-values-visual .community-principle-tags img{
  display:block;
  width:92px;
  height:82px;
  object-fit:contain;
  filter:drop-shadow(0 12px 20px rgba(0,0,0,.22));
}
.community-foundation-tags span,
.community-values-visual .community-principle-tags span{
  margin-top:10px;
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.11em;
  text-align:center;
}
.community-foundation-tags article:nth-child(1){border-color:rgba(243,160,198,.92);box-shadow:0 20px 48px rgba(220,74,140,.18),0 0 30px rgba(243,160,198,.34)}
.community-foundation-tags article:nth-child(2){border-color:rgba(118,184,245,.92);box-shadow:0 20px 48px rgba(36,121,200,.2),0 0 30px rgba(118,184,245,.35)}
.community-foundation-tags article:nth-child(3){border-color:rgba(143,224,194,.94);box-shadow:0 20px 48px rgba(42,154,121,.2),0 0 30px rgba(143,224,194,.36)}
.community-values-visual .community-principle-tags article:nth-child(1){border-color:rgba(255,210,91,.92);box-shadow:0 18px 42px rgba(218,159,32,.2),0 0 26px rgba(255,210,91,.34)}
.community-values-visual .community-principle-tags article:nth-child(2){border-color:rgba(118,184,245,.92);box-shadow:0 18px 42px rgba(36,121,200,.2),0 0 26px rgba(118,184,245,.34)}
.community-values-visual .community-principle-tags article:nth-child(3){border-color:rgba(243,160,198,.92);box-shadow:0 18px 42px rgba(220,74,140,.18),0 0 26px rgba(243,160,198,.34)}
.community-values-visual .community-principle-tags article:nth-child(4){border-color:rgba(169,150,245,.92);box-shadow:0 18px 42px rgba(105,82,196,.2),0 0 26px rgba(169,150,245,.34)}
.community-values-visual .community-principle-tags article:nth-child(5){grid-column:auto;border-color:rgba(205,140,230,.92);box-shadow:0 18px 42px rgba(145,76,176,.2),0 0 26px rgba(205,140,230,.34)}
.community-cta--journal{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  text-align:left;
  background:
    radial-gradient(circle at 12% 22%,rgba(103,212,216,.18),transparent 30%),
    radial-gradient(circle at 86% 76%,rgba(243,160,198,.2),transparent 32%),
    linear-gradient(135deg,#07111f,#123e6b 62%,#252050);
}
.community-cta--journal::before{
  content:"JOURNAL";
  position:absolute;
  z-index:-1;
  right:-.04em;
  bottom:-.28em;
  color:rgba(255,255,255,.035);
  font-size:clamp(110px,22vw,360px);
  font-weight:800;
  line-height:1;
  letter-spacing:-.06em;
  pointer-events:none;
}
.community-ending__grid{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
  gap:clamp(50px,9vw,130px);
  align-items:end;
}
.community-cta--journal h2{text-align:left}
.community-ending__action{padding-bottom:8px}
.community-cta--journal .community-ending__action p{
  max-width:560px;
  margin:0 0 34px;
  color:rgba(255,255,255,.8);
  text-align:left;
}

@media(max-width:900px){
  .community-values-visual .community-principle-tags{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .community-values-visual .community-principle-tags article:nth-child(5){
    grid-column:1/-1;
  }
  .community-ending__grid{grid-template-columns:1fr;align-items:start}
}

@media(max-width:560px){
  .community-foundation-tags{gap:9px}
  .community-foundation-tags article,
  .community-values-visual .community-principle-tags article{
    min-height:132px;
    padding:14px 8px;
    border-radius:18px;
  }
  .community-foundation-tags img,
  .community-values-visual .community-principle-tags img{
    width:68px;
    height:62px;
  }
  .community-foundation-tags span,
  .community-values-visual .community-principle-tags span{
    font-size:11px;
    letter-spacing:.07em;
  }
  .community-cta--journal h2{font-size:clamp(34px,10vw,48px)}
}

/* Project journey: portfolio -> project -> existing action */
.business-project-action{
  display:inline-flex;
  min-height:42px;
  margin-top:4px;
  padding:9px 18px;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid rgba(255,255,255,.7);
  border-radius:999px;
  color:#fff;
  font-size:clamp(12px,1vw,15px);
  font-weight:800;
  letter-spacing:.04em;
  text-shadow:0 2px 8px rgba(0,0,0,.65);
  box-shadow:0 8px 24px rgba(0,0,0,.2);
}
.business-project-action::after{content:"→";font-size:1.1em}

.project-action-panel{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  align-content:center;
  justify-items:center;
  text-align:center;
  background:
    radial-gradient(circle at 18% 18%,rgba(111,213,198,.22),transparent 34%),
    radial-gradient(circle at 84% 80%,rgba(118,184,245,.24),transparent 38%),
    linear-gradient(145deg,#edf9f5,#f7fbff 54%,#edf4fc)!important;
}
.project-action-panel::before{
  content:"";
  position:absolute;
  z-index:-1;
  inset:clamp(24px,4vw,64px);
  border:1px solid rgba(36,121,200,.18);
  border-radius:clamp(24px,4vw,52px);
  box-shadow:0 32px 80px rgba(18,54,96,.1),inset 0 1px 0 rgba(255,255,255,.9);
}
.project-action-panel .business-feature-kicker{
  margin:0 0 22px;
  color:#2479c8;
  letter-spacing:.16em;
}
.project-action-panel h2{
  max-width:980px;
  margin:0;
  color:#0b223e;
  font-family:"Noto Serif JP","Noto Serif",serif;
  font-size:clamp(38px,5vw,68px);
  font-weight:500;
  line-height:1.5;
  text-wrap:balance;
}
.project-action-panel>p:not(.business-feature-kicker){
  max-width:720px;
  margin:28px auto 0;
  color:#526276;
  font-size:clamp(16px,1.45vw,19px);
  line-height:2;
}
.project-action-links{
  display:flex;
  margin-top:34px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:16px 24px;
}
.project-action-links .btn{width:auto;min-width:min(280px,100%);justify-content:center}
.project-action-status{
  display:inline-flex;
  margin-top:20px;
  padding:8px 16px;
  border:1px solid rgba(36,121,200,.24);
  border-radius:999px;
  color:#2479c8;
  background:rgba(255,255,255,.58);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
}
.project-action-text-link{
  display:inline-flex;
  min-height:44px;
  align-items:center;
  color:#174f83;
  font-weight:800;
  text-decoration-thickness:1px;
  text-underline-offset:6px;
}
.project-action-text-link:hover{color:#0b223e}

@media(max-width:760px){
  .business-project-action{min-height:38px;padding:7px 15px}
  .project-action-panel{padding-inline:28px!important}
  .project-action-panel::before{inset:18px 12px;border-radius:24px}
  .project-action-panel h2{font-size:clamp(32px,9.4vw,44px);line-height:1.55}
  .project-action-panel>p:not(.business-feature-kicker){line-height:1.9}
  .project-action-links{width:100%;flex-direction:column;gap:16px}
  .project-action-links .btn{width:min(100%,340px)}
}

/* Project overview — editorial hierarchy with project-specific accents */
.project-overview--resort{
  --project-overview-accent:#36aa83;
  --project-overview-accent-rgb:54,170,131;
}
.project-overview--urban{
  --project-overview-accent:#2479c8;
  --project-overview-accent-rgb:36,121,200;
}
.project-overview--shitamachi{
  --project-overview-accent:#dc4a8c;
  --project-overview-accent-rgb:220,74,140;
}
.project-page .project-overview--editorial{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:clamp(72px,8vw,128px) clamp(22px,5vw,80px)!important;
  background:
    radial-gradient(circle at 8% 12%,rgba(var(--project-overview-accent-rgb),.16),transparent 34%),
    radial-gradient(circle at 94% 88%,rgba(var(--project-overview-accent-rgb),.1),transparent 34%),
    linear-gradient(145deg,#fbfdff 0%,#f4f8fb 56%,#fff 100%)!important;
}
.project-page .project-overview--editorial::before{
  content:"";
  position:absolute;
  z-index:-1;
  top:clamp(44px,7vw,96px);
  right:clamp(-130px,-7vw,-56px);
  width:clamp(240px,30vw,460px);
  aspect-ratio:1;
  border:1px solid rgba(var(--project-overview-accent-rgb),.14);
  border-radius:50%;
  box-shadow:
    0 0 0 clamp(22px,3vw,46px) rgba(var(--project-overview-accent-rgb),.035),
    0 0 0 clamp(54px,7vw,100px) rgba(var(--project-overview-accent-rgb),.025);
  pointer-events:none;
}
.project-overview-editorial__inner{
  display:grid;
  width:min(100%,1240px);
  margin-inline:auto;
  grid-template-columns:minmax(0,.88fr) minmax(420px,1.12fr);
  gap:clamp(48px,8vw,120px);
  align-items:center;
}
.project-overview-editorial__copy{
  position:relative;
  min-width:0;
  padding-left:clamp(22px,3vw,38px);
}
.project-overview-editorial__copy::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  width:3px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--project-overview-accent),rgba(var(--project-overview-accent-rgb),.16));
  box-shadow:0 0 24px rgba(var(--project-overview-accent-rgb),.3);
}
.project-page .project-overview--editorial .project-overview-editorial__eyebrow{
  margin:0 0 20px;
  color:var(--project-overview-accent)!important;
  font-size:12px;
  font-weight:800;
  line-height:1.4;
  letter-spacing:.16em;
}
.project-page .project-overview--editorial h2{
  max-width:14em;
  margin:0;
  color:#0b223e!important;
  font-family:"Noto Serif JP","Noto Serif",serif;
  font-size:clamp(36px,4vw,58px);
  font-weight:500;
  line-height:1.45;
  letter-spacing:-.035em;
  text-wrap:balance;
}
.project-page .project-overview--editorial .project-overview-editorial__lead{
  max-width:38em;
  margin:30px 0 0;
  color:#526276!important;
  font-size:clamp(16px,1.3vw,19px);
  line-height:2.05;
}
.project-overview-editorial__points{
  display:grid;
  min-width:0;
  margin:0;
  padding:0;
  gap:14px;
  list-style:none;
  counter-reset:project-overview;
}
.project-page .project-overview--editorial .project-overview-editorial__points li{
  display:grid;
  min-width:0;
  min-height:112px;
  padding:22px clamp(22px,2.5vw,34px);
  grid-template-columns:52px minmax(0,1fr);
  gap:18px;
  align-items:center;
  border:1px solid rgba(var(--project-overview-accent-rgb),.25);
  border-radius:24px;
  color:#0b223e!important;
  background:rgba(255,255,255,.72);
  box-shadow:
    0 18px 45px rgba(18,54,96,.07),
    0 0 28px rgba(var(--project-overview-accent-rgb),.06),
    inset 0 1px 0 rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.project-overview-editorial__number{
  display:grid;
  width:48px;
  height:48px;
  place-items:center;
  border:1px solid rgba(var(--project-overview-accent-rgb),.3);
  border-radius:50%;
  color:var(--project-overview-accent);
  background:rgba(var(--project-overview-accent-rgb),.07);
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
}
.project-page .project-overview--editorial .project-overview-editorial__points p{
  min-width:0;
  margin:0;
  color:#173452!important;
  font-size:clamp(15px,1.25vw,18px);
  font-weight:700;
  line-height:1.75;
  overflow-wrap:anywhere;
}

@media(max-width:900px){
  .project-overview-editorial__inner{
    grid-template-columns:1fr;
    gap:48px;
  }
  .project-overview-editorial__copy{max-width:720px}
  .project-overview-editorial__points{width:100%}
}

@media(max-width:560px){
  .project-page .project-overview--editorial{
    min-height:auto;
    padding:84px 18px 92px!important;
  }
  .project-page .project-overview--editorial::before{
    top:40px;
    right:-140px;
    width:280px;
  }
  .project-overview-editorial__copy{padding-left:20px}
  .project-page .project-overview--editorial h2{
    font-size:clamp(32px,9.4vw,42px);
    line-height:1.5;
  }
  .project-page .project-overview--editorial .project-overview-editorial__lead{
    margin-top:24px;
    font-size:15px;
    line-height:2;
  }
  .project-overview-editorial__inner{gap:40px}
  .project-page .project-overview--editorial .project-overview-editorial__points li{
    min-height:0;
    padding:20px 18px;
    grid-template-columns:42px minmax(0,1fr);
    gap:14px;
    border-radius:20px;
  }
  .project-overview-editorial__number{width:40px;height:40px;font-size:11px}
  .project-page .project-overview--editorial .project-overview-editorial__points p{
    font-size:14px;
    line-height:1.75;
  }
}

/*
 * Editorial wrapping policy
 * Short brand messages stay on one line when they can remain legible. The
 * measured font adjustment is handled by theme.js; longer copy uses the full
 * section width and wraps at natural phrase boundaries.
 */
.key-message--single,
.key-message--single.mobile-fit-message{
  width:100%!important;
  max-width:100%!important;
  white-space:nowrap!important;
  word-break:keep-all;
  overflow-wrap:normal;
  text-wrap:nowrap!important;
}

.key-message--single.mobile-fit-message--wrap,
.mobile-fit-message.mobile-fit-message--wrap{
  white-space:normal!important;
  word-break:normal;
  overflow-wrap:normal;
  text-wrap:pretty!important;
}

.fullscreen-section-header.page-hero .key-message--single{
  width:max-content!important;
  max-width:100%!important;
  margin-inline:auto!important;
}

.home .brand-section__head,
.home .purpose-story__header,
.philosophy-page .philosophy-heading,
.community-page .community-copy,
.community-page .community-principles__copy{
  width:100%;
  max-width:none;
}

.home .brand-section__head>p:last-child,
.philosophy-page .philosophy-heading>p:last-child,
.community-page .community-copy>p:last-child,
.community-page .community-principles__copy>p:last-child{
  width:100%;
  max-width:none;
  white-space:normal;
  text-wrap:pretty;
}

.home .brand-section__head :is(h1,h2):not(.key-message--single),
.home .purpose-story__header h2,
.philosophy-page .philosophy-heading :is(h1,h2):not(.key-message--single),
.community-page .community-copy :is(h1,h2):not(.key-message--single),
.community-page .community-principles__copy h2:not(.key-message--single),
.business-page :is(.business-sync-title,.project-lead),
.project-page .project-overview--editorial h2{
  width:100%;
  max-width:none;
  white-space:normal;
  text-wrap:pretty;
}

/* The legacy desktop rule uses a more specific selector and otherwise clips this lead. */
.page-template-page-business .business-page .page-hero .project-lead{
  white-space:normal;
}

/* Project overlay headlines share only half of the image. Keep every locale
   within that column instead of inheriting legacy desktop nowrap rules. */
.business-page .business-project-overlay :is(h2,.project-overlay-headline){
  max-width:100%;
  white-space:normal !important;
  text-wrap:balance;
  overflow-wrap:anywhere;
}

.purpose-story{max-width:1200px}
.purpose-story__lead{width:100%;max-width:none}
.home-belief-bridge .container{max-width:1200px}
.home-belief-bridge h2{width:100%;max-width:none;text-wrap:pretty}

html[lang^="ja"] :is(.home,.philosophy-page,.community-page,.business-page,.project-page,.company-page) :is(h1,h2):not(.key-message--single),
html[lang^="zh"] :is(.home,.philosophy-page,.community-page,.business-page,.project-page,.company-page) :is(h1,h2):not(.key-message--single),
html[lang^="ko"] :is(.home,.philosophy-page,.community-page,.business-page,.project-page,.company-page) :is(h1,h2):not(.key-message--single){
  line-break:strict;
  word-break:normal;
  word-break:auto-phrase;
  overflow-wrap:normal;
  text-wrap:pretty;
}

@media(max-width:1280px){
  #project .swiper-slide:nth-child(3) .pillar-overlay h3,
  .business-projects-slider .swiper-slide:nth-child(3) .business-project-overlay h2,
  .shitamachi-page .project-image-overlay h2,
  #project .swiper-slide:nth-child(1) .project-overlay-headline,
  .business-projects-slider .swiper-slide:nth-child(1) .project-overlay-headline,
  .resort-page .project-overlay-headline{
    white-space:normal;
    text-wrap:balance;
  }
}

@media(max-width:768px){
  .iba-nowrap{white-space:normal!important}
}

/*
 * Business page responsive containment
 * Keep the portfolio presentation inside the actual content viewport. Using
 * nested 100vw surfaces included the browser scrollbar and clipped the right
 * edge in the Customizer and on tablet-sized screens.
 */
.business-page.fullscreen-page-shell,
.business-page.fullscreen-page-shell > *,
.business-page .business-projects-wrap,
.business-page .business-projects-wrap .swiper,
.business-page .business-projects-wrap .swiper-wrapper,
.business-page .business-projects-wrap .swiper-slide,
.business-page .business-project-slide{
  min-width:0;
}

.business-page.fullscreen-page-shell > .business-sync.fullscreen-surface,
.business-page .business-projects-wrap,
.business-page .business-project-slide{
  width:100%;
  max-width:100%;
  margin-inline:0;
}

.business-page.fullscreen-page-shell > .business-sync.fullscreen-surface .business-orbit{
  width:min(100%,680px);
  max-width:100%;
}

@media(max-width:960px){
  .business-page.fullscreen-page-shell > .business-sync.fullscreen-surface .business-orbit{
    width:min(100%,560px);
  }
}

@media(max-width:900px){
  .container.business-page.fullscreen-page-shell{
    width:calc(100% - 28px);
    max-width:calc(100% - 28px);
  }

  .business-page.fullscreen-page-shell > .business-sync.fullscreen-surface,
  .business-page .business-projects-wrap,
  .business-page .business-project-slide{
    width:100%;
    max-width:100%;
    margin-inline:0;
  }

  .business-page .business-sync.resort-hero-card{
    padding:clamp(64px,8vw,78px) clamp(14px,4vw,30px) clamp(76px,9vw,94px);
  }

  .business-page .business-sync-title,
  .business-page .business-sync-lead{
    width:100%;
    max-width:100%;
  }

  .business-page .business-sync-lead{
    padding-inline:0;
    white-space:normal;
    line-break:strict;
    overflow-wrap:normal;
    text-wrap:pretty;
  }

  html[lang^="ja"] .business-page .business-sync-title,
  html[lang^="zh"] .business-page .business-sync-title,
  html[lang^="ko"] .business-page .business-sync-title{
    font-size:clamp(18px,3.3vw,30px)!important;
    letter-spacing:-.055em;
  }

  .business-page.fullscreen-page-shell > .business-sync .orbit-node{
    width:clamp(88px,20%,112px);
    height:clamp(36px,6vw,42px);
    padding-inline:6px;
    font-size:clamp(10px,1.8vw,12px);
  }

  .business-page.fullscreen-page-shell > .business-sync .orbit-resort{
    left:24%;
    top:22%;
    transform:translate(-50%,-50%);
  }

  .business-page.fullscreen-page-shell > .business-sync .orbit-urban{
    right:auto;
    left:76%;
    top:22%;
    transform:translate(-50%,-50%);
  }

  .business-page.fullscreen-page-shell > .business-sync .orbit-shitamachi{
    bottom:auto;
    left:50%;
    top:82%;
    transform:translate(-50%,-50%);
  }

  .business-page.fullscreen-page-shell > .business-sync .orbit-core{
    width:clamp(92px,24%,128px);
    height:auto;
    aspect-ratio:1;
  }
}

@media(max-width:600px){
  .container.business-page.fullscreen-page-shell{
    width:calc(100% - 20px);
    max-width:calc(100% - 20px);
  }

  .business-page .business-sync.resort-hero-card{
    padding:62px 12px 72px;
  }

  .business-page.fullscreen-page-shell > .business-sync.fullscreen-surface .business-orbit{
    width:100%;
  }

  .business-page .business-projects-slider.fullscreen-section{
    min-height:auto;
  }
}

@media(max-width:420px){
  .business-page .business-sync-title.key-message--single{
    white-space:normal!important;
    text-wrap:pretty!important;
  }
}

@media(prefers-reduced-motion:reduce){
  .business-page .resort-orbit-ring{
    animation:none!important;
  }
}

/* Philosophy polish: make the SDGs mark, five principles, and three promises visible as brand moments. */
.philosophy-page .sustainability-bridge::before{
  opacity:.52;
  filter:saturate(1.08) contrast(1.04);
}

.philosophy-page .sustainability-bridge::after{
  background:linear-gradient(90deg,rgba(239,250,246,.97) 0%,rgba(244,249,253,.76) 52%,rgba(244,249,253,.22) 100%);
}

.philosophy-page .philosophy-principle-list article{
  --principle-rgb:118,184,245;
  width:100%;
  height:auto;
  min-height:clamp(196px,17vw,222px);
  padding:22px 14px;
  align-self:start;
  align-content:center;
  gap:10px;
  border:1px solid rgba(var(--principle-rgb),.78);
  border-radius:24px;
  background:rgba(255,255,255,.9);
  box-shadow:
    0 0 0 1px rgba(var(--principle-rgb),.1),
    0 0 30px rgba(var(--principle-rgb),.3),
    0 22px 52px rgba(18,54,96,.1);
}

.philosophy-page .philosophy-principle-list article:nth-child(1){--principle-rgb:255,210,91}
.philosophy-page .philosophy-principle-list article:nth-child(2){--principle-rgb:118,184,245}
.philosophy-page .philosophy-principle-list article:nth-child(3){--principle-rgb:243,160,198}
.philosophy-page .philosophy-principle-list article:nth-child(4){--principle-rgb:169,150,245}
.philosophy-page .philosophy-principle-list article:nth-child(5){--principle-rgb:205,140,230}

.philosophy-page .philosophy-principle-list article img{
  width:clamp(82px,7vw,104px);
  height:clamp(82px,7vw,104px);
  aspect-ratio:1;
  object-fit:contain;
  filter:drop-shadow(0 13px 22px rgba(var(--principle-rgb),.38));
}

@media(max-width:1000px){
  .philosophy-page .philosophy-principle-list{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .philosophy-page .philosophy-principle-list article:last-child{
    grid-column:auto;
  }
}

.philosophy-page .commitments-grid{
  grid-template-columns:1fr;
  gap:clamp(24px,3vw,38px);
}

.philosophy-page .commitment-card{
  --commitment-accent:118,184,245;
  --commitment-image:url("../img/human_connection_banner.png");
  position:relative;
  isolation:isolate;
  display:flex;
  min-height:clamp(330px,32vw,430px);
  padding:clamp(34px,5vw,64px);
  overflow:hidden;
  flex-direction:column;
  justify-content:flex-end;
  border:1px solid rgba(var(--commitment-accent),.9);
  border-radius:30px;
  background-image:var(--commitment-image);
  background-position:center;
  background-size:cover;
  color:#fff;
  box-shadow:
    0 0 0 1px rgba(var(--commitment-accent),.12),
    0 0 38px rgba(var(--commitment-accent),.3),
    0 28px 72px rgba(7,17,31,.2);
}

.philosophy-page .commitment-card:nth-child(2){
  --commitment-accent:169,150,245;
  --commitment-image:url("../img/work_inclusion_banner.png");
}

.philosophy-page .commitment-card:nth-child(3){
  --commitment-accent:143,224,194;
  --commitment-image:url("../img/local_regeneration_banner.png");
}

.philosophy-page .commitment-card::before{
  content:"";
  position:absolute;
  z-index:-1;
  inset:0;
  background:
    linear-gradient(180deg,rgba(4,15,28,.08) 8%,rgba(4,15,28,.28) 48%,rgba(4,15,28,.93) 100%),
    linear-gradient(90deg,rgba(4,15,28,.62) 0%,rgba(4,15,28,.16) 72%);
}

.philosophy-page .commitment-card>p,
.philosophy-page .commitment-card h3,
.philosophy-page .commitment-card div{
  position:relative;
  z-index:1;
  width:min(100%,850px);
  color:#fff;
  text-shadow:0 2px 5px rgba(0,0,0,.72),0 8px 24px rgba(0,0,0,.55);
}

.philosophy-page .commitment-card>p{
  color:rgb(var(--commitment-accent));
  font-size:clamp(11px,1vw,13px);
}

.philosophy-page .commitment-card h3{
  margin:clamp(18px,2.5vw,30px) 0 16px;
  font-size:clamp(27px,3.2vw,44px);
  line-height:1.4;
}

.philosophy-page .commitment-card div{
  font-size:clamp(15px,1.35vw,18px);
  line-height:1.9;
}

@media(max-width:760px){
  .philosophy-page .sustainability-bridge::before{
    right:50%;
    width:min(78vw,390px);
    transform:translate(50%,-50%);
    opacity:.46;
  }

  .philosophy-page .sustainability-bridge::after{
    background:rgba(242,249,248,.62);
  }

  .philosophy-page .philosophy-principle-list{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .philosophy-page .philosophy-principle-list article{
    min-height:190px;
    padding:20px 12px;
  }

  .philosophy-page .philosophy-principle-list article:last-child{
    width:calc((100% - clamp(14px,2vw,28px)) / 2);
    grid-column:1 / -1;
    justify-self:center;
  }

  .philosophy-page .commitment-card{
    min-height:440px;
    padding:30px 24px;
    border-radius:24px;
  }

  .philosophy-page .commitment-card h3{
    font-size:clamp(24px,7vw,34px);
  }
}

@media(max-width:520px){
  .philosophy-page .philosophy-principle-list{
    grid-template-columns:1fr;
    gap:16px;
  }

  .philosophy-page .philosophy-principle-list article,
  .philosophy-page .philosophy-principle-list article:last-child{
    width:100%;
    min-height:0;
    padding:18px 20px;
    grid-column:auto;
    grid-template-columns:72px minmax(0,1fr);
    grid-template-rows:auto auto;
    column-gap:18px;
    row-gap:2px;
    align-items:center;
    justify-items:start;
    text-align:left;
  }

  .philosophy-page .philosophy-principle-list article img{
    width:72px;
    height:72px;
    grid-row:1 / 3;
  }

  .philosophy-page .philosophy-principle-list article strong,
  .philosophy-page .philosophy-principle-list article span{
    min-width:0;
  }
}

/* TOP MODEL 07 / NOMADOX CLUB: contain the one-column mobile layout. */
.home .club-experience__grid > *,
.home .club-experience__copy,
.home .club-experience figure{
  min-width:0;
  max-width:100%;
}

@media(max-width:600px){
  .home .club-experience__grid,
  .home .club-experience__copy,
  .home .club-experience figure{
    width:100%;
    max-width:100%;
  }

  .home .club-experience h2.key-message--single,
  .home .club-experience h2.key-message--single.mobile-fit-message{
    max-width:100%!important;
    font-size:clamp(2rem,9vw,3rem);
    line-height:1.25;
    white-space:normal!important;
    word-break:normal;
    overflow-wrap:normal;
    text-wrap:balance!important;
  }

  .home .club-experience__copy > p:not(.section-index){
    width:100%;
    max-width:100%;
    white-space:normal;
    word-break:normal;
    overflow-wrap:normal;
    text-wrap:pretty;
  }

  .home .club-experience__link{
    min-height:44px;
    max-width:100%;
    padding-block:8px;
    justify-content:flex-start;
    white-space:normal;
  }

  .home .club-experience figure img{
    display:block;
    width:100%;
    max-width:100%;
    height:auto;
    object-fit:contain;
  }
}

/* Accessible text that remains available to screen readers without affecting layout. */
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.screen-reader-text:focus {
  top: 8px;
  left: 8px;
  z-index: 100000;
  width: auto !important;
  height: auto !important;
  padding: 12px 16px !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  background: #fff;
  color: #111;
}

/*
 * RESORT / WHAT WE VALUE
 * Keep this editorial message inside the real content viewport. The former
 * full-bleed 100vw offset and forced single line could clip during browser
 * zoom and in the Customizer preview.
 */
.project-page.resort-page.fullscreen-page-shell > .page-card.fullscreen-surface,
.project-page.resort-page.fullscreen-page-shell > .fullscreen-section.fullscreen-surface{
  width:100%;
  max-width:100%;
  min-width:0;
  margin-inline:0;
}

.project-page.resort-page.fullscreen-page-shell > .project-value.fullscreen-surface{
  padding-inline:clamp(20px,5vw,72px);
  align-content:center;
  justify-items:center;
  gap:clamp(22px,3vw,40px);
  overflow:clip;
}

.resort-page .project-value > *{
  min-width:0;
  max-width:100%;
}

.resort-page .project-value .kicker{
  margin:0;
}

.resort-page .project-value h2{
  width:100%;
  margin:0;
  font-size:clamp(30px,4vw,54px);
  line-height:1.45;
  white-space:normal!important;
  word-break:normal;
  overflow-wrap:normal;
  line-break:strict;
  text-wrap:balance!important;
}

.resort-page .project-value > p:last-child{
  width:100%;
  max-width:min(100%,720px);
  margin:0 auto;
  text-wrap:pretty;
}

@media(max-width:760px){
  .project-page.resort-page.fullscreen-page-shell > .project-value.fullscreen-surface{
    min-height:auto;
    padding:clamp(76px,18vw,108px) clamp(18px,5vw,28px);
    gap:24px;
  }

  .resort-page .project-value h2{
    font-size:clamp(28px,8vw,42px);
    line-height:1.5;
    text-wrap:pretty!important;
  }

  .resort-page .project-value > p:last-child{
    font-size:15px;
    line-height:2;
  }
}

/*
 * BUSINESS / PROJECTS responsive containment
 * The portfolio heading is longer than a key message, so it must use the
 * actual content width and wrap naturally. Keep every presentation surface
 * independent of viewport-height-derived stage sizing and legacy 100vw
 * full-bleed offsets; those offsets become unstable in the Customizer and
 * while browser zoom changes the effective viewport.
 */
.container.business-page.fullscreen-page-shell{
  box-sizing:border-box;
  width:min(calc(100% - 48px),1280px);
  max-width:1280px;
  min-width:0;
  overflow-x:hidden;
  overflow-x:clip;
}

.business-page.fullscreen-page-shell > *,
.business-page .business-sync > *,
.business-page .business-projects-slider,
.business-page .business-projects-wrap,
.business-page .business-projects-wrap .swiper,
.business-page .business-projects-wrap .swiper-wrapper,
.business-page .business-projects-wrap .swiper-slide,
.business-page .business-project-slide,
.business-page .business-project-picture,
.business-page .business-project-image,
.business-page .business-project-overlay,
.business-page .project-overlay-head,
.business-page .project-overlay-body-wrap{
  box-sizing:border-box;
  min-width:0;
  max-width:100%;
}

.business-page.fullscreen-page-shell > .business-sync.fullscreen-surface,
.business-page .business-projects-slider,
.business-page .business-projects-wrap,
.business-page .business-project-slide{
  width:100%;
  max-width:100%;
  margin-inline:0;
}

.business-page .business-sync.resort-hero-card{
  min-height:auto;
  padding:clamp(72px,8vw,118px) clamp(20px,5vw,64px) clamp(80px,9vw,128px);
}

.business-page .business-sync-title{
  width:100%;
  max-width:min(100%,980px);
  margin-inline:auto;
  font-size:clamp(30px,4.2vw,60px);
  line-height:1.3;
  letter-spacing:-.035em;
  white-space:normal!important;
  word-break:normal;
  overflow-wrap:normal;
  line-break:strict;
  text-wrap:balance!important;
}

.business-page .business-sync-lead{
  width:100%;
  max-width:min(100%,900px);
  padding-inline:0;
  white-space:normal;
  word-break:normal;
  overflow-wrap:normal;
  line-break:strict;
  text-wrap:pretty;
}

.business-page.fullscreen-page-shell > .business-sync.fullscreen-surface .business-orbit{
  width:min(100%,clamp(300px,52vw,620px));
  max-width:620px;
  min-height:0;
  aspect-ratio:1;
  margin-inline:auto;
  contain:layout paint;
}

.business-page .business-projects-wrap{
  overflow:hidden;
}

.business-page .business-project-slide,
.business-page .business-project-picture{
  display:block;
  overflow:hidden;
}

.business-page .business-project-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
}

.business-page .business-project-overlay h2{
  width:100%;
  min-width:0;
  justify-content:center;
  gap:clamp(8px,1.5vw,18px);
  white-space:normal!important;
  overflow-wrap:normal;
  text-wrap:balance;
}

.business-page .business-project-overlay h2::before,
.business-page .business-project-overlay h2::after{
  flex:1 1 24px;
  width:auto;
  min-width:16px;
  max-width:clamp(42px,6vw,120px);
}

@media(max-width:900px){
  .container.business-page.fullscreen-page-shell{
    width:calc(100% - 28px);
    max-width:calc(100% - 28px);
  }

  .business-page .business-sync.resort-hero-card{
    padding:clamp(62px,9vw,78px) clamp(14px,4vw,28px) clamp(70px,10vw,92px);
  }

  html[lang^="ja"] .business-page .business-sync-title,
  html[lang^="zh"] .business-page .business-sync-title,
  html[lang^="ko"] .business-page .business-sync-title,
  .business-page .business-sync-title{
    font-size:clamp(25px,4.8vw,38px)!important;
    line-height:1.4;
    letter-spacing:-.035em;
  }

  .business-page.fullscreen-page-shell > .business-sync.fullscreen-surface .business-orbit{
    width:min(100%,clamp(300px,68vw,520px));
  }

  .business-page .business-projects-slider .business-project-overlay{
    inset:0;
    width:100%;
    max-width:100%;
    padding:clamp(24px,5vw,36px) clamp(18px,4vw,28px) clamp(22px,5vw,30px);
  }

  .business-page .business-project-overlay h2{
    font-size:clamp(17px,4.7vw,27px);
    line-height:1.25;
  }

  .business-page .business-project-overlay h2::before,
  .business-page .business-project-overlay h2::after{
    min-width:12px;
    max-width:clamp(24px,9vw,72px);
  }
}

@media(max-width:600px){
  .container.business-page.fullscreen-page-shell{
    width:calc(100% - 20px);
    max-width:calc(100% - 20px);
  }

  .business-page .business-sync.resort-hero-card{
    padding:58px 12px 68px;
  }

  .business-page .business-sync-title{
    font-size:clamp(24px,7.2vw,32px)!important;
    line-height:1.42;
  }

  .business-page .business-sync-lead{
    font-size:clamp(14px,3.8vw,16px);
    line-height:1.9;
  }

  .business-page.fullscreen-page-shell > .business-sync.fullscreen-surface .business-orbit{
    width:min(100%,380px);
  }

  .business-page .business-projects-slider.fullscreen-section{
    min-height:auto;
  }

  .business-page .business-project-overlay{
    padding:clamp(20px,6vw,28px) clamp(14px,4vw,20px) clamp(18px,5vw,24px);
  }

  .business-page .project-overlay-brand{
    font-size:clamp(20px,6.4vw,28px);
  }

  .business-page .project-overlay-headline{
    font-size:clamp(17px,5.3vw,25px);
    line-height:1.5;
  }

  .business-page .business-project-overlay .pillar-overlay-body{
    font-size:clamp(12px,3.4vw,15px);
    line-height:1.8;
  }

  .business-page .business-projects-slider .project-overlay-body-wrap{
    padding:14px 8px 0;
  }
}

@media(max-width:380px){
  .business-page.fullscreen-page-shell > .business-sync .orbit-node{
    width:clamp(78px,26%,94px);
    height:36px;
    font-size:10px;
  }

  .business-page.fullscreen-page-shell > .business-sync .orbit-core{
    width:clamp(82px,27%,104px);
  }

  .business-page .business-project-overlay h2::before,
  .business-page .business-project-overlay h2::after{
    display:none;
  }
}
