:root {
  --sand: #f6efe3;
  --sand-deep: #ece0cd;
  --ink: #2c2420;
  --ink-soft: #5f5346;
  --terra: #d97e39;
  --terra-deep: #b8611f;
  --sea: #2f8f8a;
  --cream: #fffaf2;
  --shadow: 0 18px 40px -18px rgba(60, 40, 20, .35);
  --radius: 16px;
  --max: 1140px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.eyebrow {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; color: var(--terra-deep); margin-bottom: .6rem;
}

/* Buttons */
.btn {
  display: inline-block; padding: .85rem 1.6rem; border-radius: 40px;
  font-weight: 600; font-size: .95rem; cursor: pointer; border: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 10px 22px -10px var(--terra-deep); }
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.7); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 250, 242, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(120, 90, 58, .1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: .55rem; color: var(--terra); }
.brand-mark { width: 30px; height: 30px; }
.brand-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
.brand-name span { color: var(--terra); }
.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a { font-size: .93rem; font-weight: 500; color: var(--ink-soft); transition: color .2s; }
.nav a:hover { color: var(--terra-deep); }
.nav .nav-cta {
  background: var(--ink); color: #fff; padding: .5rem 1.1rem; border-radius: 30px;
}
.nav .nav-cta:hover { background: var(--terra-deep); color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* Hero */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(40,28,18,.62) 0%, rgba(40,28,18,.28) 45%, rgba(40,28,18,.05) 75%);
}
.hero-content { position: relative; color: #fff; padding-top: 6vh; padding-bottom: 6vh; max-width: 660px; }
.hero-content .eyebrow { color: #ffd9ac; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 600; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); margin: 1.4rem 0 2rem; max-width: 34ch; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Props */
.props {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: -46px; position: relative; z-index: 5;
}
.prop {
  background: var(--cream); border: 1px solid rgba(120,90,58,.12);
  border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); text-align: center;
}
.prop-icon { font-size: 1.8rem; }
.prop h3 { font-size: 1.15rem; margin: .5rem 0 .3rem; }
.prop p { color: var(--ink-soft); font-size: .95rem; }

/* Sections */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-alt { background: var(--sand); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.section-lede { color: var(--ink-soft); margin-top: .8rem; }

/* Product grid */
.grid { display: grid; gap: 1.8rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--cream); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(120,90,58,.12); box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -20px rgba(60,40,20,.4); }
.card-media { aspect-ratio: 1/1; overflow: hidden; background: var(--sand-deep); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card-tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sea); font-weight: 600; }
.card h3 { font-size: 1.35rem; }
.card p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .6rem; }
.card-price { font-family: var(--serif); font-size: 1.15rem; color: var(--terra-deep); font-weight: 600; }
.card-link { font-weight: 600; font-size: .9rem; color: var(--terra-deep); }
.card-link:hover { text-decoration: underline; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-text h2 { margin-bottom: 1rem; }
.split-text p { color: var(--ink-soft); }
.checks { list-style: none; margin: 1.3rem 0 1.8rem; display: grid; gap: .6rem; }
.checks li { position: relative; padding-left: 1.8rem; font-weight: 500; }
.checks li::before {
  content: "✦"; position: absolute; left: 0; color: var(--terra); font-size: 1rem;
}

/* Lifestyle */
.lifestyle { position: relative; min-height: 60vh; display: flex; align-items: center; overflow: hidden; }
.lifestyle-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lifestyle-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,20,12,.15), rgba(30,20,12,.55)); }
.lifestyle-content { position: relative; color: #fff; max-width: 560px; padding: 4rem 24px; }
.lifestyle-content h2 { margin-bottom: 1rem; }
.lifestyle-content p { color: rgba(255,255,255,.92); font-size: 1.1rem; }

/* Story */
.story { max-width: 720px; text-align: center; }
.story h2 { margin: .3rem 0 1.2rem; }
.story p { color: var(--ink-soft); font-size: 1.08rem; }
.story-sign { font-family: var(--serif); font-style: italic; color: var(--terra-deep); margin-top: 1.4rem; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-text p { color: var(--ink-soft); margin-top: .8rem; }
.contact-detail a { color: var(--terra-deep); font-weight: 600; }
.contact-form { display: grid; gap: 1.1rem; background: var(--cream); padding: 1.8rem; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(120,90,58,.12); }
.field { display: grid; gap: .35rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .95rem; padding: .7rem .85rem;
  border: 1.5px solid rgba(120,90,58,.22); border-radius: 10px; background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px rgba(217,126,57,.15);
}
.contact-form .btn { justify-self: start; }
.form-note { font-size: .9rem; color: var(--sea); font-weight: 600; min-height: 1.2em; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.8); padding: 3rem 0 1.8rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name span { color: var(--terra); }
.footer-brand p { color: rgba(255,255,255,.55); font-family: var(--serif); font-style: italic; margin-top: .3rem; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,.75); font-size: .93rem; }
.footer-nav a:hover { color: var(--terra); }
.footer-copy { text-align: center; margin-top: 2rem; font-size: .82rem; color: rgba(255,255,255,.45); border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.4rem; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid rgba(120,90,58,.15);
    padding: .5rem 0; transform: translateY(-120%); transition: transform .3s ease; box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: .9rem 24px; }
  .nav .nav-cta { border-radius: 0; margin: .4rem 24px; text-align: center; }
  .nav-toggle { display: flex; }
  .props { grid-template-columns: 1fr; margin-top: -30px; }
  .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .contact { grid-template-columns: 1fr; }
}
@media (min-width: 561px) and (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
