@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-display: swap;
}

:root {
  --ee-ink: #0e223d;
  --ee-ink-deep: #071725;
  --ee-ice: #e7f0f4;
  --ee-paper: #f8faf9;
  --ee-amber: #ffb400;
  --ee-steel: #6e7c87;
  --ee-cyan: #7fd9e8;
  --ee-white: #ffffff;
  --ee-line: rgba(14, 34, 61, 0.22);
  --ee-display: "Unbounded", system-ui, sans-serif;
  --ee-body: "Instrument Sans", Arial, sans-serif;
  --ee-page: min(100% - 40px, 1440px);
  --ee-pad: clamp(24px, 4vw, 72px);
  --ee-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ee-ink);
  background: var(--ee-paper);
  font-family: var(--ee-body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(to right, transparent calc(50% - 0.5px), rgba(14, 34, 61, 0.12) calc(50% - 0.5px), rgba(14, 34, 61, 0.12) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    var(--ee-paper);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--ee-amber);
  outline-offset: 4px;
}

::selection {
  color: var(--ee-ink-deep);
  background: var(--ee-cyan);
}

.ee-skip {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ee-white);
  background: var(--ee-ink-deep);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.ee-skip:focus {
  transform: translateY(0);
}

.ee-shell {
  width: var(--ee-page);
  margin-inline: auto;
}

.ee-kicker,
.ee-code,
.ee-nav a,
.ee-mobile-links a,
.ee-button,
.ee-text-link,
.ee-field label,
.ee-photo-tag,
.ee-footer-nav a {
  font-family: var(--ee-display);
  font-size: 0.76rem;
  font-weight: 580;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ee-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
}

.ee-kicker::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.ee-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--ee-line);
  background: rgba(248, 250, 249, 0.96);
  backdrop-filter: blur(14px);
}

.ee-desktop-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 102px;
}

.ee-head-wing {
  display: flex;
  gap: clamp(12px, 2vw, 32px);
  align-items: center;
  min-width: 0;
  padding-inline: clamp(18px, 3vw, 54px);
}

.ee-head-wing--left {
  justify-content: flex-end;
  border-right: 1px solid var(--ee-line);
}

.ee-head-wing--right {
  justify-content: flex-start;
  border-left: 1px solid var(--ee-line);
}

.ee-nav {
  display: flex;
  gap: clamp(16px, 2.3vw, 36px);
  align-items: center;
}

.ee-nav a,
.ee-head-contact {
  position: relative;
  padding-block: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.ee-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ee-amber);
  transform: scaleX(0);
  transition: transform 220ms var(--ee-ease);
}

.ee-nav a:hover::after,
.ee-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.ee-head-contact {
  color: var(--ee-steel);
  font-weight: 650;
}

.ee-brand {
  display: grid;
  place-content: center;
  min-width: clamp(190px, 16vw, 252px);
  padding: 14px 24px;
  text-decoration: none;
}

.ee-brand-symbol {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 10px;
  align-items: center;
  margin-inline: auto;
  font-family: var(--ee-display);
  font-size: 1.7rem;
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.ee-brand-symbol i {
  width: 1px;
  height: 32px;
  background: var(--ee-amber);
}

.ee-brand-name {
  margin-top: 8px;
  font-family: var(--ee-display);
  font-size: 0.58rem;
  font-weight: 540;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.ee-mobile-head {
  display: none;
}

.ee-gate {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--ee-line);
}

.ee-gate::after,
.ee-seam-section::after,
.ee-form-zone::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  pointer-events: none;
  background: rgba(255, 180, 0, 0.9);
}

.ee-gate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(620px, calc(100svh - 102px), 900px);
}

.ee-gate-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(46px, 7vw, 108px) var(--ee-pad) clamp(200px, 22vw, 330px);
}

.ee-gate-side--dark {
  color: var(--ee-white);
  background: var(--ee-ink);
}

.ee-gate-side--light {
  color: var(--ee-ink);
  background: var(--ee-ice);
}

