:root {
  --navy: #0A1D39;
  --navy-2: #10284A;
  --navy-3: #17345A;
  --cream: #F5F0E8;
  --paper: #FFFEFB;
  --gold: #CDA85A;
  --gold-2: #E0C17D;
  --gold-deep: #A87A27;
  --ink: #0A1D39;
  --muted: #667080;
  --line: rgba(10, 29, 57, .13);
  --teal: #2D8F87;
  --red: #C73F3F;
  --shadow: 0 28px 70px rgba(8, 24, 48, .16);
  --serif: "EB Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  --sans: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  --page: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 18px; top: 18px; z-index: 1000; transform: translateY(-160%);
  background: var(--gold); color: var(--navy); padding: 12px 16px; font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
.page-shell { width: var(--page); margin-inline: auto; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(245, 240, 232, .92);
  backdrop-filter: blur(18px);
  border-color: var(--line);
  box-shadow: 0 10px 32px rgba(10,29,57,.06);
}
.nav-shell {
  width: var(--page); height: 88px; margin-inline: auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; white-space: nowrap; }
.brand img { width: 42px; height: 42px; }
.brand-word {
  font-family: var(--serif); font-weight: 600; font-size: 24px; letter-spacing: .18em; line-height: 1;
}
.brand-divider { width: 1px; height: 22px; background: var(--gold); }
.brand-pos { font-size: 11px; font-weight: 700; letter-spacing: .28em; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 34px; }
.site-nav a {
  position: relative; font-size: 13px; font-weight: 600; color: #33415a;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px;
  background: var(--gold-deep); transition: right .22s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; }

.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px;
  padding: 0 24px; border: 1px solid transparent; cursor: pointer;
  font-size: 12px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.button-gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 28px rgba(168,122,39,.16); }
.button-gold:hover { background: var(--gold-2); box-shadow: 0 14px 34px rgba(168,122,39,.22); }
.button-ghost { border-color: rgba(10,29,57,.28); background: transparent; }
.button-ghost:hover { border-color: var(--navy); background: rgba(255,255,255,.4); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 10px; }

.hero {
  min-height: 900px; padding: 164px 0 86px; overflow: hidden; position: relative;
  background:
    radial-gradient(circle at 78% 20%, rgba(205,168,90,.2), transparent 28%),
    linear-gradient(180deg, #F8F4ED 0%, var(--cream) 100%);
}
.hero::before {
  content: ""; position: absolute; width: 720px; height: 720px; border: 1px solid rgba(205,168,90,.22);
  border-radius: 50%; right: -240px; top: -240px;
}
.hero-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 44px; }
.hero-copy { position: relative; z-index: 4; padding-top: 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px;
  color: var(--gold-deep); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 500; }
