/* Variables, reset, header and shared controls */

:root {
  --bg: #fff;
  --soft: #f7f7f5;
  --ink: #111;
  --muted: #6b6b68;
  --line: #deded9;
  --max: 1440px;
  --serif: Georgia,'Times New Roman',serif;
  --sans: Inter,Helvetica,Arial,sans-serif;
  --header: 84px;
  --shadow: 0 24px 80px rgba(0,0,0,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  background: #111;
  color: white;
  padding: 10px 16px;
  z-index: 200;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  height: var(--header);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border .3s;
}

.site-header.scrolled {
  border-color: var(--line);
}

.header-inner {
  max-width: var(--max);
  height: 100%;
  margin: auto;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: -1.2px;
  text-decoration: none;
  white-space: nowrap;
}

.brand span {
  font-style: Arial;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 38px;
}

.desktop-nav a,.mobile-menu a {
  font-size: 13px;
  letter-spacing: .04em;
  text-decoration: none;
  position: relative;
}

.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: #111;
  transition: right .25s;
}

.desktop-nav a:hover:after,.desktop-nav a.active:after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.icon-btn,.menu-toggle {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
}

.icon-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.count-btn span {
  position: absolute;
  right: -2px;
  top: 0;
  font-size: 9px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
}

.language-switcher,.mobile-languages {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 8px;
  font-size: 11px;
}

.language-switcher a,.mobile-languages a {
  text-decoration: none;
  color: #888;
  padding: 4px;
}

.language-switcher a.active,.mobile-languages a.active {
  color: #111;
  font-weight: 700;
}

.language-switcher span,.mobile-languages span {
  color: #bbb;
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  width: 21px;
  height: 1px;
  background: #111;
  position: absolute;
  transition: .25s;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle.open span:first-child {
  transform: rotate(45deg);
}

.menu-toggle.open span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 600;
  margin: 0 0 24px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 49px;
  padding: 0 23px;
  border: 1px solid #111;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s;
}

.btn-dark {
  background: #111;
  color: #fff;
}

.btn-dark:hover {
  background: #333;
}

.btn-light {
  background: #fff;
  color: #111;
}

.btn-light:hover {
  background: #f0f0ed;
}

.btn.wide {
  width: 100%;
}

.text-link {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 1px solid #111;
  padding-bottom: 5px;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .8s,transform .8s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: inline-block;
}