@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("public/fonts/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("public/fonts/UjlFhCnUjxhNfep4oYBPqnEssyo.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("public/fonts/yDtI2UI8XcEg1W2je9XPN3Noo.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("public/fonts/syRNPWzAMIrcJ3wIlPIP43KjQs.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("public/fonts/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2") format("woff2");
}

:root {
  --black: #000000;
  --white: #ffffff;
  --light: #f1f1f1;
  --yellow: #ffd900;
  --cream: #f1dfc2;
  --gray: #797e81;
  --muted: #828487;
  --dark: #0e0f10;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.desktop-only,
.desktop-info {
  display: none;
}

.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 88px;
  padding: 30px 31px;
  color: var(--white);
}

.brand {
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand span {
  color: var(--yellow);
}

.menu-button {
  position: relative;
  width: 27px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 0;
  display: block;
  width: 27px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
}

.menu-button span:first-child {
  top: 3px;
}

.menu-button span:last-child {
  top: 12px;
}

.mobile-menu-button {
  position: absolute;
  top: 30px;
  right: 31px;
  z-index: 24;
  display: none;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 59;
  background: rgba(9, 8, 7, 0.28);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.is-visible {
  opacity: 1;
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(100%, 390px);
  height: 100svh;
  padding: 18px;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22, 0.8, 0.28, 1);
  pointer-events: none;
}

.site-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.drawer-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 24px;
  padding: 22px 20px 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(248, 245, 240, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: -22px 0 50px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.drawer-kicker,
.drawer-section-title {
  margin: 0;
  color: #65615a;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-close {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.drawer-close span {
  position: absolute;
  top: 16px;
  left: 9px;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: #1e1b18;
}

.drawer-close span:first-child {
  transform: rotate(45deg);
}

.drawer-close span:last-child {
  transform: rotate(-45deg);
}

.drawer-section {
  display: grid;
  gap: 14px;
}

.account-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--black);
  text-align: left;
}

.account-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ebe4db;
}

.account-icon svg {
  width: 20px;
  height: 20px;
  fill: #29231d;
}

.account-copy {
  display: grid;
  gap: 4px;
}

.account-copy strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.account-copy small {
  color: #66615d;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
}

.auth-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.auth-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: #efeae4;
}

.auth-tab {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5d5752;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.auth-tab.is-active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.auth-form {
  display: none;
  gap: 12px;
}

.auth-form.is-active {
  display: grid;
}

.auth-form label {
  display: grid;
  gap: 7px;
}

.auth-form label span {
  color: #4f4a44;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.auth-form input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  font-size: 13px;
  outline: none;
}

.auth-form input:focus {
  border-color: rgba(0, 0, 0, 0.22);
}

.auth-submit {
  min-height: 44px;
  margin-top: 4px;
  border: 0;
  border-radius: 8px;
  background: #211b17;
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.drawer-links {
  display: grid;
  gap: 8px;
}

.drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: #201c18;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.drawer-links a::after {
  color: #8a847d;
  font-size: 16px;
  content: "+";
}

body.drawer-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 844px;
  overflow: hidden;
  background: #1b1715;
  color: var(--white);
}

.hero-image,
.site-footer > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: 48% 45%;
}

.orvelia-layer,
.orvelia-mobile-bg {
  display: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.28) 54%, rgba(0, 0, 0, 0.48));
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 844px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 31px 65px;
}

.hero-small {
  position: absolute;
  top: 334px;
  left: 31px;
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.06em;
}