.ee-gate-title {
  margin: 0;
  font-family: var(--ee-display);
  font-size: clamp(2.2rem, 4.7vw, 5.2rem);
  font-weight: 630;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.ee-gate-copy {
  max-width: 32rem;
  margin: 34px 0 0;
  font-size: clamp(1.03rem, 1.2vw, 1.22rem);
  line-height: 1.6;
}

.ee-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ee-button {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border: 1px solid currentColor;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms var(--ee-ease);
}

.ee-button::after {
  content: "↗";
  font-size: 1rem;
}

.ee-button:hover {
  transform: translateY(-2px);
}

.ee-button--dark {
  color: var(--ee-white);
  background: var(--ee-ink-deep);
}

.ee-button--dark:hover {
  color: var(--ee-ink-deep);
  background: var(--ee-amber);
}

.ee-button--light:hover {
  color: var(--ee-white);
  background: var(--ee-ink);
}

.ee-button--amber {
  color: var(--ee-ink-deep);
  background: var(--ee-amber);
}

.ee-button--amber:hover {
  color: var(--ee-white);
  background: var(--ee-ink-deep);
}

.ee-crosscut {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 5vw, 80px);
  bottom: clamp(26px, 4vw, 58px);
  left: clamp(20px, 5vw, 80px);
  height: clamp(142px, 18vw, 248px);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--ee-ink-deep);
}

.ee-crosscut img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ee-crosscut::before,
.ee-photo-window::before {
  position: absolute;
  z-index: 1;
  top: -1px;
  left: 50%;
  width: 12px;
  height: calc(100% + 2px);
  content: "";
  border-right: 1px solid var(--ee-amber);
  border-left: 1px solid var(--ee-amber);
  background: rgba(14, 34, 61, 0.2);
  transform: translateX(-50%);
}

.ee-photo-tag {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  padding: 9px 12px;
  color: var(--ee-white);
  background: var(--ee-ink-deep);
}

.ee-intro-line {
  padding: 26px var(--ee-pad);
  color: var(--ee-ink-deep);
  border-bottom: 1px solid var(--ee-line);
  background: var(--ee-amber);
}

.ee-intro-line .ee-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 8vw, 140px);
}

.ee-intro-line p {
  max-width: 46rem;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 620;
}

.ee-intro-line p:last-child {
  justify-self: end;
}

.ee-section {
  padding: clamp(72px, 10vw, 150px) 0;
}

.ee-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 10vw, 180px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 88px);
}

.ee-section-head h2,
.ee-split-copy h2,
.ee-panel-copy h2,
.ee-form-intro h1,
.ee-page-side h1 {
  margin: 0;
  font-family: var(--ee-display);
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.ee-section-head h2,
.ee-split-copy h2,
.ee-panel-copy h2 {
  font-size: clamp(2rem, 4vw, 4.6rem);
}

.ee-section-head p {
  max-width: 38rem;
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
}

.ee-switchboard {
  border-top: 1px solid var(--ee-line);
}

.ee-switch-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: inherit;
  border-bottom: 1px solid var(--ee-line);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.ee-switch-row::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--ee-line);
}

.ee-switch-row:hover {
  color: var(--ee-white);
  background: var(--ee-ink);
}

.ee-switch-name,
.ee-switch-copy {
  min-width: 0;
  padding: clamp(28px, 4vw, 58px) var(--ee-pad);
}

.ee-switch-name {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  font-family: var(--ee-display);
  font-size: clamp(1.2rem, 2.4vw, 2.75rem);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.ee-switch-name span:first-child {
  color: var(--ee-steel);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.ee-switch-copy {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.ee-switch-copy b {
  font-family: var(--ee-display);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 400;
}

.ee-seam-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--ee-line);
}

.ee-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ee-photo-window {
  position: relative;
  min-height: clamp(420px, 54vw, 780px);
  margin: 0;
  background: var(--ee-ink-deep);
}

.ee-photo-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ee-photo-window--right::before {
  left: 0;
}

.ee-split-copy,
.ee-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 9vw, 136px) var(--ee-pad);
}

.ee-split-copy {
  background: var(--ee-ice);
}

.ee-split-copy p,
.ee-panel-copy p {
  max-width: 38rem;
  margin: 28px 0 0;
  font-size: clamp(1.03rem, 1.25vw, 1.22rem);
}

.ee-text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  margin-top: 30px;
}

.ee-text-link::after {
  content: "→";
  font-size: 1rem;
}

.ee-location-bar {
  color: var(--ee-white);
  background: var(--ee-ink-deep);
}

.ee-location-bar .ee-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

.ee-location-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(42px, 6vw, 86px) var(--ee-pad);
}

