/* ============================================================
   THOMAS MATTHEW TIMBER — STYLES
   Brand: Black / White / Amber accent — Open Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Great+Vibes&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */

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

:root {
  --black:      #000000;
  --white:      #ffffff;
  --amber:      #B8965E;
  --amber-dark: #8B6B3A;
  --amber-pale: #F5EEE3;
  --grey-100:   #f7f7f7;
  --grey-200:   #e8e8e8;
  --grey-500:   #999999;
  --grey-700:   #444444;
  --red:        #c0392b;
  --font:       'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.16);
  --radius:     2px;
  --max-width:  1200px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.125rem; }

.label-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

/* ── Layout ───────────────────────────────────────────────── */

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5rem 0; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { color: var(--grey-700); max-width: 600px; margin: 1rem auto 0; font-weight: 300; }

/* ── Navigation ───────────────────────────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  height: 96px;
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
}

.nav-logo {
  display: flex; align-items: center;
}

.nav-logo-img {
  height: 84px;
  width: auto;
  /* logo PNG has a white background — multiply drops it onto the white nav cleanly */
  mix-blend-mode: multiply;
}

.nav-logo-script {
  font-family: 'Great Vibes', cursive;
  font-size: 1.75rem;
  color: var(--black);
  display: block;
  line-height: 1;
}

.nav-logo-word {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-500);
  display: block;
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-700);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--black); }

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  transition: background var(--transition) !important;
}

.nav-cta:hover { background: var(--amber) !important; color: var(--white) !important; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 0.25rem;
}

.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--black); margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  padding-top: 96px; /* nav offset */
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.pexels.com/photos/5089151/pexels-photo-5089151.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 40%;
}

/* Dark overlay to keep text readable */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.78);
}

/* Warm amber radial lift */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(184,150,94,0.12) 0%, transparent 65%);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.hero-text { color: var(--white); }
.hero-text .label-tag { margin-bottom: 1.25rem; }

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-text h1 strong {
  font-weight: 700; display: block;
}

.hero-text p {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--amber);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3); cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  margin-top: 3.5rem; padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-value {
  font-size: 2rem; font-weight: 700; color: var(--amber);
  display: block; margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.75rem; font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em;
}

.hero-visual {
  display: flex; flex-direction: column; gap: 1rem;
}

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}

.hero-card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(184,150,94,0.15);
  display: flex; align-items: center; justify-content: center;
}

.hero-card-icon svg { stroke: var(--amber); }

.hero-card-text strong {
  display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 0.2rem;
}

.hero-card-text span {
  color: rgba(255,255,255,0.5); font-size: 0.8rem; font-weight: 300;
}

/* ── How It Works ─────────────────────────────────────────── */

.how-it-works { background: var(--grey-100); }

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

.step {
  text-align: center; padding: 2.5rem 2rem;
  background: var(--white);
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.step:hover { border-bottom-color: var(--amber); box-shadow: var(--shadow-md); }

.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--black);
  color: var(--amber);
  font-size: 1.25rem; font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step h3 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.step p { color: var(--grey-700); font-weight: 300; font-size: 0.95rem; }

/* ── Species Grid ─────────────────────────────────────────── */

#species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.species-card {
  border: 1px solid var(--grey-200);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.species-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── Species Swatches — wood grain per species ────────────── */

.species-swatch { height: 120px; position: relative; overflow: hidden; }