h1 { font-size: clamp(66px, 6.1vw, 104px); line-height: .91; letter-spacing: -.04em; }
h1 em, h2 em { color: var(--gold-deep); font-weight: 500; }
.hero-lede { max-width: 610px; margin: 32px 0 0; color: #465168; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; margin-top: 36px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 560px; margin-top: 52px; border-top: 1px solid var(--line); padding-top: 22px; }
.hero-proof div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 10px; padding-right: 18px; }
.hero-proof strong { font-family: var(--serif); font-size: 38px; color: var(--gold-deep); font-weight: 500; }
.hero-proof span { font-size: 10px; line-height: 1.35; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #6b7180; }

.hero-stage { position: relative; min-height: 610px; perspective: 1400px; z-index: 2; }
.stage-aura {
  position: absolute; inset: 8% 4% 0 4%; border-radius: 50%; filter: blur(18px);
  background: radial-gradient(circle, rgba(205,168,90,.26), rgba(10,29,57,.03) 52%, transparent 72%);
}
.interface-card {
  position: absolute; margin: 0; overflow: hidden; background: white; border: 1px solid rgba(10,29,57,.12);
  box-shadow: var(--shadow); transform-style: preserve-3d;
}
.interface-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.card-main {
  width: 78%; aspect-ratio: 1.68; left: 7%; top: 14%; border-radius: 14px;
  transform: rotateY(-8deg) rotateX(2deg) rotateZ(-1deg);
  animation: float-main 9s ease-in-out infinite;
}
.browser-line {
  height: 28px; background: #EEF0F3; display: flex; align-items: center; gap: 5px; padding: 0 10px;
  color: #677084; font-size: 7px; letter-spacing: .03em;
}
.browser-line span { width: 6px; height: 6px; border-radius: 50%; background: #C5CAD2; }
.browser-line b { margin-left: 7px; font-weight: 500; }
.card-main img { height: calc(100% - 28px); }
.card-kitchen {
  width: 53%; aspect-ratio: 1.76; right: -1%; top: 2%; border-radius: 11px;
  transform: rotateY(-10deg) rotateZ(2.4deg) translateZ(60px);
  animation: float-kitchen 8s ease-in-out infinite;
}
.card-guest {
  width: 43%; aspect-ratio: 1.82; right: 2%; bottom: 3%; border-radius: 11px;
  transform: rotateY(-7deg) rotateZ(-1.7deg) translateZ(90px);
  animation: float-guest 10s ease-in-out infinite;
}
.surface-label {
  position: absolute; z-index: 2; top: 9px; left: 10px; display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 9px; border-radius: 99px; background: rgba(10,29,57,.9); color: white;
  font-size: 7px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px);
}
.surface-label i, .live-pill i { width: 6px; height: 6px; border-radius: 50%; background: #73D0B8; box-shadow: 0 0 0 4px rgba(115,208,184,.13); }
.service-status {
  position: absolute; z-index: 8; left: 1%; bottom: 8%; display: flex; align-items: center; gap: 12px;
  background: var(--navy); color: white; padding: 15px 19px; box-shadow: 0 18px 50px rgba(10,29,57,.25);
}
.status-pulse { width: 12px; height: 12px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 8px rgba(45,143,135,.16); }
.service-status small { display: block; color: #AFC1D9; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.service-status strong { display: block; margin-top: 3px; font-size: 11px; letter-spacing: .01em; }
.hero-rule { position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--line); }
@keyframes float-main { 0%,100%{transform:rotateY(-8deg) rotateX(2deg) rotateZ(-1deg) translateY(0)} 50%{transform:rotateY(-8deg) rotateX(2deg) rotateZ(-1deg) translateY(-10px)} }
@keyframes float-kitchen { 0%,100%{transform:rotateY(-10deg) rotateZ(2.4deg) translateZ(60px) translateY(0)} 50%{transform:rotateY(-10deg) rotateZ(2.4deg) translateZ(60px) translateY(9px)} }
@keyframes float-guest { 0%,100%{transform:rotateY(-7deg) rotateZ(-1.7deg) translateZ(90px) translateY(0)} 50%{transform:rotateY(-7deg) rotateZ(-1.7deg) translateZ(90px) translateY(-8px)} }

.section { padding: 132px 0; }
.section-heading h2, .identity h2, .closing h2 { font-size: clamp(50px, 5.1vw, 76px); line-height: .98; letter-spacing: -.035em; }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 60px; margin-bottom: 72px; }
.split-heading p { margin: 0 0 8px; color: #5B6475; line-height: 1.8; font-size: 16px; max-width: 540px; }
.centered-heading { max-width: 790px; margin: 0 auto 70px; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading p { max-width: 650px; margin: 28px auto 0; color: #5B6475; line-height: 1.75; }

.product-world { background: var(--paper); }
.world-layout {
  display: grid; grid-template-columns: .82fr 1.42fr .78fr; gap: 34px; min-height: 610px; align-items: stretch;
}
.world-nav { display: flex; flex-direction: column; justify-content: center; border-top: 1px solid var(--line); }
.world-tab {
  appearance: none; border: 0; border-bottom: 1px solid var(--line); background: transparent; cursor: pointer;
  display: grid; grid-template-columns: 38px 1fr; gap: 14px; text-align: left; padding: 24px 4px; position: relative;
}
.world-tab::before { content: ""; position: absolute; left: 0; top: 20%; bottom: 20%; width: 2px; background: var(--gold); transform: scaleY(0); transition: transform .25s ease; }
.world-tab > span { color: #A6ACB6; font-size: 10px; letter-spacing: .12em; padding-top: 4px; }
.world-tab strong { display: block; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.world-tab small { display: block; margin-top: 5px; color: #747D8D; font-size: 11px; }
.world-tab.is-active { padding-left: 16px; }
.world-tab.is-active::before { transform: scaleY(1); }
.world-tab.is-active > span, .world-tab.is-active strong { color: var(--gold-deep); }
.world-visual { position: relative; display: grid; place-items: center; min-width: 0; }
.world-orbit {
  position: absolute; width: 93%; aspect-ratio: 1; border: 1px solid rgba(205,168,90,.3); border-radius: 50%;
}
.world-orbit::before, .world-orbit::after { content: ""; position: absolute; inset: 11%; border: 1px solid rgba(10,29,57,.08); border-radius: inherit; }
.world-orbit::after { inset: 23%; }
.orbit-dot { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 7px rgba(205,168,90,.13); }
.dot-one { left: 6%; top: 32%; }
.dot-two { right: 4%; top: 51%; }
.dot-three { left: 45%; bottom: -1%; }
.world-screen {
  position: relative; z-index: 2; width: 84%; aspect-ratio: 1.27; background: white; padding: 12px;
  border: 1px solid rgba(10,29,57,.13); box-shadow: 0 34px 80px rgba(10,29,57,.18); transform: rotate(-1.2deg);
}
.screen-topline { height: 34px; display: flex; align-items: center; justify-content: space-between; padding: 0 6px 9px; }
.screen-topline > span:first-child { color: #7C8594; font-size: 8px; font-weight: 700; letter-spacing: .16em; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; color: var(--teal); font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.world-screen > img { width: 100%; height: calc(100% - 34px); object-fit: cover; object-position: top; border: 1px solid #E6E7E9; transition: opacity .2s ease, transform .3s ease; }
.world-screen.is-changing > img { opacity: .18; transform: scale(.985); }
.world-mark {
  position: absolute; z-index: 4; right: -2%; bottom: 7%; width: 86px; height: 86px; padding: 10px; background: var(--paper); box-shadow: 0 16px 45px rgba(10,29,57,.19);
}
.world-copy { align-self: center; }
.world-number { color: var(--gold-deep); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.world-copy h3 { margin-top: 18px; font-size: 40px; line-height: 1; }
.world-copy > p:not(.world-number) { color: #596273; line-height: 1.75; font-size: 14px; }
.world-copy ul { margin: 24px 0 28px; padding: 0; list-style: none; }
.world-copy li { border-top: 1px solid var(--line); padding: 12px 0; font-size: 12px; color: #3D485C; }
.world-copy li::before { content: "·"; color: var(--gold); font-size: 18px; margin-right: 9px; vertical-align: -1px; }
.text-link { border: 0; background: transparent; padding: 0; cursor: pointer; color: var(--gold-deep); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { display: inline-block; margin-left: 7px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }

.service-loop { background: var(--cream); }
.loop-track { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(205,168,90,.55); }
.loop-step { position: relative; padding: 38px 25px 0; min-height: 290px; border-right: 1px solid var(--line); }
.loop-step:last-child { border-right: 0; }
.loop-step > span { position: absolute; right: 16px; top: 13px; color: #A8ADB6; font-size: 9px; letter-spacing: .15em; }
.loop-step::before { content: ""; position: absolute; top: -5px; left: 26px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.loop-icon { width: 47px; height: 47px; display: grid; place-items: center; border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.loop-icon svg { width: 25px; height: 25px; fill: none; stroke: var(--navy); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.loop-step h3 { margin-top: 31px; font-size: 29px; }
.loop-step p { color: #626B7C; font-size: 13px; line-height: 1.7; }

.surfaces { background: var(--paper); }
.surface-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.surface-card { min-height: 650px; display: flex; flex-direction: column; overflow: hidden; background: #F7F3EC; border: 1px solid var(--line); }
.surface-card-wide { grid-column: 1 / -1; min-height: 610px; display: grid; grid-template-columns: .72fr 1.28fr; }
.surface-card-copy { padding: 42px; }
.surface-card-copy > span { color: var(--gold-deep); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.surface-card-copy h3 { margin-top: 18px; font-size: 42px; line-height: 1.02; max-width: 510px; }
.surface-card-copy p { max-width: 470px; color: #5A6475; line-height: 1.75; font-size: 14px; }
.surface-card-copy .text-link { margin-top: 12px; }
.surface-image { margin: auto 22px 22px; overflow: hidden; background: white; border: 1px solid var(--line); box-shadow: 0 18px 45px rgba(10,29,57,.12); }
.surface-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.surface-card:not(.surface-card-wide) .surface-image { height: 330px; }
.surface-card-wide .surface-image { margin: 22px; }
.surface-image-dark { background: var(--navy); padding: 12px; }

.identity { padding: 120px 0; color: white; background: var(--navy); position: relative; overflow: hidden; }
.identity::before { content: ""; position: absolute; width: 780px; height: 780px; border: 1px solid rgba(205,168,90,.2); border-radius: 50%; left: -340px; top: -280px; }
.identity-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; position: relative; z-index: 2; }
.identity-mark { min-height: 430px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); }
.identity-mark img { width: 90%; }
.eyebrow-light { color: var(--gold-2); }
.identity h2 em { color: var(--gold-2); }
.identity-copy > p { color: #BEC8D6; max-width: 590px; line-height: 1.8; }
.palette { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 40px; }
.palette span { display: flex; flex-direction: column; justify-content: flex-end; min-height: 110px; padding: 13px; color: var(--navy); background: var(--swatch); border: 1px solid rgba(255,255,255,.12); }
.palette span:nth-child(1) { color: white; }
.palette b { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.palette small { margin-top: 4px; font-size: 9px; opacity: .72; }

.closing { background: #F8F4ED; }
.closing-shell { display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 80px; }
.closing-action { padding-bottom: 8px; }
.closing-action p { color: #5D6677; max-width: 500px; line-height: 1.8; margin-bottom: 28px; }
.site-footer { border-top: 1px solid var(--line); background: #F8F4ED; }
.footer-shell { min-height: 104px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; color: #6A7280; }
.footer-shell p { margin: 0; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.footer-shell p:last-child { text-align: right; }
.brand-footer .brand-word { font-size: 19px; }
.brand-footer .brand-pos { font-size: 9px; }
.brand-footer .brand-divider { height: 17px; }
.brand-footer img { width: 34px; height: 34px; }

.gallery-dialog {
  width: min(1180px, calc(100vw - 34px)); max-height: calc(100vh - 34px); padding: 0; border: 0;
  background: var(--paper); color: var(--ink); box-shadow: 0 42px 130px rgba(3,12,26,.45);
}
.gallery-dialog::backdrop { background: rgba(5,16,34,.76); backdrop-filter: blur(6px); }
.gallery-shell { position: relative; display: grid; grid-template-columns: 260px 1fr; gap: 28px; padding: 34px; }
.gallery-close { position: absolute; right: 16px; top: 10px; z-index: 3; border: 0; background: transparent; font-family: var(--serif); font-size: 34px; cursor: pointer; }
.gallery-meta { align-self: center; }
.gallery-meta > span { color: var(--gold-deep); font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.gallery-meta h2 { margin-top: 16px; font-size: 42px; line-height: 1; }
.gallery-meta p { color: #5F6879; font-size: 13px; line-height: 1.7; }
.gallery-frame { overflow: hidden; background: #EAE7E1; border: 1px solid var(--line); min-height: 560px; display: grid; place-items: center; }
.gallery-frame img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; border-top: 1px solid var(--line); padding-top: 20px; }
.gallery-thumbs button { padding: 0; height: 78px; overflow: hidden; border: 1px solid var(--line); background: white; cursor: pointer; opacity: .58; transition: opacity .2s ease, border-color .2s ease; }
.gallery-thumbs button:hover, .gallery-thumbs button.is-active { opacity: 1; border-color: var(--gold); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

@media (max-width: 1100px) {
  :root { --page: min(100% - 36px, 960px); }
  .nav-cta { display: none; }
  .nav-shell { grid-template-columns: auto 1fr; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-stage { min-height: 650px; width: min(900px, 100%); margin: 20px auto 0; }
  .world-layout { grid-template-columns: .8fr 1.2fr; }
  .world-copy { grid-column: 1 / -1; display: grid; grid-template-columns: 100px 1fr 1.2fr; gap: 20px; align-items: start; border-top: 1px solid var(--line); padding-top: 30px; }
  .world-copy h3 { margin-top: 0; }
  .world-copy > p:not(.world-number) { margin-top: 0; }
  .world-copy ul { grid-column: 2 / -1; margin: 0; }
  .world-copy .text-link { grid-column: 2 / -1; justify-self: start; }
  .loop-track { grid-template-columns: repeat(3,1fr); }
  .loop-step:nth-child(3) { border-right: 0; }
  .loop-step:nth-child(n+4) { border-top: 1px solid var(--line); }
  .identity-grid { gap: 50px; }
  .palette { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 28px); }
  .site-header { background: rgba(245,240,232,.93); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
  .nav-shell { height: 72px; grid-template-columns: 1fr auto; gap: 12px; }
  .brand img { width: 36px; height: 36px; }
  .brand-word { font-size: 20px; }
  .menu-toggle { display: grid; width: 44px; height: 44px; place-content: center; gap: 7px; border: 1px solid var(--line); background: transparent; }
  .menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 1px; background: var(--navy); transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed; left: 14px; right: 14px; top: 78px; padding: 24px; display: grid; gap: 0;
    background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .2s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .hero { padding: 122px 0 58px; }
  .hero-grid { gap: 20px; }
  h1 { font-size: clamp(55px, 17vw, 78px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-proof { grid-template-columns: 1fr; gap: 10px; }
  .hero-proof div { border-bottom: 1px solid var(--line); padding-bottom: 10px; }
  .hero-stage { min-height: 470px; margin-top: 20px; }
  .card-main { width: 90%; left: 2%; top: 18%; }
  .card-kitchen { width: 57%; right: -4%; top: 5%; }
  .card-guest { width: 53%; right: -2%; bottom: 8%; }
  .service-status { left: 2%; bottom: 1%; padding: 12px; }
  .service-status strong { font-size: 9px; }
  .section { padding: 88px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 26px; margin-bottom: 52px; }
  .section-heading h2, .identity h2, .closing h2 { font-size: 52px; }
  .world-layout { grid-template-columns: 1fr; }
  .world-nav { display: grid; grid-template-columns: 1fr 1fr; border-top: 0; }
  .world-tab { padding: 16px 8px; grid-template-columns: 26px 1fr; border-top: 1px solid var(--line); }
  .world-tab strong { font-size: 20px; }
  .world-tab.is-active { padding-left: 10px; }
  .world-visual { min-height: 440px; }
  .world-copy { display: block; padding-top: 24px; }
  .world-copy ul { margin: 20px 0; }
  .loop-track { grid-template-columns: 1fr; }
  .loop-step, .loop-step:nth-child(3) { border-right: 0; border-top: 1px solid var(--line); min-height: 220px; }
  .surface-grid { grid-template-columns: 1fr; }
  .surface-card-wide { grid-column: auto; display: flex; min-height: 650px; }
  .surface-card-copy { padding: 30px; }
  .surface-card-copy h3 { font-size: 35px; }
  .surface-card-wide .surface-image { min-height: 300px; }
  .identity { padding: 88px 0; }
  .identity-grid { grid-template-columns: 1fr; gap: 42px; }
  .identity-mark { min-height: 280px; }
  .closing-shell { grid-template-columns: 1fr; gap: 30px; }
  .footer-shell { grid-template-columns: 1fr; padding: 26px 0; gap: 14px; }
  .footer-shell p:last-child { text-align: left; }
  .gallery-shell { grid-template-columns: 1fr; padding: 24px; }
  .gallery-frame { min-height: 280px; }
  .gallery-thumbs { grid-template-columns: repeat(2,1fr); }
}

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