/* ============================================================
   Eakon (eakon.shop) — House Cleaning
   Cormorant Garamond + Manrope | Coastal charcoal + mist blue-gray
   ============================================================ */

:root {
  --ek-charcoal: #1B2228;
  --ek-charcoal-soft: #2A343C;
  --ek-mist: #A8B5C0;
  --ek-mist-soft: #C5CED6;
  --ek-ice: #EEF2F5;
  --ek-white: #FFFFFF;
  --ek-steel: #6B8499;
  --ek-text: #243039;
  --ek-muted: #5E6D7A;
  --ek-line: rgba(27, 34, 40, 0.12);
  --ek-font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ek-font-body: 'Manrope', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  --ek-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ek-wrap: min(1120px, calc(100% - 40px));
  --ek-header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: only light;
}

body.ek-body {
  font-family: var(--ek-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ek-text);
  background:
    radial-gradient(ellipse 70% 45% at 12% -10%, rgba(168, 181, 192, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(107, 132, 153, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #F4F7F9 0%, var(--ek-ice) 40%, #E8EEF2 100%);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ek-steel); text-decoration: none; transition: color 0.25s var(--ek-ease); }
a:hover { color: var(--ek-charcoal); }
address { font-style: normal; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--ek-font-display);
  font-weight: 550;
  line-height: 1.2;
  color: var(--ek-charcoal);
  letter-spacing: 0.01em;
}

.ek-wrap { width: var(--ek-wrap); margin-inline: auto; }

.ek-skip {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 18px;
  background: var(--ek-charcoal);
  color: var(--ek-white);
  font-weight: 600;
}
.ek-skip:focus { top: 16px; }

.ek-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ek-steel);
  margin-bottom: 14px;
}
.ek-tag--light,
.ek-tag--on-dark { color: var(--ek-mist-soft); }

.ek-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  font-family: var(--ek-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s var(--ek-ease), color 0.3s var(--ek-ease), border-color 0.3s var(--ek-ease), transform 0.2s var(--ek-ease);
}
.ek-btn:active { transform: translateY(1px) scale(0.98); }
.ek-btn--ice { background: var(--ek-ice); color: var(--ek-charcoal); }
.ek-btn--ice:hover { background: var(--ek-white); color: var(--ek-charcoal); }
.ek-btn--mist { background: var(--ek-mist); color: var(--ek-charcoal); }
.ek-btn--mist:hover { background: var(--ek-mist-soft); }
.ek-btn--charcoal { background: var(--ek-charcoal); color: var(--ek-white); }
.ek-btn--charcoal:hover { background: var(--ek-charcoal-soft); color: var(--ek-white); }
.ek-btn--ghost {
  background: transparent;
  color: var(--ek-white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.ek-btn--ghost:hover { background: rgba(255, 255, 255, 0.1); color: var(--ek-white); }
.ek-btn--outline {
  background: transparent;
  color: var(--ek-charcoal);
  border: 1.5px solid var(--ek-charcoal);
}
.ek-btn--outline:hover { background: var(--ek-charcoal); color: var(--ek-white); }

/* Header — solid chrome */
.ek-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--ek-header-h);
  background: rgba(238, 242, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ek-ease), background 0.3s var(--ek-ease), box-shadow 0.3s var(--ek-ease);
}
.ek-header.is-scrolled {
  background: rgba(238, 242, 245, 0.98);
  border-bottom-color: var(--ek-line);
  box-shadow: 0 8px 28px rgba(27, 34, 40, 0.06);
}
.ek-header__inner {
  width: var(--ek-wrap);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ek-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ek-charcoal);
  flex-shrink: 0;
}
.ek-logo__mark { display: grid; place-items: center; color: var(--ek-charcoal); }
.ek-logo__word { display: flex; flex-direction: column; line-height: 1.1; }
.ek-logo__text {
  font-family: var(--ek-font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ek-logo__sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ek-muted);
}
.ek-nav--desk .ek-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ek-nav--desk .ek-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  color: var(--ek-text);
  font-size: 0.9rem;
  font-weight: 550;
  position: relative;
}
.ek-nav--desk .ek-nav__link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 1px;
  background: var(--ek-charcoal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ek-ease);
}
.ek-nav--desk .ek-nav__link:hover::after,
.ek-nav--desk .ek-nav__link.is-active::after { transform: scaleX(1); }
.ek-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ek-header__phone {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 10px;
  color: var(--ek-charcoal);
  font-size: 0.82rem;
  font-weight: 600;
}
.ek-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: var(--ek-charcoal);
  color: var(--ek-white);
  font-size: 0.82rem;
  font-weight: 650;
  border-radius: 2px;
  transition: background 0.25s var(--ek-ease), transform 0.2s var(--ek-ease);
}
.ek-header__cta:hover { background: var(--ek-charcoal-soft); color: var(--ek-white); }
.ek-header__cta--block { width: 100%; }
.ek-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.ek-menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ek-charcoal);
  transition: transform 0.3s var(--ek-ease), opacity 0.2s;
}
.ek-menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ek-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.ek-menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.ek-scroll-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: transparent;
}
.ek-scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--ek-mist), var(--ek-steel));
}

