:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-avocado: #ffffff;
  --ink: #18261f;
  --ink-soft: #496255;
  --accent: #b55c3c;
  --accent-dark: #8b4126;
  --line: rgba(24, 38, 31, 0.1);
  --shadow: 0 20px 60px rgba(39, 28, 21, 0.12);
  --radius: 12px;
  --display-title-size: clamp(1.32rem, 2.08vw, 2rem);
  --display-title-size-mobile: clamp(1.14rem, 3.65vw, 1.42rem);
  --container: min(1360px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Helvetica Neue", sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
  min-height: 100vh;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(24, 38, 31, 0.08);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(39, 28, 21, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.brand img {
  display: block;
  width: auto;
  height: 48px;
  max-width: min(24vw, 165px);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-left: 0;
  order: 4;
  flex: 0 0 auto;
}

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  gap: 0;
  border: 1px solid rgba(24, 38, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.3rem 0.42rem;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(24, 38, 31, 0.58);
  backdrop-filter: blur(10px);
}

.lang-button:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(24, 38, 31, 0.12);
  color: var(--ink);
}

.lang-icon {
  display: none;
}

.lang-label {
  display: inline-block;
  min-width: 1.2ch;
  text-align: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
  order: 3;
}

.site-nav > a,
.nav-item > a {
  color: var(--accent);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.1;
  text-transform: none;
}

.site-nav > a[aria-current="page"],
.nav-item > a[aria-current="page"] {
  color: var(--accent-dark);
}

.nav-item {
  position: relative;
}

.nav-item-has-submenu {
  display: flex;
  align-items: center;
}

.nav-item-has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 0;
  display: grid;
  min-width: 240px;
  gap: 0.1rem;
  padding: 0.55rem;
  border: 1px solid rgba(24, 38, 31, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 40px rgba(24, 38, 31, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-submenu a {
  padding: 0.65rem 0.8rem;
  border-radius: 6px;
  color: var(--accent);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: none;
}

.nav-submenu a:hover,
.nav-submenu a[aria-current="page"] {
  background: rgba(24, 38, 31, 0.05);
  color: var(--accent-dark);
}

.nav-item-has-submenu:hover .nav-submenu,
.nav-item-has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 4.6rem;
  padding: 0.48rem 0.88rem;
  order: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.34rem 0.82rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.button-primary {
  background: var(--accent);
  color: #fffaf4;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: rgba(24, 38, 31, 0.16);
  background: rgba(255, 255, 255, 0.3);
}

.hero-actions .button-secondary {
  border-color: rgba(255, 247, 239, 0.38);
  background: rgba(255, 247, 239, 0.1);
  color: #fff7ef;
}

.hero-actions .button-secondary:hover {
  background: rgba(255, 247, 239, 0.18);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero,
.page-hero {
  padding: 4rem 0 2.5rem;
}

.hero-wide {
  padding-top: 2rem;
  padding-bottom: 1.25rem;
}

.hero-wide .hero-stage {
  aspect-ratio: 2.15 / 1;
}

.hero-stage,
.page-hero .container,
.catalog-banner,
.final-cta-shell,
.detail-card,
.contact-panel,
.contact-form,
.prose-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-stage,
.catalog-banner,
.final-cta-shell,
.detail-card,
.contact-panel,
.contact-form,
.prose-block,
.page-hero .container {
  padding: 2rem;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  aspect-ratio: 1.95 / 1;
  min-height: 0;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-stage-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 2.6rem 1.55rem 0.7rem 1.55rem;
  background:
    linear-gradient(135deg, rgba(24, 38, 31, 0.02) 0%, rgba(24, 38, 31, 0.08) 30%, rgba(24, 38, 31, 0.4) 70%, rgba(24, 38, 31, 0.85) 100%),
    linear-gradient(180deg, rgba(181, 92, 60, 0.05) 0%, rgba(181, 92, 60, 0.02) 50%, transparent 100%);
}

.hero-stage-overlay .hero-title,
.hero-stage-overlay .lead,
.hero-stage-overlay .eyebrow {
  color: #fff7ef;
}

.hero-copy {
  margin-top: auto;
  max-width: min(88%, 1120px);
}

.hero-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.55rem;
}

.hero-meta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
}

.hero-stage-overlay .hero-title {
  margin: 0;
  font-size: var(--display-title-size);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: heroTitleFadeIn 1.2s ease-out 0.3s both;
}

@keyframes heroTitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-line {
  display: inline;
}

.hero-eyebrow {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: rgba(255, 247, 239, 0.84);
}

.hero-lead {
  max-width: 30rem;
  margin-top: 0.52rem;
  font-size: 0.84rem;
  line-height: 1.62;
  color: rgba(255, 247, 239, 0.88);
}

.hero-actions {
  margin-top: 0;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-shrink: 0;
}

.hero-actions .button {
  min-height: 30px;
  padding: 0.28rem 0.68rem;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-actions .button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-actions .button:hover::before {
  opacity: 1;
}

.hero-actions .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-slider-controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-slider-arrow,
.hero-slider-dot {
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.hero-slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.18);
  color: #fff7ef;
  backdrop-filter: blur(10px);
  font-size: 1.2rem;
  line-height: 1;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
  background: rgba(255, 247, 239, 0.3);
  transform: translateY(-1px);
  outline: none;
}

.hero-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-slider-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.42);
  opacity: 0.9;
}

