:root {
  --taupe: #6b6058;
  --taupe-dark: #5e544c;
  --deep: #4a3d34;
  --ink-footer: #382e27;
  --gold: #b0892c;
  --gold-bright: #c9a44e;
  --cream: #f8f6f2;
  --sand: #efeae2;
  --paper: #ffffff;
  --ink: #2f2822;
  --muted: #7d746b;
  --muted-light: rgba(255, 255, 255, .68);
  --line: rgba(47, 40, 34, .12);
  --line-light: rgba(255, 255, 255, .16);
  --dot: rgba(176, 137, 44, .45);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

  --shell: 1200px;
  --gutter: 20px;
  --topbar-h: 42px;
  --nav-h: 78px;

  --radius: 2px;
  --shadow-sm: 0 10px 30px rgba(47, 40, 34, .08);
  --shadow-md: 0 22px 50px rgba(47, 40, 34, .14);
  --shadow-lg: 0 30px 70px rgba(47, 40, 34, .18);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: .015em;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3 { margin: 0; font-weight: 300; font-family: var(--font-display); }
dl, dd { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--gold);
  color: #fff;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 12px; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow__rule {
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: .8;
  flex: none;
}
.eyebrow--light { color: var(--gold-bright); }

.sec-title {
  font-size: clamp(30px, 5.2vw, 52px);
  line-height: 1.14;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 22px;
}
.sec-title--light { color: #f3efe8; }

.sec-sub {
  max-width: 620px;
  margin: -6px auto 0;
  color: var(--muted-light);
  font-size: 14px;
}

.sec-head { margin-bottom: 54px; }
.sec-head--center { text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .sec-title { margin-bottom: 18px; }
.sec-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.sec-head--row .sec-title { margin-bottom: 0; }

.card-title {
  font-size: clamp(21px, 3vw, 27px);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 14px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: 15px 34px;
  border-radius: var(--radius);
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--deep);
  transform: scale(0, 1);
  transform-origin: center;
  transition: transform .38s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(176, 137, 44, .3); }
.btn:hover::before { transform: scale(1, 1); }
.btn--sm { padding: 12px 26px; font-size: 10px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: transform .4s var(--ease);
}
.site-header.is-stuck { transform: translateY(calc(-1 * var(--topbar-h))); }

.topbar {
  height: var(--topbar-h);
  background: var(--deep);
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  letter-spacing: .06em;
}
.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar__note { margin: 0; opacity: .75; }
.topbar__contacts { display: flex; align-items: center; gap: 26px; }
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .25s var(--ease);
}
.topbar__link:hover { color: var(--gold-bright); }
.topbar__ico { display: inline-flex; color: var(--gold-bright); }

.navbar {
  height: var(--nav-h);
  background: transparent;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-stuck .navbar,
.site-header--solid .navbar {
  background: var(--taupe);
  box-shadow: 0 12px 34px rgba(47, 40, 34, .22);
}
.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-right: auto;
}
.brand__mark { color: var(--gold-bright); display: inline-flex; }
.brand__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.nav__list { display: flex; align-items: center; gap: 34px; }
.nav__link {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .32s var(--ease);
}
.nav__link:hover::after, .nav__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__foot { display: none; }

.navbar__cta { margin-left: 10px; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.6px;
  background: #fff;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.site-header.is-open .burger span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.site-header.is-open .burger span:nth-child(2) { opacity: 0; }
.site-header.is-open .burger span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 640px;
  padding: calc(var(--topbar-h) + var(--nav-h) + 90px) 0 110px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  background: var(--taupe);
}
.hero__bg { position: absolute; inset: 0; z-index: -3; }
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 26s ease-in-out infinite alternate;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(48, 40, 33, .88) 0%, rgba(84, 75, 68, .9) 55%, rgba(96, 86, 78, .95) 100%);
}
.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  pointer-events: none;
}
.hero__glow--a {
  width: 460px; height: 460px;
  top: -140px; left: -110px;
  background: radial-gradient(circle, rgba(201, 164, 78, .5), transparent 68%);
  animation: drift-a 18s ease-in-out infinite alternate;
}
.hero__glow--b {
  width: 520px; height: 520px;
  right: -160px; bottom: -180px;
  background: radial-gradient(circle, rgba(255, 246, 225, .34), transparent 70%);
  animation: drift-b 22s ease-in-out infinite alternate;
}
.hero__inner { position: relative; max-width: 880px; }
.hero .eyebrow { justify-content: center; }
.hero__title {
  font-size: clamp(36px, 7vw, 66px);
  line-height: 1.1;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fffdf8 0%, #efe4cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 26px;
}
.hero__lead {
  max-width: 620px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
}
.hero__actions { display: flex; justify-content: center; }
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 1px;
  height: 62px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .5));
  transform: translateX(-50%);
  animation: pulse-line 2.8s ease-in-out infinite;
}