/* Mobile drawer */
.ek-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(27, 34, 40, 0.48);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ek-ease), visibility 0.35s;
}
.ek-nav-overlay.is-open { opacity: 1; visibility: visible; }
.ek-nav--mobile {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1200;
  width: min(100%, 360px);
  height: 100%;
  height: 100dvh;
  background: var(--ek-charcoal);
  color: var(--ek-ice);
  padding: 20px 22px 32px;
  display: flex;
  flex-direction: column;
  transform: translateX(104%);
  transition: transform 0.4s var(--ek-ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.ek-nav--mobile.is-open { transform: translateX(0); }
.ek-nav__mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.ek-logo--drawer { color: var(--ek-ice); }
.ek-logo--drawer .ek-logo__mark { color: var(--ek-ice); }
.ek-nav__close {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--ek-ice);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.ek-nav--mobile .ek-nav__list { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.ek-nav--mobile .ek-nav__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.35s var(--ek-ease), transform 0.35s var(--ek-ease);
}
.ek-nav--mobile .ek-nav__list li.is-shown {
  opacity: 1;
  transform: translateX(0);
}
.ek-nav__idx {
  font-family: var(--ek-font-display);
  font-size: 1rem;
  color: var(--ek-mist);
  width: 28px;
}
.ek-nav--mobile .ek-nav__link {
  display: flex;
  align-items: center;
  min-height: 44px;
  flex: 1;
  color: var(--ek-ice);
  font-size: 1.2rem;
  font-weight: 550;
  font-family: var(--ek-font-display);
}
.ek-nav--mobile .ek-nav__link.is-active { color: var(--ek-mist-soft); }
.ek-nav__mobile-foot {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(238, 242, 245, 0.12);
  color: var(--ek-mist);
  font-size: 0.85rem;
}
.ek-nav__mobile-phone {
  color: var(--ek-ice);
  font-weight: 650;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 980px) {
  .ek-nav--desk { display: none; }
  .ek-menu-toggle { display: block; }
  .ek-header__cta { display: none; }
}
@media (min-width: 1100px) {
  .ek-header__phone { display: inline-flex; }
}

/* Reveals & motion */
.js .ek-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ek-ease), transform 0.7s var(--ek-ease);
  transition-delay: calc(var(--d, 0) * 70ms);
}
.js .ek-reveal.is-in { opacity: 1; transform: none; }
.js .ek-wipe {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s var(--ek-ease);
}
.js .ek-wipe.is-in { clip-path: inset(0 0 0 0); }
.ek-kenburns {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: ekKen 22s ease-in-out infinite alternate;
}
@keyframes ekKen {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(-1.5%, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .ek-kenburns { animation: none; transform: none; }
  .js .ek-reveal, .js .ek-wipe { opacity: 1; transform: none; clip-path: none; transition: none; }
}

/* Hero — full-bleed, brand-first */
.ek-hero {
  position: relative;
  min-height: min(100vh, 920px);
  min-height: min(100dvh, 920px);
  display: grid;
  align-items: end;
  color: var(--ek-white);
  overflow: hidden;
}
.ek-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ek-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ek-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(27, 34, 40, 0.28) 0%, rgba(27, 34, 40, 0.15) 35%, rgba(27, 34, 40, 0.78) 100%),
    linear-gradient(90deg, rgba(27, 34, 40, 0.55) 0%, transparent 55%);
}
.ek-hero__mist {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(168, 181, 192, 0.18));
  pointer-events: none;
}
.ek-hero__inner {
  position: relative;
  z-index: 2;
  width: var(--ek-wrap);
  margin: 0 auto;
  padding: calc(var(--ek-header-h) + 48px) 0 88px;
}
.ek-hero__brand {
  font-family: var(--ek-font-display);
  font-size: clamp(3.2rem, 11vw, 7.5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  color: var(--ek-white);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}
.ek-hero__headline {
  font-size: clamp(1.7rem, 4.2vw, 2.75rem);
  color: var(--ek-ice);
  font-weight: 500;
  max-width: 14em;
  margin-bottom: 16px;
}
.ek-hero__lead {
  max-width: 34em;
  color: rgba(238, 242, 245, 0.86);
  font-size: 1.02rem;
  margin-bottom: 28px;
}
.ek-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ek-hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(238, 242, 245, 0.75);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ek-hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(238, 242, 245, 0.8));
  animation: ekScrollPulse 1.8s ease-in-out infinite;
}
@keyframes ekScrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Rooms — tall portrait rail */
.ek-rooms { padding: 88px 0 40px; }
.ek-head { max-width: 36em; margin-bottom: 36px; }
.ek-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.ek-head p { color: var(--ek-muted); }
.ek-rooms__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 280px);
  gap: 18px;
  overflow-x: auto;
  padding: 8px max(20px, calc((100% - 1120px) / 2 + 20px)) 28px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.ek-rooms__shot { scroll-snap-align: start; }
