/* ==========================================================================
   Wooden Crafts — handmade by Oscar
   Design system: warm & artisanal (cream, walnut, terracotta, sage)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --cream:       #FBF6ED;   /* page background */
  --paper:       #F3EADB;   /* soft card background */
  --linen:       #E8DDC7;   /* subtle divider */
  --walnut:      #2B2118;   /* primary text / ink */
  --walnut-2:    #5C4634;   /* secondary text */
  --terra:       #C06A3F;   /* accent: terracotta */
  --terra-dark:  #9E4F2B;
  --sage:        #7E8A6A;   /* secondary accent */
  --white:       #FFFFFF;

  --radius:      14px;
  --radius-sm:   8px;
  --shadow-sm:   0 2px 8px rgba(43, 33, 24, 0.06);
  --shadow-md:   0 10px 30px rgba(43, 33, 24, 0.10);

  --f-display:   "Fraunces", Georgia, serif;
  --f-body:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-accent:    "Caveat", cursive;

  --max:         1240px;
  --gutter:      clamp(20px, 4vw, 48px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--walnut);
  background: var(--cream);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
  /* subtle paper texture */
  background-image:
    radial-gradient(rgba(92,70,52,.03) 1px, transparent 1px),
    radial-gradient(rgba(92,70,52,.02) 1px, transparent 1px);
  background-size: 24px 24px, 48px 48px;
  background-position: 0 0, 12px 12px;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.01em; margin: 0 0 .4em; line-height: 1.1; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: .85rem; text-transform: uppercase; letter-spacing: .14em; font-family: var(--f-body); font-weight: 600; color: var(--walnut-2); }
p  { margin: 0 0 1em; color: var(--walnut-2); }

.eyebrow {
  font-family: var(--f-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--terra);
  margin: 0 0 1em;
}
em { font-family: var(--f-display); font-style: italic; color: var(--terra-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .9em 1.6em;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 500;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--walnut); color: var(--cream); }
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--walnut); border-color: var(--walnut); }
.btn-ghost:hover { background: var(--walnut); color: var(--cream); }
.btn-full { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  background: rgba(251, 246, 237, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(92,70,52,.08);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--walnut);
}
.logo-mark {
  display: inline-flex;
  width: 28px;
  height: 28px;
  color: var(--walnut);
}
.logo-text {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: .92rem;
  color: var(--walnut-2);
  position: relative;
  padding: 6px 2px;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--walnut); }
.nav-links a.nav-cta {
  background: var(--walnut);
  color: var(--cream);
  padding: .55em 1.1em;
  border-radius: 100px;
  font-weight: 500;
}
.nav-links a.nav-cta:hover { background: var(--terra-dark); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid rgba(92,70,52,.18);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--walnut-2);
}
.lang-toggle .lang-opt { transition: color .15s ease; padding: 0 4px; }
.lang-toggle .lang-opt.active { color: var(--walnut); font-weight: 600; }
.lang-toggle .lang-sep { opacity: .4; }

/* ---------- Hero (video) ---------- */
.hero-video {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
  max-width: none;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(43,33,24,.35) 0%,
      rgba(43,33,24,.20) 40%,
      rgba(43,33,24,.55) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; }
.hero-inner-centered {
  text-align: center;
  max-width: 960px;
  padding: 0 var(--gutter);
}
.hero-title { font-size: clamp(2.6rem, 7vw, 5.8rem); font-weight: 300; }
.hero-title em { font-weight: 400; display: block; }
.hero-title-light { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.2); }
.hero-title-light em { color: #F6D7C2; }
.hero-sub {
  font-size: 1.15rem;
  max-width: 54ch;
  color: var(--walnut-2);
  margin: 1.4em auto 0;
}
.hero-sub-light { color: rgba(255,255,255,.92); text-shadow: 0 1px 10px rgba(0,0,0,.15); }
.eyebrow.light { color: #F6D7C2; }
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 2em;
  justify-content: center;
}
.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--walnut);
  border-color: #fff;
}
.hero-meta {
  display: flex;
  gap: 48px;
  margin: 3em auto 0;
  padding-top: 2em;
  border-top: 1px solid rgba(255,255,255,.25);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 640px;
}
.hero-meta > div { display: flex; flex-direction: column; gap: 2px; }
.hero-meta strong {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--walnut);
}
.hero-meta span { font-size: .78rem; color: var(--walnut-2); text-transform: uppercase; letter-spacing: .12em; }
.hero-meta-light strong { color: #fff; }
.hero-meta-light span { color: rgba(255,255,255,.75); }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: bounce-down 2.6s ease-in-out infinite;
}
.hero-scroll:hover { color: #fff; }
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* (legacy) small illustration hero — still used if video fails */
.cart-svg {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 30px 40px rgba(43,33,24,.08));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Section heads ---------- */
.section-head {
  max-width: var(--max);
  margin: 0 auto clamp(40px, 6vw, 72px);
  padding: 0 var(--gutter);
  text-align: center;
}
.section-head h2 { max-width: 20ch; margin-left: auto; margin-right: auto; }

/* ---------- Signature pieces ---------- */
.pieces {
  padding: clamp(60px, 9vw, 120px) 0;
  background: var(--paper);
  border-top: 1px solid var(--linen);
  border-bottom: 1px solid var(--linen);
}
.pieces-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.piece-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.piece-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.piece-img {
  height: 200px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fff, #F6EEE0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 18px;
}
.piece-img svg { max-height: 100%; }
.piece-card h3 { color: var(--walnut); }
.piece-card p { font-size: .95rem; flex: 1; }
.piece-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--terra-dark);
  margin-top: 8px;
  transition: color .2s ease, gap .2s ease;
}
.piece-link:hover { color: var(--walnut); }

