
:root {
  --ink: #30352f;
  --ink-soft: #5d625b;
  --cream: #fbf8f1;
  --paper: #ffffff;
  --sage: #9bae93;
  --sage-dark: #667b61;
  --rust: #bf623e;
  --rust-dark: #96462d;
  --gold: #e4b453;
  --sky: #b9d9df;
  --line: #ded8cb;
  --shadow: 0 18px 50px rgba(48, 53, 47, .10);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--rust-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--rust);
}
h1, h2, h3 {
  margin: 0 0 .65em;
  line-height: 1.06;
  letter-spacing: -.025em;
  font-family: Georgia, "Times New Roman", serif;
}
h1 { font-size: clamp(3rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2.2rem, 4.6vw, 4.1rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
p { margin: 0 0 1.2em; color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 1.7vw, 1.35rem); max-width: 760px; }
.kicker { color: var(--rust); font-weight: 800; }
.muted { color: var(--ink-soft); }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(48,53,47,.16); }
.btn.alt { background: var(--rust); }
.btn.light { background: white; color: var(--ink); border: 1px solid var(--line); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251,248,241,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(222,216,203,.85);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 44% 56%;
  background: var(--rust);
  transform: rotate(-12deg);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 24px;
  border-left: 3px solid var(--cream);
  left: 17px;
  top: 5px;
  transform: rotate(25deg);
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  text-decoration: none;
  font-size: .95rem;
  font-weight: 700;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--rust-dark); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  width: 46px;
  height: 42px;
  cursor: pointer;
}

.hero {
  padding: 72px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
}
.hero h1 span { color: var(--rust); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-photo-wrap { position: relative; }
.hero-photo {
  border-radius: 34px 34px 110px 34px;
  overflow: hidden;
  min-height: 510px;
  box-shadow: var(--shadow);
  background: #e9e2d5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 510px; }
.scribble {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 155px;
  height: 155px;
  border: 10px solid var(--gold);
  border-radius: 50%;
  opacity: .75;
  pointer-events: none;
}
.badge {
  position: absolute;
  left: -26px;
  bottom: 34px;
  background: white;
  border-radius: 18px;
  padding: 16px 18px;
  max-width: 230px;
  box-shadow: var(--shadow);
  font-weight: 800;
}
.badge small { display: block; color: var(--ink-soft); font-weight: 600; margin-top: 2px; }

.section { padding: 88px 0; }
.section.white { background: var(--paper); }
.section.sage { background: #e8efe5; }
.section.rust { background: var(--rust); color: white; }
.section.rust p { color: rgba(255,255,255,.84); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 36px; }
.section-head p { max-width: 580px; margin-bottom: 4px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(48,53,47,.05);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  background: #f1e3d9;
  font-size: 1.45rem;
}
.card p:last-child { margin-bottom: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.feature-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.checks { display: grid; gap: 13px; margin: 24px 0 30px; padding: 0; list-style: none; }
.checks li { display: flex; gap: 10px; align-items: flex-start; }
.checks li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: white; background: var(--sage-dark);
  font-weight: 900;
  font-size: .78rem;
  margin-top: 1px;
}

.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.product {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 12px 34px rgba(48,53,47,.06);
}
.product-image {
  position: relative;
  background: #eee8dc;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product:hover .product-image img { transform: scale(1.025); }
.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-body { padding: 24px; }
.product-body p { min-height: 52px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.chip { background: #f2eee5; border-radius: 999px; padding: 6px 10px; font-size: .82rem; font-weight: 700; color: var(--ink-soft); }

.quote {
  margin: 0;
  padding-left: 24px;
  border-left: 5px solid var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.24;
  color: var(--ink);
}
.page-hero { padding: 70px 0 50px; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.4rem); max-width: 900px; }
.page-hero p { max-width: 760px; font-size: 1.18rem; }

.about-copy { max-width: 900px; }
.about-copy p { font-size: 1.08rem; }
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  margin-top: 40px;
}
.stat { background: white; padding: 26px; text-align: center; }
.stat strong { display: block; font-family: Georgia, serif; font-size: 1.55rem; color: var(--rust-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: start;
}
.contact-panel, .form-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
}
.contact-email {
  display: inline-block;
  color: var(--rust-dark);
  font-size: 1.15rem;
  font-weight: 900;
  word-break: break-word;
}
.form-grid { display: grid; gap: 16px; }
label { font-weight: 800; font-size: .9rem; }
input, textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  border: 1px solid #cfc8bb;
  border-radius: 12px;
  background: #fffdfa;
  color: var(--ink);
}
textarea { min-height: 145px; resize: vertical; }
.form-note { font-size: .84rem; margin-top: 13px; }

.placeholder-note {
  border: 1px dashed #b7ad9d;
  border-radius: 18px;
  padding: 18px;
  color: var(--ink-soft);
  background: rgba(255,255,255,.45);
}

footer {
  padding: 54px 0 34px;
  background: #2f352f;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr .8fr;
  gap: 40px;
}
footer p, footer a { color: rgba(255,255,255,.74); }
footer a { text-decoration: none; }
footer a:hover { color: white; }
.footer-links { display: grid; gap: 8px; }
.copyright {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 38px;
  padding-top: 22px;
  color: rgba(255,255,255,.55);
  font-size: .84rem;
}

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px; left: 20px; right: 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .menu-toggle { display: block; }
  .hero-grid, .feature-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-photo, .hero-photo img { min-height: 390px; }
  .badge { left: 14px; bottom: 14px; }
  .cards { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .stat-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .hero { padding-top: 48px; }
  .hero-photo, .hero-photo img { min-height: 320px; }
  .section { padding: 66px 0; }
  .card, .contact-panel, .form-panel { padding: 22px; }
}