.hero-slider-dot.is-active {
  background: #fff7ef;
  opacity: 1;
  transform: scale(1.12);
}

.hero-slider-dot:hover,
.hero-slider-dot:focus-visible {
  background: rgba(255, 247, 239, 0.72);
  outline: none;
}

.section {
  padding: 3.5rem 0;
}

.project-shell {
  padding: 2.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.project-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-strong);
}

.project-card h3 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
}

.project-detail-hero {
  position: relative;
  min-height: min(72vh, 680px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #17120f;
}

.project-detail-media {
  position: absolute;
  inset: 0;
}

.project-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 12, 9, 0.12), rgba(16, 12, 9, 0.72));
}

.project-detail-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-detail-copy {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 4rem;
  color: #fffaf4;
}

.project-detail-copy h1 {
  max-width: 920px;
  margin: 0.5rem 0 1rem;
  color: inherit;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  font-weight: 600;
}

.project-detail-copy .lead {
  max-width: 680px;
  color: rgba(255, 250, 244, 0.86);
}

.hero h1,
.page-hero h1,
.section-heading h2,
.catalog-banner h2,
.final-cta h2,
.collections-title,
.editorial-copy h2,
.style-hero-copy h2,
.catalog-banner-copy h2 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: var(--display-title-size);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lead,
.intro-copy p,
.catalog-banner p,
.prose-block p,
.detail-card p,
.contact-panel p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.68;
}

.eyebrow,
.mini-label,
.catalog-type,
.social-tag {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
}

.feature-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.feature-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.5rem;
}

.section {
  padding: 1.5rem 0 2.5rem;
}

.section-tinted {
  position: relative;
  background: linear-gradient(135deg, rgba(181, 92, 60, 0.02) 0%, rgba(24, 38, 31, 0.01) 50%, transparent 100%);
}