/* ---------- In the Wild (event shots / social proof) ---------- */
.in-use {
  padding: clamp(60px, 9vw, 120px) 0;
  background:
    linear-gradient(180deg, var(--cream) 0%, #F7EFDF 100%);
}
.section-sub {
  max-width: 48ch;
  margin: .4em auto 0;
  color: var(--walnut-2);
  font-size: 1rem;
}
.in-use-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 18px;
}
.event-tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--paper);
  transition: transform .25s ease, box-shadow .25s ease;
}
.event-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(43,33,24,.14); }
.event-tile.event-tile-tall { grid-row: span 2; }
.event-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.event-tile:hover img { transform: scale(1.05); }
.event-tile figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.event-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--cream);
  color: var(--walnut);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  border-radius: 100px;
}
.event-title {
  font-family: var(--f-display);
  color: #fff;
  font-size: 1.05rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
  padding-left: 2px;
}
.event-subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: .75rem;
  font-style: italic;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
  padding-left: 2px;
  max-width: 28ch;
  line-height: 1.35;
}
.event-price {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  margin-top: 6px;
  background: var(--terra);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(192,106,63,.35);
}
.in-use-note {
  text-align: center;
  font-family: var(--f-accent);
  color: var(--terra);
  font-size: 1.3rem;
  margin: 2em 0 0;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: clamp(60px, 9vw, 120px) 0;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2em;
  flex-wrap: wrap;
}
.filter {
  padding: .55em 1.2em;
  border-radius: 100px;
  font-size: .85rem;
  color: var(--walnut-2);
  border: 1px solid var(--linen);
  transition: all .2s ease;
}
.filter:hover { border-color: var(--walnut); color: var(--walnut); }
.filter.active { background: var(--walnut); color: var(--cream); border-color: var(--walnut); }

.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}
.tile {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  background: var(--paper);
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tile.tile-tall { grid-row: span 2; }
.tile.tile-wide { grid-column: span 2; }
.tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #FBF6ED 0%, #E8DDC7 100%);
  transition: transform .6s ease;
}
.tile:hover .tile-img { transform: scale(1.04); }
.tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(0deg, rgba(43,33,24,.82), rgba(43,33,24,0));
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tile figcaption span { font-family: var(--f-display); font-size: 1.05rem; }
.tile figcaption small { font-size: .78rem; opacity: .85; }
.tile.hidden { display: none; }

.gallery-hint {
  text-align: center;
  font-size: .85rem;
  color: var(--walnut-2);
  margin-top: 2em;
  font-style: italic;
}

/* ---------- Workshop ---------- */
.workshop {
  padding: clamp(60px, 9vw, 120px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.workshop-img { position: relative; }
.workshop-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-md);
}
.workshop-text h2 { max-width: 15ch; }

/* ---------- Custom steps ---------- */
.custom {
  padding: clamp(60px, 9vw, 120px) 0;
  background: var(--paper);
  border-top: 1px solid var(--linen);
  border-bottom: 1px solid var(--linen);
}
.steps {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.steps li {
  background: var(--cream);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--terra);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}
.steps h4 { color: var(--walnut); margin-bottom: 6px; }
.steps p { font-size: .9rem; margin: 0; }

/* ---------- Delivery showcase (flat-pack photo + video) ---------- */
.delivery-showcase {
  max-width: var(--max);
  margin: clamp(40px, 6vw, 72px) auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}
.delivery-media {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--walnut);
  min-height: 360px;
}
.delivery-media img,
.delivery-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.delivery-media:hover img,
.delivery-media:hover video { transform: scale(1.04); }
.delivery-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.delivery-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--cream);
  color: var(--walnut);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  border-radius: 100px;
}
.delivery-title {
  font-family: var(--f-display);
  color: #fff;
  font-size: 1.05rem;
  max-width: 28ch;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
  padding-left: 2px;
}
.delivery-reel { aspect-ratio: 9 / 14; min-height: 0; }
@media (min-width: 961px) {
  .delivery-reel { aspect-ratio: auto; }
}