.dots {
  position: absolute;
  width: 132px;
  height: 92px;
  background-image: radial-gradient(var(--dot) 1.5px, transparent 1.6px);
  background-size: 16px 16px;
  pointer-events: none;
  opacity: .85;
}
.dots--art { top: 120px; right: 30px; }
.dots--styles { bottom: 90px; left: 18px; }
.dots--craft { top: 100px; right: 24px; }
.dots--gallery { bottom: 40px; left: 16px; }

.art {
  position: relative;
  padding: 100px 0 0;
  background: var(--cream);
}
.art__stage {
  position: relative;
  padding-bottom: 90px;
}
.art__media {
  margin: 0;
  overflow: hidden;
  max-width: 1000px;
  margin-inline: auto;
  background: var(--sand);
}
.art__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.art__media:hover img { transform: scale(1.04); }
.art__card {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 2 * var(--gutter)));
  margin: -140px auto 0;
  padding: 44px 44px 40px;
  background: var(--paper);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.art__card p { color: var(--muted); margin-bottom: 26px; }

.split {
  position: relative;
  padding: 100px 0;
  background: var(--cream);
}
.split--contact { padding-bottom: 52px; }
.split__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}
.split__media {
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.split__media:hover img { transform: scale(1.05); }
.split__text p { color: var(--muted); }
.split__text .btn { margin-top: 12px; }

.contact-facts {
  margin: 24px 0 28px;
  border-top: 1px solid var(--line);
}
.contact-facts > div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.contact-facts dt {
  padding-top: 3px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-facts dd { color: var(--muted); }
.contact-facts a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color .25s var(--ease);
}
.contact-facts a:hover { color: var(--gold); }

.services {
  padding: 100px 0;
  background: var(--sand);
}
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.svc-grid, .post-grid { align-items: stretch; }
.svc {
  position: relative;
  overflow: hidden;
  background: var(--taupe);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc__media { overflow: hidden; }
.svc__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.svc:hover .svc__media img { transform: scale(1.07); }
.svc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 40, 34, .05) 0%, rgba(47, 40, 34, .45) 100%);
  pointer-events: none;
}
.svc__plate {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 48px);
  padding: 26px 20px 22px;
  background: rgba(60, 50, 42, .82);
  color: #fff;
  text-align: center;
  transition: background-color .35s var(--ease);
}
.svc:hover .svc__plate { background: rgba(176, 137, 44, .9); }
.svc__title {
  font-size: 21px;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.2;
}
.svc__kicker {
  margin: 8px 0 0;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  transition: color .35s var(--ease);
}
.svc:hover .svc__kicker { color: #fff5dd; }
.svc__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--gold-bright);
  transition: color .35s var(--ease);
}
.svc:hover .svc__price { color: #fff8e6; }
.svc__from {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
}
.svc__meta {
  margin: 12px 0 0;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .74);
}
.svc-note {
  max-width: 700px;
  margin: 44px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.values {
  padding: 66px 0;
  background: var(--taupe);
  color: #fff;
}
.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}
.value__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--gold-bright);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.value:hover .value__ico { transform: translateY(-4px); border-color: var(--gold-bright); }
.value__title {
  font-size: 17px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.value p {
  font-size: 13px;
  color: var(--muted-light);
  max-width: 250px;
  margin-inline: auto;
}

.gallery {
  position: relative;
  padding: 100px 0;
  background: var(--cream);
}
.gallery__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.gallery__text p { color: var(--muted); }
.gallery__text .btn { margin-top: 12px; }
.gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 118px;
  gap: 14px;
}
.gallery__cell {
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}
.gallery__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery__cell:hover img { transform: scale(1.07); }
.gallery__cell--wide { grid-column: span 2; grid-row: span 2; }
.gallery__cell--tall { grid-row: span 2; }

.journal { padding: 100px 0 110px; background: var(--sand); }
.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.post {
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post__link { display: block; padding-bottom: 28px; }
.post__media { display: block; overflow: hidden; }
.post__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.post:hover .post__media img { transform: scale(1.06); }
.post__title {
  padding: 26px 26px 0;
  font-size: 20px;
  line-height: 1.32;
  letter-spacing: .04em;
  color: var(--taupe);
}
.post__excerpt {
  margin: 10px 0 0;
  padding: 0 26px;
  font-size: 13px;
  color: var(--muted);
}

.footer {
  background: var(--ink-footer);
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding-top: 76px;
  padding-bottom: 60px;
}
.brand--footer { margin: 0 0 22px; }
.footer__heading {
  font-size: 19px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #f1ece4;
  margin-bottom: 12px;
}
.footer__note { color: rgba(255, 255, 255, .58); font-size: 13px; }
.subscribe {
  display: flex;
  margin: 18px 0 8px;
  max-width: 340px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, .04);
}
.subscribe__input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 13px 16px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}
.subscribe__input::placeholder { color: rgba(255, 255, 255, .42); }
.subscribe__input:focus { outline: none; }
.subscribe:focus-within { border-color: var(--gold); }
.subscribe__btn {
  flex: none;
  width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  transition: background-color .3s var(--ease);
}
.subscribe__btn:hover { background: var(--gold-bright); }
.subscribe__hint { font-size: 11px; color: rgba(255, 255, 255, .4); letter-spacing: .04em; }