.section-tinted::before {
  content: "";
  position: absolute;
  inset: 2rem 0;
  background: linear-gradient(135deg, rgba(255, 249, 247, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 24px;
  z-index: -1;
}

.intro-grid,
.catalog-banner,
.final-cta-shell,
.contact-grid,
.editorial-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.collection-strip {
  display: grid;
  gap: 1rem;
}

.collections-shell {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.section-heading-compact {
  max-width: none;
  margin-bottom: 0;
  padding-top: 0.2rem;
}

.collections-lead {
  margin: 0.8rem 0 0;
  max-width: 28rem;
  font-size: 0.9rem;
  line-height: 1.72;
}

.editorial-image-wrap,
.editorial-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.editorial-image-wrap {
  overflow: hidden;
  min-height: 460px;
}

.editorial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #ffffff;
}

.editorial-copy {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: center;
}

.collection-card {
  width: 100%;
  height: 126px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.collection-card-link {
  display: grid;
  grid-template-columns: minmax(0, 2.65fr) minmax(170px, 0.35fr);
  height: 100%;
}

.collection-card-media {
  min-height: 100%;
  overflow: hidden;
  background: #ffffff;
}

.collection-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease;
}

.collection-card-link:hover .collection-card-media img {
  transform: scale(1.02);
}

.collection-card-body {
  padding: 0.56rem 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collection-card h3 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.2;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.about-stats-grid .benefit {
  padding: 1rem 1rem 0.95rem;
}

.about-stats-grid .benefit h3 {
  margin-bottom: 0.35rem;
  line-height: 1.08;
}

.about-stats-grid .benefit p {
  line-height: 1.42;
}

.about-partners-hero {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 6.7;
}

.about-partners-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.about-intro-grid p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.about-factory-card {
  margin-top: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-factory-card img {
  display: block;
  width: 100%;
  height: auto;
}

.about-partners-card {
  margin-bottom: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--shadow);
}

.about-partners-card img {
  display: block;
  width: 100%;
  height: auto;
}

.about-factory-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.8fr);
  gap: 1rem;
}

.about-factory-gallery-hero {
  margin-top: 1.25rem;
}

.about-factory-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.about-factory-panel img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  object-fit: cover;
}

.about-factory-panel-large {
  grid-row: span 2;
}

.style-hero-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 1.5rem;
}

.style-hero-copy,
.style-hero-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.style-hero-copy {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.style-hero-media {
  overflow: hidden;
  min-height: 420px;
}

.collection-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.collection-overview-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.collection-overview-card.is-active {
  border-color: rgba(181, 92, 60, 0.45);
}

.collection-overview-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.collection-overview-media {
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  background: #ffffff;
}

.collection-overview-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.collection-overview-body {
  padding: 0.72rem 0.8rem 0.76rem;
}

.collection-overview-body h3 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1rem;
  line-height: 1.2;
}

.collection-gallery-groups {
  display: grid;
  gap: 0.95rem;
}

.collection-gallery-group {
  display: grid;
  gap: 0.5rem;
}

.collection-gallery-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(24, 38, 31, 0.56);
}

.collection-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.collection-photo-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.collection-photo-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.collection-photo-card figcaption {
  padding: 0.55rem 0.7rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.36;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.6rem;
  max-width: 760px;
}

.section-heading .eyebrow {
  margin-bottom: 0.75rem;
}

.section-heading h2,
.editorial-copy h2,
.style-hero-copy h2 {
  width: 100%;
  margin: 0;
}

.section-title-wide {
  max-width: none;
}

.section-title-nowrap {
  white-space: nowrap;
}

.editorial-copy .eyebrow {
  margin-bottom: 0.75rem;
}

.editorial-copy .lead {
  margin: 1rem 0 0;
}

.section-heading-light h2 {
  color: #fff7ef;
}

.section-heading-light .eyebrow {
  color: var(--accent);
}

.spaces-grid,
.logic-grid,
.projects-grid,
.social-grid,
.catalog-grid,
.benefits-grid,
.stack-grid {
  display: grid;
  gap: 1.25rem;
}

.spaces-grid,
.logic-grid,
.projects-grid,
.social-grid,
.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.space-card,
.logic-card,
.project-showcase-card,
.benefit,
.social-card,
.process-step,
.catalog-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.benefit,
.logic-card,
.project-showcase-card,
.social-card,
.process-step,
.catalog-card {
  padding: 1.5rem;
}

.space-card {
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.space-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(39, 28, 21, 0.15);
}

.space-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.space-card-media {
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: #ffffff;
}

.space-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.space-card-link:hover .space-card-media img {
  transform: scale(1.08);
}

.space-card-content {
  padding: 0.92rem 1rem 0.95rem;
}

.space-card-heading {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
}

.space-index,
.logic-index,
.process-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: rgba(181, 92, 60, 0.12);
  color: var(--accent);
  font-weight: 700;
}

.space-card .space-index {
  width: auto;
  height: auto;
  min-width: 2ch;
  margin-bottom: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(181, 92, 60, 0.8);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  flex: 0 0 auto;
}

.space-card h3,
.logic-card h3,
.benefit h3,
.social-card h3,
.process-step h3,
.catalog-card h2,
.detail-card h2,
.contact-panel h2 {
  margin: 0 0 0.6rem;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.26;
  letter-spacing: -0.015em;
}

