:root {
  --bg: #f6f3ed;
  --bg-soft: #fbfaf6;
  --ink: #173128;
  --ink-strong: #10261f;
  --muted: #63716b;
  --line: rgba(23, 49, 40, 0.22);
  --line-strong: rgba(23, 49, 40, 0.42);
  --accent: #b88a3d;
  --steel: #7c918c;
  --panel: #0f2a22;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(16, 38, 31, 0.14);
  --header-height: 88px;
  --container: min(100% - 48px, 1360px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 49, 40, 0.06) 1px, transparent 1px) 0 0 / 25vw 100%,
    linear-gradient(180deg, rgba(23, 49, 40, 0.05) 1px, transparent 1px) 0 0 / 100% 220px,
    var(--bg);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 85% 12%, rgba(124, 145, 140, 0.2), transparent 28%);
  opacity: 0.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 18px 48px;
  border-bottom: 1px solid transparent;
  transition:
    min-height 360ms var(--ease),
    padding 360ms var(--ease),
    background-color 360ms var(--ease),
    border-color 360ms var(--ease),
    box-shadow 360ms var(--ease);
}

.site-header.is-scrolled {
  min-height: 66px;
  padding-block: 10px;
  border-color: var(--line);
  background: rgba(246, 243, 237, 0.88);
  box-shadow: 0 14px 48px rgba(16, 38, 31, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
  gap: 18px;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 72px;
  height: 58px;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
}

.brand-mark-graphic {
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask: url("assets/ai-bloom-life-logo-mask.png?v=20260623a") center / contain no-repeat;
  mask: url("assets/ai-bloom-life-logo-mask.png?v=20260623a") center / contain no-repeat;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.brand-name {
  overflow: hidden;
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-line {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  justify-content: center;
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.language-switcher button {
  position: relative;
  min-width: 24px;
  padding: 7px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.language-switcher button::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
}

.language-switcher button.is-active::after,
.language-switcher button:hover::after,
.language-switcher button:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.menu-toggle {
  position: relative;
  display: grid;
  width: 48px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  right: 2px;
  left: 2px;
  height: 2px;
  background: var(--ink);
  transition:
    transform 240ms var(--ease),
    top 240ms var(--ease);
}

.menu-toggle span:first-child {
  top: 15px;
}

.menu-toggle span:last-child {
  top: 25px;
}

.menu-toggle:hover span:first-child,
.menu-toggle:focus-visible span:first-child {
  transform: translateX(7px);
}

.menu-toggle:hover span:last-child,
.menu-toggle:focus-visible span:last-child {
  transform: translateX(-7px);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.menu-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(10, 21, 17, 0.4);
  opacity: 0;
  transition: opacity 420ms var(--ease);
}

.menu-panel-inner {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(44vw, 680px);
  min-width: 520px;
  height: 100%;
  padding: 48px 56px 54px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.08), transparent 42%),
    var(--panel);
  box-shadow: -40px 0 100px rgba(0, 0, 0, 0.28);
  transform: translateX(105%);
  transition: transform 560ms var(--ease);
}

.menu-panel-inner::before,
.menu-panel-inner::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.menu-panel-inner::before {
  right: -120px;
  bottom: 84px;
  width: 420px;
  height: 280px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  transform: skewY(-26deg);
}

.menu-panel-inner::after {
  right: 74px;
  bottom: 0;
  width: 1px;
  height: 52%;
  background: rgba(255, 253, 248, 0.18);
  transform: rotate(36deg);
  transform-origin: bottom;
}

.menu-panel.is-open {
  pointer-events: auto;
  visibility: visible;
}

.menu-panel.is-open::before {
  opacity: 1;
}

.menu-panel.is-open .menu-panel-inner {
  transform: translateX(0);
}

.menu-panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand-invert .brand-mark,
.brand-invert .brand-line {
  color: var(--white);
}

.brand-invert .brand-name {
  color: var(--white);
}

.menu-close {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-close::before,
.menu-close::after {
  position: absolute;
  top: 20px;
  left: 6px;
  width: 32px;
  height: 2px;
  content: "";
  background: var(--white);
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.overlay-nav {
  position: relative;
  z-index: 1;
  align-self: center;
  display: grid;
  gap: clamp(18px, 3.5vh, 34px);
}

.overlay-nav a {
  width: fit-content;
  color: var(--white);
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 650;
  line-height: 0.96;
  transform: translateX(24px);
  opacity: 0;
  transition:
    opacity 420ms var(--ease),
    transform 420ms var(--ease),
    color 220ms var(--ease);
}

.menu-panel.is-open .overlay-nav a {
  transform: translateX(0);
  opacity: 1;
}

.menu-panel.is-open .overlay-nav a:nth-child(2) {
  transition-delay: 60ms;
}

.menu-panel.is-open .overlay-nav a:nth-child(3) {
  transition-delay: 120ms;
}

.menu-panel.is-open .overlay-nav a:nth-child(4) {
  transition-delay: 180ms;
}

.menu-panel.is-open .overlay-nav a:nth-child(5) {
  transition-delay: 240ms;
}

.overlay-nav a:hover,
.overlay-nav a:focus-visible {
  color: #d5b16f;
}

.overlay-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 253, 248, 0.28);
}

.language-switcher-dark button::after {
  background: #d5b16f;
}

.overlay-meta p {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  min-height: 100svh;
  padding: calc(var(--header-height) + 74px) 0 0 48px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: 36px 38px 120px 0;
}

.hero-location {
  width: fit-content;
  margin: 0 0 36px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  border-bottom: 2px solid var(--accent);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(54px, 8.2vw, 124px);
  font-weight: 760;
  line-height: 0.95;
}

.hero h1::after {
  display: block;
  width: 72px;
  height: 3px;
  margin: 36px 0 0;
  content: "";
  background: var(--accent);
}

.hero-copy > p:not(.hero-location) {
  max-width: 560px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.4vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  transition:
    background-color 220ms var(--ease),
    color 220ms var(--ease),
    border-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.button-primary {
  gap: 12px;
  color: var(--white);
  background: var(--ink);
}

.button-primary svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-2px);
}

.hero-media {
  position: relative;
  min-height: 560px;
  align-self: end;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(246, 243, 237, 0) 23%),
    linear-gradient(180deg, rgba(246, 243, 237, 0) 62%, var(--bg) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.9) contrast(1.03);
  transform: scale(1.015);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 48px;
  z-index: 3;
  display: grid;
  gap: 10px;
  width: fit-content;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.scroll-cue svg {
  width: 18px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  animation: cue 1700ms var(--ease) infinite;
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) 0;
}

