/* ============================================================
   Olivier WoodWorks — fine cypress furniture, Natchitoches, LA
   Design system: high-craft, warm, unhurried
   ============================================================ */

:root {
  --cream: #f6f0e5;
  --paper: #fbf8f1;
  --ink: #2a2018;
  --ink-soft: #5a4c3c;
  --espresso: #36291d;
  --wood: #a0714a;
  --wood-deep: #84592f;
  --cypress: #5e6b4a;
  --taupe: #c7b8a2;
  --line: #e5d9c5;
  --line-dark: #d8c9b0;
  --shadow-sm: 0 1px 2px rgba(42, 32, 24, 0.06), 0 6px 24px rgba(42, 32, 24, 0.06);
  --shadow-lg: 0 2px 4px rgba(42, 32, 24, 0.08), 0 24px 60px rgba(42, 32, 24, 0.16);
  --radius: 2px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Jost", "Segoe UI", sans-serif;
  --max: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(1200px 500px at 50% -100px, rgba(255, 255, 255, 0.55), transparent 60%),
    repeating-linear-gradient(0deg, rgba(160, 113, 74, 0.018) 0 1px, transparent 1px 3px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

::selection {
  background: var(--wood);
  color: #fff;
}

/* ---------- Typography helpers ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--espresso);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wood-deep);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.hand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--wood-deep);
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.75;
}

.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

p {
  text-wrap: pretty;
}

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: clamp(64px, 9vw, 128px) 0;
  position: relative;
}

.section--tight {
  padding: clamp(40px, 6vw, 84px) 0;
}

.section--dark {
  background-color: var(--espresso);
  color: #ece1cf;
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: #f4ead8;
}

.section--dark .eyebrow {
  color: #d3b98f;
}

.section--dark .lead {
  color: #cfc2ac;
}

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

.center {
  text-align: center;
}

.rule {
  width: 100%;
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* ---------- Buttons & links ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s ease;
  background: transparent;
  color: inherit;
  position: relative;
}

.btn--solid {
  background: var(--espresso);
  color: #f4ead8;
}

.btn--solid:hover {
  background: var(--wood-deep);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--outline {
  border-color: rgba(244, 234, 216, 0.45);
  color: #f4ead8;
}

.btn--outline:hover {
  border-color: var(--wood);
  background: var(--wood);
  color: #fff;
}

.btn--outline-dark {
  border-color: rgba(42, 32, 24, 0.35);
  color: var(--espresso);
}

.btn--outline-dark:hover {
  border-color: var(--wood-deep);
  background: var(--wood-deep);
  color: #fff;
}

.text-link {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wood-deep);
  padding-bottom: 6px;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link--light {
  color: #d3b98f;
}

/* ---------- Announcement bar ---------- */

.announce {
  background: var(--espresso);
  color: #d9c9ae;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  padding: 11px var(--gutter);
  font-weight: 400;
}

.announce strong {
  color: #f0e2c6;
  font-weight: 500;
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 241, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 27px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--espresso);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.logo .logo-img {
  display: block;
  height: 140px;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo:hover .logo-img {
  opacity: 0.85;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
}

.nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--wood-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--espresso);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-block;
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  padding: 12px 24px !important;
  border: 1px solid var(--espresso);
  color: var(--espresso) !important;
  transition: all 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--espresso);
  color: #f4ead8 !important;
}

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 120;
}

.burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--espresso);
  transition: all 0.3s ease;
}

.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }

body.menu-open .burger span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

body.menu-open .burger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .burger span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--espresso);
  color: #ece1cf;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--gutter) 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 40px);
  color: #f0e4cb;
  display: block;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.4s ease;
}

body.menu-open .mobile-menu a {
  opacity: 1;
  transform: none;
}

body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 0.05s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 0.1s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 0.15s; }

.mobile-menu .mobile-menu-foot {
  margin-top: 40px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b7a684;
  line-height: 2.2;
}

.mobile-menu .mobile-menu-foot strong {
  color: #e6d6b6;
  font-weight: 500;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  display: flex;
  align-items: flex-end;
  color: #f6efdf;
  overflow: hidden;
}

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

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 20, 12, 0.42) 0%,
    rgba(28, 20, 12, 0.18) 40%,
    rgba(28, 20, 12, 0.66) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(48px, 7vw, 96px);
}

.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #e4cf9f;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 7.5vw, 86px);
  font-weight: 500;
  color: #fff;
  max-width: 15ch;
  text-wrap: balance;
}

.hero h1 .accent {
  font-style: italic;
  color: #e9d3a1;
}

.hero p {
  margin-top: 22px;
  max-width: 52ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  color: #e8ddc6;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  padding: clamp(72px, 11vw, 150px) 0 clamp(56px, 8vw, 110px);
  color: #f6efdf;
  background: var(--espresso);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 50% -20%, rgba(160, 113, 74, 0.4), transparent 65%),
    repeating-linear-gradient(0deg, rgba(244, 234, 216, 0.03) 0 1px, transparent 1px 3px);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  color: #fff;
  margin: 14px 0 16px;
}