.ek-rooms__frame {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ek-charcoal-soft);
}
.ek-rooms__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ek-ease);
}
.ek-rooms__shot:hover .ek-rooms__frame img { transform: scale(1.06); }
.ek-rooms__shot figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  font-size: 0.9rem;
}
.ek-rooms__shot strong {
  font-family: var(--ek-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ek-charcoal);
}
.ek-rooms__shot span { color: var(--ek-muted); font-size: 0.82rem; }
.ek-rooms__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 0 0;
  border-top: 1px solid var(--ek-line);
}
.ek-rooms__stats strong {
  display: block;
  font-family: var(--ek-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ek-charcoal);
  line-height: 1.1;
}
.ek-rooms__stats span {
  color: var(--ek-muted);
  font-size: 0.82rem;
}

/* Services — stacked cinematic panels */
.ek-sec { padding: 72px 0; }
.ek-svc__stack { display: grid; gap: 18px; }
.ek-svc__panel {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--ek-white);
}
.ek-svc__bg { position: absolute; inset: 0; }
.ek-svc__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1s var(--ek-ease);
}
.ek-svc__panel:hover .ek-svc__bg img { transform: scale(1.1); }
.ek-svc__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(27, 34, 40, 0.88) 0%, rgba(27, 34, 40, 0.42) 58%, rgba(27, 34, 40, 0.2) 100%);
}
.ek-svc__body {
  position: relative;
  z-index: 1;
  padding: 36px 32px;
  max-width: 34em;
}
.ek-svc__num {
  font-family: var(--ek-font-display);
  font-size: 3rem;
  line-height: 1;
  color: rgba(168, 181, 192, 0.55);
  display: block;
  margin-bottom: 8px;
}
.ek-svc__body h3 {
  color: var(--ek-ice);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 10px;
}
.ek-svc__body p { color: rgba(238, 242, 245, 0.84); margin-bottom: 8px; }
.ek-svc__detail { color: rgba(197, 206, 214, 0.9) !important; font-size: 0.92rem; margin-bottom: 18px !important; }
.ek-sec__foot { margin-top: 28px; }