.section-label {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(34px, 5vw, 70px);
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 13px;
  font-weight: 780;
}

.activity-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.activity-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr) 44px;
  gap: clamp(24px, 5vw, 86px);
  align-items: start;
  padding: clamp(24px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 420ms var(--ease),
    padding 420ms var(--ease),
    border-color 420ms var(--ease);
}

.activity-index {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  transition: color 320ms var(--ease);
}

.activity-row.is-active,
.activity-row.is-open {
  border-color: rgba(23, 49, 40, 0.34);
}

.activity-row.is-active .activity-index,
.activity-row.is-open .activity-index {
  color: var(--accent);
}

.activity-main h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(30px, 5.8vw, 82px);
  font-weight: 720;
  line-height: 0.98;
  transition:
    color 320ms var(--ease),
    transform 420ms var(--ease);
}

.activity-row.is-active .activity-main h3,
.activity-row.is-open .activity-main h3 {
  transform: translateX(10px);
}

.activity-main p {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 20px);
}

.activity-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  margin-top: 4px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  transition:
    background-color 260ms var(--ease),
    border-color 260ms var(--ease),
    transform 260ms var(--ease);
}

.activity-row.is-active .activity-toggle,
.activity-row.is-open .activity-toggle {
  border-color: var(--ink);
  background: rgba(23, 49, 40, 0.06);
  transform: rotate(180deg);
}

