:root {
  --ink: #08111f;
  --ink-soft: #111e30;
  --paper: #f1f0e8;
  --paper-strong: #fffdf4;
  --muted: #aab4bf;
  --line: rgba(236, 239, 228, 0.18);
  --gold: #f2c86b;
  --mint: #77d2c2;
  --coral: #ef806f;
  --max: 1180px;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  z-index: 20;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .22em; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--paper-strong);
  color: var(--ink);
  padding: .7rem 1rem;
}
.skip-link:focus { top: 1rem; }
.shell { width: min(calc(100% - 2.5rem), var(--max)); margin-inline: auto; }
.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  border-bottom: 1px solid var(--line);
}
.site-header .shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand strong { font-family: Georgia, "Noto Serif SC", serif; font-size: 1.55rem; font-weight: 500; letter-spacing: .01em; }
.menu { align-self: stretch; }
.nav-list { height: 100%; display: flex; align-items: stretch; gap: .15rem; margin: 0; padding: 0; list-style: none; }
.nav-list > li { position: relative; display: flex; align-items: stretch; }
.nav-list > li > a,
.nav-parent {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: 0 .72rem;
  border: 0;
  background: transparent;
  color: #e8ece8;
  text-decoration: none;
  font-size: .9rem;
  cursor: pointer;
}
.nav-parent span { color: var(--gold); font-size: .85rem; transition: transform .2s ease; }
.nav-list > li > a:hover,
.nav-list > li > a[aria-current="page"],
.nav-parent:hover,
.has-dropdown[data-current] > .nav-parent,
.has-dropdown[data-open] > .nav-parent { color: var(--gold); }
.has-dropdown[data-open] > .nav-parent span { transform: rotate(180deg); }
.language-menu { margin-left: .5rem; border-left: 1px solid var(--line); }
.language-menu > .nav-parent { color: var(--mint); }
.submenu {
  position: absolute;
  z-index: 30;
  top: 100%;
  left: 0;
  display: none;
  min-width: 230px;
  margin: 0;
  padding: .45rem 0;
  list-style: none;
  border-top: 2px solid var(--gold);
  background: #09121e;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .38);
}
.submenu-right { right: 0; left: auto; min-width: 170px; }
.submenu a { display: block; padding: .72rem 1rem; color: #dbe0df; text-decoration: none; font-size: .9rem; white-space: nowrap; }
.submenu a:hover, .submenu a:focus-visible { background: #142235; color: var(--gold); }
.has-dropdown:hover > .submenu,
.has-dropdown:focus-within > .submenu,
.has-dropdown[data-open] > .submenu { display: block; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  color: var(--paper);
  background: transparent;
  padding: .55rem .8rem;
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #050b13;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/site-assets/media/hero-space.jpg") 58% center / cover no-repeat;
  opacity: .72;
  filter: saturate(.78) contrast(1.15);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(2, 8, 16, .44);
  box-shadow: inset 0 -260px 180px -120px var(--ink), inset 300px 0 240px -180px #02050a;
}
.hero-content { padding: 10rem 0 7.5rem; display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 4rem; }
.eyebrow { margin: 0 0 1rem; color: var(--gold); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 750; }
.hero h1, .page-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(3.6rem, 9.7vw, 8.6rem);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.055em;
}
.hero-copy { align-self: end; border-left: 1px solid var(--gold); padding-left: 1.5rem; max-width: 30rem; }
.hero-copy p { margin: 0 0 1.4rem; color: #d5dadd; font-size: 1.08rem; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-height: 46px;
  padding: .72rem 1rem;
  border: 1px solid var(--paper);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  background: var(--paper);
  color: var(--ink);
}
.button:hover { background: var(--gold); border-color: var(--gold); }
.button.secondary { background: transparent; color: var(--paper); border-color: var(--line); }
.button.secondary:hover { border-color: var(--mint); color: var(--mint); }

.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-rule { border-top: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 2rem; margin-bottom: 3.5rem; }
.section-head h2, .prose h2 {
  margin: 0;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-weight: 500;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.section-head p { color: var(--muted); max-width: 35rem; margin: 0; justify-self: end; }
.number { color: var(--mint); font-variant-numeric: tabular-nums; letter-spacing: .12em; font-size: .78rem; }

.notes { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; }
.note {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--ink-soft);
}
.note:nth-child(1) { grid-column: span 6; }
.note:nth-child(2), .note:nth-child(3) { grid-column: span 3; }
.note img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; transition: transform .5s ease, opacity .5s ease; }
.note::after { content: ""; position: absolute; inset: 0; background: rgba(3, 9, 16, .35); box-shadow: inset 0 -190px 130px -70px #030a13; }
.note:hover img { transform: scale(1.035); opacity: .77; }
.note-copy { position: relative; z-index: 1; padding: 1.4rem; }
.note-copy span { color: var(--gold); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.note-copy h3 { margin: .55rem 0 0; font-family: Georgia, "Noto Serif SC", serif; font-size: clamp(1.3rem, 2.3vw, 2.1rem); line-height: 1.2; font-weight: 500; }

.project-grid { display: grid; grid-template-columns: 1.05fr .95fr; border: 1px solid var(--line); }
.project-grid > * { min-height: 480px; padding: clamp(2rem, 5vw, 4.5rem); }
.project-visual { background: var(--paper); color: var(--ink); position: relative; overflow: hidden; }
.project-visual img { width: min(88%, 500px); margin: 2rem auto -7rem; mix-blend-mode: multiply; }
.project-copy { display: flex; flex-direction: column; justify-content: space-between; background: #101d2a; }
.project-copy h2 { font-family: Georgia, "Noto Serif SC", serif; font-size: clamp(2.5rem, 5vw, 5rem); line-height: .98; font-weight: 500; margin: 0 0 1.2rem; }
.project-copy p { color: var(--muted); max-width: 34rem; }
.text-link { color: var(--gold); text-decoration: none; font-weight: 750; }
.text-link:hover { text-decoration: underline; }

.services { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.service { padding: 2rem 2rem 2rem 0; border-bottom: 1px solid var(--line); }
.service + .service { border-left: 1px solid var(--line); padding-left: 2rem; }
.service h3 { font-size: 1.35rem; margin: .5rem 0; }
.service p { color: var(--muted); margin: 0 0 1.2rem; }
.service-status { color: var(--mint); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }

.home-hero { min-height: 92vh; align-items: center; }
.home-hero-content { padding: 10rem 0 7rem; text-align: center; }
.home-hero h1 { max-width: none; font-size: clamp(3.2rem, 6.8vw, 6.2rem); }
.home-hero-content > p:not(.eyebrow) { margin: 1.5rem 0; color: #d7dddf; letter-spacing: .08em; }
.home-hero-content .button { margin-inline: auto; }
.home-light-section { background: var(--paper); color: var(--ink); }
.home-light-section .number,
.home-light-section .eyebrow { color: #8a661d; }
.home-light-section .section-head p,
.home-light-section p:not(.number):not(.eyebrow) { color: #53606a; }
.home-light-section .text-link { color: #725412; }
.home-light-section .button { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.home-light-section .button:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.home-story,
.feature-section,
.home-fitness-section,
.home-photo-section,
.home-media-section,
.home-more-section { padding-block: clamp(4.5rem, 7vw, 6.5rem); }
.home-split { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.home-split h2,
.media-band h2,
.email-copy h2 {
  margin: 1.2rem 0;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(2.4rem, 4.4vw, 4.1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.045em;
}
.email-copy h2 { font-size: clamp(2.8rem, 6vw, 5.8rem); }
.home-split h2 span { color: var(--gold); }
.home-split > div > p:not(.number) { color: #53606a; }
.home-split figure { margin: 0; padding: clamp(1.3rem, 4vw, 3rem); border: 1px solid rgba(8, 17, 31, .1); background: #e5e1d7; }
.home-split figure img { width: 100%; }
.topic-links { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; margin: 2rem 0; }
.topic-links a { color: #725412; text-decoration: none; border-bottom: 1px solid rgba(114, 84, 18, .35); }
.feature-section { background: #0c1725; }
.feature-section .section-head h2,
.home-photo-section .section-head h2,
.home-more-section .section-head h2 { font-size: clamp(2.25rem, 4vw, 3.75rem); }
.feature-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem; }
.feature-strip a { position: relative; min-height: 350px; overflow: hidden; border: 1px solid var(--line); background: #050b13; text-decoration: none; }
.feature-strip img { width: 100%; height: 100%; object-fit: cover; opacity: .7; transition: transform .4s ease, opacity .4s ease; }
.feature-strip a:hover img { transform: scale(1.025); opacity: .86; }
.feature-strip span { position: absolute; inset: auto 0 0; padding: 1.3rem; background: rgba(3, 9, 16, .82); color: var(--paper); font-weight: 700; }
.home-fitness-layout { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.home-fitness-layout figure { margin: 0; box-shadow: 20px 20px 0 #ddd7ca; }
.home-fitness-layout img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.home-fitness-layout h2 { margin: 1rem 0 1.3rem; font-family: Georgia, serif; font-size: clamp(2.35rem, 4.2vw, 3.9rem); font-weight: 500; line-height: 1.05; letter-spacing: -.035em; }
.home-fitness-layout p:not(.number) { margin-bottom: 1.8rem; font-size: 1.05rem; }
.home-photo-section { position: relative; isolation: isolate; background: #07101b url("/site-assets/media/gallery-hero.jpg") center / cover no-repeat; }
.home-photo-section::before { content: ""; position: absolute; z-index: -1; inset: 0; background: rgba(4, 10, 18, .8); }
.home-photo-section .section-head p { color: #d0d6d8; }
.photo-tease { display: grid; grid-template-columns: 1.3fr .7fr .7fr; grid-template-rows: repeat(2, minmax(190px, 270px)); gap: 1rem; }
.photo-tease img { width: 100%; height: 100%; object-fit: cover; border: 1px solid rgba(255, 255, 255, .2); }
.photo-tease img:first-child { grid-row: 1 / 3; }
.photo-tease img:last-child { grid-column: 2 / 4; }
.photo-link { display: inline-block; margin-top: 1.5rem; }
.media-band { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(3rem, 8vw, 7rem); }
.media-band p:not(.number) { margin-bottom: 2rem; }
.media-band img { width: auto; max-height: 520px; justify-self: center; object-fit: contain; }
.home-more-section { background: #0b1624; }

.page-hero { min-height: 56vh; display: flex; align-items: end; padding: 11rem 0 5rem; border-bottom: 1px solid var(--line); background: #0e1b2a; position: relative; overflow: hidden; }
.page-hero::after { content: attr(data-index); position: absolute; right: -1rem; bottom: -4rem; font: 16rem/.8 Georgia, serif; color: rgba(255,255,255,.035); }
.page-hero h1 { font-size: clamp(3.8rem, 9vw, 8rem); max-width: 13ch; }
.compact-hero { min-height: 38vh; padding-top: 9rem; padding-bottom: 3rem; }
.compact-hero h1 { font-size: clamp(3rem, 7vw, 6rem); }
.page-lead { max-width: 48rem; color: #c4ccd1; font-size: 1.18rem; margin: 1.5rem 0 0; }
.prose { max-width: 760px; }
.prose p, .prose li { color: #c9d0d3; }
.prose h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-top: 3.5rem; }
.prose h3 { color: var(--gold); margin-top: 2.2rem; }
.prose a { color: var(--mint); }
.prose .lede { font-family: Georgia, "Noto Serif SC", serif; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.4; color: var(--paper); }
.fact-list { margin: 3rem 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.fact-list li { display: grid; grid-template-columns: 10rem 1fr; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.fact-list strong { color: var(--paper); }

.gallery-grid { columns: 3; column-gap: 1rem; }
.gallery-item { margin: 0 0 1rem; display: block; width: 100%; border: 0; padding: 0; background: #0d1927; cursor: zoom-in; overflow: hidden; }
.gallery-item img { width: 100%; transition: transform .45s ease, opacity .45s ease; }
.gallery-item:hover img { transform: scale(1.025); opacity: .84; }
.lightbox { border: 0; padding: 0; background: #03070c; color: var(--paper); width: min(92vw, 1100px); }
.lightbox::backdrop { background: rgba(1, 4, 8, .9); }
.lightbox figure { margin: 0; }
.lightbox img { max-height: 82vh; width: 100%; object-fit: contain; }
.lightbox footer { display: flex; justify-content: space-between; align-items: center; padding: 1rem; }
.lightbox button { background: transparent; border: 1px solid var(--line); color: var(--paper); padding: .5rem .8rem; cursor: pointer; }

.video-list { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 1.2rem; }
.video-item video { width: 100%; aspect-ratio: 16 / 9; background: #02060b; object-fit: cover; }
.video-item h2 { margin: 1rem 0 .25rem; font-family: Georgia, serif; font-weight: 500; }
.video-item p { color: var(--muted); margin: 0; }

.callout { border: 1px solid var(--line); padding: clamp(1.5rem, 4vw, 3rem); margin: 3rem 0; background: #0f1b29; }
.callout strong { color: var(--gold); }
.service-links { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 3rem 0; }
.service-link { border-top: 1px solid var(--line); padding: 1.4rem 0; text-decoration: none; }
.service-link span { display: block; color: var(--muted); font-size: .9rem; }
.service-link strong { color: var(--paper); font-size: 1.2rem; }

.status-panel { display: flex; align-items: center; gap: 1.2rem; padding: 1.25rem 1.4rem; border: 1px solid rgba(119, 210, 194, .35); background: #0d1b25; }
.status-panel strong { color: var(--mint); font-size: 1.1rem; }
.status-panel p { margin: .15rem 0 0; color: var(--muted); }
.status-light { flex: 0 0 auto; width: 14px; height: 14px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 6px rgba(119, 210, 194, .13), 0 0 24px rgba(119, 210, 194, .6); }
.compact-head { margin: 5rem 0 2rem; }
.download-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.download-card { min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.4rem; border: 1px solid var(--line); background: #0d1927; text-decoration: none; }
.download-card:hover { border-color: var(--gold); background: #111f2e; }
.download-card span { color: var(--gold); font-size: .78rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.download-card strong { font-size: 1.25rem; line-height: 1.25; }
.download-card small { color: var(--muted); }
.vpn-notes { margin-top: 4rem; }

.email-layout { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.email-copy img { width: min(100%, 620px); margin-top: 3rem; }
.email-login { padding: clamp(1.7rem, 4vw, 3.3rem); background: var(--paper); color: var(--ink); box-shadow: 18px 18px 0 rgba(242, 200, 107, .16); }
.email-login h2 { margin: .3rem 0 1rem; font-family: Georgia, "Noto Serif SC", serif; font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 500; }
.email-login > p:not(.number) { color: #53606a; }
.email-login label { display: block; margin: 1.25rem 0 .4rem; font-weight: 750; }
.email-login input[type="text"], .email-login input[type="password"] { width: 100%; min-width: 0; border: 1px solid #a8adb0; background: var(--paper-strong); color: var(--ink); padding: .78rem; }
.mail-user-field { display: flex; align-items: center; border: 1px solid #a8adb0; background: var(--paper-strong); }
.mail-user-field input[type="text"] { border: 0; }
.mail-user-field span { padding-right: .8rem; color: #59646c; white-space: nowrap; }
.email-login .button { margin-top: 1.5rem; border-color: var(--ink); background: var(--ink); color: var(--paper); }
.email-login .button:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.email-help { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.3rem; font-size: .88rem; }
.email-help a { color: #465764; }

.fashion-app { margin-top: 2rem; }
.dataset-switch { display: flex; gap: .75rem; margin-bottom: 1rem; }
.dataset-switch button { border: 1px solid var(--line); background: transparent; color: var(--paper); padding: .65rem 1rem; cursor: pointer; }
.dataset-switch button[aria-pressed="true"] { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.data-status { color: var(--muted); min-height: 1.7em; }
.data-status[data-error] { color: var(--coral); }
.filter-panel { border: 1px solid var(--line); padding: clamp(1.2rem, 3vw, 2.2rem); margin: 2rem 0; }
.attribute-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .7rem; border: 0; padding: 0; margin: 0 0 1.5rem; }
.attribute-grid legend { margin-bottom: 1rem; font-weight: 750; }
.attribute-grid label { display: flex; align-items: center; gap: .5rem; color: #d1d7da; }
.attribute-grid input { accent-color: var(--gold); width: 1.1rem; height: 1.1rem; }
.filter-options { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.filter-options select { background: var(--ink); color: var(--paper); border: 1px solid var(--line); padding: .55rem; }
.fashion-results { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; gap: 1rem; }
.result-group { min-width: 0; margin: 0; padding: 1rem; border: 1px solid var(--line); background: #0d1927; }
.result-heading { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 2px solid var(--paper); }
.result-heading h2 { margin: 0 0 .45rem; font-family: Georgia, "Noto Serif SC", serif; font-size: 1.3rem; font-weight: 500; }
.result-heading span { color: var(--muted); }
.result-group ol { list-style: none; padding: 0; margin: 0; }
.result-group li { display: grid; grid-template-columns: 2rem minmax(0, 1fr) auto; gap: .55rem; padding: .5rem 0; border-bottom: 1px solid var(--line); align-items: baseline; font-size: .9rem; }
.result-group li > span:nth-child(2) { overflow-wrap: anywhere; }
.result-group li > b { color: var(--gold); font-variant-numeric: tabular-nums; font-size: 1rem; }
.rank { color: #6e7a84; font-variant-numeric: tabular-nums; }
.result-detail { display: block; color: var(--muted); font-size: .75rem; font-weight: 400; }
.empty-state { color: var(--muted); border-top: 1px solid var(--line); padding: 2rem 0; }

.map-preview { display: grid; grid-template-columns: .8fr 1.2fr; border: 1px solid var(--line); min-height: 440px; }
.map-preview > div { padding: clamp(2rem, 5vw, 4rem); align-self: center; }
.map-preview figure { margin: 0; min-height: 440px; background: #d7ddcb; overflow: hidden; }
.map-preview img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; filter: saturate(.7) contrast(1.08); }

.site-footer { padding: 3rem 0; border-top: 1px solid var(--line); color: var(--muted); }
.site-footer .shell { display: flex; justify-content: space-between; gap: 2rem; }
.site-footer a { color: var(--paper); }

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .menu { display: none; position: absolute; inset: 78px 0 auto; max-height: calc(100vh - 78px); overflow-y: auto; padding: 0 max(1.25rem, calc((100vw - var(--max)) / 2)); background: #08111f; border-bottom: 1px solid var(--line); }
  .menu[data-open] { display: block; }
  .nav-list { display: block; height: auto; }
  .nav-list > li { display: block; border-bottom: 1px solid var(--line); }
  .nav-list > li > a, .nav-parent { width: 100%; min-height: 50px; justify-content: space-between; padding: .7rem 0; }
  .language-menu { margin-left: 0; border-left: 0; }
  .has-dropdown > .submenu { position: static; display: none !important; min-width: 0; padding: .2rem 0 .7rem 1rem; border-top: 0; box-shadow: none; background: #08111f; }
  .has-dropdown[data-open] > .submenu { display: block !important; }
  .submenu a { padding: .6rem 0; color: var(--muted); white-space: normal; }
  .hero-content, .section-head, .project-grid, .map-preview, .home-split, .home-fitness-layout, .media-band, .email-layout { grid-template-columns: 1fr; }
  .hero-content { gap: 2.5rem; }
  .section-head p { justify-self: start; }
  .note:nth-child(1) { grid-column: span 12; }
  .note:nth-child(2), .note:nth-child(3) { grid-column: span 6; }
  .project-grid > * { min-height: 390px; }
  .services { grid-template-columns: 1fr; }
  .service + .service { border-left: 0; padding-left: 0; }
  .gallery-grid { columns: 2; }
  .attribute-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .feature-strip a:first-child { grid-column: 1 / 3; }
  .download-grid, .fashion-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-split figure { order: -1; }
  .home-fitness-layout figure { box-shadow: 12px 12px 0 #ddd7ca; }
}

@media (max-width: 600px) {
  .shell { width: min(calc(100% - 1.5rem), var(--max)); }
  .site-header .shell { min-height: 68px; }
  .menu { top: 68px; max-height: calc(100vh - 68px); }
  .hero { min-height: 820px; }
  .hero-content { padding-bottom: 4rem; }
  .hero h1 { font-size: clamp(3.4rem, 18vw, 5.4rem); }
  .home-hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .notes { display: block; }
  .note { min-height: 360px; margin-bottom: 1rem; }
  .video-list, .service-links, .feature-strip, .download-grid, .fashion-results { grid-template-columns: 1fr; }
  .feature-strip a:first-child { grid-column: auto; }
  .feature-strip a { min-height: 300px; }
  .photo-tease { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 190px); }
  .photo-tease img:first-child { grid-column: 1 / 3; grid-row: auto; }
  .photo-tease img:last-child { grid-column: 1 / 3; }
  .gallery-grid { columns: 1; }
  .fact-list li { grid-template-columns: 1fr; gap: .2rem; }
  .site-footer .shell { flex-direction: column; }
  .filter-options { align-items: stretch; flex-direction: column; }
  .filter-options .button { justify-content: center; }
  .email-help { flex-direction: column; }
  .mail-user-field span { font-size: .85rem; }
}

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