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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "EB Garamond", Georgia, serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

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

.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  min-height: 100vh;
  background: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__links a {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #aaa;
  transition: color .18s;
}

.nav__links a:hover, .nav__links a.active {
  color: #1a1a1a;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__flags {
  display: flex;
  gap: 3px;
}

.nav__flag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: .04em;
  transition: all 0.2s ease;
}

.nav__flag svg {
  width: 16px;
  height: 11px;
  border-radius: 1px;
  flex-shrink: 0;
}

.nav__flag:hover, .nav__flag--active {
  border-color: #e5e5e5;
  color: #1a1a1a;
  background: #fafafa;
}

.nav__cta {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 18px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}

.nav__cta:hover {
  background: #333;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #1a1a1a;
}

@media (max-width: 900px) {
  .nav {
    padding: 0 24px;
  }
  .nav__links {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e5e5e5;
  min-height: 580px;
}

.hero__left {
  padding: 72px 48px 72px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #e5e5e5;
}

.hero__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__kicker {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #aaa;
}

.hero__h1 {
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.06;
}

.hero__h1 em {
  font-style: italic;
  color: #666;
}

.hero__p {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  max-width: 320px;
}

.hero__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero__foot {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 11px;
  color: #ccc;
  letter-spacing: .04em;
}

.hero__right {
  position: relative;
  overflow: hidden;
  background: #f5f4f0;
}

.hero__right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e5e5e5;
  padding: 11px 16px;
}

.hero__card-label {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #aaa;
  margin-bottom: 3px;
}

.hero__card-value {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1a;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__right {
    min-height: 340px;
  }
  .hero__right img {
    position: relative;
    width: 100%;
    height: 340px;
  }
  .hero__left {
    padding: 48px 24px;
  }
}

.btn {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--dark {
  background: #1a1a1a;
  color: #fff;
  border: none;
}

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

.btn--line {
  background: transparent;
  color: #666;
  border: 1px solid #e5e5e5;
}

.btn--line:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #e5e5e5;
}

.band__item {
  padding: 20px 24px;
  border-right: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  transition: background .18s;
}

.band__item:last-child {
  border-right: none;
}

.band__item:hover {
  background: #f8f8f8;
}

.band__icon {
  width: 32px;
  height: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.band__icon svg {
  width: 13px;
  height: 13px;
  stroke: #ccc;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.band__item:hover .band__icon {
  border-color: #1a1a1a;
}

.band__item:hover .band__icon svg {
  stroke: #1a1a1a;
}

.band__label {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.band__sub {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 10px;
  color: #aaa;
  margin-top: 1px;
}

@media (max-width: 700px) {
  .band {
    grid-template-columns: 1fr 1fr;
  }
  .band .band__item:nth-child(2) {
    border-right: none;
  }
  .band .band__item:nth-child(3) {
    border-top: 1px solid #e5e5e5;
  }
}

.about {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #e5e5e5;
}

.about__left {
  padding: 56px 32px 56px 40px;
  border-right: 1px solid #e5e5e5;
}

.about__kicker {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 28px;
}

.about__stat {
  margin-bottom: 24px;
}

.about__num {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.about__lbl {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #ccc;
  margin-top: 3px;
}

.about__right {
  padding: 56px 40px 56px 40px;
}

.about__right h2 {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 18px;
}

.about__right p {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 12px;
}

.about__langs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.about__lang {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 10px;
  letter-spacing: .06em;
  padding: 5px 11px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  color: #555;
}

.about__lang svg {
  width: 16px;
  height: 11px;
  border-radius: 1px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .about {
    grid-template-columns: 1fr;
  }
  .about__left {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 40px 24px;
  }
  .about__right {
    padding: 40px 24px;
  }
}

.services {
  border-bottom: 1px solid #e5e5e5;
}

.services__head {
  padding: 40px 40px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #e5e5e5;
}

.services__head-kicker {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 7px;
}

.services__head h2 {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.services__card {
  padding: 36px 36px 32px 40px;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
  transition: background .18s;
}

.services__card:nth-child(2n) {
  border-right: none;
}

.services__card:nth-child(3), .services__card:nth-child(4) {
  border-bottom: none;
}

.services__card:hover {
  background: #f8f8f8;
}

.services__card:hover .services__num {
  color: #1a1a1a;
}

.services__card:hover .services__arrow {
  color: #1a1a1a;
}

.services__num {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  color: #ebebeb;
  line-height: 1;
  margin-bottom: 12px;
  transition: color .2s;
}

.services__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
}

.services__desc {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 12px;
  color: #999;
  line-height: 1.75;
}

.services__arrow {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 13px;
  color: #ccc;
  margin-top: 20px;
  display: block;
  transition: color .2s;
}

@media (max-width: 700px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__card {
    border-right: none;
  }
  .services__card:last-child {
    border-bottom: none;
  }
  .services__card:nth-child(3) {
    border-bottom: 1px solid #e5e5e5;
  }
  .services__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact__left {
  padding: 56px 40px;
  border-right: 1px solid #e5e5e5;
}

.contact__left-kicker {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 16px;
}

.contact__left h2 {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.25;
}

.contact__left p {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.contact__row svg {
  width: 13px;
  height: 13px;
  stroke: #ccc;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.contact__row a, .contact__row span {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 13px;
  color: #666;
}

.contact__row a:hover {
  color: #1a1a1a;
}

.contact__right {
  padding: 56px 40px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__hours {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 18px 20px;
}

.contact__hours-label {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #aaa;
  margin-bottom: 7px;
}

.contact__hours-value {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 15px;
}

.contact__hours-sub {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 12px;
  color: #aaa;
  margin-top: 2px;
}

.contact__cta {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.contact__cta:hover {
  background: #333;
}

.contact__social {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact__social-label {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #aaa;
  margin-right: 4px;
}

.contact__social a {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 11px;
  color: #666;
  padding: 5px 11px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.contact__social a:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

@media (max-width: 700px) {
  .contact {
    grid-template-columns: 1fr;
  }
  .contact__left {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 40px 24px;
  }
  .contact__right {
    padding: 40px 24px;
  }
}

.footer {
  padding: 22px 40px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 11px;
  color: #ccc;
}

.footer__links {
  display: flex;
  gap: 18px;
}

.footer__links a {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 11px;
  color: #ccc;
  transition: color .18s;
}

.footer__links a:hover {
  color: #1a1a1a;
}

body {
  background: #f0efe9;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp .5s ease forwards;
}

.d1 {
  animation-delay: .08s;
}

.d2 {
  animation-delay: .17s;
}

.d3 {
  animation-delay: .26s;
}

.d4 {
  animation-delay: .35s;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease,transform .5s ease;
}

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