/* =============================================================
   Tokens
   ============================================================= */
:root {
  --bg: #ffffff;
  --ink: #323130;
  --gutter: 1.5rem;
}

/* =============================================================
   Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--bg); }

/* =============================================================
   1. Hero — full-bleed image, fixed ratio so a video can drop in later
   ============================================================= */
.hero-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1166 / 1914;
  overflow: clip;
  background: var(--bg);
}
.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================================
   1b. Language toggle — overlaid top-right on the hero
   ============================================================= */
.lang-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.lang-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.lang-btn.is-active {
  opacity: 1;
  font-weight: 700;
  color: #323130;
}
.lang-btn:hover,
.lang-btn:focus-visible {
  opacity: 0.75;
}
.lang-sep {
  font-size: 1rem;
  color: var(--ink);
  opacity: 0.3;
}

/* =============================================================
   2. Wordmark — fixed design asset, full-bleed strip
   ============================================================= */
.wordmark {
  padding: clamp(1.5rem, 8vw, 3rem) 0;
}
.wordmark-img {
  width: 100%;
  height: auto;
}

/* =============================================================
   3. Info — description, contact, locations (discreet, editorial)
   ============================================================= */
.info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem var(--gutter) 3rem;
}
.info-desc {
  max-width: 34ch;
  font-size: 0.9rem;
  line-height: 1.5;
}
.info-indent {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-left: 3.5rem;
}
.info-contact {
  font-size: 0.85rem;
  line-height: 1.6;
}
.info-contact a {
  transition: opacity 0.2s ease;
}
.info-contact a:hover,
.info-contact a:focus-visible {
  opacity: 0.6;
}
.info-locations {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.location {
  font-size: 0.8rem;
  line-height: 1.5;
}
.location strong {
  font-weight: 700;
}

/* =============================================================
   4. Footer
   ============================================================= */
.site-footer {
  padding: 0 var(--gutter) 1.5rem;
}
.site-footer p {
  font-size: 0.7rem;
  color: var(--ink);
}

/* =============================================================
   5. Desktop breakpoint — separate layout, mobile rules above untouched
   ============================================================= */
.site--desktop { display: none; }

@media (min-width: 1024px) {
  .site--mobile { display: none; }
  .site--desktop { display: block; }
}

.d-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 955;
  overflow: clip;
  background: var(--bg);
}
.d-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.d-wordmark {
  width: 100%;
  padding: 3rem 0 2.5rem;
}
.d-wordmark-img {
  width: 100%;
  height: auto;
}

.d-body {
  padding: 0 clamp(2rem, 5vw, 4rem) 3rem;
}
.d-desc {
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}
.d-info-row {
  display: flex;
  gap: 5rem;
  margin-left: 3.5rem;
  margin-bottom: 4rem;
}
.d-info-col {
  font-size: 0.9rem;
  line-height: 1.6;
}
.d-info-col strong {
  font-weight: 700;
}
.d-info-col a {
  transition: opacity 0.2s ease;
}
.d-info-col a:hover,
.d-info-col a:focus-visible {
  opacity: 0.6;
}
.d-footer {
  font-size: 0.75rem;
  color: var(--ink);
}
