@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --ink: #151a17;
  --ink-soft: #3a433d;
  --muted: #6b756e;
  --paper: #eef1ee;
  --paper-deep: #e2e7e3;
  --forest: #1e3a2f;
  --forest-mid: #2f5644;
  --timber: #b8956a;
  --timber-light: #d4b896;
  --line: rgba(21, 26, 23, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(21, 26, 23, 0.12);
  --radius: 2px;
  --nav-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container-wide {
  width: min(1400px, calc(100% - 2rem));
  margin-inline: auto;
}

/* —— Nav —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(238, 241, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled .logo,
.site-header.is-scrolled .nav-links a,
.site-header.is-scrolled .nav-toggle,
.site-header.solid .logo,
.site-header.solid .nav-links a,
.site-header.solid .nav-toggle {
  color: var(--ink);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1400px, calc(100% - 2rem));
  margin-inline: auto;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.3s;
}

.logo span {
  font-weight: 500;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  transition: opacity 0.25s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  overflow: hidden;
  flex-shrink: 0;
}

.site-header.is-scrolled .lang-switch,
.site-header.solid .lang-switch {
  border-color: var(--line);
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.site-header.is-scrolled .lang-btn,
.site-header.solid .lang-btn {
  color: var(--muted);
}

.lang-btn:hover {
  color: var(--white);
}

.site-header.is-scrolled .lang-btn:hover,
.site-header.solid .lang-btn:hover {
  color: var(--ink);
}

.lang-btn.is-active {
  background: var(--timber);
  color: var(--ink) !important;
}

.site-header.is-scrolled .lang-btn.is-active,
.site-header.solid .lang-btn.is-active {
  background: var(--forest);
  color: var(--white) !important;
}

.nav-cta {
  padding: 0.55rem 1.15rem !important;
  background: var(--timber);
  color: var(--ink) !important;
  font-weight: 500 !important;
  opacity: 1 !important;
  transition: background 0.25s, transform 0.25s !important;
}

.nav-cta:hover {
  background: var(--timber-light) !important;
  opacity: 1 !important;
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-cta,
.site-header.solid .nav-cta {
  background: var(--forest);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  width: 2rem;
  height: 1.5rem;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  position: absolute;
  left: 0;
  transition: 0.3s var(--ease);
}

.nav-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span::before {
  content: '';
  top: -7px;
}

.nav-toggle span::after {
  content: '';
  top: 7px;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 26, 23, 0.35) 0%, rgba(21, 26, 23, 0.15) 40%, rgba(21, 26, 23, 0.72) 100%),
    linear-gradient(90deg, rgba(30, 58, 47, 0.45) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 5.5rem;
  max-width: 38rem;
  animation: fadeUp 1s var(--ease) 0.2s both;
}

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

.hero-brand {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.45;
  max-width: 28rem;
  opacity: 0.92;
  margin-bottom: 0.75rem;
}

.hero-lead {
  font-size: 1rem;
  opacity: 0.78;
  max-width: 26rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--timber);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--timber-light);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

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

.btn-dark:hover {
  background: var(--forest-mid);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

/* —— Sections —— */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  color: var(--forest);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 36rem;
  font-weight: 300;
}

.section-head {
  margin-bottom: 3rem;
}

/* —— Collections grid —— */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.collection-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
}

.collection-card:nth-child(1) {
  grid-column: span 7;
  min-height: 420px;
}

.collection-card:nth-child(2) {
  grid-column: span 5;
  min-height: 420px;
}

.collection-card:nth-child(3),
.collection-card:nth-child(4),
.collection-card:nth-child(5) {
  grid-column: span 4;
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  z-index: -2;
}

.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(21, 26, 23, 0.82) 100%);
  z-index: -1;
}

.collection-card:hover img {
  transform: scale(1.06);
}

.collection-card-body {
  padding: 1.75rem;
  width: 100%;
}

.collection-card-body .tier {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.35rem;
}

.collection-card-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.collection-card-body p {
  font-size: 0.92rem;
  opacity: 0.82;
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 22rem;
}

.collection-card-body .link {
  font-size: 0.88rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
  transition: border-color 0.25s;
}

.collection-card:hover .link {
  border-color: var(--timber);
  color: var(--timber-light);
}

/* —— Features —— */
.features {
  background: var(--forest);
  color: var(--white);
}

.features .section-title {
  color: var(--white);
}

.features .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.feature-item.in-view {
  opacity: 1;
  transform: none;
}

.feature-num {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--timber);
  margin-bottom: 0.75rem;
}

.feature-item h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.92rem;
  opacity: 0.72;
  font-weight: 300;
}