/* Process — vertical spine */
.ek-process { background: linear-gradient(180deg, transparent, rgba(168, 181, 192, 0.12), transparent); }
.ek-process__layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.2fr;
  gap: 48px;
  align-items: start;
}
.ek-process__spine { display: grid; gap: 0; }
.ek-process__step {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--ek-line);
}
.ek-process__step:last-child { border-bottom: 1px solid var(--ek-line); }
.ek-process__n {
  font-family: var(--ek-font-display);
  font-size: 1.4rem;
  color: var(--ek-steel);
  display: block;
  margin-bottom: 6px;
}
.ek-process__meta h3 { font-size: 1.35rem; margin-bottom: 8px; }
.ek-process__meta p { color: var(--ek-muted); font-size: 0.94rem; }
.ek-process__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ek-charcoal-soft);
}
.ek-process__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery — asymmetric masonry */
.ek-gallery__masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.ek-gallery__shot {
  position: relative;
  overflow: hidden;
  background: var(--ek-charcoal-soft);
  grid-column: span 4;
}
.ek-gallery__shot--a { grid-column: span 7; grid-row: span 2; min-height: 420px; }
.ek-gallery__shot--b { grid-column: span 5; min-height: 220px; }
.ek-gallery__shot--c { grid-column: span 5; min-height: 220px; }
.ek-gallery__shot--d { grid-column: span 4; min-height: 280px; }
.ek-gallery__shot--e { grid-column: span 4; min-height: 280px; }
.ek-gallery__shot--f { grid-column: span 4; min-height: 280px; }
.ek-gallery__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ek-ease);
}
.ek-gallery__shot:hover img { transform: scale(1.05); }
.ek-gallery__shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ek-ice);
  font-size: 0.85rem;
  background: linear-gradient(transparent, rgba(27, 34, 40, 0.72));
}
.ek-gallery__shot figcaption span {
  font-family: var(--ek-font-display);
  color: var(--ek-mist-soft);
}

/* Voices */
.ek-voices__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ek-voice {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.55);
  border-top: 2px solid var(--ek-charcoal);
}
.ek-voice blockquote p {
  font-family: var(--ek-font-display);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ek-charcoal);
  margin-bottom: 22px;
}
.ek-voice__who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ek-voice__who img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}
.ek-voice__who cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.92rem;
}
.ek-voice__who span { color: var(--ek-muted); font-size: 0.8rem; }

/* FAQ */
.ek-faq__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.ek-faq__intro h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.ek-faq__intro p { color: var(--ek-muted); margin-bottom: 22px; }
.ek-faq__item {
  border-top: 1px solid var(--ek-line);
  padding: 4px 0;
}
.ek-faq__item:last-child { border-bottom: 1px solid var(--ek-line); }
.ek-faq__item summary {
  list-style: none;
  cursor: pointer;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 650;
  color: var(--ek-charcoal);
  padding: 12px 0;
}
.ek-faq__item summary::-webkit-details-marker { display: none; }
.ek-faq__item summary::after {
  content: '+';
  font-family: var(--ek-font-display);
  font-size: 1.4rem;
  color: var(--ek-steel);
  flex-shrink: 0;
}
.ek-faq__item[open] summary::after { content: '−'; }
.ek-faq__item p {
  color: var(--ek-muted);
  padding: 0 0 18px;
  max-width: 42em;
}