.page-hero p {
  max-width: 60ch;
  margin: 0 auto;
  color: #cfc2ac;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  text-wrap: pretty;
}

.page-hero .eyebrow {
  color: #d3b98f;
  justify-content: center;
}

.page-hero .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

/* ---------- Split / feature blocks ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
}

.split--reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  height: clamp(320px, 44vw, 540px);
  object-fit: cover;
}

.split-media .frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(244, 234, 216, 0.5);
  pointer-events: none;
}

.split-body .hand {
  font-size: clamp(17px, 2.2vw, 23px);
  margin: 6px 0 18px;
  display: block;
}

.split-body h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  margin: 10px 0 22px;
  text-wrap: balance;
}

.split-body p + p {
  margin-top: 16px;
}

.split-body .lead {
  margin-bottom: 26px;
}

.split-stats {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  margin-top: 34px;
  flex-wrap: wrap;
}

.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 46px);
  color: var(--wood-deep);
  line-height: 1;
}

.stat .stat-label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Section headers ---------- */

.section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.section-head--center .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.section-head h2 {
  font-size: clamp(30px, 4.4vw, 50px);
  margin: 14px 0 18px;
  text-wrap: balance;
}

.section-head .hand {
  font-size: clamp(16px, 2vw, 21px);
  margin-bottom: 6px;
  display: block;
}

.section-head p {
  color: var(--ink-soft);
}

/* ---------- Marquee quote band ---------- */

.quote-band {
  background: var(--paper);
  text-align: center;
  padding: clamp(56px, 8vw, 110px) var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 40px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  color: var(--espresso);
  max-width: 30ch;
  margin: 0 auto;
  text-wrap: balance;
}

.quote-band cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wood-deep);
}

/* ---------- Feature grid (craft) ---------- */

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.craft-item .craft-media {
  overflow: hidden;
  margin-bottom: 22px;
}

.craft-item img {
  width: 100%;
  height: clamp(220px, 26vw, 320px);
  object-fit: cover;
  transition: transform 0.9s ease;
}

.craft-item:hover img {
  transform: scale(1.05);
}

.craft-item .craft-num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--wood-deep);
  letter-spacing: 0.2em;
}

.craft-item h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 8px 0 12px;
}

.craft-item p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------- Finishes strip ---------- */

.finishes {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.finishes img {
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
}

.finish-list {
  margin-top: 26px;
  display: grid;
  gap: 0;
}

.finish-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.finish-row:last-child {
  border-bottom: 0;
}

.finish-swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: none;
  box-shadow: inset 0 0 0 1px rgba(42, 32, 24, 0.18);
}

.finish-row .finish-name {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 24px);
  color: var(--espresso);
}

.finish-row .finish-note {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Product cards ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 36px);
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-dark);
}

.product-card .card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.86;
  background: #efe7d7;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.product-card .card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(42, 32, 24, 0.82);
  color: #f0e4cb;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 12px;
}

.product-card .card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card .card-cat {
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--wood-deep);
}

.product-card h3 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}

.product-card .card-price {
  margin-top: auto;
  padding-top: 8px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.product-card .card-price strong {
  color: var(--espresso);
  font-weight: 500;
}

/* ---------- Filter bar ---------- */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--wood-deep);
  color: var(--wood-deep);
}

.filter-btn[aria-pressed="true"] {
  background: var(--espresso);
  border-color: var(--espresso);
  color: #f4ead8;
}

.empty-state {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
}

.shop-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(32px, 4.5vw, 48px);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-count {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Featured carousel ---------- */

.featured-carousel {
  position: relative;
}

.featured-track .product-card {
  animation: featuredIn 0.55s ease both;
}

@keyframes featuredIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.featured-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 38px;
}

.featured-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--espresso);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.featured-btn:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  color: #f0e4cb;
}

.featured-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.featured-dot:hover {
  border-color: var(--wood-deep);
}

.featured-dot.is-active {
  background: var(--wood-deep);
  border-color: var(--wood-deep);
  transform: scale(1.3);
}

/* ---------- Shop note / delivery ---------- */

.note-strip {
  background: var(--espresso);
  color: #cfc2ac;
}

.note-strip .note-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(44px, 6vw, 76px) 0;
}

.note-strip h3 {
  color: #f0e4cb;
  font-size: 19px;
  margin-bottom: 10px;
}

.note-strip p {
  font-size: 14.5px;
}

.note-strip .note-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: #d3b98f;
  display: block;
  margin-bottom: 6px;
}

.note-item .hand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: #d3b98f;
  display: block;
  margin-bottom: 6px;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.contact-info .contact-block {
  margin-bottom: 40px;
}

.contact-block .hand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--wood-deep);
  display: block;
  margin-bottom: 6px;
}

.contact-block h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 8px;
}

.contact-block p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.contact-block a {
  color: var(--espresso);
  font-size: 16px;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(160, 113, 74, 0.4);
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.contact-block a:hover {
  color: var(--wood-deep);
  text-decoration-color: var(--wood-deep);
}

.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 4vw, 44px);
}

