:root {
  --bg: #f3ece0;
  --bg-soft: #f8f4ec;
  --surface: #fffdfa;
  --surface-strong: #e8dcc8;
  --text: #2d251a;
  --muted: #6f6354;
  --accent: #234031;
  --accent-strong: #1a3126;
  --warm: #c06f3b;
  --line: #d8c8b1;
  --ok: #355f48;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 35px rgba(45, 37, 26, 0.08);
  --shadow-strong: 0 24px 60px rgba(26, 49, 38, 0.18);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 17px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(192, 111, 59, 0.2), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(35, 64, 49, 0.18), transparent 42%),
    linear-gradient(160deg, #f6efe3 0%, #efe4d1 40%, #f8f3ea 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.26;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 0,
    rgba(255, 255, 255, 0.35) 2px,
    transparent 2px,
    transparent 12px
  );
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
  letter-spacing: 0.015em;
  font-family: var(--font-display);
  font-weight: 700;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section-flow {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-compact {
  padding-top: 2rem;
}

.kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--warm);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4.1vw, 3.2rem);
}

.skip-link {
  position: absolute;
  left: -1000px;
  top: 0;
  background: #ffffff;
  color: #111111;
  padding: 0.7rem 1rem;
  border-radius: 0 0 10px 10px;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(248, 244, 236, 0.88);
  border-bottom: 1px solid rgba(35, 64, 49, 0.16);
}

.header-row {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.brand {
  max-width: 220px;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: color 220ms ease, border-color 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--accent);
  color: #f8f4ec;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: var(--accent-strong);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: rgba(35, 64, 49, 0.35);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(35, 64, 49, 0.08);
}

.btn-light {
  background: #f6f1e7;
  color: var(--accent-strong);
  border-color: #f6f1e7;
}

.btn-light:hover,
.btn-light:focus-visible {
  background: #fffdfa;
}

.btn-small {
  padding: 0.54rem 1rem;
  font-size: 0.92rem;
}

.hero {
  padding-top: clamp(3.5rem, 5vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 5.6vw, 4.35rem);
  margin-bottom: 1.35rem;
  max-width: 14ch;
}

.hero-copy p {
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-metrics {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.74rem;
}

.hero-metrics li {
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem 0.92rem;
  box-shadow: var(--shadow-soft);
}

.hero-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-figure {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, #fffdfa 0%, #f4ead7 100%);
  padding: 1rem;
  box-shadow: var(--shadow-strong);
  transform: rotate(-1.2deg);
}

.feature-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.portfolio-card,
.shop-note,
.callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.portfolio-card {
  padding: 1.2rem;
}

.feature-card h3,
.portfolio-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.feature-card p,
.portfolio-card p {
  color: var(--muted);
}

.card-label {
  margin-bottom: 0.6rem;
  color: var(--warm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 600;
}

.portfolio-card ul {
  margin-top: 0.9rem;
}

.portfolio-card li {
  list-style: none;
  color: var(--text);
  padding-left: 1.1rem;
  position: relative;
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.portfolio-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm);
  position: absolute;
  left: 0;
  top: 0.58rem;
}

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.timeline span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.8rem;
  color: #f8f4ec;
  background: var(--accent);
  font-family: var(--font-display);
}

.timeline h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.timeline p {
  color: var(--muted);
  font-size: 0.95rem;
}

.invitation {
  background: linear-gradient(140deg, #173225 0%, #244435 40%, #305845 100%);
  color: #f4eee2;
}

.invitation .kicker {
  color: #f7c08e;
}

.invitation h2 {
  font-size: clamp(1.7rem, 4.3vw, 3rem);
  margin-bottom: 1rem;
  max-width: 20ch;
}

.invitation p {
  color: rgba(245, 237, 224, 0.9);
  max-width: 56ch;
}

.invitation-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
}

.site-footer {
  border-top: 1px solid rgba(35, 64, 49, 0.2);
  background: rgba(250, 245, 236, 0.85);
}

.footer-grid {
  min-height: 120px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  padding: 1.8rem 0;
}

.footer-grid h2 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.footer-grid p {
  color: var(--muted);
}

.footer-grid a {
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.shop-hero {
  padding-top: clamp(3.2rem, 5vw, 4.8rem);
}

.shop-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  align-items: stretch;
}

.shop-hero h1 {
  font-size: clamp(1.9rem, 5.2vw, 3.8rem);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.shop-hero p {
  color: var(--muted);
  max-width: 58ch;
}

.shop-note {
  padding: 1.2rem;
}

.shop-note h2 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.shop-note p + p {
  margin-top: 0.55rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  padding: 0.52rem 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.is-active {
  background: var(--accent);
  color: #f9f3e8;
  border-color: var(--accent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.product-card p {
  color: var(--muted);
}

.product-card a {
  margin-top: auto;
  padding-top: 0.9rem;
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-weight: 600;
}

.product-card .price {
  margin-top: 0.72rem;
  color: var(--ok);
  font-weight: 700;
}

.product-card.is-hidden {
  display: none;
}

.product-swatch {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  border-radius: 12px;
  border: 1px solid rgba(45, 37, 26, 0.12);
  margin-bottom: 0.85rem;
}

.swatch-terra {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent 40%),
    linear-gradient(45deg, #c88b61 0%, #a56740 100%);
}

.swatch-sand {
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.35), transparent 38%),
    linear-gradient(150deg, #d7c5aa 0%, #bca27c 100%);
}

.swatch-stone {
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.17)),
    linear-gradient(140deg, #bcb9b1 0%, #8f8a80 100%);
}

.swatch-graphite {
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)),
    linear-gradient(140deg, #61656d 0%, #2f353e 100%);
}

.swatch-oak {
  background:
    repeating-linear-gradient(
      90deg,
      #d1a774,
      #d1a774 7px,
      #ba8d58 7px,
      #ba8d58 14px
    );
}

.swatch-walnut {
  background:
    repeating-linear-gradient(
      90deg,
      #8b6547,
      #8b6547 8px,
      #6d4f37 8px,
      #6d4f37 16px
    );
}

.swatch-linen {
  background:
    linear-gradient(140deg, #f0e7d8 0%, #ddd0bd 100%);
}

.swatch-carbon {
  background:
    linear-gradient(140deg, #4f5963 0%, #20252b 100%);
}

.callout {
  padding: 1.4rem;
}

.callout h2 {
  font-size: clamp(1.55rem, 3.8vw, 2.5rem);
  margin-bottom: 0.9rem;
  max-width: 21ch;
}

.callout p {
  color: var(--muted);
  max-width: 62ch;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-row {
    grid-template-columns: auto auto auto;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    flex-direction: column;
    gap: 0.9rem;
    align-items: flex-start;
    background: rgba(248, 244, 236, 0.98);
    border: 1px solid rgba(35, 64, 49, 0.2);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .btn-small {
    display: none;
  }

  .hero-grid,
  .shop-hero-grid,
  .invitation-grid {
    grid-template-columns: 1fr;
  }

  .hero-figure {
    transform: none;
  }
}

@media (max-width: 760px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .portfolio-grid,
  .products-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-flow {
    padding: 3.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}