:root {
  --cream: #f6f0e6;
  --paper: #fffdf8;
  --navy: #162238;
  --navy-soft: #25334a;
  --copper: #b86f45;
  --copper-light: #e9c7ad;
  --sage: #91a69a;
  --sage-light: #dce6df;
  --ink-soft: #5e6470;
  --line: rgba(22, 34, 56, .14);
  --shadow: 0 24px 70px rgba(35, 41, 51, .13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 4px; border-radius: 4px; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--navy);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }
.eyebrow {
  margin: 0 0 17px;
  color: var(--copper);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--copper-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
h1 { max-width: 830px; margin-bottom: 28px; font-size: clamp(3.4rem, 7.5vw, 7.1rem); line-height: .96; }
h2 { margin-bottom: 24px; font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1.02; }
h3 { font-size: 1.6rem; line-height: 1.15; }
em { color: var(--copper); font-weight: inherit; }
.lead { max-width: 680px; color: var(--ink-soft); font-size: 1.12rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 50px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: white; }
.button-primary:hover { background: var(--navy-soft); }
.button-secondary { background: transparent; }
.button-secondary:hover { background: rgba(22,34,56,.05); }
.button-light { border-color: white; background: white; color: var(--navy); }
.text-link { display: inline-flex; align-items: center; gap: 9px; border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 800; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 82px;
  display: flex;
  align-items: center;
  background: rgba(246, 240, 230, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { min-width: 0; display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { display: block; width: auto; object-fit: contain; }
.brand-logo-header { height: 54px; }
.brand-logo-footer { width: min(100%, 310px); height: auto; }
.footer-logo-panel {
  width: fit-content;
}
.brand-mark {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 48% 52%;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.25rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--serif); font-size: 1.25rem; letter-spacing: -.03em; }
.brand-text small { margin-top: 5px; color: var(--ink-soft); font-size: .54rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 27px; }
.desktop-nav a { font-size: .73rem; font-weight: 750; }
.desktop-nav a:hover { color: var(--copper); }
.language-switch { display: flex; gap: 3px; margin-left: 7px; padding: 3px; border: 1px solid var(--line); border-radius: 99px; }
.language-switch a, .language-switch span { padding: 5px 8px; border-radius: 99px; font-size: .62rem; font-weight: 850; }
.language-switch .active { background: var(--navy); color: white; }
.mobile-menu { display: none; position: relative; width: 42px; flex: 0 0 42px; }
.mobile-menu summary { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span, .mobile-menu summary::after { content: ""; width: 17px; height: 1px; background: var(--navy); }
.mobile-menu summary { gap: 5px; }
.mobile-nav { position: absolute; top: 51px; right: 0; width: 245px; padding: 12px; display: grid; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
.mobile-nav a { padding: 11px 10px; font-weight: 700; }

.hero { min-height: calc(100svh - 82px); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  width: 610px;
  height: 610px;
  top: 3%;
  right: -170px;
  border: 1px solid rgba(184,111,69,.23);
  border-radius: 50%;
}
.hero-grid { min-height: 690px; display: grid; grid-template-columns: 1.18fr .82fr; gap: 7vw; align-items: center; }
.hero-copy { position: relative; z-index: 2; padding: 80px 0; }
.hero-copy .lead { max-width: 640px; }
.trust-line { margin: 26px 0 0; color: var(--ink-soft); font-size: .75rem; }
.trust-line span { color: var(--copper); }
.hero-visual { min-height: 630px; position: relative; display: grid; place-items: center; }
.editorial-card {
  width: min(100%, 460px);
  aspect-ratio: .78;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: 12px solid var(--paper);
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.9), transparent 43%),
    linear-gradient(145deg, #dce6df, #e9c7ad);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.editorial-card::before {
  content: "";
  position: absolute;
  inset: 9% 9% auto;
  height: 45%;
  border: 1px solid rgba(22,34,56,.16);
  border-radius: 50% 50% 0 0;
}
.editorial-card picture { position: relative; z-index: 2; width: 112%; flex: 0 0 112%; }
.editorial-card img { width: 100%; height: auto; mix-blend-mode: multiply; }
.edition-note {
  position: absolute;
  z-index: 3;
  right: -25px;
  bottom: 40px;
  width: 190px;
  padding: 18px;
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 32px rgba(22,34,56,.22);
  transform: rotate(-2deg);
}
.edition-note span { display: block; color: var(--copper-light); font-size: .6rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.edition-note strong { display: block; margin-top: 5px; font-family: var(--serif); font-size: 1.15rem; line-height: 1.2; }

.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; margin-bottom: 65px; }
.section-head > p { max-width: 550px; color: var(--ink-soft); }
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 10vw; align-items: start; }
.section-number { color: var(--copper); font-family: var(--serif); font-size: clamp(7rem, 16vw, 14rem); line-height: .75; opacity: .23; }
.about-copy .statement { margin-bottom: 28px; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.55rem); line-height: 1.25; }
.about-copy p:not(.statement) { max-width: 720px; color: var(--ink-soft); }
.about-list { margin-top: 38px; border-top: 1px solid var(--line); }
.about-list div { padding: 17px 0; display: grid; grid-template-columns: 130px 1fr; gap: 25px; border-bottom: 1px solid var(--line); }
.about-list b { color: var(--copper); font-size: .67rem; letter-spacing: .11em; text-transform: uppercase; }
.about-list span { font-family: var(--serif); font-size: 1.15rem; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.work-card { min-height: 430px; padding: 36px; display: flex; flex-direction: column; border: 1px solid var(--line); background: rgba(255,255,255,.35); }
.work-card:nth-child(2) { background: var(--sage-light); }
.work-card:nth-child(3) { background: #eddaca; }
.work-icon { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: var(--serif); font-size: 1.2rem; color: var(--copper); }
.work-card h3 { margin: auto 0 17px; }
.work-card p { color: var(--ink-soft); font-size: .92rem; }
.status { margin-top: 22px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--navy); font-size: .66rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

.universe { background: var(--navy); color: white; }
.universe-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; align-items: center; }
.universe-copy > p:not(.eyebrow) { max-width: 640px; color: rgba(255,255,255,.68); }
.universe-copy h2 em { color: var(--copper-light); }
.universe-copy .button { margin-top: 20px; }
.universe-panel { min-height: 560px; position: relative; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.orbit-a { width: 500px; height: 500px; }
.orbit-b { width: 350px; height: 350px; }
.orbit-c { width: 200px; height: 200px; }
.universe-core { width: 145px; height: 145px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--navy); font-family: var(--serif); font-size: 3rem; }
.orbit-label { position: absolute; padding: 7px 11px; border: 1px solid rgba(255,255,255,.23); border-radius: 99px; color: rgba(255,255,255,.7); font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.label-one { top: 8%; left: 48%; }
.label-two { top: 48%; right: 1%; }
.label-three { bottom: 9%; left: 43%; }
.label-four { top: 48%; left: 1%; }

.collaboration { background: var(--paper); }
.collab-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.collab-item { min-height: 220px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.collab-item span { color: var(--copper); font-family: var(--serif); font-style: italic; }
.collab-item h3 { margin: 42px 0 10px; }
.collab-item p { margin-bottom: 0; color: var(--ink-soft); font-size: .9rem; }

.contact-card { min-height: 530px; padding: clamp(45px, 7vw, 90px); display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: center; background: #dce6df; }
.contact-copy p:not(.eyebrow) { max-width: 600px; color: var(--ink-soft); }
.contact-links { display: grid; border-top: 1px solid var(--line); }
.contact-link { padding: 23px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.2rem; }
.contact-link span:last-child { color: var(--copper); }

.site-footer { padding: 70px 0 25px; background: var(--navy); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; padding-bottom: 55px; }
.footer-brand p { max-width: 280px; margin-top: 18px; color: rgba(255,255,255,.55); font-family: var(--serif); }
.footer-title { margin-bottom: 15px; color: var(--copper-light); font-size: .65rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-col a, .footer-col span { color: rgba(255,255,255,.64); font-size: .75rem; }
.footer-col a:hover { color: white; }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.42); font-size: .68rem; }
.footer-bottom strong { color: var(--copper-light); }

.legal-page { min-height: 70svh; padding: 110px 0; }
.legal-wrap { max-width: 820px; }
.legal-wrap h1 { font-size: clamp(3.2rem, 7vw, 5.8rem); }
.legal-wrap h2 { margin-top: 50px; font-size: 1.75rem; }
.legal-wrap p, .legal-wrap li { color: var(--ink-soft); }
.legal-note { padding: 20px 24px; border-left: 3px solid var(--copper); background: var(--paper); }
.error-page { min-height: 100svh; display: grid; place-items: center; text-align: center; }
.error-code { margin: 0; color: var(--copper); font-family: var(--serif); font-size: clamp(7rem, 20vw, 15rem); line-height: .8; opacity: .25; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding: 90px 0 25px; }
  .hero-visual { min-height: 590px; }
  .editorial-card { width: min(78vw, 460px); }
  .section-head, .about-grid, .universe-grid, .contact-card { grid-template-columns: 1fr; }
  .section-number { display: none; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card:last-child { grid-column: 1 / -1; min-height: 330px; }
  .contact-card { gap: 45px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .shell { width: min(100% - 34px, 1180px); }
  .section { padding: 85px 0; }
  .site-header { height: 70px; }
  .brand-logo-header { height: 44px; }
  .brand-mark { width: 34px; height: 34px; }
  h1 { font-size: clamp(3.1rem, 15vw, 4.7rem); }
  h2 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; }
  .hero-copy { padding-top: 70px; }
  .hero-visual { min-height: 510px; }
  .edition-note { right: -4px; bottom: 25px; width: 168px; }
  .button { width: 100%; }
  .section-head { gap: 10px; margin-bottom: 42px; }
  .work-grid, .collab-grid { grid-template-columns: 1fr; }
  .work-card, .work-card:last-child { min-height: 360px; grid-column: auto; }
  .about-list div { grid-template-columns: 1fr; gap: 5px; }
  .universe-panel { min-height: 390px; overflow: hidden; }
  .orbit-a { width: 390px; height: 390px; }
  .orbit-b { width: 270px; height: 270px; }
  .orbit-c { width: 150px; height: 150px; }
  .universe-core { width: 110px; height: 110px; font-size: 2.3rem; }
  .contact-card { padding: 35px 22px; }
  .contact-link { align-items: flex-start; flex-direction: column; gap: 3px; font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .brand-text small { display: none; }
}

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