.ee-location-block + .ee-location-block {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.ee-location-block address {
  max-width: 40rem;
  font-family: var(--ee-display);
  font-size: clamp(1.45rem, 3vw, 3.5rem);
  font-style: normal;
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1.12;
}

.ee-contact-pair {
  display: grid;
  gap: 14px;
}

.ee-contact-pair a {
  font-family: var(--ee-display);
  font-size: clamp(1.05rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.ee-page-gate {
  position: relative;
  border-bottom: 1px solid var(--ee-line);
  background: linear-gradient(to right, var(--ee-ink) 0 50%, var(--ee-ice) 50% 100%);
}

.ee-page-gate::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--ee-amber);
}

.ee-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.ee-page-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(54px, 8vw, 120px) var(--ee-pad) clamp(176px, 19vw, 260px);
}

.ee-page-side--dark {
  color: var(--ee-white);
}

.ee-page-side h1 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
}

.ee-page-side p {
  max-width: 34rem;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.3vw, 1.24rem);
}

.ee-page-photo {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 6vw, 92px);
  bottom: 34px;
  left: clamp(20px, 6vw, 92px);
  height: clamp(120px, 15vw, 218px);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--ee-ink-deep);
}

.ee-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ee-page-photo::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 11px;
  content: "";
  border-inline: 1px solid var(--ee-amber);
  background: rgba(14, 34, 61, 0.16);
  transform: translateX(-50%);
}

.ee-facts {
  margin: 0;
  border-top: 1px solid var(--ee-line);
}

.ee-fact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--ee-line);
}

.ee-fact::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--ee-line);
}

.ee-fact dt,
.ee-fact dd {
  margin: 0;
  padding: clamp(28px, 4vw, 58px) var(--ee-pad);
}

.ee-fact dt {
  font-family: var(--ee-display);
  font-size: clamp(1.2rem, 2.5vw, 2.8rem);
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.ee-fact dd {
  align-self: center;
  max-width: 44rem;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
}

.ee-note-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--ee-ink-deep);
  background: var(--ee-amber);
}

.ee-note-band > * {
  padding: clamp(36px, 5vw, 72px) var(--ee-pad);
}

.ee-note-band h2 {
  margin: 0;
  font-family: var(--ee-display);
  font-size: clamp(1.5rem, 3vw, 3.5rem);
  font-weight: 590;
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.ee-note-band p {
  align-self: center;
  margin: 0;
  border-left: 1px solid rgba(14, 34, 61, 0.35);
  font-size: clamp(1.05rem, 1.3vw, 1.24rem);
}

.ee-question-stack {
  border-top: 1px solid var(--ee-line);
}

.ee-question {
  border-bottom: 1px solid var(--ee-line);
}

.ee-question summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 92px;
  padding: 24px var(--ee-pad);
  cursor: pointer;
  font-family: var(--ee-display);
  font-size: clamp(1rem, 1.65vw, 1.65rem);
  font-weight: 520;
  letter-spacing: -0.03em;
  list-style: none;
}

.ee-question summary::-webkit-details-marker {
  display: none;
}

.ee-question summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 300;
}

.ee-question[open] summary::after {
  content: "−";
}

.ee-question p {
  max-width: 56rem;
  margin: 0;
  padding: 0 var(--ee-pad) 34px;
  font-size: 1.08rem;
}

.ee-work-stage {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 720px;
  border-bottom: 1px solid var(--ee-line);
}

.ee-work-image {
  position: relative;
  min-height: 560px;
  margin: 0;
  background: var(--ee-ink-deep);
}

.ee-work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ee-work-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(62px, 9vw, 140px) var(--ee-pad);
  background: var(--ee-ice);
}

.ee-work-copy h1 {
  margin: 0;
  font-family: var(--ee-display);
  font-size: clamp(2.35rem, 5vw, 5.5rem);
  font-weight: 590;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.ee-work-copy > p {
  max-width: 40rem;
  margin: 30px 0 0;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
}

.ee-plain-list {
  display: grid;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--ee-line);
  list-style: none;
}

.ee-plain-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ee-line);
}

.ee-plain-list li::before {
  color: var(--ee-steel);
  content: "—";
}

.ee-form-zone {
  position: relative;
}

.ee-form-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}

.ee-form-intro > div {
  padding: clamp(64px, 9vw, 140px) var(--ee-pad);
}

.ee-form-intro > div:first-child {
  color: var(--ee-white);
  background: var(--ee-ink);
}

.ee-form-intro > div:last-child {
  background: var(--ee-ice);
}

.ee-form-intro h1 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 5vw, 5.6rem);
}

.ee-form-intro p {
  max-width: 38rem;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
}

.ee-request {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ee-paper);
}

.ee-form-column {
  padding: clamp(42px, 7vw, 104px) var(--ee-pad);
}

