@font-face {
  font-family: "Prata";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("assets/fonts/prata-cyrillic-400-normal.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Prata";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("assets/fonts/prata-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #292929;
  --ink-soft: #292929;
  --ink-lift: #292929;
  --paper: #f5f1ed;
  --paper-deep: #ffffff;
  --text: #f5f1ed;
  --muted: rgba(245, 241, 237, 0.68);
  --muted-dark: #666666;
  --gold: #8b6a50;
  --gold-bright: #8b6a50;
  --gold-dark: #8b6a50;
  --line: rgba(139, 106, 80, 0.28);
  --shell: min(1180px, calc(100vw - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(41, 41, 41, 0.1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: flex;
  align-items: center;
  width: 148px;
  height: 62px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.site-nav {
  justify-self: end;
  display: flex;
  gap: clamp(18px, 2.4vw, 38px);
  align-items: center;
}

.site-nav a,
.language-button,
.footer-inner a {
  font: 600 0.78rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav a {
  position: relative;
  color: var(--ink);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  right: 0;
}

.site-nav a.is-current {
  color: var(--gold);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switch > span {
  width: 1px;
  height: 15px;
  background: rgba(41, 41, 41, 0.2);
}

.language-button {
  border: 0;
  padding: 8px 2px;
  color: rgba(41, 41, 41, 0.42);
  background: transparent;
  cursor: pointer;
}

.language-button.is-active {
  color: var(--gold-bright);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: max(740px, 100svh);
  padding-top: 78px;
  overflow: hidden;
  background-color: #f5f1ed;
  background-image: url("assets/alnadar-hero-background-t8.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--ink);
}

.hero-t7-frame {
  position: relative;
  width: calc(100% - clamp(96px, 16vw, 308px));
  margin-inline: auto;
  min-height: max(662px, calc(100svh - 78px));
  display: grid;
  grid-template-columns: minmax(0, 54fr) minmax(360px, 46fr);
  grid-template-rows: minmax(0, 1fr) 112px;
}

.hero-t7-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 540px;
  padding: clamp(22px, 3.6vh, 40px) 0 clamp(18px, 3vh, 34px);
}

body.hero-pending .site-header,
body.hero-pending .hero-t7-copy .eyebrow,
body.hero-pending .hero h1,
body.hero-pending .hero-lead,
body.hero-pending .hero-actions,
body.hero-pending .hero-t7-logo,
body.hero-pending .hero-t7-direction {
  opacity: 0;
  transform: translateY(7px);
}

body.hero-pending .site-header {
  transform: translateY(-6px);
}

body.hero-ready .site-header,
body.hero-ready .hero-t7-copy .eyebrow,
body.hero-ready .hero h1,
body.hero-ready .hero-lead,
body.hero-ready .hero-actions,
body.hero-ready .hero-t7-logo,
body.hero-ready .hero-t7-direction {
  animation: hero-reveal 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.hero-ready .site-header {
  animation-delay: 0ms;
}

.hero-t7-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #4f5254;
}

.hero-t7-copy .eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: #8b6a50;
}

body.hero-ready .hero-t7-copy .eyebrow {
  animation-delay: 150ms;
}

body.hero-ready .hero h1 {
  animation-delay: 270ms;
}

body.hero-ready .hero-lead {
  animation-delay: 390ms;
}

body.hero-ready .hero-actions {
  animation-delay: 510ms;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--gold-dark);
}

.hero h1 {
  max-width: 540px;
  margin: 0;
  font-family: "Prata", serif;
  font-size: clamp(3.375rem, 4.6vw, 4.375rem);
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: #8b6a50;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
}

.hero-lead {
  max-width: 520px;
  margin: 22px 0 0;
  color: #5f6264;
  font-size: 1rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 24px;
}

.button {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 21px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 280ms ease, color 280ms ease, border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-gold {
  background: #8b6a50;
  color: #ffffff;
  box-shadow:
    0 10px 24px rgba(82, 69, 58, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #7c5f49;
  box-shadow: 0 12px 26px rgba(82, 69, 58, 0.17);
}

.button-ghost {
  border-color: rgba(71, 76, 80, 0.25);
  background: rgba(255, 255, 255, 0.38);
  color: #484d50;
  box-shadow: 0 8px 22px rgba(53, 57, 60, 0.03);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-t7-logo {
  position: relative;
  z-index: 2;
  align-self: center;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 340px;
  padding: 12px 0 4px;
}

.hero-t7-logo img {
  position: relative;
  z-index: 2;
  width: clamp(320px, 33vw, 610px);
  max-width: 116%;
  height: auto;
  filter:
    saturate(1.02)
    contrast(1.015)
    drop-shadow(0 20px 28px rgba(55, 60, 63, 0.11));
}

.hero-t7-directions {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 112px;
  border-top: 1px solid rgba(72, 72, 70, 0.17);
  color: #454849;
}

.hero-t7-direction {
  position: relative;
  min-height: 112px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 22px clamp(20px, 2.4vw, 34px);
  border-left: 1px solid rgba(70, 75, 79, 0.14);
  transition: background 240ms ease;
}

.hero-t7-direction:first-child {
  border-left: 0;
  padding-left: 0;
}

body.hero-ready .hero-t7-logo {
  animation-delay: 640ms;
}

body.hero-ready .hero-t7-direction:nth-child(1) {
  animation-delay: 780ms;
}

body.hero-ready .hero-t7-direction:nth-child(2) {
  animation-delay: 850ms;
}

body.hero-ready .hero-t7-direction:nth-child(3) {
  animation-delay: 920ms;
}

body.hero-ready .hero-t7-direction:nth-child(4) {
  animation-delay: 990ms;
}

.hero-t7-direction:hover {
  background: rgba(255, 255, 255, 0.55);
}

.hero-t7-direction strong {
  position: relative;
  max-width: 245px;
  padding-bottom: 15px;
  font-family: var(--sans);
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  font-weight: 400;
  line-height: 1.35;
  color: #424547;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
}

.hero-t7-direction strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 31px;
  height: 1px;
  background: rgba(139, 106, 80, 0.78);
}

.about-page {
  position: relative;
  min-height: max(690px, calc(100svh - 78px));
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-margin-top: 78px;
  background-color: #f5f1ed;
  background-image: url("assets/alnadar-about-background-t4.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--ink);
}

.about-page-inner {
  padding-block: clamp(88px, 11vh, 124px);
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: #4f5254;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: #8b6a50;
}

.about-title {
  max-width: 830px;
  margin: 0;
  color: #8b6a50;
  font-family: "Prata", serif;
  font-size: clamp(2.8rem, 4.45vw, 4.35rem);
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: -0.022em;
  line-height: 1.14;
}

.about-text {
  max-width: 790px;
  margin-top: clamp(32px, 4.5vh, 46px);
  color: #4f5254;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  font-weight: 400;
  line-height: 1.72;
}

.about-text p {
  margin: 0;
}

.about-text p + p {
  margin-top: 20px;
}

body.motion-enabled .about-reveal {
  opacity: 0;
  transform: translateY(9px);
  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.motion-enabled .about-page.is-visible .about-reveal {
  opacity: 1;
  transform: translateY(0);
}

body.motion-enabled .about-page.is-visible .about-title {
  transition-delay: 140ms;
}

body.motion-enabled .about-page.is-visible .about-text {
  transition-delay: 280ms;
}

.directions-page {
  position: relative;
  min-height: max(700px, calc(100svh - 78px));
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-margin-top: 78px;
  background-color: #f5f1ed;
  background-image: url("assets/alnadar-directions-background-v1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--ink);
}

.directions-page-inner {
  padding-block: clamp(56px, 7vh, 76px);
}

.directions-heading {
  margin-bottom: clamp(34px, 4.8vh, 48px);
}

.directions-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  color: #4f5254;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.directions-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: #8b6a50;
}

.directions-title {
  max-width: 720px;
  margin: 0;
  color: #8b6a50;
  font-family: "Prata", serif;
  font-size: clamp(2.55rem, 3.55vw, 3.55rem);
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: -0.024em;
  line-height: 1.13;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(64px, 8vw, 118px);
  row-gap: clamp(18px, 2.4vh, 28px);
}

.directions-item {
  position: relative;
  min-width: 0;
  min-height: clamp(184px, 20vh, 214px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(25px, 3vh, 31px) 12px clamp(26px, 3.4vh, 34px) 0;
  border-top: 1px solid rgba(74, 72, 70, 0.2);
  background: rgba(255, 255, 255, 0);
  transition:
    background 380ms cubic-bezier(0.22, 1, 0.36, 1),
    padding-left 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.directions-item::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 0;
  width: 54px;
  height: 1px;
  background: rgba(139, 106, 80, 0.78);
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.directions-item-copy {
  min-width: 0;
}

.directions-item h3 {
  max-width: 470px;
  margin: 0;
  color: #292929;
  font-family: var(--sans);
  font-size: clamp(1.45rem, 1.85vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.22;
  transition: color 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.directions-item p {
  max-width: 480px;
  margin: 18px 0 0;
  color: #5d6062;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.04vw, 1.06rem);
  font-weight: 400;
  line-height: 1.64;
}

.directions-arrow {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #8b6a50;
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition:
    color 300ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .directions-item:hover {
    padding-left: 6px;
    background: rgba(255, 255, 255, 0.36);
  }

  .directions-item:hover::before {
    width: 100%;
  }

  .directions-item:hover .directions-arrow {
    color: #725540;
    transform: translateX(6px);
  }
}

body.motion-enabled .directions-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
    background 240ms ease,
    padding-left 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.motion-enabled .directions-page.is-visible .directions-reveal {
  opacity: 1;
  transform: translateY(0);
}

body.motion-enabled .directions-page.is-visible .directions-title {
  transition-delay: 120ms;
}

body.motion-enabled .directions-page.is-visible .directions-item:nth-child(1) {
  transition-delay: 240ms, 240ms, 0ms, 0ms;
}

body.motion-enabled .directions-page.is-visible .directions-item:nth-child(2) {
  transition-delay: 330ms, 330ms, 0ms, 0ms;
}

body.motion-enabled .directions-page.is-visible .directions-item:nth-child(3) {
  transition-delay: 420ms, 420ms, 0ms, 0ms;
}

body.motion-enabled .directions-page.is-visible .directions-item:nth-child(4) {
  transition-delay: 510ms, 510ms, 0ms, 0ms;
}

.section {
  padding: 132px 0;
}

.section-number {
  margin: 0 0 44px;
  color: rgba(41, 41, 41, 0.28);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section-number-dark {
  color: rgba(255, 255, 255, 0.3);
}

.section h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-dark {
  position: relative;
  background:
    linear-gradient(115deg, rgba(139, 106, 80, 0.07), transparent 42%),
    var(--ink-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: end;
  margin-bottom: 76px;
}

.section-heading-wide {
  grid-template-columns: 0.7fr 1.3fr;
}

.section-heading .section-number {
  margin-bottom: 36px;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.direction-card {
  position: relative;
  min-height: 286px;
  padding: 42px 44px 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: background 220ms ease;
}

.direction-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 240ms ease;
}

.direction-card:hover {
  background: rgba(255, 255, 255, 0.025);
}

.direction-card:hover::after {
  right: 0;
}

.card-index {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.direction-card h3 {
  max-width: 460px;
  margin: 48px 0 16px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.08;
}

.direction-card p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

.brand-note {
  max-width: 820px;
  margin: 32px 0 0 auto;
  color: rgba(245, 241, 237, 0.52);
  font-size: 0.88rem;
  text-align: right;
}

.geography-page {
  position: relative;
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
  scroll-margin-top: 78px;
  color: var(--ink);
  background-color: #f5f1ed;
  background-image:
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.28), transparent 43%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(232, 226, 220, 0.06));
}

.geography-page-inner {
  padding-block: clamp(22px, 3.2vh, 34px);
}

.geography-heading {
  max-width: none;
}

.geography-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(6px, 1vh, 10px);
  color: #5f6264;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.geography-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: rgba(139, 106, 80, 0.78);
}

.geography-title {
  max-width: none;
  margin: 0;
  color: #8b6a50;
  font-family: "Prata", serif;
  font-size: clamp(2.15rem, 3vw, 2.7rem);
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: -0.024em;
  line-height: 1.1;
}

.geography-intro {
  max-width: 1120px;
  margin: clamp(10px, 1.8vh, 16px) 0 0;
  color: #4f5254;
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1vw, 0.97rem);
  font-weight: 400;
  line-height: 1.5;
}

.geography-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(16px, 2.8vh, 28px);
}

.geography-market {
  min-width: 0;
  padding: 0 clamp(18px, 2.1vw, 28px);
  border-left: 1px solid rgba(139, 106, 80, 0.18);
}

.geography-market:first-child {
  padding-left: 0;
  border-left: 0;
}

.geography-market:last-child {
  padding-right: 0;
}

.geography-market-label {
  margin: 0 0 7px;
  color: #5f6264;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.geography-market h3 {
  min-height: 2.48em;
  margin: 0 0 8px;
  color: #8b6a50;
  font-family: var(--sans);
  font-size: clamp(0.98rem, 1.2vw, 1.13rem);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.24;
}

.geography-market > p:not(.geography-market-label) {
  margin: 0;
  color: #4f5254;
  font-family: var(--sans);
  font-size: clamp(0.84rem, 0.94vw, 0.9rem);
  font-weight: 400;
  line-height: 1.48;
}

.geography-market .geography-market-secondary {
  margin-top: 10px;
  color: #5f6264;
  font-size: clamp(0.82rem, 0.9vw, 0.88rem);
  line-height: 1.48;
}

.geography-market .geography-market-secondary:empty {
  display: none;
}

.geography-closing {
  margin-top: clamp(14px, 2.1vh, 22px);
  padding-top: clamp(12px, 1.7vh, 18px);
  border-top: 1px solid rgba(139, 106, 80, 0.2);
}

.geography-closing p {
  margin: 0;
}

.geography-closing-main {
  max-width: 1080px;
  color: #8b6a50;
  font-family: "Prata", serif;
  font-size: clamp(1.04rem, 1.18vw, 1.17rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.34;
}

.geography-closing-secondary {
  max-width: 1040px;
  margin-top: 6px !important;
  color: #5f6264;
  font-family: var(--sans);
  font-size: clamp(0.84rem, 0.92vw, 0.9rem);
  font-weight: 400;
  line-height: 1.48;
}

body.motion-enabled .geography-reveal {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 840ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 840ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.motion-enabled .geography-page.is-visible .geography-reveal {
  opacity: 1;
  transform: translateY(0);
}

body.motion-enabled .geography-page.is-visible .geography-title {
  transition-delay: 140ms;
}

body.motion-enabled .geography-page.is-visible .geography-intro {
  transition-delay: 280ms;
}

body.motion-enabled .geography-page.is-visible .geography-market:nth-child(1) {
  transition-delay: 420ms;
}

body.motion-enabled .geography-page.is-visible .geography-market:nth-child(2) {
  transition-delay: 540ms;
}

body.motion-enabled .geography-page.is-visible .geography-market:nth-child(3) {
  transition-delay: 660ms;
}

body.motion-enabled .geography-page.is-visible .geography-closing {
  transition-delay: 820ms;
}

.contacts-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 78px;
  color: #f5f1ed;
  background: #2b2826;
}

.contacts-page::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -3%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 58% 28%, rgba(93, 70, 57, 0.1), transparent 55%),
    radial-gradient(ellipse at 18% 78%, rgba(245, 241, 237, 0.012), transparent 48%);
  opacity: 0.62;
  transform: scale(1);
  animation: contacts-breath 22s ease-in-out infinite alternate;
  animation-play-state: paused;
}

.contacts-page.is-in-view::before {
  animation-play-state: running;
}

.contacts-page-inner {
  padding-block: clamp(28px, 3.5vh, 40px) clamp(22px, 3vh, 34px);
}

.contacts-heading {
  max-width: 940px;
}

.contacts-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: #8b6a50;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.contacts-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: rgba(139, 106, 80, 0.86);
}

.contacts-title {
  max-width: 900px;
  margin: 0;
  color: #f5f1ed;
  font-family: "Prata", serif;
  font-size: clamp(2.35rem, 3.25vw, 3rem);
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.contacts-intro {
  max-width: 900px;
  margin: clamp(14px, 1.8vw, 20px) 0 0;
  color: rgba(245, 241, 237, 0.7);
  font-size: clamp(0.96rem, 1vw, 1.03rem);
  line-height: 1.55;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(44px, 5vw, 68px);
  margin-top: clamp(22px, 3vh, 32px);
}

.contacts-direct {
  min-width: 0;
}

.contacts-group-label {
  margin: 0;
  color: #8b6a50;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.contacts-email-block {
  padding-bottom: clamp(16px, 2.2vh, 20px);
  border-bottom: 1px solid rgba(245, 241, 237, 0.18);
}

.contacts-email-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 12px;
}

.contacts-email-grid p {
  min-width: 0;
  margin: 0;
}

.contacts-email-grid p > span {
  display: block;
  margin-bottom: 4px;
  color: rgba(245, 241, 237, 0.62);
  font-size: 0.82rem;
  line-height: 1.5;
}

.contacts-email-link {
  position: relative;
  display: inline-block;
  max-width: 100%;
  color: #8b6a50;
  font-size: clamp(0.96rem, 1.12vw, 1.08rem);
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: color 200ms ease;
}

.contacts-email-link::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: right 200ms ease;
}

.contacts-email-link:hover,
.contacts-email-link:focus-visible {
  color: #a48165;
}

.contacts-email-link:hover::after,
.contacts-email-link:focus-visible::after {
  right: 0;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-style: normal;
}

.contacts-location {
  padding: clamp(14px, 2vh, 19px) 0;
  border-bottom: 1px solid rgba(245, 241, 237, 0.18);
}

.contacts-location-note {
  margin: 4px 0 0;
  color: rgba(245, 241, 237, 0.52);
  font-size: 0.8rem;
  line-height: 1.42;
}

.contacts-phone {
  display: inline-block;
  margin-top: 7px;
  color: #f5f1ed;
  font-size: clamp(1.1rem, 1.25vw, 1.28rem);
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
  text-decoration: none;
  transition: color 200ms ease, opacity 200ms ease;
}

.contacts-phone:hover,
.contacts-phone:focus-visible {
  color: #a48165;
}

.contacts-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
}

.contacts-channels a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 241, 237, 0.68);
  font-size: 0.86rem;
  text-decoration: none;
  transition: color 200ms ease;
}

.contacts-channels svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
}

.contacts-arrow {
  display: inline-block;
  color: #8b6a50;
  transition: transform 200ms ease;
}

.contacts-channels a:hover,
.contacts-channels a:focus-visible {
  color: #a48165;
}

.contacts-channels a:hover .contacts-arrow,
.contacts-channels a:focus-visible .contacts-arrow,
.contacts-submit:hover .contacts-arrow,
.contacts-submit:focus-visible .contacts-arrow {
  transform: translateX(4px);
}

.contacts-form {
  min-width: 0;
  padding-left: clamp(32px, 3.5vw, 48px);
  border-left: 1px solid rgba(245, 241, 237, 0.18);
}

.contacts-form-title {
  margin: 0 0 16px;
  color: #f5f1ed;
  font-family: "Prata", serif;
  font-size: clamp(1.72rem, 2.2vw, 2.05rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.2;
}

.contacts-field {
  margin-top: 11px;
}

.contacts-field label {
  display: block;
  margin-bottom: 4px;
  color: rgba(245, 241, 237, 0.66);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.contacts-field input,
.contacts-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(245, 241, 237, 0.2);
  border-radius: 0;
  padding: 4px 0 6px;
  color: #f5f1ed;
  background: transparent;
  font: 400 1rem/1.5 var(--sans);
  outline: 0;
  transition: border-color 200ms ease;
}

.contacts-field textarea {
  min-height: clamp(72px, 10vh, 84px);
  resize: vertical;
}

.contacts-field input:focus,
.contacts-field textarea:focus {
  border-color: #8b6a50;
}

.contacts-form-actions {
  margin-top: 16px;
}

.contacts-submit {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid #8b6a50;
  border-radius: 0;
  padding: 10px 20px;
  color: #f5f1ed;
  background: #8b6a50;
  font: 600 0.76rem/1.35 var(--sans);
  letter-spacing: 0.075em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease;
}

.contacts-submit:hover,
.contacts-submit:focus-visible {
  border-color: #a48165;
  background: #a48165;
}

.contacts-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contacts-form-status {
  max-width: 460px;
  margin: 10px 0 0;
  color: #f5f1ed;
  font-size: 0.8rem;
  line-height: 1.45;
}

.contacts-form-status.is-error {
  color: rgba(245, 241, 237, 0.82);
}

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

.contacts-privacy {
  max-width: 460px;
  margin: 10px 0 0;
  color: rgba(245, 241, 237, 0.48);
  font-size: 0.76rem;
  line-height: 1.45;
}

body.motion-enabled .contacts-reveal {
  opacity: 0;
  transform: translateY(9px);
  transition:
    opacity 860ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.motion-enabled .contacts-page.is-visible .contacts-reveal,
body.motion-enabled.contacts-visible .site-footer.contacts-reveal {
  opacity: 1;
  transform: translateY(0);
}

body.motion-enabled .contacts-page.is-visible .contacts-title {
  transition-delay: 140ms;
}

body.motion-enabled .contacts-page.is-visible .contacts-intro {
  transition-delay: 280ms;
}

body.motion-enabled .contacts-page.is-visible .contacts-email-block {
  transition-delay: 420ms;
}

body.motion-enabled .contacts-page.is-visible .contacts-location:nth-child(1) {
  transition-delay: 540ms;
}

body.motion-enabled .contacts-page.is-visible .contacts-location:nth-child(2) {
  transition-delay: 640ms;
}

body.motion-enabled .contacts-page.is-visible .contacts-location:nth-child(3) {
  transition-delay: 740ms;
}

body.motion-enabled .contacts-page.is-visible .contacts-form-title {
  transition-delay: 520ms;
}

body.motion-enabled .contacts-page.is-visible .contacts-field:nth-of-type(1) {
  transition-delay: 620ms;
}

body.motion-enabled .contacts-page.is-visible .contacts-field:nth-of-type(2) {
  transition-delay: 690ms;
}

body.motion-enabled .contacts-page.is-visible .contacts-field:nth-of-type(3) {
  transition-delay: 760ms;
}

body.motion-enabled .contacts-page.is-visible .contacts-field:nth-of-type(4) {
  transition-delay: 830ms;
}

body.motion-enabled .contacts-page.is-visible .contacts-field:nth-of-type(5) {
  transition-delay: 900ms;
}

body.motion-enabled .contacts-page.is-visible .contacts-form-actions {
  transition-delay: 980ms;
}

body.motion-enabled.contacts-visible .site-footer.contacts-reveal {
  transition-delay: 1100ms;
}

.site-footer {
  border-top: 1px solid rgba(245, 241, 237, 0.16);
  color: rgba(245, 241, 237, 0.48);
  background: #2b2826;
}

.contacts-legal {
  min-height: 80px;
  display: grid;
  grid-template-columns: 1.35fr 2.3fr 0.72fr 0.9fr;
  align-items: center;
  gap: 8px 22px;
  padding-block: 10px;
  font-size: 0.68rem;
  line-height: 1.38;
}

.contacts-legal p {
  margin: 0;
}

.contacts-legal-name {
  color: #8b6a50;
  font-weight: 600;
}

.contacts-copyright {
  grid-column: 1 / -1;
  padding-top: 8px;
  border-top: 1px solid rgba(245, 241, 237, 0.1);
  text-align: center;
}

@keyframes contacts-breath {
  to {
    opacity: 0.78;
    transform: scale(1.012);
  }
}

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

@keyframes hero-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 700px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .brand {
    width: 116px;
  }

  .menu-toggle {
    justify-self: end;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(41, 41, 41, 0.18);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 18px 28px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(41, 41, 41, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(41, 41, 41, 0.08);
  }

  .language-switch {
    grid-column: 3;
    grid-row: 1;
    margin-right: 54px;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .hero {
    min-height: auto;
    background-position: 58% top;
    background-size: auto 760px;
  }

  .hero-t7-frame {
    width: var(--shell);
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 4px;
    padding-top: 68px;
  }

  .hero-t7-copy {
    max-width: 680px;
    padding: 24px 0 30px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 8.8vw, 4.25rem);
  }

  .hero-t7-logo {
    min-height: 330px;
    padding: 0 0 18px;
  }

  .hero-t7-logo img {
    width: min(78vw, 540px);
    max-width: 100%;
  }

  .hero-t7-directions {
    grid-column: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-t7-direction,
  .hero-t7-direction:first-child {
    min-height: 104px;
    padding: 22px 26px;
    border-left: 1px solid rgba(70, 75, 79, 0.14);
  }

  .hero-t7-direction:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-t7-direction:nth-child(n + 3) {
    border-top: 1px solid rgba(70, 75, 79, 0.14);
  }

  .about-page {
    min-height: auto;
  }

  .about-page-inner {
    padding-block: 88px;
  }

  .about-title {
    max-width: 720px;
    font-size: clamp(2.7rem, 7vw, 3.8rem);
  }

  .about-text {
    max-width: 720px;
  }

  .directions-page {
    min-height: auto;
  }

  .directions-page-inner {
    padding-block: 88px;
  }

  .directions-title {
    font-size: clamp(2.45rem, 6.5vw, 3.45rem);
  }

  .directions-grid {
    column-gap: 42px;
  }

  .directions-item {
    min-height: 212px;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading,
  .section-heading-wide {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .geography-page {
    min-height: auto;
  }

  .geography-page-inner {
    padding-block: 88px;
  }

  .geography-title {
    font-size: clamp(2.45rem, 6.5vw, 3.45rem);
  }

  .geography-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .geography-market,
  .geography-market:first-child,
  .geography-market:last-child {
    padding: 28px 0 32px;
    border-top: 1px solid rgba(139, 106, 80, 0.18);
    border-left: 0;
  }

  .geography-market:last-child {
    padding-bottom: 0;
  }

  .geography-closing {
    margin-top: 48px;
  }

  .contacts-page-inner {
    padding-block: 88px 82px;
  }

  .contacts-title {
    font-size: clamp(2.45rem, 6.5vw, 3.7rem);
  }

  .contacts-layout {
    grid-template-columns: 1fr;
    gap: 58px;
    margin-top: 60px;
  }

  .contacts-form {
    padding: 54px 0 0;
    border-top: 1px solid rgba(245, 241, 237, 0.18);
    border-left: 0;
  }

  .contacts-legal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 30px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    width: 102px;
    height: 50px;
  }

  .site-nav {
    inset-block-start: 70px;
  }

  .language-switch {
    margin-right: 48px;
    gap: 6px;
  }

  .language-button {
    font-size: 0.7rem;
  }

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

  .hero {
    padding-top: 70px;
    background-position: 55% top;
    background-size: auto 680px;
  }

  .hero-t7-frame {
    gap: 0;
    padding-top: 50px;
  }

  .hero-t7-copy {
    max-width: 100%;
    padding: 22px 0 28px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12.5vw, 3.65rem);
    line-height: 1.08;
  }

  .hero-lead {
    margin-top: 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .hero-t7-logo {
    min-height: 270px;
    padding-bottom: 18px;
  }

  .hero-t7-logo img {
    width: min(96%, 414px);
    max-width: 96%;
  }

  .hero-t7-directions {
    grid-template-columns: 1fr;
  }

  .hero-t7-direction,
  .hero-t7-direction:first-child,
  .hero-t7-direction:nth-child(odd) {
    min-height: 86px;
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(70, 75, 79, 0.14);
  }

  .hero-t7-direction:first-child {
    border-top: 0;
  }

  .about-page {
    scroll-margin-top: 70px;
  }

  .about-page-inner {
    padding-block: 72px;
  }

  .about-kicker {
    margin-bottom: 18px;
    font-size: 0.72rem;
  }

  .about-title {
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 1.16;
  }

  .about-text {
    margin-top: 28px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .about-text p + p {
    margin-top: 18px;
  }

  .directions-page {
    scroll-margin-top: 70px;
    background-position: 58% center;
  }

  .directions-page-inner {
    padding-block: 72px;
  }

  .directions-heading {
    margin-bottom: 34px;
  }

  .directions-kicker {
    margin-bottom: 16px;
    font-size: 0.72rem;
  }

  .directions-title {
    font-size: clamp(2.25rem, 10.5vw, 3rem);
    line-height: 1.16;
  }

  .directions-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .directions-item {
    min-height: auto;
    gap: 18px;
    padding: 26px 4px 30px 0;
  }

  .directions-item:hover {
    padding-left: 0;
  }

  .directions-item h3 {
    font-size: clamp(1.35rem, 6.5vw, 1.7rem);
  }

  .directions-item p {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .directions-arrow {
    font-size: 1.35rem;
  }

  .geography-page {
    scroll-margin-top: 70px;
  }

  .geography-page-inner {
    padding-block: 72px;
  }

  .geography-kicker {
    margin-bottom: 16px;
    font-size: 0.72rem;
  }

  .geography-title {
    font-size: clamp(2.2rem, 10.5vw, 2.9rem);
    line-height: 1.16;
  }

  .geography-intro {
    margin-top: 26px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .geography-grid {
    margin-top: 40px;
  }

  .geography-market,
  .geography-market:first-child,
  .geography-market:last-child {
    padding: 26px 0 30px;
  }

  .geography-market h3 {
    font-size: 1.2rem;
  }

  .geography-market > p:not(.geography-market-label),
  .geography-market .geography-market-secondary {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .geography-closing {
    margin-top: 40px;
    padding-top: 28px;
  }

  .geography-closing-main {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .geography-closing-secondary {
    font-size: 0.94rem;
  }

  .section h2 {
    font-size: clamp(2.55rem, 13vw, 3.6rem);
  }

  .section-number {
    margin-bottom: 34px;
  }

  .direction-card {
    min-height: 250px;
    padding: 34px 28px 38px;
  }

  .direction-card h3 {
    margin-top: 38px;
  }

  .brand-note {
    text-align: left;
  }

  .contacts-page {
    scroll-margin-top: 70px;
  }

  .contacts-page-inner {
    padding-block: 72px 68px;
  }

  .contacts-kicker {
    margin-bottom: 16px;
    font-size: 0.72rem;
  }

  .contacts-title {
    font-size: clamp(2.2rem, 10.5vw, 3rem);
    line-height: 1.16;
  }

  .contacts-intro {
    margin-top: 25px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .contacts-layout {
    gap: 48px;
    margin-top: 48px;
  }

  .contacts-email-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contacts-location {
    padding-block: 27px 29px;
  }

  .contacts-channels {
    gap: 16px;
  }

  .contacts-channels a {
    min-height: 46px;
    padding-right: 6px;
  }

  .contacts-form {
    padding-top: 46px;
  }

  .contacts-form-title {
    font-size: 1.9rem;
  }

  .contacts-submit {
    width: 100%;
  }

  .contacts-legal {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 30px;
  }

  .contacts-copyright {
    margin-top: 8px !important;
    padding-top: 20px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.motion-enabled .geography-reveal,
  body.motion-enabled .geography-page.is-visible .geography-reveal,
  body.motion-enabled .contacts-reveal,
  body.motion-enabled .contacts-page.is-visible .contacts-reveal,
  body.motion-enabled.contacts-visible .site-footer.contacts-reveal {
    opacity: 1;
    transform: none;
    transition: none !important;
  }

  .contacts-page::before,
  .contacts-page.is-in-view::before {
    animation: none !important;
    opacity: 0.68;
    transform: none;
  }

  .contacts-arrow {
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