.hero-services {
  position: absolute;
  top: 444px;
  left: 31px;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 355px;
  margin: 0;
  font-size: clamp(55px, 16vw, 70px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.075em;
}

.story-page {
  position: relative;
  min-height: 844px;
  overflow: hidden;
  border: 4px solid var(--white);
  border-radius: 30px;
  background: #f2dfc7;
  color: #262628;
}

.story-content {
  position: relative;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  padding: 50px 38px 52px;
}

.story-kicker {
  margin: 0;
  color: #29292b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.11em;
}

.story-kicker::after {
  display: block;
  width: 45px;
  height: 2px;
  margin-top: 18px;
  background: currentColor;
  content: "";
}

.story-page h2 {
  display: grid;
  gap: 0;
  max-width: 340px;
  margin: 34px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 15vw, 74px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.story-body {
  max-width: 320px;
  margin: 46px 0 0;
  color: #2b2b2d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: 0;
}

.story-note {
  display: grid;
  grid-template-columns: 1px 1fr;
  gap: 20px;
  max-width: 355px;
  margin: auto 0 0 10px;
  color: #262628;
  font-family: Georgia, "Times New Roman", serif;
}

.story-note::before {
  width: 1px;
  min-height: 72px;
  background: rgba(38, 38, 40, 0.58);
  content: "";
}

.story-note::after {
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  margin-top: 34px;
  background: rgba(38, 38, 40, 0.58);
  content: "";
}

.story-note p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.section-light {
  background: var(--light);
}

.stats {
  padding: 95px 31px 0;
}

.stats-intro {
  max-width: 352px;
  margin-left: auto;
}

.year {
  display: block;
  margin-bottom: 42px;
  color: #8a8c8e;
  font-size: 12px;
  line-height: 1;
}

.stats-intro p {
  margin: 0;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.stat-grid {
  display: grid;
  gap: 42px;
  margin-top: 58px;
  padding-left: min(44vw, 172px);
}

.stat-card {
  display: grid;
  gap: 10px;
}

.stat-card strong {
  display: block;
  font-size: 70px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.stat-card strong.count-with-plus {
  display: inline-flex;
  align-items: flex-start;
  gap: 3px;
  font-size: 70px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.count-with-plus span {
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.count-plus {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  animation: count-plus-fade 0.38s ease 1.45s forwards;
}

.count-suffix {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.count-suffix.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes count-plus-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-card span {
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
}

.stat-card strong.count-with-plus > span {
  font-size: 70px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.stat-card p,
.project-card p,
.process-item p,
.split-head p,
.team-copy,
.people-count p,
.clients p,
.create-text,
.footer-inner,
.all-projects,
.cta-line small {
  color: #55595c;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.avatars,
.thumb-row {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.avatars img,
.thumb-row img {
  width: 33px;
  height: 33px;
  margin-right: -9px;
  border: 2px solid var(--light);
  border-radius: 50%;
  object-fit: cover;
}

.thumb-row img {
  width: 46px;
  height: 30px;
  border-radius: 4px;
}

.cta-line {
  display: grid;
  grid-template-columns: 1fr 36px;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 32px;
  padding: 20px 0 24px;
  border-top: 1px solid #d5d8d9;
  border-bottom: 1px solid #d5d8d9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.cta-line small {
  grid-column: 1 / 3;
}

.cta-line i,
.note i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-radius: 50%;
  background: #09c300;
}

.arrow-circle,
.ask-row a span,
.all-projects span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.whatsapp-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.whatsapp-icon {
  background: transparent;
}

.whatsapp-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.projects {
  padding: 99px 31px 86px;
}

.section-head {
  border-top: 3px solid var(--black);
  padding-top: 27px;
}

.section-head span,
.split-head span,
.dark-top span {
  display: block;
  margin-bottom: 50px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
}

.section-head h2,
.split-head h2,
.dark-top h2,
.message h2,
.create .section-head h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.head-arrows {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.head-arrows button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: #7f8386;
  font-size: 22px;
  line-height: 1;
}

.project-grid {
  display: grid;
  gap: 60px;
  margin-top: 62px;
}

.project-card-link {
  display: block;
}

.project-card h3 {
  margin: 20px 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.lounge-card .image-frame {
  border-radius: 26px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #d6dbdc;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame.tall {
  height: 430px;
}

.image-frame.airy {
  height: 305px;
}

.corner-mark {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.16em;
  opacity: 0.88;
}

.all-projects {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
}

.all-projects span {
  width: 31px;
  height: 31px;
  background: var(--white);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.process {
  padding: 0;
  background: #0d0d0d;
  color: var(--white);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.process-page {
  min-height: 100svh;
  padding: 72px 24px 84px;
  background:
    radial-gradient(circle at 86% 7%, rgba(255, 255, 255, 0.045), transparent 32%),
    #0d0d0d;
}

.process-page + .process-page {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.process-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.process-kicker {
  display: block;
  margin-bottom: 26px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.process-subtext {
  max-width: 720px;
  margin: 0 0 44px;
  color: #a6a8ac;
  font-size: clamp(18px, 5vw, 25px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.process-heading {
  margin: 0 0 58px;
  color: var(--white);
  font-size: clamp(54px, 15vw, 104px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.process-stack {
  display: grid;
  gap: 72px;
}

.process-number {
  display: block;
  margin-bottom: 20px;
  color: #878b91;
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.process-image-card {
  overflow: hidden;
  aspect-ratio: 16 / 7;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: #171717;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.process-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step h3 {
  margin: 28px 0 15px;
  color: var(--white);
  font-size: clamp(34px, 9vw, 58px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.process-step p {
  max-width: 820px;
  margin: 0;
  color: #a6a8ac;
  font-size: clamp(18px, 4.7vw, 25px);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: -0.04em;
}

@media (min-width: 810px) {
  .process-page {
    padding: 96px 42px 112px;
  }

  .process-stack {
    gap: 90px;
  }

  .process-image-card {
    border-radius: 14px;
  }
}

@media (min-width: 1200px) {
  .process-page {
    padding-right: 64px;
    padding-left: 64px;
  }
}

.team {
  padding: 73px 31px 82px;
}

.split-head {
  display: grid;
  gap: 50px;
  border-top: 0;
}

.split-head span {
  margin-bottom: 22px;
}

.team-layout {
  margin-top: 48px;
}

.team-copy {
  max-width: 315px;
  margin: 0 0 28px;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.member-card,
.people-count {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.member-card img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.member-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.66));
}

.member-card h3,
.member-card p,
.member-card strong {
  position: absolute;
  z-index: 1;
  left: 17px;
  color: var(--white);
}

.member-card h3 {
  bottom: 35px;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.member-card p {
  bottom: 19px;
  margin: 0;
  font-size: 10px;
}

.member-card.wide {
  grid-column: span 2;
  min-height: 218px;
}

.member-card.wide strong {
  right: 25px;
  bottom: 46px;
  left: auto;
  width: 135px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.055em;
}

.people-count {
  display: grid;
  place-items: center;
  min-height: 143px;
  border: 1px dashed #d6dbdc;
}

.people-count strong {
  font-size: 58px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.people-count strong span {
  font-size: 34px;
}

.special-collection {
  padding: 0;
  background: #f4f4f4;
  color: var(--black);
}

.special-inner {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 920 / 1816;
  overflow: hidden;
  background: #f4f4f4;
}

.special-title {
  position: absolute;
  top: 4.55%;
  left: 6.52%;
  margin: 0;
  color: var(--black);
  font-size: clamp(48px, 11.3vw, 104px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.special-copy {
  position: absolute;
  top: 18.05%;
  left: 6.52%;
  margin: 0;
  color: var(--black);
  font-size: clamp(18px, 4.12vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.06em;
}

.special-grid {
  position: absolute;
  inset: 0;
}

.special-card {
  position: relative;
  position: absolute;
  overflow: hidden;
  border-radius: clamp(10px, 1.52vw, 14px);
  background: #d8d2c8;
}

.special-card-wide {
  top: 30.45%;
  left: 3.59%;
  width: 92.83%;
  height: 29.24%;
}

.special-card:not(.special-card-wide) {
  top: 61.2%;
  width: 44.35%;
  height: 29.96%;
}

.special-card:nth-child(2) {
  left: 3.59%;
}

.special-card:nth-child(3) {
  right: 3.59%;
}

.special-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-card-wide img {
  object-position: center 52%;
}

.special-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.4));
}

.special-card-copy {
  position: absolute;
  right: 7%;
  bottom: 5.8%;
  left: 7%;
  z-index: 1;
  color: var(--white);
}

.special-card-wide .special-card-copy {
  left: 3.35%;
}

.special-card h3 {
  margin: 0 0 clamp(5px, 1vw, 9px);
  font-size: clamp(15px, 3.55vw, 33px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
}

.special-card-wide h3 {
  font-size: clamp(16px, 3.55vw, 33px);
}

.special-card p {
  margin: 0;
  color: var(--white);
  font-size: clamp(12px, 2.6vw, 24px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.faq {
  padding: 80px 31px 0;
}

.faq .section-head {
  padding-bottom: 54px;
}

.faq-list {
  display: grid;
}

.faq-item:last-child {
  border-bottom: 1px solid #d6dbdc;
}

.faq-list button {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 18px;
  align-items: center;
  min-height: 88px;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid #d6dbdc;
  background: transparent;
  color: var(--black);
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.faq-plus {
  justify-self: end;
  font-size: 24px;
  font-weight: 400;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.34s ease, opacity 0.24s ease, padding-bottom 0.34s ease;
}

.faq-list button.open + .faq-answer {
  max-height: 320px;
  padding-bottom: 24px;
  opacity: 1;
}

.faq-answer p {
  max-width: 440px;
  margin: 0;
  color: #55595c;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.ask-row {
  display: grid;
  gap: 8px;
  padding: 31px 0 37px;
}

.ask-row small {
  color: #8d9092;
  font-size: 11px;
}

.ask-row a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.ask-row a .whatsapp-icon {
  width: 42px;
  height: 42px;
  background: transparent;
}

.ask-row a .whatsapp-icon img {
  width: 42px;
  height: 42px;
}

.discount-marquee {
  overflow: hidden;
  background: var(--cream);
  color: var(--black);
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.marquee-track span {
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
}

.mood-cta {
  position: relative;
  min-height: 735px;
  overflow: hidden;
  color: var(--white);
  background: #211b17;
}

.mood-copy {
  position: absolute;
  right: 31px;
  bottom: 54px;
  left: 31px;
}

.mood-copy p {
  margin: 0 0 35px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.mood-copy h2 {
  max-width: 360px;
  margin: 0 0 46px;
  font-size: 53px;
  font-weight: 700;
  line-height: 0.89;
  letter-spacing: -0.075em;
}

.clients {
  padding: 55px 31px 78px;
}

.testimonial {
  display: grid;
  gap: 47px;
  margin-top: 45px;
}

.client-id img {
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.client-id h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.message > span {
  display: block;
  color: #e0e2e3;
  font-size: 88px;
  font-weight: 600;
  line-height: 0.55;
}

.message h2 {
  margin-bottom: 24px;
}

.message p {
  max-width: 330px;
  margin: 0;
  color: #62666a;
  font-size: 15px;
  line-height: 1.2;
}

.advantages {
  padding: 79px 31px 75px;
}

.adv-grid {
  display: grid;
  gap: 25px;
  margin-top: 51px;
}

.logo-card,
.adv-card,
.launch-card,
.detail-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.logo-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 170px;
  padding: 24px;
  text-align: center;
}

.logo-card b {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.logo-card i {
  color: var(--yellow);
  font-style: normal;
}

.logo-card span {
  color: var(--muted);
  font-size: 10px;
}

.adv-card,
.detail-card {
  position: relative;
  min-height: 196px;
}

.adv-card img,
.detail-card img {
  width: 100%;
  height: 100%;
  min-height: 196px;
  object-fit: cover;
}

.adv-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.45));
}

.adv-card p {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-align: right;
}

.launch-card {
  display: grid;
  min-height: 285px;
  padding: 28px 30px;
  background: linear-gradient(180deg, #a9856c, #0b2421);
  color: var(--white);
}

.launch-card strong {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 58px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.launch-card strong span {
  max-width: 92px;
  padding-top: 7px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.paper-row {
  display: flex;
  align-items: center;
  margin: 30px 0 24px;
}

.paper-row img {
  width: 88px;
  height: 110px;
  margin-right: -22px;
  border-radius: 3px;
  object-fit: cover;
  transform: rotate(-3deg);
}

.paper-row img:nth-child(2) {
  transform: rotate(4deg);
}

.paper-row img:nth-child(3) {
  transform: rotate(-9deg);
}

.launch-card p,
.detail-card p {
  margin: auto 0 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.detail-card {
  display: grid;
  gap: 25px;
  padding: 26px;
}

.detail-card p {
  margin: 0;
  color: var(--black);
}

.detail-card img {
  min-height: 115px;
  border-radius: 6px;
}

.create {
  padding: 75px 31px 88px;
}

.create-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
  align-items: center;
}

.create-grid img {
  width: 100%;
  min-height: 112px;
  border-radius: 8px;
  object-fit: cover;
}

.create-text {
  margin: 0;
  color: #44484b;
  font-size: 13px;
  line-height: 1.18;
}

.final-line {
  grid-column: span 2;
  padding: 70px 0 0;
  color: var(--black);
  font-size: 19px;
  font-weight: 700;
}

.site-footer {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: #111;
  color: var(--white);
}

.site-footer > img {
  object-position: center top;
}

.footer-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 820px;
  padding: 56px 31px 48px;
  color: var(--white);
}

.footer-brand {
  align-self: start;
}

.footer-slogan {
  max-width: 190px;
  margin: 130px 0 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.footer-nav {
  display: grid;
  gap: 8px;
  margin-top: 48px;
  font-size: 29px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.footer-phone {
  margin-top: 95px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
}

.footer-mail {
  margin-top: 22px;
  max-width: 100%;
  font-size: clamp(24px, 8.4vw, 36px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.075em;
  overflow-wrap: anywhere;
}

address {
  margin-top: 26px;
  color: var(--white);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.72s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 809.98px) {
  .site-nav {
    display: none;
  }

  .mobile-menu-button {
    display: block;
    top: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .mobile-menu-button span {
    display: none;
  }

  .mobile-menu-button span:first-child {
    top: 18px;
  }

  .mobile-menu-button span:last-child {
    top: 27px;
  }

  .hero {
    width: 100%;
    height: calc(100vw * 1844 / 853);
    min-height: 0;
    background: #6d5b48;
  }

  .orvelia-mobile-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-image,
  .hero-shade,
  .hero-copy {
    display: none;
  }

  .orvelia-layer {
    display: none;
  }

  .orvelia-layer img {
    position: absolute;
    max-width: none;
    transform-origin: center;
    filter: drop-shadow(0 16px 18px rgba(31, 20, 11, 0.22));
  }

  .orvelia-painting {
    top: 22.55%;
    left: 21.35%;
    width: 35.2%;
  }

  .orvelia-chair {
    top: 43.5%;
    right: -1.6%;
    width: 35.6%;
  }

  .orvelia-table {
    top: 60.3%;
    left: -6.4%;
    width: 78%;
  }

  .side-dot {
    display: none;
  }

  .site-drawer {
    width: min(100%, 360px);
    padding: 12px;
  }

  .drawer-inner {
    padding: 18px 16px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 810px) {
  body {
    background: var(--light);
  }

  .desktop-only,
  .desktop-info {
    display: block;
  }

  .site-nav {
    height: 130px;
    padding: 40px 42px 30px;
    gap: 72px;
    align-items: flex-start;
  }

  .brand {
    min-width: 230px;
  }

  .desktop-info {
    width: 205px;
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.22;
    opacity: 0.96;
  }

  .desktop-info p {
    margin: 0;
  }

  .contact-line {
    display: grid;
    gap: 5px;
    width: 185px;
  }

  .hello {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 133px;
    height: 39px;
    padding: 0 4px 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 22px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
  }

  .arrow-dot {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    font-size: 18px;
  }

  .menu-button {
    margin-left: auto;
  }

  .hero {
    min-height: 900px;
  }

  .hero-copy {
    min-height: 900px;
    padding: 0 42px 88px;
  }

  .hero-image {
    object-position: center center;
  }

  .hero-award {
    position: absolute;
    top: 308px;
    left: 292px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
  }

  .hero-award span {
    font-size: 11px;
    font-weight: 600;
  }

  .hero-award img {
    width: 126px;
    height: auto;
  }

  .hero-small {
    top: 430px;
    left: 298px;
    font-size: 16px;
    line-height: 16px;
  }

  .hero-services {
    top: 330px;
    left: auto;
    right: 420px;
    font-size: 12px;
    line-height: 12px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(80px, 7.2vw, 112px);
    line-height: 0.86;
    text-align: left;
  }

  .story-page {
    min-height: 980px;
    border-radius: 34px;
  }

  .story-content {
    padding: 92px 84px 76px;
  }

  .story-kicker {
    font-size: 20px;
  }

  .story-kicker::after {
    width: 90px;
    margin-top: 24px;
  }

  .story-page h2 {
    max-width: 620px;
    margin-top: 48px;
    font-size: clamp(88px, 7.7vw, 118px);
  }

  .story-body {
    max-width: 470px;
    margin-top: 54px;
    font-size: 23px;
    line-height: 1.62;
  }

  .story-note {
    max-width: 780px;
    margin-left: 24px;
    gap: 34px;
  }

  .story-note::before {
    min-height: 132px;
  }

  .story-note p {
    font-size: 33px;
    line-height: 1.22;
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 110px;
    padding: 88px 42px 70px;
  }

  .stats-intro {
    grid-column: 2;
    max-width: 600px;
    margin-left: 0;
  }

  .stats-intro p {
    font-size: 24px;
    line-height: 1.08;
  }

  .stat-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 58px;
    margin-top: 62px;
    padding-left: 0;
  }

  .stat-card strong {
    font-size: 70px;
  }

  .cta-line {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto auto;
    margin-top: 50px;
    padding: 20px 0 0;
    border-bottom: 0;
  }

  .cta-line small {
    grid-column: auto;
  }

  .projects {
    padding: 92px 42px 85px;
  }

  .section-head {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    align-items: start;
    gap: 70px;
    padding-top: 28px;
  }

  .section-head span,
  .split-head span,
  .dark-top span {
    margin-bottom: 0;
  }

  .section-head h2,
  .split-head h2,
  .dark-top h2 {
    font-size: 54px;
  }

  .head-arrows {
    margin-top: 0;
  }

  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 66px;
  }

  .lounge-card {
    grid-column: 3;
  }

  .image-frame.tall,
  .image-frame.airy {
    height: 330px;
  }

  .all-projects {
    margin-left: calc(66.66% + 20px);
  }

  .process {
    padding: 78px 42px 92px;
  }

  .dark-top {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 58px;
    align-items: end;
    margin-bottom: 84px;
  }

  .dark-top p {
    margin: 0;
  }

  .dark-top h2 {
    font-size: 68px;
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
  }

  .process-item img {
    height: 92px;
  }

  .team {
    padding: 82px 42px 88px;
  }

  .split-head {
    grid-template-columns: 1fr 2fr;
    align-items: end;
    border-top: 0;
  }

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

  .team-copy {
    margin-top: 58px;
    font-size: 20px;
  }

  .team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .member-card.wide {
    grid-column: span 2;
  }

  .faq {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px;
    padding: 86px 42px 0;
  }

  .faq .section-head {
    display: block;
    height: min-content;
  }

  .faq .section-head h2 {
    margin-top: 62px;
  }

  .faq-list {
    margin-top: 66px;
  }

  .ask-row {
    grid-column: 2;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .discount-marquee {
    margin-top: 0;
  }

  .marquee-track span {
    padding: 18px 62px;
  }

  .mood-cta {
    min-height: 720px;
  }

  .mood-copy {
    right: 42px;
    bottom: 82px;
    left: 42px;
  }

  .mood-copy p {
    margin-left: 52%;
    font-size: 20px;
  }

  .mood-copy h2 {
    max-width: 850px;
    font-size: clamp(80px, 7vw, 112px);
  }

  .clients {
    padding: 68px 42px 90px;
  }

  .testimonial {
    grid-template-columns: 1fr 2fr;
    align-items: start;
    margin-top: 60px;
  }

  .message p {
    max-width: 720px;
    font-size: 18px;
  }

  .advantages {
    padding: 86px 42px 90px;
  }

  .adv-grid {
    grid-template-columns: 1.2fr 1.6fr 1.2fr;
    grid-auto-rows: 220px;
    gap: 25px;
  }

  .logo-card {
    min-height: 220px;
  }

  .adv-card,
  .detail-card {
    min-height: 220px;
  }

  .launch-card {
    grid-row: span 2;
  }

  .detail-card {
    grid-column: span 2;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
  }

  .create {
    padding: 88px 42px 105px;
  }

  .create-grid {
    grid-template-columns: 1.2fr 1fr 1.1fr 1fr;
    gap: 24px;
  }

  .create-grid img {
    min-height: 150px;
  }

  .create-text {
    font-size: 16px;
  }

  .final-line {
    grid-column: 1 / 3;
    font-size: 24px;
  }

  .site-footer,
  .footer-inner {
    min-height: 760px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    align-content: start;
    padding: 60px 42px 45px;
  }

  .footer-slogan {
    grid-column: 1;
    margin-top: 95px;
  }

  .footer-nav {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 178px;
  }

  .footer-phone {
    grid-column: 2;
    margin-top: 52px;
    font-size: 34px;
  }

  .footer-mail {
    grid-column: 1 / 4;
    margin-top: 95px;
    font-size: clamp(42px, 5vw, 70px);
  }

  address {
    grid-column: 3;
    grid-row: 4;
    align-self: end;
  }

}

@media (max-width: 380px) {
  .story-content,
  .stats,
  .projects,
  .faq,
  .mood-copy,
  .footer-inner {
    padding-right: 24px;
    padding-left: 24px;
  }

  .section-head h2,
  .split-head h2,
  .dark-top h2,
  .message h2,
  .create .section-head h2 {
    font-size: 38px;
  }

  .stats-intro p {
    font-size: 24px;
  }

  .story-page h2 {
    font-size: 50px;
  }

  .story-body {
    font-size: 15px;
  }

  .story-note p {
    font-size: 16px;
  }

  .footer-nav {
    font-size: 25px;
  }
}

@media (min-width: 1200px) {
  .site-nav {
    padding-right: 42px;
  }

  .hero-copy {
    padding-bottom: 72px;
  }

  .hero h1 {
    width: 930px;
  }

  .projects,
  .process,
  .team,
  .faq,
  .clients,
  .advantages,
  .create,
  .stats {
    padding-right: 64px;
    padding-left: 64px;
  }
}