.ee-form-column + .ee-form-column {
  border-left: 1px solid var(--ee-line);
}

.ee-field {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.ee-field label {
  color: var(--ee-steel);
}

.ee-field input,
.ee-field select,
.ee-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 0;
  border: 0;
  border-bottom: 2px solid var(--ee-ink);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 1.08rem;
}

.ee-field textarea {
  min-height: 176px;
  resize: vertical;
}

.ee-field input:focus,
.ee-field select:focus,
.ee-field textarea:focus {
  border-bottom-color: var(--ee-amber);
  box-shadow: 0 3px 0 rgba(255, 180, 0, 0.24);
}

.ee-field-note {
  margin: -12px 0 26px;
  color: var(--ee-steel);
  font-size: 0.92rem;
}

.ee-form-disclosure {
  margin: 10px 0 22px;
  padding: 16px 18px;
  color: var(--ee-ink-deep);
  border-left: 7px solid var(--ee-ink);
  background: var(--ee-amber);
}

.ee-form-status {
  min-height: 1.5em;
  margin: 18px 0 0;
  color: var(--ee-steel);
}

.ee-honeypot {
  position: absolute;
  left: -9999px;
}

.ee-footer {
  color: var(--ee-white);
  background: var(--ee-ink-deep);
}

.ee-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ee-footer-cell {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: clamp(28px, 4vw, 58px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.ee-footer-cell:last-child {
  border-right: 0;
}

.ee-footer-cell--amber {
  color: var(--ee-ink-deep);
  background: var(--ee-amber);
}

.ee-footer-cell--ice {
  color: var(--ee-ink-deep);
  background: var(--ee-ice);
}

.ee-footer-cell--cyan {
  color: var(--ee-ink-deep);
  background: var(--ee-cyan);
}

.ee-footer-cell .ee-code {
  margin: 0;
  opacity: 0.7;
}

.ee-footer-cell address,
.ee-footer-cell > a,
.ee-footer-identity {
  font-family: var(--ee-display);
  font-size: clamp(1rem, 1.65vw, 1.6rem);
  font-style: normal;
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.ee-footer-identity {
  font-size: clamp(1.3rem, 2.3vw, 2.5rem);
}

.ee-footer-bottom {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(24px, 4vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ee-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
}

.ee-footer-nav a {
  text-decoration: none;
}

.ee-footer-bottom small {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1180px) {
  .ee-desktop-head {
    display: none;
  }

  .ee-mobile-head {
    display: block;
  }

  .ee-mobile-menu {
    background: var(--ee-paper);
  }

  .ee-mobile-menu summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    min-height: 76px;
    padding: 10px 20px;
    cursor: pointer;
    list-style: none;
  }

  .ee-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .ee-mobile-menu .ee-brand-symbol {
    margin: 0;
    font-size: 1.35rem;
  }

  .ee-mobile-title {
    font-family: var(--ee-display);
    font-size: 0.72rem;
    font-weight: 580;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .ee-menu-word {
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: var(--ee-display);
    font-size: 0.72rem;
    font-weight: 580;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .ee-menu-word::after {
    content: "+";
    font-size: 1.3rem;
    font-weight: 300;
  }

  .ee-mobile-menu[open] .ee-menu-word::after {
    content: "−";
  }

  .ee-mobile-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--ee-line);
    background: var(--ee-ice);
  }

  .ee-mobile-links {
    display: grid;
    border-right: 1px solid var(--ee-line);
  }

  .ee-mobile-links a,
  .ee-mobile-contact a {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--ee-line);
    text-decoration: none;
  }

  .ee-mobile-links a[aria-current="page"] {
    background: var(--ee-amber);
  }

  .ee-mobile-contact {
    display: grid;
    align-content: start;
  }
}

@media (max-width: 860px) {
  :root {
    --ee-page: min(100% - 28px, 1440px);
    --ee-pad: 24px;
  }

  body::before {
    background:
      linear-gradient(to right, transparent calc(50% - 0.5px), rgba(14, 34, 61, 0.1) calc(50% - 0.5px), rgba(14, 34, 61, 0.1) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
      var(--ee-paper);
  }

  .ee-gate-grid,
  .ee-page-grid {
    min-height: auto;
  }

  .ee-gate-side {
    padding-top: 58px;
    padding-bottom: 185px;
  }

  .ee-gate-title {
    font-size: clamp(2rem, 7vw, 3.6rem);
  }

  .ee-crosscut {
    height: 130px;
  }

  .ee-intro-line .ee-shell,
  .ee-section-head {
    gap: 36px;
  }

  .ee-switch-name,
  .ee-switch-copy,
  .ee-fact dt,
  .ee-fact dd {
    padding: 28px 24px;
  }

  .ee-switch-name {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ee-split-copy,
  .ee-panel-copy {
    padding: 64px 32px;
  }

  .ee-photo-window {
    min-height: 520px;
  }

  .ee-page-side {
    padding: 56px 24px 168px;
  }

  .ee-page-photo {
    height: 112px;
  }

  .ee-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ee-footer-cell {
    min-height: 220px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 620px) {
  .ee-mobile-panel,
  .ee-intro-line .ee-shell,
  .ee-section-head,
  .ee-location-bar .ee-shell,
  .ee-note-band,
  .ee-work-stage,
  .ee-form-intro,
  .ee-request,
  .ee-footer-grid {
    grid-template-columns: 1fr;
  }

  .ee-mobile-links {
    border-right: 0;
  }

  .ee-mobile-contact {
    color: var(--ee-white);
    background: var(--ee-ink);
  }

  .ee-gate-grid,
  .ee-page-grid,
  .ee-split {
    grid-template-columns: 1fr;
  }

  .ee-gate::after,
  .ee-seam-section::after,
  .ee-form-zone::after,
  .ee-page-gate::after {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }

  .ee-gate-side {
    min-height: 420px;
    padding: 54px 24px 132px;
  }

  .ee-gate-side--light {
    padding-top: 140px;
    padding-bottom: 56px;
  }

  .ee-crosscut {
    top: 50%;
    right: 18px;
    bottom: auto;
    left: 18px;
    height: 124px;
    transform: translateY(-50%);
  }

  .ee-crosscut::before,
  .ee-page-photo::after {
    top: 50%;
    right: -1px;
    bottom: auto;
    left: -1px;
    width: calc(100% + 2px);
    height: 10px;
    border: 0;
    border-block: 1px solid var(--ee-amber);
    transform: translateY(-50%);
  }

  .ee-intro-line p:last-child {
    justify-self: start;
  }

  .ee-section {
    padding: 76px 0;
  }

  .ee-switch-row,
  .ee-fact {
    grid-template-columns: 1fr;
  }

  .ee-switch-row::after,
  .ee-fact::after {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }

  .ee-switch-name,
  .ee-switch-copy,
  .ee-fact dt,
  .ee-fact dd {
    padding: 28px 20px;
  }

  .ee-photo-window {
    min-height: 440px;
  }

  .ee-photo-window::before,
  .ee-photo-window--right::before {
    top: auto;
    right: 0;
    bottom: -5px;
    left: 0;
    width: auto;
    height: 10px;
    border: 0;
    border-block: 1px solid var(--ee-amber);
    transform: none;
  }

  .ee-split-copy {
    min-height: 430px;
  }

  .ee-location-block + .ee-location-block,
  .ee-form-column + .ee-form-column {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .ee-page-gate {
    background: linear-gradient(to bottom, var(--ee-ink) 0 50%, var(--ee-ice) 50% 100%);
  }

  .ee-page-side {
    min-height: 390px;
    padding: 52px 22px 124px;
  }

  .ee-page-side--light {
    padding-top: 132px;
    padding-bottom: 52px;
  }

  .ee-page-photo {
    top: 50%;
    right: 18px;
    bottom: auto;
    left: 18px;
    height: 112px;
    transform: translateY(-50%);
  }

  .ee-note-band p {
    border-top: 1px solid rgba(14, 34, 61, 0.35);
    border-left: 0;
  }

  .ee-work-stage {
    min-height: auto;
  }

  .ee-work-image {
    min-height: 480px;
  }

  .ee-work-copy {
    padding: 64px 24px;
  }

  .ee-form-intro > div {
    min-height: 360px;
    padding: 62px 24px;
  }

  .ee-form-column {
    padding: 52px 24px;
  }

  .ee-form-column + .ee-form-column {
    border-top-color: var(--ee-line);
  }

  .ee-footer-cell {
    min-height: 190px;
    border-right: 0;
  }

  .ee-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .ee-mobile-menu summary {
    grid-template-columns: auto 1fr;
  }

  .ee-mobile-title {
    display: none;
  }

  .ee-menu-word {
    justify-self: end;
  }

  .ee-gate-title,
  .ee-page-side h1,
  .ee-work-copy h1,
  .ee-form-intro h1 {
    hyphens: auto;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