/* CTA */
.ek-cta {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ek-white);
}
.ek-cta__media { position: absolute; inset: 0; }
.ek-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.ek-cta__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27, 34, 40, 0.88) 0%, rgba(27, 34, 40, 0.55) 55%, rgba(27, 34, 40, 0.35) 100%);
}
.ek-cta .ek-wrap { position: relative; z-index: 1; padding: 72px 0; }
.ek-cta__panel { max-width: 34em; }
.ek-cta__panel h2 {
  color: var(--ek-ice);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.ek-cta__panel p { color: rgba(238, 242, 245, 0.84); margin-bottom: 14px; }
.ek-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* Footer */
.ek-footer {
  background: var(--ek-charcoal);
  color: rgba(238, 242, 245, 0.78);
  padding-bottom: 28px;
}
.ek-footer a { color: var(--ek-mist-soft); }
.ek-footer a:hover { color: var(--ek-white); }
.ek-footer__top {
  border-bottom: 1px solid rgba(238, 242, 245, 0.1);
  padding: 40px 0;
  margin-bottom: 36px;
}
.ek-footer__news {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}
.ek-footer__news h3 {
  color: var(--ek-ice);
  font-size: 1.6rem;
  max-width: 14em;
}
.ek-footer__news-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  width: min(100%, 420px);
}
.ek-footer__news-form input {
  flex: 1;
  min-width: 180px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(238, 242, 245, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ek-ice);
  font-family: var(--ek-font-body);
}
.ek-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}
.ek-footer__logo {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--ek-ice);
}
.ek-footer__logo strong {
  display: block;
  font-family: var(--ek-font-display);
  font-size: 1.35rem;
  color: var(--ek-ice);
}
.ek-footer__logo em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--ek-mist);
  margin-top: 4px;
}
.ek-footer__desc { font-size: 0.9rem; max-width: 28em; }
.ek-footer__col h3 {
  color: var(--ek-ice);
  font-family: var(--ek-font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ek-footer__col a,
.ek-footer__col p {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.ek-footer__hours { color: var(--ek-mist); }
.ek-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(238, 242, 245, 0.1);
}
.ek-footer__social-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ek-mist);
}
.ek-social { display: flex; flex-wrap: wrap; gap: 10px; }
.ek-social__item {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(238, 242, 245, 0.18);
  font-size: 0.82rem;
}
.ek-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--ek-mist);
}
.ek-top {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(238, 242, 245, 0.2);
  background: transparent;
  color: var(--ek-ice);
  cursor: pointer;
  display: grid;
  place-items: center;
}