.contact-form-card h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 8px;
}

.contact-form-card .form-intro {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-form-card label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 18px 0 6px;
}

.contact-form-card label span {
  letter-spacing: 0.05em;
  text-transform: none;
  opacity: 0.65;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--wood);
  box-shadow: 0 0 0 3px rgba(160, 113, 74, 0.12);
}

.btn--block {
  display: block;
  width: 100%;
  margin-top: 26px;
}

.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  opacity: 0.8;
}

.form-success {
  text-align: center;
  padding: 20px 4px;
}

.form-success p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 10px 0 22px;
}

.full-figure img {
  width: 100%;
  height: clamp(280px, 40vw, 460px);
  object-fit: cover;
  display: block;
}

.full-figure figcaption {
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

/* ---------- Testimonial ---------- */

.testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 34px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--espresso);
  text-wrap: balance;
}

.testimonial cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wood-deep);
}

/* ---------- Visit / contact ---------- */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.visit-grid .visit-media img {
  width: 100%;
  height: clamp(300px, 44vw, 560px);
  object-fit: cover;
}

.info-block {
  padding: 0 0 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.info-block:last-child {
  border-bottom: 0;
}

.info-block h3 {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--wood-deep);
  margin-bottom: 12px;
}

.info-block p,
.info-block a {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--espresso);
  line-height: 1.4;
}

.info-block a:hover {
  color: var(--wood-deep);
}

/* ---------- Timeline ---------- */

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line-dark);
}

.timeline-item {
  position: relative;
  padding: 0 0 40px 24px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--wood);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line-dark);
}

.timeline-item .year {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--wood-deep);
  line-height: 1;
}

.timeline-item p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------- Story / editorial ---------- */

.editorial p {
  font-size: 17px;
  color: var(--ink);
  max-width: 66ch;
  margin-bottom: 22px;
}

.editorial .dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--wood-deep);
}

.editorial h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 40px 0 16px;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: var(--wood-deep);
  border-left: 2px solid var(--wood);
  padding-left: 24px;
  margin: 40px 0;
  max-width: 40ch;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 48px 0;
}

.gallery img {
  width: 100%;
  height: clamp(200px, 24vw, 300px);
  object-fit: cover;
  filter: saturate(0.92) sepia(0.05);
  transition: filter 0.5s ease, transform 0.8s ease;
}

.gallery img:hover {
  filter: none;
  transform: scale(1.02);
}

/* ---------- Form ---------- */

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field textarea,
.field select {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-dark);
  padding: 14px 16px;
  border-radius: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--wood);
  box-shadow: 0 0 0 3px rgba(160, 113, 74, 0.15);
}

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

.field .hint {
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0;
  text-transform: none;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--espresso);
  color: #b7a684;
  padding: clamp(56px, 7vw, 88px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.footer .logo {
  margin-bottom: 18px;
}

.footer .logo .logo-img {
  height: 150px;
}

.footer p {
  font-size: 14px;
  max-width: 38ch;
  line-height: 1.8;
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d3b98f;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  font-size: 14px;
  color: #cfc2ac;
  transition: color 0.3s ease;
}

.footer ul a:hover {
  color: #fff;
}

.footer .footer-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: #d3b98f;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 234, 216, 0.12);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Modal ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 12, 0.66);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  background: var(--paper);
  width: min(940px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  box-shadow: var(--shadow-lg);
}

.modal-media {
  min-height: 320px;
  background: #efe7d7;
}

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

.modal-body {
  padding: clamp(26px, 3.4vw, 44px);
  display: flex;
  flex-direction: column;
}

.modal-body .modal-cat {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wood-deep);
}

.modal-body h3 {
  font-size: clamp(26px, 3.4vw, 34px);
  margin: 10px 0 6px;
  line-height: 1.1;
}

.modal-body .modal-price {
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.modal-body .modal-price strong {
  color: var(--espresso);
  font-weight: 500;
}

.modal-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.modal-specs {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.modal-specs h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wood-deep);
  margin-bottom: 8px;
}

.modal-specs ul li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 5px;
}

.modal-specs ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--wood);
}

.modal-note {
  margin-top: 20px;
  padding: 16px 18px;
  background: rgba(160, 113, 74, 0.08);
  border-left: 2px solid var(--wood);
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  background: rgba(42, 32, 24, 0.82);
  color: #f0e4cb;
  border: 0;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: background 0.3s ease;
}

.modal-close:hover {
  background: var(--wood-deep);
}

/* ---------- Animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .featured-track .product-card { animation: none; }
  .product-card:hover, .craft-item img, .product-card img, .gallery img { transform: none !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .craft-grid { grid-template-columns: 1fr 1fr; }
  .finishes { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .note-strip .note-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-panel { grid-template-columns: 1fr; }
  .modal-media { min-height: 280px; }
  .modal-media img { min-height: 280px; max-height: 40vh; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .burger { display: block; }
  .header-inner { padding-top: 10px; padding-bottom: 10px; }
  .logo .logo-img { height: 84px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .craft-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .split-media img { height: 300px; }
}