/* ---------- Reviews ---------- */
.reviews {
  padding: clamp(60px, 9vw, 120px) 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-top: 1px solid var(--linen);
}
.reviews-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-height: 180px;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars {
  color: var(--terra);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.review-text {
  font-family: var(--f-display);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--walnut);
  margin: 0;
  font-style: italic;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--linen);
}
.review-author strong {
  font-family: var(--f-body);
  font-size: .95rem;
  color: var(--walnut);
  font-weight: 600;
}
.review-author span {
  font-size: .8rem;
  color: var(--walnut-2);
}

.reviews-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 20px;
  border: 1.5px dashed rgba(92,70,52,.22);
  border-radius: var(--radius);
  color: var(--walnut-2);
  text-align: center;
}
.reviews-empty svg { color: var(--walnut-2); opacity: .5; }
.reviews-empty p {
  font-family: var(--f-accent);
  font-size: 1.3rem;
  color: var(--terra);
  margin: 0;
}

/* Review submission form */
.review-form-wrap {
  max-width: 640px;
  margin: clamp(40px, 6vw, 64px) auto 0;
  padding: 0 var(--gutter);
}
.review-form-wrap h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 1.2em;
  color: var(--walnut);
}
.review-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.review-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--walnut-2);
}
.review-form input,
.review-form textarea {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--walnut);
  background: var(--paper);
  border: 1px solid var(--linen);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.review-form input:focus,
.review-form textarea:focus {
  border-color: var(--walnut);
  box-shadow: 0 0 0 3px rgba(192,106,63,.12);
}
.review-form textarea { resize: vertical; }

/* Star picker: 5 stars, click/tap to rate. Uses row-reverse + sibling selector trick.
   HTML order is 5→1 so that hovering/selecting a star also highlights the stars visually to its left. */
.star-picker {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
}
.star-picker legend {
  width: 100%;
  order: -1;
  padding: 0;
  margin: 0 0 6px;
  font-size: .82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--walnut-2);
}
.star-picker input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}
.star-picker label {
  font-size: 2rem;
  line-height: 1;
  color: #D7CEBC;
  cursor: pointer;
  padding: 4px 2px;
  transition: color .15s ease, transform .15s ease;
  user-select: none;
}
.star-picker label:hover,
.star-picker label:hover ~ label,
.star-picker input:checked ~ label {
  color: var(--terra);
}
.star-picker label:hover { transform: scale(1.12); }
.star-picker input:focus-visible + label {
  outline: 2px solid var(--walnut);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Contact ---------- */
.contact {
  padding: clamp(60px, 9vw, 120px) var(--gutter);
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-copy h2 { max-width: 14ch; }
.contact-channels {
  margin-top: 2em;
  display: grid;
  gap: 14px;
}
.contact-channels li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--linen);
}
.contact-channels span {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--walnut-2);
  width: 90px;
  flex-shrink: 0;
}
.contact-channels a { color: var(--walnut); font-weight: 500; }
.contact-channels a:hover { color: var(--terra-dark); }

.contact-form {
  background: var(--paper);
  padding: 36px;
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--walnut-2);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--walnut);
  background: var(--cream);
  border: 1px solid var(--linen);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--walnut);
  box-shadow: 0 0 0 3px rgba(192,106,63,.12);
}
.contact-form textarea { resize: vertical; }
.form-status {
  font-size: .9rem;
  color: var(--sage);
  margin: 0;
  min-height: 1.2em;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--walnut);
  color: var(--cream);
  padding: 64px var(--gutter) 28px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo-mark { color: var(--cream); width: 32px; height: 32px; }
.footer-brand .logo-text { display: inline-block; margin-left: 10px; }
.footer-brand p { color: rgba(251,246,237,.6); margin-top: 12px; font-size: .9rem; }
.footer-col h5 { color: rgba(251,246,237,.55); margin-bottom: 14px; }
.footer-col a {
  display: block;
  font-size: .92rem;
  color: var(--cream);
  opacity: .82;
  padding: 4px 0;
  transition: opacity .2s ease;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(251,246,237,.12);
  font-size: .82rem;
  color: rgba(251,246,237,.5);
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .pieces-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 960px) {
  .hero-video { min-height: 86vh; }

  .pieces-grid { grid-template-columns: repeat(2, 1fr); }
  .in-use-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
  }
  .event-tile.event-tile-tall { grid-column: span 2; grid-row: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .tile.tile-wide { grid-column: span 2; }
  .tile.tile-tall { grid-row: span 2; }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .workshop-grid { grid-template-columns: 1fr; gap: 40px; }
  .workshop-img { order: -1; }

  .steps { grid-template-columns: repeat(2, 1fr); }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
}
@media (max-width: 560px) {
  .hero-video { min-height: 80vh; }
  .pieces-grid { grid-template-columns: 1fr; }
  .in-use-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 260px);
  }
  .event-tile.event-tile-tall { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .tile.tile-wide, .tile.tile-tall { grid-column: auto; grid-row: auto; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-meta { gap: 24px; }
}