.space-card h3 {
  margin: 0;
}

.catalog-card h2 {
  margin-bottom: 0.45rem;
}

.catalog-card p {
  line-height: 1.5;
}

.space-card p,
.logic-card p,
.benefit p,
.social-card p,
.process-step p,
.catalog-card p {
  margin: 0;
  line-height: 1.62;
  color: var(--ink-soft);
}

.logic-card {
  min-height: 100%;
}

.logic-panel {
  display: grid;
  grid-template-columns: minmax(210px, 0.27fr) minmax(0, 0.73fr);
  gap: 1.35rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  padding: 1.45rem 1.5rem;
}

.logic-panel .section-heading {
  margin-bottom: 0;
  max-width: none;
}

.logic-panel .lead {
  margin-top: 0.7rem;
  line-height: 1.58;
}

.logic-list {
  display: grid;
  gap: 0.55rem;
}

.logic-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding-top: 0.45rem;
  border-top: none;
}

.logic-item:first-child {
  padding-top: 0;
}

.logic-copy h3 {
  margin: 0 0 0.22rem;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.015em;
}

.logic-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.56;
}

.project-showcase-card {
  padding: 0;
  overflow: hidden;
}

.project-showcase-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-showcase-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ffffff;
}

.project-showcase-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 240ms ease;
}

.project-showcase-link:hover .project-showcase-media img {
  transform: scale(1.03);
}

.project-showcase-body {
  padding: 1.25rem;
}

.project-showcase-body .eyebrow {
  margin-bottom: 0.65rem;
}

.project-showcase-card h3 {
  margin: 0 0 0.55rem;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.26;
  letter-spacing: -0.015em;
}

.project-showcase-card p:last-child {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.section-dark {
  padding-top: 2.5rem;
}

.process-shell {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface-avocado);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  padding-top: 1rem;
}

.process-timeline::before {
  content: none;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-color: var(--line);
  box-shadow: none;
  min-height: 100%;
  padding: 1.18rem 1.15rem 1.08rem;
}

.process-step h3,
.process-step p {
  color: var(--ink);
}

.process-step h3 {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0 0 0.36rem;
  min-height: 2.9em;
  font-size: 1rem;
  line-height: 1.38;
  text-wrap: pretty;
}

.process-step p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.56;
}

.section-heading-light .eyebrow,
.section-heading-light h2 {
  color: var(--ink);
}

.process-eyebrow {
  color: var(--accent) !important;
}

.section-heading-light h2 {
  white-space: nowrap;
}