/* Tulipwood — pale cream, fine straight grain */
.swatch-tulipwood {
  background-color: #d4c9b0;
  background-image:
    repeating-linear-gradient(-1deg, transparent 0, transparent 7px, rgba(0,0,0,0.045) 7px, rgba(0,0,0,0.045) 8px),
    repeating-linear-gradient(-1deg, transparent 0, transparent 22px, rgba(0,0,0,0.06) 22px, rgba(0,0,0,0.06) 24px),
    linear-gradient(95deg, #ccc0a0 0%, #d8ccb0 30%, #c9bda0 55%, #d4c8a8 80%, #ccbf9e 100%);
}

/* Beech — pale pinkish-brown, fine even grain with small flecks */
.swatch-beech {
  background-color: #c4956a;
  background-image:
    repeating-linear-gradient(-2deg, transparent 0, transparent 5px, rgba(0,0,0,0.055) 5px, rgba(0,0,0,0.055) 6px),
    repeating-linear-gradient(-2deg, transparent 0, transparent 18px, rgba(120,70,40,0.09) 18px, rgba(120,70,40,0.09) 20px),
    linear-gradient(95deg, #c0906a 0%, #ca9c70 25%, #ba8860 50%, #c8986e 75%, #be9268 100%);
}

/* Oak — warm golden, open pronounced grain with growth rings */
.swatch-oak {
  background-color: #b07c3a;
  background-image:
    repeating-linear-gradient(-3deg, transparent 0, transparent 9px, rgba(0,0,0,0.07) 9px, rgba(0,0,0,0.07) 11px),
    repeating-linear-gradient(-3deg, transparent 0, transparent 32px, rgba(0,0,0,0.11) 32px, rgba(0,0,0,0.11) 35px),
    linear-gradient(95deg, #a87030 0%, #bc8844 25%, #a47030 50%, #ba8840 75%, #a87235 100%);
}

/* Ash — creamy white with high-contrast bold brown grain */
.swatch-ash {
  background-color: #d4c090;
  background-image:
    repeating-linear-gradient(-1deg, transparent 0, transparent 11px, rgba(70,40,10,0.13) 11px, rgba(70,40,10,0.13) 13px),
    repeating-linear-gradient(-1deg, transparent 0, transparent 38px, rgba(70,40,10,0.20) 38px, rgba(70,40,10,0.20) 41px),
    linear-gradient(95deg, #d0bc8c 0%, #dcc898 25%, #c8b488 50%, #d8c494 75%, #cebe8e 100%);
}

/* Sapele — rich reddish-brown, interlocking ribbon figure (diagonal) */
.swatch-sapele {
  background-color: #7a3015;
  background-image:
    repeating-linear-gradient(-18deg, transparent 0, transparent 10px, rgba(0,0,0,0.14) 10px, rgba(0,0,0,0.14) 11px),
    repeating-linear-gradient(12deg, transparent 0, transparent 10px, rgba(255,255,255,0.06) 10px, rgba(255,255,255,0.06) 11px),
    linear-gradient(95deg, #742c12 0%, #8a3c20 25%, #702c10 50%, #883a1e 75%, #752e14 100%);
}

/* Walnut — dark chocolate, subtle wavy grain */
.swatch-walnut {
  background-color: #3e2010;
  background-image:
    repeating-linear-gradient(-5deg, transparent 0, transparent 14px, rgba(255,255,255,0.04) 14px, rgba(255,255,255,0.04) 16px),
    repeating-linear-gradient(-5deg, transparent 0, transparent 42px, rgba(0,0,0,0.20) 42px, rgba(0,0,0,0.20) 46px),
    linear-gradient(95deg, #3a1c0c 0%, #4a2818 25%, #361c0c 50%, #462418 75%, #3c2010 100%);
}

/* Accoya — pale cream, very fine straight grain (modified pine) */
.swatch-accoya {
  background-color: #e4d4a0;
  background-image:
    repeating-linear-gradient(-1deg, transparent 0, transparent 8px, rgba(0,0,0,0.04) 8px, rgba(0,0,0,0.04) 9px),
    repeating-linear-gradient(-1deg, transparent 0, transparent 28px, rgba(160,120,60,0.07) 28px, rgba(160,120,60,0.07) 30px),
    linear-gradient(95deg, #e0d09c 0%, #e8daa8 30%, #dccca0 55%, #eadaaa 80%, #e0d0a0 100%);
}

/* Redwood — warm honey joinery pine, fine straight grain with small knots */
.swatch-redwood {
  background-color: #d9b789;
  background-image:
    repeating-linear-gradient(-1deg, transparent 0, transparent 8px, rgba(120,70,30,0.07) 8px, rgba(120,70,30,0.07) 9px),
    repeating-linear-gradient(-1deg, transparent 0, transparent 26px, rgba(120,70,30,0.10) 26px, rgba(120,70,30,0.10) 28px),
    linear-gradient(95deg, #d4b083 0%, #ddbb8e 30%, #cda87a 55%, #dab98a 80%, #d3b082 100%);
}

/* Larch — warm honey-orange, characterful grain with knots */
.swatch-larch {
  background-color: #c9924e;
  background-image:
    repeating-linear-gradient(-2deg, transparent 0, transparent 7px, rgba(90,45,15,0.08) 7px, rgba(90,45,15,0.08) 8px),
    repeating-linear-gradient(-2deg, transparent 0, transparent 24px, rgba(90,45,15,0.13) 24px, rgba(90,45,15,0.13) 27px),
    linear-gradient(95deg, #c48d4a 0%, #cf9856 25%, #ba8442 50%, #cd9654 75%, #c38c4c 100%);
}

/* Douglas Fir — pinkish-tan, straight pronounced grain */
.swatch-douglasfir {
  background-color: #d08b5e;
  background-image:
    repeating-linear-gradient(-2deg, transparent 0, transparent 9px, rgba(110,50,25,0.09) 9px, rgba(110,50,25,0.09) 11px),
    repeating-linear-gradient(-2deg, transparent 0, transparent 30px, rgba(110,50,25,0.13) 30px, rgba(110,50,25,0.13) 33px),
    linear-gradient(95deg, #cb8658 0%, #d69264 25%, #c07e50 50%, #d49060 75%, #ca8758 100%);
}

/* Western Red Cedar — rich reddish-brown, fine even grain */
.swatch-cedar {
  background-color: #9c5a38;
  background-image:
    repeating-linear-gradient(-1deg, transparent 0, transparent 8px, rgba(0,0,0,0.08) 8px, rgba(0,0,0,0.08) 9px),
    repeating-linear-gradient(-1deg, transparent 0, transparent 27px, rgba(0,0,0,0.12) 27px, rgba(0,0,0,0.12) 29px),
    linear-gradient(95deg, #97552f 0%, #a4623e 25%, #8e5030 50%, #a05e3a 75%, #985634 100%);
}

.species-card-body { padding: 1.5rem; }

.species-card-body h3 {
  font-size: 1rem; margin-bottom: 0.75rem;
}

.species-description {
  font-size: 0.85rem; color: var(--grey-700);
  font-weight: 300; line-height: 1.7;
  margin-bottom: 1rem;
}

.species-meta {
  display: grid; grid-template-columns: auto 1fr;
  gap: 0.25rem 1rem; font-size: 0.8rem; margin-bottom: 1rem;
}

.species-meta dt { font-weight: 600; color: var(--grey-500); white-space: nowrap; }
.species-meta dd { color: var(--grey-700); font-weight: 300; }

.species-price-from {
  font-size: 0.8rem; font-weight: 600;
  color: var(--amber);
  padding-top: 0.75rem;
  border-top: 1px solid var(--grey-200);
}

/* ── Cut List Section ─────────────────────────────────────── */

#cutlist-section { background: var(--black); color: var(--white); }

#cutlist-section .section-header { color: var(--white); }
#cutlist-section .section-header .label-tag { color: var(--amber); }
#cutlist-section .section-header p { color: rgba(255,255,255,0.6); }

.cutlist-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 2rem; align-items: start;
}

/* Table wrapper */
.cutlist-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.1);
}

.cutlist-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 700px;
}

.cutlist-table thead th {
  background: rgba(255,255,255,0.05);
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cutlist-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}

.cutlist-table tbody tr:hover { background: rgba(255,255,255,0.03); }

.cutlist-table tbody td { padding: 0.75rem 1rem; vertical-align: middle; }

.input-select, .input-dim, .input-qty {
  background: var(--white);
  border: 1.5px solid var(--black);
  color: var(--black);
  padding: 0.5rem 0.75rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}

.input-select { cursor: pointer; }
.input-select option { background: var(--white); color: var(--black); }

.input-dim { width: 90px; text-align: center; }
.input-qty { width: 70px; text-align: center; }

.input-select:focus,
.input-dim:focus,
.input-qty:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 2px rgba(184,150,94,0.25);
}

/* Remove ::-webkit-inner-spin-button for cleaner look */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { opacity: 0.5; }

.row-total {
  font-weight: 600; color: var(--amber); white-space: nowrap;
  min-width: 100px;
}

.btn-remove-row {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.3);
  padding: 0.25rem;
  transition: color var(--transition);
  display: flex; align-items: center; justify-content: center;
}

.btn-remove-row:hover { color: var(--red); }

/* Add row button */
.btn-add-row {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1rem;
  background: var(--amber);
  border: none;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-add-row:hover { background: var(--amber-dark); transform: translateY(-1px); }

.cutlist-hint {
  margin-top: 0.75rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.35); font-weight: 300;
}

/* Notes field */
.notes-wrap { margin-top: 1.5rem; }

.notes-label {
  display: block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.notes-label span { font-weight: 300; text-transform: none; letter-spacing: 0; }

.order-notes {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--black);
  color: var(--black);
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  resize: vertical;
  outline: none;
  border-radius: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.order-notes::placeholder { color: #999; }

.order-notes:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 2px rgba(184,150,94,0.25);
}

/* Dimension warning */
.dim-warning {
  display: none;
  margin-top: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: rgba(192,57,43,0.12);
  border-left: 3px solid #e74c3c;
  font-size: 0.78rem;
  color: #e74c3c;
}

/* ── Order Summary Panel ──────────────────────────────────── */

.order-summary {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.75rem;
  position: sticky; top: 80px;
}

.order-summary h3 {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.5rem;
}

/* Delivery toggle */
.delivery-toggle-label {
  font-size: 0.8rem; font-weight: 700; color: var(--white);
  margin-bottom: 0.6rem;
}

.delivery-toggle {
  display: flex; gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.delivery-toggle-btn {
  flex: 1; padding: 0.7rem 0.5rem; text-align: center;
  display: flex; flex-direction: column; gap: 0.15rem; align-items: center;
  font-family: var(--font);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
  cursor: pointer; transition: all var(--transition);
}

.delivery-toggle-btn small {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.02em;
  text-transform: none; color: rgba(255,255,255,0.6);
}

.delivery-toggle-btn:hover { border-color: var(--amber); }

.delivery-toggle-btn.active {
  background: var(--amber); border-color: var(--amber); color: var(--white);
}

.delivery-toggle-btn.active small { color: rgba(255,255,255,0.9); }

/* Summary rows */
.summary-rows { margin-bottom: 1.5rem; }

.summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.875rem;
}

.summary-row:last-child { border-bottom: none; }

.summary-row .s-label { color: rgba(255,255,255,0.5); font-weight: 300; }
.summary-row .s-value { font-weight: 600; color: var(--white); }

.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 0.5rem;
}

.summary-total .s-label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.summary-total .s-value {
  font-size: 1.5rem; font-weight: 700; color: var(--amber);
}

/* Warnings */
.warning-box {
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.3);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: #e74c3c;
  margin-bottom: 1rem;
  display: none;
}

.info-box {
  background: rgba(184,150,94,0.1);
  border: 1px solid rgba(184,150,94,0.25);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--amber);
  margin-bottom: 1rem;
  display: none;
}

/* Checkout button */
.btn-checkout {
  width: 100%; padding: 1rem;
  background: var(--amber);
  color: var(--white);
  border: none; cursor: pointer;
  font-family: var(--font);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}

.btn-checkout:hover:not(:disabled) { background: var(--amber-dark); }

.btn-checkout.btn-disabled,
.btn-checkout:disabled {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
  cursor: not-allowed;
}

.checkout-note {
  margin-top: 0.75rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  text-align: center; line-height: 1.6;
}

.checkout-note svg { vertical-align: middle; margin-right: 0.2rem; }

/* Error banner */
.error-banner {
  margin-top: 1rem; padding: 1rem;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.3);
  color: #e74c3c; font-size: 0.85rem;
  display: none;
}

/* ── About Section ────────────────────────────────────────── */

.about-section { background: var(--grey-100); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}

.about-text .label-tag { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p {
  color: var(--grey-700); font-weight: 300; line-height: 1.9;
  margin-bottom: 1.25rem;
}

.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

.about-feature {
  display: flex; gap: 1rem; align-items: flex-start;
}

.about-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
}

.about-feature-icon svg { stroke: var(--amber); }

.about-feature-text strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.about-feature-text span { font-size: 0.82rem; color: var(--grey-700); font-weight: 300; }

.about-visual { position: relative; }

.about-photo-wrap {
  position: relative;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: grayscale(15%);
}

.about-photo-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.82);
  display: flex;
  border-top: 2px solid var(--amber);
}