/* Legacy inner pages — keep usable */
.ji-hero, .ji-hero--short {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  color: var(--ek-white);
  overflow: hidden;
  margin-bottom: 0;
}
.ji-hero__media { position: absolute; inset: 0; }
.ji-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.ji-hero__veil, .ji-hero__grid, .ji-hero__scan, .ji-hud {
  position: absolute; inset: 0;
}
.ji-hero__veil {
  background: linear-gradient(180deg, rgba(27,34,40,.35), rgba(27,34,40,.78));
}
.ji-hero__copy {
  position: relative;
  z-index: 2;
  width: var(--ek-wrap);
  margin: 0 auto;
  padding: 100px 0 48px;
}
.ji-hero__brand {
  font-family: var(--ek-font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.ji-hero h1 { color: var(--ek-ice); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 10px; }
.ji-hero__lead { color: rgba(238,242,245,.85); max-width: 36em; }
.ji-emerg, .ji-split, .ji-section, .ji-thermal, .ji-cards, .ji-steps, .ji-quote-list,
.ji-faq, .ji-cta, .ji-notes, .ji-topics, .ji-ribbon, .ji-areas, .ji-people, .ji-table-wrap {
  width: var(--ek-wrap);
  margin: 40px auto;
}
.ji-emerg__inner, .ji-split, .ji-thermal {
  display: grid;
  gap: 24px;
}
.ji-split { grid-template-columns: 1fr 1fr; align-items: center; }
.ji-split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.ji-k {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ek-steel);
  font-weight: 700;
  margin-bottom: 8px;
}
.ji-muted { color: var(--ek-muted); }
.ji-meta { color: var(--ek-steel); font-size: 0.88rem; margin-top: 8px; }
.ji-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: var(--ek-charcoal);
  color: var(--ek-white);
  font-weight: 650;
  border-radius: 2px;
}
.ji-btn--ghost, .ji-btn--ice {
  background: var(--ek-ice);
  color: var(--ek-charcoal);
  border: 1px solid var(--ek-line);
}
.ji-btn--pulse { background: var(--ek-charcoal); color: #fff; }
.ji-quote { font-family: var(--ek-font-display); font-size: 1.4rem; color: var(--ek-charcoal); margin-top: 16px; }
.ji-svccard, .ji-note, .ji-person, .ji-area, .ji-topic, .ji-stat, .ji-channel {
  background: rgba(255,255,255,.6);
  border: 1px solid var(--ek-line);
  padding: 16px;
}
.ji-cards, .ji-notes, .ji-people, .ji-areas, .ji-topics, .ji-ribbon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.ji-svccard__media img, .ji-note img, .ji-person img { width: 100%; aspect-ratio: 4/3; object-fit: cover; margin-bottom: 12px; }
.ji-person img { aspect-ratio: 1; border-radius: 50%; max-width: 140px; margin-inline: auto; }
.ji-person { text-align: center; }
.ji-person__role { color: var(--ek-steel); font-size: 0.85rem; margin: 4px 0 8px; }
.ji-check { margin: 12px 0; }
.ji-check li { padding-left: 1.1em; position: relative; margin-bottom: 6px; color: var(--ek-muted); }
.ji-check li::before { content: '–'; position: absolute; left: 0; color: var(--ek-steel); }
.ji-steps { display: grid; gap: 16px; }
.ji-steps li { display: grid; grid-template-columns: 140px 1fr; gap: 16px; align-items: start; padding: 14px 0; border-top: 1px solid var(--ek-line); }
.ji-steps__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ji-quotes blockquote, .ji-quote-list blockquote {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(255,255,255,.55);
  border-top: 2px solid var(--ek-charcoal);
  margin-bottom: 14px;
}
.ji-quotes__pic img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.ji-cta {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 60px 0 0;
  min-height: 360px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.ji-cta__media { position: absolute; inset: 0; }
.ji-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.ji-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27,34,40,.85), rgba(27,34,40,.4));
}
.ji-cta__copy, .ji-cta > *:not(.ji-cta__media) {
  position: relative;
  z-index: 1;
  width: var(--ek-wrap);
  margin-inline: auto;
  padding: 48px 0;
}
.ji-form label { display: grid; gap: 6px; margin-bottom: 14px; font-weight: 600; }
.ji-form input, .ji-form textarea {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--ek-line);
  font-family: var(--ek-font-body);
  background: #fff;
}
.ji-form textarea { min-height: 140px; }
.ji-field-err { color: #9b3b3b; font-size: 0.82rem; }
.ji-symptoms { display: grid; gap: 10px; }
.ji-symptom {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid var(--ek-line);
  background: rgba(255,255,255,.65);
  cursor: pointer;
  font: inherit;
}
.ji-table-wrap table { width: 100%; border-collapse: collapse; }
.ji-table-wrap th, .ji-table-wrap td {
  border-bottom: 1px solid var(--ek-line);
  padding: 12px 8px;
  text-align: left;
}
.ji-kenburns img, .ji-kenburns { animation: ekKen 20s ease-in-out infinite alternate; }
.ji-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.ji-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

@media (max-width: 900px) {
  .ek-rooms__stats { grid-template-columns: repeat(2, 1fr); }
  .ek-process__layout,
  .ek-faq__layout,
  .ek-voices__list,
  .ek-footer__grid,
  .ji-split,
  .ji-steps li { grid-template-columns: 1fr; }
  .ek-process__step { grid-template-columns: 1fr; }
  .ek-gallery__shot,
  .ek-gallery__shot--a,
  .ek-gallery__shot--b,
  .ek-gallery__shot--c,
  .ek-gallery__shot--d,
  .ek-gallery__shot--e,
  .ek-gallery__shot--f { grid-column: span 12; min-height: 240px; }
  .ek-hero__inner { padding-bottom: 100px; }
  .ek-svc__body { padding: 28px 20px; }
  .ek-footer__news { flex-direction: column; align-items: stretch; }
}
@media (max-width: 640px) {
  :root { --ek-header-h: 64px; --ek-wrap: calc(100% - 28px); }
  .ek-hero { min-height: 100svh; }
  .ek-rooms, .ek-sec { padding: 56px 0; }
  .ek-hero__brand { font-size: clamp(2.8rem, 16vw, 4.2rem); }
}