.activity-toggle::before,
.activity-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease);
}

.activity-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.activity-row.is-open .activity-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.activity-detail {
  grid-column: 2 / 4;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 17px;
  transform: translateY(-8px);
  transition:
    max-height 520ms var(--ease),
    opacity 340ms var(--ease),
    transform 420ms var(--ease);
}

.activity-row.is-open .activity-detail {
  max-height: 140px;
  opacity: 1;
  transform: translateY(0);
}

.activity-detail p {
  max-width: 720px;
  margin: 0 0 6px;
  padding-bottom: 2px;
}

.company {
  width: 100%;
  padding-right: max(48px, calc((100vw - 1360px) / 2));
  padding-left: max(48px, calc((100vw - 1360px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(124, 145, 140, 0.28), transparent 36%),
    var(--bg-soft);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 8vw, 140px);
  align-items: start;
}

.company h2,
.approach h2,
.contact h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(40px, 5.7vw, 88px);
  font-weight: 720;
  line-height: 1;
}

.company-text {
  display: grid;
  gap: 24px;
  padding-left: clamp(24px, 5vw, 76px);
  border-left: 1px solid var(--line-strong);
}

.company-text p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.approach-head {
  max-width: 980px;
  margin-bottom: clamp(46px, 7vw, 94px);
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 228px;
  padding: clamp(24px, 3.3vw, 44px);
  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.principle svg {
  width: 36px;
  height: 36px;
  margin-bottom: 44px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.principle h3 {
  margin: 0 0 12px;
  color: var(--ink-strong);
  font-size: 21px;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.contact {
  padding-top: 0;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(42px, 7vw, 110px);
  min-height: 520px;
  padding: clamp(42px, 7vw, 88px);
  overflow: hidden;
  color: var(--white);
  background: var(--panel);
}

.contact-panel .section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
  border-color: rgba(255, 253, 248, 0.3);
  color: var(--white);
}

.contact-content {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  column-gap: clamp(42px, 7vw, 110px);
  row-gap: 28px;
  align-items: end;
}

.contact h2 {
  grid-column: 1;
  color: var(--white);
}

.contact-title span {
  display: block;
}

.contact-title span:last-child {
  white-space: nowrap;
}

.contact-content p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.55;
}

.contact-divider {
  grid-column: 1;
  width: min(100%, 420px);
  height: 1px;
  background: rgba(255, 253, 248, 0.32);
}

.contact-details {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 28px;
  width: min(100%, 500px);
  align-self: end;
  justify-self: start;
}

.contact-location,
.contact-email {
  display: grid;
  gap: 8px;
}

.contact-location span,
.contact-email span {
  color: rgba(255, 253, 248, 0.62);
  font-size: 13px;
  font-weight: 740;
}

.contact-location strong {
  color: var(--white);
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 720;
  line-height: 1;
}

.contact-email a {
  width: fit-content;
  color: var(--white);
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 720;
  line-height: 1.12;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-email a:hover,
.contact-email a:focus-visible {
  color: var(--sand);
}

.footer-line-art {
  position: absolute;
  right: 6vw;
  bottom: -80px;
  width: 320px;
  height: 260px;
  opacity: 0.35;
  transform: skewY(-28deg);
}

.footer-line-art span {
  position: absolute;
  border: 1px solid #d5b16f;
}

.footer-line-art span:nth-child(1) {
  right: 0;
  bottom: 0;
  width: 180px;
  height: 160px;
}

.footer-line-art span:nth-child(2) {
  right: 74px;
  bottom: 54px;
  width: 180px;
  height: 160px;
}

.footer-line-art span:nth-child(3) {
  right: 144px;
  bottom: 108px;
  width: 180px;
  height: 160px;
}

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 16px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.activity-row.reveal-item {
  transform: translateY(44px);
}

.activity-row.reveal-item.is-visible {
  transform: translateY(0);
}

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

@media (max-width: 1120px) {
  :root {
    --container: min(100% - 36px, 920px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 28px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: calc(var(--header-height) + 56px) 28px 0;
  }

  .hero-copy {
    max-width: 820px;
    padding-right: 0;
    padding-bottom: 48px;
  }

  .hero-media {
    min-height: 430px;
    margin-right: -28px;
    margin-left: clamp(0px, 10vw, 120px);
  }

  .hero-media img {
    min-height: 520px;
  }

  .scroll-cue {
    display: none;
  }

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

  .principle:nth-child(2) {
    border-right: 0;
  }

  .principle:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
    --container: min(100% - 28px, 100%);
  }

  body::before {
    background:
      linear-gradient(90deg, rgba(23, 49, 40, 0.05) 1px, transparent 1px) 0 0 / 50vw 100%,
      var(--bg);
  }

  .site-header {
    min-height: var(--header-height);
    padding: 10px 14px;
  }

  .site-header.is-scrolled {
    min-height: 60px;
    padding-block: 8px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 54px;
    height: 42px;
  }

  .brand-name {
    max-width: 174px;
    font-size: 14px;
  }

  .brand-line {
    font-size: 9px;
  }

  .header-actions {
    gap: 12px;
  }

  .site-header > .header-actions > .language-switcher {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 38px;
  }

  .menu-panel-inner {
    width: 100%;
    min-width: 0;
    padding: 26px 22px 32px;
  }

  .overlay-nav {
    gap: 22px;
  }

  .overlay-nav a {
    font-size: clamp(38px, 13vw, 56px);
  }

  .overlay-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding: calc(var(--header-height) + 38px) 14px 0;
  }

  .hero-copy {
    padding-bottom: 34px;
  }

  .hero-location {
    margin-bottom: 26px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(45px, 16vw, 72px);
  }

  .hero h1::after {
    width: 56px;
    margin-top: 26px;
  }

  .hero-copy > p:not(.hero-location) {
    margin-top: 24px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 340px;
    margin-top: 30px;
  }

  .button-primary,
  .button-secondary {
    min-height: 50px;
    width: 100%;
  }

  .hero-media {
    min-height: 260px;
    margin-right: -14px;
    margin-left: 48px;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
  }

  .hero-media img {
    min-height: 330px;
    object-position: 50% 50%;
  }

  .section {
    padding: 72px 0;
  }

  .section-label {
    margin-bottom: 34px;
    font-size: 12px;
  }

  .activity-row {
    grid-template-columns: 1fr 40px;
    gap: 14px;
    padding: 28px 0;
  }

  .activity-index {
    grid-column: 1 / -1;
  }

  .activity-main {
    min-width: 0;
  }

  .activity-main h3 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .activity-row.is-active .activity-main h3,
  .activity-row.is-open .activity-main h3 {
    transform: translateX(0);
  }

  .activity-main p {
    font-size: 15px;
  }

  .activity-toggle {
    width: 40px;
    height: 40px;
  }

  .activity-detail {
    grid-column: 1 / -1;
    font-size: 15px;
  }

  .company {
    padding-right: 14px;
    padding-left: 14px;
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .company h2,
  .approach h2,
  .contact h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .company-text {
    gap: 18px;
    padding-left: 18px;
  }

  .company-text p {
    font-size: 16px;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principle,
  .principle:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle svg {
    margin-bottom: 26px;
  }

  .contact-panel {
    min-height: 0;
    padding: 30px 18px 170px;
  }

  .contact-content p {
    font-size: 16px;
  }

  .contact-location strong {
    font-size: 38px;
  }

  .contact-email a {
    font-size: 22px;
  }

  .footer-line-art {
    right: -70px;
    bottom: -130px;
  }

  .footer {
    padding: 14px 0 16px;
  }
}

@media (max-width: 420px) {
  .brand-name {
    max-width: 144px;
  }

  .hero h1 {
    font-size: clamp(40px, 15vw, 58px);
  }
}