.about-stat {
  flex: 1; text-align: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.about-stat:last-child { border-right: none; }

.about-stat-value {
  display: block;
  font-size: 1.6rem; font-weight: 700;
  color: var(--amber); line-height: 1;
  margin-bottom: 0.25rem;
}

.about-stat-label {
  display: block;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── Delivery Section ─────────────────────────────────────── */

.delivery-section { border-top: 1px solid var(--grey-200); }

.delivery-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}

.delivery-card {
  padding: 2.5rem;
  border: 1px solid var(--grey-200);
}

.delivery-card h3 {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem; font-size: 1.05rem;
}

.delivery-card h3 svg { stroke: var(--amber); flex-shrink: 0; }

.delivery-card p {
  color: var(--grey-700); font-weight: 300; font-size: 0.9rem; line-height: 1.8;
  margin-bottom: 0.75rem;
}

.delivery-card p:last-child { margin-bottom: 0; }

.delivery-table {
  width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-top: 1rem;
}

.delivery-table th {
  text-align: left; padding: 0.5rem 0.75rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey-500);
  border-bottom: 2px solid var(--grey-200);
}

.delivery-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--grey-200);
  color: var(--grey-700); font-weight: 300;
}

.delivery-table tr:last-child td { border-bottom: none; }
.delivery-table .price-col { font-weight: 600; color: var(--black); }

/* ── Contact ──────────────────────────────────────────────── */

.contact-section { background: var(--black); color: var(--white); }

.contact-inner { text-align: center; max-width: 600px; margin: 0 auto; }

.contact-inner .label-tag { margin-bottom: 1rem; }
.contact-inner h2 { color: var(--white); margin-bottom: 1rem; }
.contact-inner p {
  color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 2rem;
}

.contact-links {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
}

.contact-link {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.contact-link svg { stroke: var(--amber); flex-shrink: 0; }
.contact-link:hover { color: var(--white); }

/* ── Footer ───────────────────────────────────────────────── */

.footer {
  background: #050505; color: rgba(255,255,255,0.3);
  padding: 2rem 0; font-size: 0.78rem;
}

.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
  flex-wrap: wrap; gap: 1rem;
}

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .cutlist-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute; top: 96px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    padding: 1rem 1.5rem;
  }
  .nav-links a { padding: 0.75rem 0; border-bottom: 1px solid var(--grey-200); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 0.5rem; }
  .nav-toggle { display: block; }

  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 1rem; }

  .steps { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { height: 320px; }
  .delivery-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat-value { font-size: 1.5rem; }
  #species-grid { grid-template-columns: 1fr; }
}
