@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #f97316;
  --black: #171717;
  --muted: #737373;
  --light-muted: #a3a3a3;
  --soft: #fafafa;
  --line: rgba(0, 0, 0, 0.06);
  --header-anchor-offset: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--black);
  background: #fff;
  line-height: 1.4;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
  background: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  transform: translateY(-100%);
  animation: header-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 24px 20px;
}

.site-header.scrolled .header-shell {
  padding-top: 16px;
  padding-bottom: 16px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
}

.header-left {
  gap: 48px;
}

.header-right {
  gap: 32px;
}

.logo {
  text-decoration: none;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  transition: color 0.3s ease;
}

.logo span,
.footer h4 span {
  color: var(--orange);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 40px;
}

.desktop-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: var(--orange);
}

.phone-link {
  display: none;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: color 0.3s ease;
}

.nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.nav-icon svg {
  width: 14px;
  height: 14px;
}

.menu-btn {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-btn span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-btn svg {
  width: 28px;
  height: 28px;
}

.menu-close {
  opacity: 0;
}

.menu-btn.is-open .menu-open {
  opacity: 0;
}

.menu-btn.is-open .menu-close {
  opacity: 1;
}

.site-header.scrolled .logo,
.site-header.scrolled .desktop-nav a,
.site-header.scrolled .phone-link,
.site-header.scrolled .menu-btn {
  color: var(--black);
}

.site-header.scrolled .nav-icon {
  border-color: rgba(0, 0, 0, 0.08);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-menu-nav a {
  text-decoration: none;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--black);
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu-nav a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.mobile-menu-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu-meta > a:first-child {
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
}

.mobile-instagram {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-instagram svg {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  animation: fade-in 1.5s ease forwards;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay-base {
  background: rgba(0, 0, 0, 0.3);
}

.hero-overlay-gradient {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1152px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-content h1,
.hero-content p,
.hero-content .scroll-link {
  opacity: 0;
  transform: translateY(30px);
  animation: hero-copy-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content h1 {
  margin: 0 0 32px;
  font-size: clamp(64px, 15vw, 160px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
  animation-delay: 0.2s;
}

.hero-content p {
  margin: 0;
  max-width: 768px;
  padding: 0 16px;
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1.35;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  animation-delay: 0.5s;
}

.scroll-link {
  margin-top: 80px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  animation-delay: 1s;
}

.scroll-link:hover {
  color: #fff;
}

.scroll-line {
  position: relative;
  width: 1px;
  height: 64px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.8);
  animation: scroll-line 2s ease-in-out infinite;
}

.inner-hero {
  position: relative;
  min-height: min(88vh, 920px);
  display: flex;
  align-items: flex-end;
  padding: 120px 24px 72px;
  overflow: hidden;
}

.inner-hero .hero-media {
  opacity: 1;
  animation: fade-in 1s ease forwards;
}

.inner-hero .hero-content {
  align-items: flex-start;
  text-align: left;
  max-width: min(1280px, 100%);
  margin: 0 auto;
  width: 100%;
}

.inner-hero .hero-content h1,
.inner-hero .hero-content .breadcrumbs {
  opacity: 1;
  transform: none;
  animation: none;
}

.inner-hero .hero-content h1 {
  margin: 0;
  font-size: clamp(44px, 9vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.breadcrumbs {
  margin: 0 0 28px;
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35em 0.65em;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.65em;
  opacity: 0.45;
  letter-spacing: normal;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--orange);
}

.breadcrumbs li[aria-current="page"] {
  color: rgba(255, 255, 255, 0.82);
}

.service-content {
  padding: 96px 0 128px;
}

.service-content p {
  margin: 0;
  max-width: 800px;
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.55;
  font-weight: 700;
  color: var(--muted);
}

.service-article .service-seo {
  padding: 0 0 120px;
}

.service-seo section + section {
  margin-top: clamp(56px, 8vw, 88px);
}

.service-seo h2 {
  margin: 0 0 20px;
  max-width: 900px;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--black);
}

.service-seo p {
  margin: 0 0 18px;
  max-width: 820px;
  font-size: clamp(16px, 1.65vw, 19px);
  line-height: 1.65;
  font-weight: 600;
  color: var(--muted);
}

.service-seo p:last-child {
  margin-bottom: 0;
}

.service-seo ul {
  margin: 16px 0 0;
  padding: 0 0 0 1.25em;
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(16px, 1.65vw, 19px);
  line-height: 1.55;
  font-weight: 600;
}

.service-seo li + li {
  margin-top: 10px;
}

.collections-intro {
  padding-top: 96px;
  padding-bottom: 128px;
}

.collections-copy {
  max-width: 768px;
}

.eyebrow {
  margin: 0 0 32px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--orange);
}

.collections-copy h2 {
  margin: 0;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--black);
}

.collections-copy h2 span,
.slider-copy h3 span {
  color: #d4d4d4;
}

.cards {
  padding-bottom: 32px;
}

.furniture-card {
  display: grid;
  gap: 48px;
  align-items: center;
  margin-bottom: 96px;
}

.furniture-card[id] {
  scroll-margin-top: var(--header-anchor-offset);
}

.furniture-card-media {
  --card-y: 0px;
  --card-scale: 1;
  --card-opacity: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 40px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  transform: translate3d(0, var(--card-y), 0) scale(var(--card-scale));
  opacity: var(--card-opacity);
  transition: box-shadow 0.7s ease;
  will-change: transform, opacity;
}

.furniture-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.furniture-card-media:hover {
  box-shadow: 0 32px 84px rgba(249, 115, 22, 0.12);
}

.furniture-card-media:hover img {
  transform: scale(1.05);
}

.furniture-card-copy {
  max-width: 480px;
}

.furniture-card-copy h2 {
  margin: 0 0 32px;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.furniture-card-copy p {
  margin: 0;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.7;
  color: var(--muted);
  font-weight: 700;
}

.slider {
  position: relative;
  min-height: 100vh;
  background: var(--soft);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 0;
}

.slider-bg-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  font-size: clamp(240px, 32vw, 520px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(23, 23, 23, 0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.slider-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}

.slider-copy h3 {
  margin: 0 0 40px;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.slider-copy p {
  margin: 0;
  max-width: 640px;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.55;
  font-weight: 700;
  color: var(--muted);
}

.slider-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.slider-item {
  position: relative;
  width: min(100%, 520px);
  display: flex;
  justify-content: center;
}

.slider-image-wrap {
  --slide-x: 0px;
  --slide-rotate: 0deg;
  --slide-scale: 1;
  --slide-opacity: 1;
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 48px;
  border-radius: 48px;
  background: #fff;
  box-shadow: 0 80px 160px -40px rgba(0, 0, 0, 0.2);
  transform: translate3d(var(--slide-x), 0, 0) rotate(var(--slide-rotate)) scale(var(--slide-scale));
  opacity: var(--slide-opacity);
  will-change: transform, opacity;
}

.slider-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  filter: grayscale(0.2);
}

.slider-shadow {
  --shadow-x: 0px;
  --shadow-opacity: 0.12;
  position: absolute;
  bottom: 48px;
  z-index: 1;
  width: 320px;
  max-width: 72%;
  height: 40px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  filter: blur(50px);
  transform: translate3d(var(--shadow-x), 0, 0) scale(0.9);
  opacity: var(--shadow-opacity);
  will-change: transform, opacity;
}

.footer {
  background: #fff;
  padding: 96px 0 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.footer-grid {
  display: grid;
  gap: 48px;
}

.footer-brand h4 {
  margin: 0 0 40px;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer-links {
  display: grid;
  gap: 24px;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer-contact:hover {
  color: var(--black);
}

.footer-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.footer-icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact-copy {
  line-height: 1.5;
}

.footer-services {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-head {
  margin: 0 0 16px;
  color: var(--light-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.footer-services a {
  text-decoration: none;
  color: #525252;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer-services a:hover {
  color: var(--orange);
}

.footer-social-card {
  padding: 32px;
  border-radius: 32px;
  background: var(--soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-social-card h5 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.footer-social-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.footer-social-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-social-card a svg {
  width: 14px;
  height: 14px;
}

.copy {
  margin-top: 96px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.copy-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  color: var(--light-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.copy-meta p {
  margin: 0;
}

.js .reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 1024px) {
  .desktop-nav,
  .phone-link {
    display: flex;
  }

  .furniture-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.66fr);
    gap: 96px;
    margin-bottom: 192px;
  }

  .furniture-card-reverse .furniture-card-media {
    order: 2;
  }

  .furniture-card-reverse .furniture-card-copy {
    order: 1;
  }

  .slider-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: 96px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 5fr) minmax(220px, 3fr) minmax(280px, 4fr);
  }

  .copy-meta {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (max-width: 1023px) {
  .header-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .collections-intro,
  .slider,
  .footer {
    padding-top: 80px;
  }

  .furniture-card-copy h2 {
    margin-bottom: 24px;
  }

  .slider-stage {
    min-height: 420px;
  }

  .slider-image-wrap {
    padding: 24px;
    border-radius: 40px;
  }

  .inner-hero {
    padding-top: 104px;
    padding-bottom: 64px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 32px, 1280px);
  }

  .hero-content h1 {
    font-size: clamp(56px, 18vw, 96px);
  }

  .hero-content p {
    font-size: 20px;
  }

  .scroll-link {
    margin-top: 56px;
  }

  .collections-intro {
    padding-bottom: 80px;
  }

  .furniture-card {
    gap: 32px;
    margin-bottom: 96px;
  }

  .furniture-card-media {
    border-radius: 28px;
  }

  .slider {
    min-height: auto;
    padding-bottom: 80px;
  }

  .slider-bg-text {
    transform: translate(-40%, -50%);
    font-size: clamp(180px, 45vw, 280px);
  }

  .slider-stage {
    min-height: 320px;
  }

  .footer-social-card {
    padding: 24px;
  }

  .inner-hero {
    padding: 88px 16px 48px;
    min-height: min(72vh, 560px);
  }

  .inner-hero .hero-content h1 {
    font-size: clamp(36px, 11vw, 72px);
  }

  .service-content {
    padding: 64px 0 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

@keyframes header-in {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateY(-24px);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateY(64px);
    opacity: 0;
  }
}