/* —— Why —— */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.why-media {
  overflow: hidden;
  min-height: 480px;
}

.why-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.why-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.why-list .dot {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  background: var(--timber);
  border-radius: 50%;
}

.why-list h4 {
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.why-list p {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
}

/* —— Color strips —— */
.colors-section {
  background: var(--paper-deep);
}

.swatch-groups {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.swatch-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.swatch-row h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.swatch {
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid var(--line);
  position: relative;
  cursor: default;
  transition: transform 0.25s;
}

.swatch:hover {
  transform: scale(1.08);
  z-index: 1;
}

.swatch:hover::after {
  content: attr(data-name);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--ink);
  color: var(--white);
  font-size: 0.7rem;
  padding: 0.3rem 0.5rem;
  pointer-events: none;
}

/* —— Accessories —— */
.accessories-banner {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.accessories-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.accessories-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 26, 23, 0.82) 0%, rgba(21, 26, 23, 0.35) 70%);
  z-index: 1;
}

.accessories-content {
  position: relative;
  z-index: 2;
  max-width: 32rem;
}

.accessories-content .section-title {
  color: var(--white);
}

.accessories-content .section-lead {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.5rem;
}

.acc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.acc-tags span {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

/* —— Quote / CTA —— */
.quote-section {
  background: var(--ink);
  color: var(--white);
}

.quote-section .section-title {
  color: var(--white);
}

.quote-section .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  opacity: 0.65;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 0.9rem;
  outline: none;
  transition: border-color 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--timber);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-opacity='.6' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}

.form-note {
  font-size: 0.82rem;
  opacity: 0.55;
  font-weight: 300;
}

.form-success {
  display: none;
  padding: 1.5rem;
  border: 1px solid var(--timber);
  color: var(--timber-light);
  font-size: 1rem;
}

.form-success.show {
  display: block;
}

.quote-form.submitted .form-fields {
  display: none;
}

/* —— Page hero (inner) —— */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 26, 23, 0.3) 0%, rgba(21, 26, 23, 0.7) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 3.5rem;
}

.page-hero .section-label {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 34rem;
  opacity: 0.85;
  font-weight: 300;
}

/* —— Product detail —— */
.product-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 3rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-meta dt {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.product-meta dd {
  font-weight: 500;
  font-size: 1.05rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-copy h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--forest);
  margin-bottom: 1rem;
}

.product-copy p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-weight: 300;
}

.checklist {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.checklist li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--timber);
}

.color-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.color-option {
  border: 1px solid var(--line);
  padding: 0.75rem;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
  text-align: left;
}

.color-option:hover,
.color-option.active {
  border-color: var(--forest);
  transform: translateY(-2px);
}

.color-option .chip {
  width: 100%;
  height: 2.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--line);
}

.color-option span {
  font-size: 0.82rem;
  font-weight: 500;
}

.length-pills {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.length-pills button {
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition: 0.25s;
}

.length-pills button.active,
.length-pills button:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.board-types {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.board-type {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.board-type h4 {
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.board-type p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  font-weight: 300;
}

/* —— Collections index —— */
.collections-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.collection-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 380px;
  border-bottom: 1px solid var(--line);
}

.collection-row:nth-child(even) .collection-row-media {
  order: 2;
}

.collection-row-media {
  overflow: hidden;
}

.collection-row-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.collection-row:hover img {
  transform: scale(1.04);
}

.collection-row-body {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.collection-row-body .tier {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.collection-row-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.collection-row-body p {
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand span {
  opacity: 0.65;
}

.site-footer p {
  font-size: 0.9rem;
  font-weight: 300;
  max-width: 22rem;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.site-footer a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}

.site-footer a:hover {
  color: var(--timber-light);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* —— Mobile —— */
@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: var(--paper);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s var(--ease);
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    color: var(--ink) !important;
  }

  .nav-cta {
    background: var(--forest) !important;
    color: var(--white) !important;
    width: 100%;
    justify-content: center;
  }

  .lang-switch {
    border-color: var(--line);
    width: fit-content;
  }

  .lang-btn {
    color: var(--muted);
  }

  .lang-btn.is-active {
    background: var(--forest);
    color: var(--white) !important;
  }

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

  .collection-card,
  .collection-card:nth-child(n) {
    grid-column: span 1;
    min-height: 300px !important;
  }

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

  .why-grid,
  .quote-layout,
  .product-layout,
  .collection-row {
    grid-template-columns: 1fr;
  }

  .collection-row:nth-child(even) .collection-row-media {
    order: 0;
  }

  .swatch-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .product-meta {
    grid-template-columns: 1fr 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-content {
    padding-bottom: 4rem;
  }
}