.process-step h3 > span:first-child {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.process-step h3 > span:first-child {
  color: rgba(73, 98, 85, 0.78);
}

.social-card {
  min-height: 240px;
}

.page-main {
  padding-bottom: 2rem;
}

body[data-page="style-detail"] .page-hero {
  padding: 2.2rem 0 1.35rem;
}

body[data-page="style-detail"] .page-hero .container {
  padding: 1.45rem 1.6rem;
}

body[data-page="style-detail"] .section {
  padding: 1.65rem 0;
}

body[data-page="style-detail"] .section-heading {
  margin-bottom: 0.9rem;
}

body[data-page="space-detail"] .page-hero {
  padding: 2rem 0 1.15rem;
}

body[data-page="space-detail"] .page-hero .container {
  padding: 1.35rem 1.5rem;
}

body[data-page="space-detail"] .section {
  padding: 1.45rem 0;
}

body[data-page="space-detail"] .section-heading {
  margin-bottom: 0.82rem;
}

.page-hero-soft .container {
  background: #ffffff;
}

.page-hero-dark .container {
  color: var(--ink);
  background: #ffffff;
}

.page-hero-dark .lead,
.page-hero-dark .eyebrow {
  color: var(--ink-soft);
}

.detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.catalog-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.catalog-cover {
  min-height: 126px;
  display: grid;
  place-items: center;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.62rem;
  color: #fff7ef;
  background: linear-gradient(135deg, #bb6c4c, #6f3821);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-body {
  padding: 1.15rem;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.catalog-body .button-row {
  margin-top: auto;
  padding-top: 0.95rem;
  justify-content: flex-start;
}

.catalog-body .button {
  min-height: 30px;
  padding: 0.26rem 0.74rem;
  border-radius: 7px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.catalog-banner {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
}

.catalog-banner-copy {
  max-width: 680px;
}

.catalog-banner-copy .eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
}

.catalog-banner-copy h2 {
  margin: 0 0 0.45rem;
}

.catalog-banner-copy p:last-child {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.catalog-banner > .button {
  justify-self: end;
  align-self: start;
  min-height: 30px;
  padding: 0.26rem 0.7rem;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
  margin-bottom: 0;
}

.catalog-banner-link {
  border-color: rgba(24, 38, 31, 0.12);
  background: #ffffff;
  color: var(--ink-soft);
}

.catalog-banner-link:hover {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 38, 31, 0.12);
  border-radius: 8px;
  padding: 0.95rem 1rem;
  background: #ffffff;
}

.form-notice {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.form-notice a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

body[data-page="contact"] .page-hero {
  padding: 1.1rem 0 1.35rem;
}

body[data-page="contact"] .page-hero .container {
  padding: 1.45rem 1.5rem;
}

body[data-page="contact"] .section {
  padding: 1rem 0 1.8rem;
}

body[data-page="contact"] .contact-grid {
  gap: 1rem;
  align-items: stretch;
}

body[data-page="contact"] .contact-panel,
body[data-page="contact"] .contact-form {
  padding: 1.3rem 1.3rem 1.2rem;
}

body[data-page="contact"] .contact-panel {
  height: 100%;
}

body[data-page="contact"] .contact-panel h2 {
  margin-bottom: 0.65rem;
}

body[data-page="contact"] .contact-panel p {
  margin: 0 0 0.6rem;
  line-height: 1.5;
}

body[data-page="contact"] .contact-form {
  gap: 0.82rem;
}

body[data-page="contact"] .contact-form label {
  gap: 0.32rem;
}

body[data-page="contact"] .contact-form input,
body[data-page="contact"] .contact-form textarea {
  padding: 0.78rem 0.9rem;
}

body[data-page="contact"] .contact-form textarea {
  min-height: 112px;
}

.site-footer {
  padding: 2.4rem 0 1.9rem;
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(180px, 0.75fr) minmax(180px, 0.75fr);
  gap: 1.35rem;
  align-items: start;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(24, 38, 31, 0.08);
}

.footer-grid h3 {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(24, 38, 31, 0.52);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 0.45rem;
  color: var(--ink-soft);
  line-height: 1.48;
  font-size: 0.94rem;
}

.footer-grid a {
  width: fit-content;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-grid a:hover {
  color: var(--ink);
  transform: translateX(1px);
}

.brand-footer {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 1.55rem;
  letter-spacing: 0.12em;
}

.footer-grid > div:first-child {
  max-width: 420px;
}

.footer-grid > div:first-child p {
  margin-bottom: 0;
  color: rgba(24, 38, 31, 0.64);
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-delay-1 {
  transition-delay: 150ms;
}

.reveal-delay-2 {
  transition-delay: 300ms;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 960px) {
  :root {
    --container: min(100vw - 1.5rem, 1360px);
  }

  .hero-grid,
  .intro-grid,
  .catalog-banner,
  .final-cta-shell,
  .contact-grid,
  .editorial-shell,
  .collections-shell,
  .collection-strip,
  .about-stats-grid,
  .spaces-grid,
  .logic-grid,
  .projects-grid,
  .social-grid,
  .catalog-grid,
  .benefits-grid,
  .project-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0.75rem;
    left: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav > a,
  .nav-item {
    width: 100%;
  }

  .nav-item-has-submenu {
    display: grid;
    gap: 0.45rem;
  }

  .nav-item-has-submenu::after {
    display: none;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 0.35rem 0 0;
    border: 0;
    border-top: 1px solid rgba(24, 38, 31, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a {
    padding: 0.5rem 0;
  }

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

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .lang-switcher {
    order: 2;
    margin-left: 0;
  }

  .hero-wide .hero-stage {
    aspect-ratio: 1.95 / 1;
  }

  .hero-stage,
  .hero-stage-image {
    min-height: 0;
    max-height: none;
    aspect-ratio: 1.95 / 1;
  }

  .hero-stage-overlay {
    padding: 1.5rem;
  }

  .editorial-image-wrap {
    min-height: 360px;
  }

  .catalog-banner {
    gap: 1rem;
  }

  .catalog-banner > .button {
    justify-self: start;
    align-self: start;
    margin-bottom: 0;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .hero-meta-actions {
    width: 100%;
    align-items: flex-start;
  }

  .hero-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 1.1rem, 1360px);
    --radius: 10px;
  }

  .site-header {
    backdrop-filter: blur(14px);
  }

  .nav-shell {
    min-height: 54px;
    gap: 0.75rem;
  }

  .brand {
    max-width: 100%;
  }

  .brand img {
    height: 40px;
    max-width: min(34vw, 140px);
  }

  .lang-button,
  .nav-toggle {
    padding: 0.4rem 0.62rem;
    font-size: 0.68rem;
  }

  .hero,
  .page-hero {
    padding: 2.4rem 0 1.5rem;
  }

  .hero-wide {
    padding-top: 1rem;
  }

  .hero-wide .hero-stage {
    aspect-ratio: 4 / 5;
  }

  .hero-stage,
  .hero-stage-image {
    min-height: 420px;
    max-height: 560px;
    aspect-ratio: 4 / 5;
  }

  .hero-stage-overlay {
    padding: 1.5rem 1rem 0.8rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-meta-row {
    gap: 0.75rem;
    margin-top: 0.72rem;
  }

  .hero-meta-actions {
    width: 100%;
    gap: 0.7rem;
  }

  .hero-stage-overlay .hero-title {
    font-size: var(--display-title-size-mobile);
  }

  .hero-lead {
    max-width: 100%;
    font-size: 0.8rem;
    line-height: 1.56;
  }

  .hero-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-slider-controls {
    top: 0.85rem;
    right: 0.85rem;
    gap: 0.4rem;
  }

  .hero-slider-arrow {
    width: 2.2rem;
    height: 2.2rem;
  }

  .hero h1,
  .page-hero h1,
  .section-heading h2,
  .catalog-banner h2,
  .final-cta h2,
  .collections-title,
  .editorial-copy h2,
  .style-hero-copy h2,
  .catalog-banner-copy h2 {
    font-size: var(--display-title-size-mobile);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .section-title-wide {
    white-space: normal;
  }

  .section-title-nowrap {
    white-space: normal;
  }

  .section-heading-light h2 {
    white-space: normal;
  }

  .lead,
  .intro-copy p,
  .catalog-banner p,
  .prose-block p,
  .detail-card p,
  .contact-panel p,
  .space-card p,
  .benefit p,
  .social-card p,
  .process-step p,
  .catalog-card p,
  .footer-grid a,
  .footer-grid p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .section {
    padding: 1rem 0 1.8rem;
  }

  .hero-stage,
  .catalog-banner,
  .final-cta-shell,
  .detail-card,
  .contact-panel,
  .contact-form,
  .prose-block,
  .page-hero .container,
  .editorial-copy,
  .project-shell,
  .process-shell,
  .benefit,
  .social-card,
  .process-step,
  .catalog-body {
    padding: 1.15rem;
  }

  .space-card {
    padding: 0;
  }

  .space-card-content {
    padding: 0.85rem 0.92rem 0.9rem;
  }

  .section-heading {
    margin-bottom: 1.1rem;
  }

  .spaces-grid,
  .social-grid,
  .catalog-grid,
  .benefits-grid,
  .stack-grid,
  .project-grid,
  .footer-grid {
    gap: 0.9rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding-top: 0;
  }

  .process-timeline::before {
    top: 1rem;
    bottom: 1rem;
    left: 1rem;
    right: auto;
    width: 1px;
    height: auto;
  }

  .process-step {
    padding: 1.15rem 1.15rem 1.15rem 2.4rem;
  }

  .process-step span {
    position: absolute;
    top: 1rem;
    left: 0;
    margin-bottom: 0;
    box-shadow: 0 0 0 8px #ffffff;
  }

  .editorial-image-wrap {
    min-height: 270px;
  }

  .section-heading-compact {
    padding-top: 0;
  }

  .collections-lead {
    max-width: none;
  }

  .collection-card-body {
    padding: 1.15rem;
  }

  .collection-card-link,
  .style-hero-shell,
  .collection-overview-grid,
  .collection-photo-grid,
  .logic-panel,
  .about-factory-gallery,
  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-factory-panel-large {
    grid-row: auto;
  }

  .collection-card-link {
    min-height: 0;
  }

  .collection-card-media {
    aspect-ratio: 16 / 10;
  }

  .style-hero-media {
    min-height: 280px;
  }

  .about-factory-card {
    margin-top: 0.9rem;
  }

  .about-partners-card {
    margin-bottom: 0.9rem;
  }

  .space-card h3,
  .benefit h3,
  .social-card h3,
  .process-step h3,
  .catalog-card h2,
  .detail-card h2,
  .contact-panel h2,
  .project-card h3 {
    font-size: 1.12rem;
    line-height: 1.24;
  }

  .space-index,
  .process-step span {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.8rem;
    font-size: 0.82rem;
  }

  .space-card-heading {
    gap: 0.55rem;
    margin-bottom: 0.35rem;
  }

  .space-card .space-index {
    width: auto;
    height: auto;
    margin-bottom: 0;
    font-size: 0.86rem;
  }

  .catalog-cover {
    min-height: 136px;
    font-size: 1.5rem;
  }

  .catalog-body .button-row,
  .hero-actions,
  .button-row {
    gap: 0.55rem;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 8px;
    padding: 0.85rem 0.9rem;
  }

  .footer-grid {
    padding-top: 0.95rem;
  }

  .brand-footer {
    font-size: 1.38rem;
  }
}

@media (max-width: 520px) {
  .brand {
    max-width: 100%;
  }

  .brand img {
    height: 34px;
    max-width: min(36vw, 124px);
  }

  .lang-switcher {
    order: 3;
  }

  .nav-toggle {
    order: 2;
  }

  .site-nav {
    top: calc(100% + 0.35rem);
    right: 0.55rem;
    left: 0.55rem;
    padding: 0.85rem;
    border-radius: 8px;
  }

  .site-nav a {
    font-size: 0.85rem;
    letter-spacing: 0.03em;
  }

  .hero-stage,
  .hero-stage-image {
    min-height: 420px;
    max-height: 560px;
    aspect-ratio: 4 / 5;
  }

  .hero-lead {
    margin-top: 0.75rem;
  }

  .hero-actions .button,
  .catalog-body .button,
  .catalog-banner > .button {
    width: 100%;
  }

  .catalog-body .button-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-banner > .button {
    justify-self: stretch;
  }

  .editorial-image-wrap {
    min-height: 220px;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 2rem 0 1.7rem;
  }

  .footer-grid {
    gap: 0.95rem;
  }

  .footer-grid h3 {
    margin-bottom: 0.55rem;
  }
}

body[data-page="home"] .collection-strip .collection-card {
  height: 252px;
}

body[data-page="home"] .collection-strip .collection-card-link {
  height: 100%;
  grid-template-columns: minmax(0, 2.65fr) minmax(170px, 0.35fr);
}

body[data-page="home"] .collection-strip .collection-card-media {
  min-height: 100%;
  aspect-ratio: auto;
}

@media (max-width: 980px) {
  body[data-page="home"] .collection-strip .collection-card {
    height: 252px;
  }

  body[data-page="home"] .collection-strip .collection-card-link {
    grid-template-columns: minmax(0, 2.65fr) minmax(150px, 0.35fr);
  }

  body[data-page="home"] .collection-strip .collection-card-body {
    padding: 0.56rem 0.8rem;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .collection-strip .collection-card {
    height: auto;
  }

  body[data-page="home"] .collection-strip .collection-card-link {
    height: auto;
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .collection-strip .collection-card-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  body[data-page="home"] .collection-strip .collection-card-body {
    padding: 1.15rem;
  }
}

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

  .reveal,
  .button {
    transition: none;
  }

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