.social { display: flex; gap: 10px; margin-top: 22px; }
.social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .75);
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.social__link:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }

.footer__col-title {
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #f1ece4;
  margin-bottom: 20px;
}
.footer__list li { margin-bottom: 11px; line-height: 1.6; }
.footer__list a {
  position: relative;
  transition: color .25s var(--ease);
}
.footer__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.footer__list a:hover { color: #fff; }
.footer__list a:hover::after { transform: scaleX(1); transform-origin: left; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid var(--line-light);
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
}
.footer__bottom p { margin: 0; }
.footer__bottom a:hover { color: var(--gold-bright); }

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.legal { padding: calc(var(--topbar-h) + var(--nav-h) + 70px) 0 90px; }
.legal__head {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
}
.legal__title {
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 14px;
}
.legal__meta { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 0; }
.legal__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: start;
}
.toc {
  padding: 28px 26px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.toc__title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.toc__list { counter-reset: toc; }
.toc__list li { margin-bottom: 9px; font-size: 13px; line-height: 1.5; }
.toc__list a { color: var(--muted); transition: color .25s var(--ease); }
.toc__list a:hover { color: var(--gold); }

.legal__body h2 {
  font-size: clamp(21px, 3vw, 27px);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 46px 0 16px;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 26px 0 10px;
}
.legal__body p, .legal__body li { color: var(--muted); font-size: 14px; }
.legal__body ul { margin: 0 0 18px; padding-left: 20px; list-style: disc; }
.legal__body ul li { margin-bottom: 8px; padding-left: 4px; }
.legal__body a { color: var(--gold); border-bottom: 1px solid rgba(176, 137, 44, .35); }
.legal__body a:hover { border-bottom-color: var(--gold); }
.legal__table-wrap { overflow-x: auto; margin: 0 0 20px; }
.legal__table { width: 100%; min-width: 480px; border-collapse: collapse; font-size: 13px; }
.legal__table th, .legal__table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 300;
}
.legal__table th {
  font-weight: 500;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.legal__note {
  margin-top: 46px;
  padding: 26px 28px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--stagger, 0ms);
}
.has-js .reveal.is-in { opacity: 1; transform: none; }

@keyframes kenburns {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(0, -1.5%, 0); }
}
@keyframes drift-a {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(40px, 30px, 0); }
}
@keyframes drift-b {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-46px, -26px, 0); }
}
@keyframes pulse-line {
  0%, 100% { opacity: .25; transform: translateX(-50%) scaleY(.6); }
  50% { opacity: .9; transform: translateX(-50%) scaleY(1); }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: calc(var(--topbar-h) + var(--nav-h)) 0 auto;
    background: var(--taupe-dark);
    padding: 8px var(--gutter) 26px;
    box-shadow: 0 24px 40px rgba(47, 40, 34, .3);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform .34s var(--ease), opacity .28s var(--ease), visibility .28s;
  }
  .site-header.is-open .nav { transform: none; opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav__list li { width: 100%; border-bottom: 1px solid var(--line-light); }
  .nav__link { display: block; padding: 15px 0; width: 100%; }
  .nav__foot {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
  }
  .burger { display: flex; }
  .navbar__cta { display: none; }
  .topbar__note { display: none; }
  .topbar__contacts { width: 100%; justify-content: space-between; gap: 14px; }
  .topbar { font-size: 11px; }
}

@media (min-width: 600px) {
  .svc-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 140px; gap: 16px; }
  .gallery__cell--tall { grid-column: 3; grid-row: span 3; }
}

@media (min-width: 768px) {
  :root { --gutter: 32px; }
  .art__card { padding: 52px 56px 48px; }
}

@media (min-width: 1000px) {
  .split__inner { grid-template-columns: 1fr 1fr; gap: 70px; }
  .split--rev .split__media { order: 2; }
  .split--rev .split__text { order: 1; }
  .svc-grid, .post-grid { grid-template-columns: repeat(3, 1fr); }
  .post-grid { grid-template-columns: repeat(4, 1fr); }
  .values__grid { grid-template-columns: repeat(4, 1fr); }
  .gallery__inner { grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
  .gallery__mosaic { grid-auto-rows: 120px; }
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; }
  .legal__layout { grid-template-columns: 280px 1fr; gap: 60px; }
  .toc { position: sticky; top: calc(var(--nav-h) + 20px); }
  .split__media img { aspect-ratio: 5 / 4; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .has-js .reveal { opacity: 1; transform: none; }
  .hero__bg img { animation: none; }
}
