:root {
  --oak: #5b3a21;
  --bark: #6b4423;
  --leaf: #4f7a3a;
  --leaf-deep: #2f5e34;
  --gold: #e0a92e;
  --gold-deep: #8a6010;
  --sky: #bcdcec;
  --sky-soft: #e7f1f6;
  --cream: #faf6ee;
  --parchment: #f3e7cf;
  --ink: #2c2117;
  --muted: #6f6047;
  --line: #e7ddc8;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1120px;
  --shadow: 0 1px 2px rgba(43, 33, 23, .05), 0 10px 30px rgba(43, 33, 23, .07);
  --shadow-sm: 0 1px 2px rgba(43, 33, 23, .06), 0 4px 14px rgba(43, 33, 23, .06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--bark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--oak);
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-head { max-width: 620px; margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.lead { font-size: 1.15rem; color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--leaf-deep); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #27502b; }
.btn-ghost { background: transparent; color: var(--oak); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--bark); background: #fff; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, .88);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand:hover { text-decoration: none; }
.brand svg, .brand-mark { width: 38px; height: 38px; }
.brand-name { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: 1.18rem; color: var(--oak); line-height: 1.05; }
.brand-name small { display: block; font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); font-family: inherit; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--oak); font-weight: 500; font-size: .98rem; }
.nav a:hover { color: var(--bark); text-decoration: none; }
.nav .btn { padding: 9px 18px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--oak); }

/* Hero */
.hero { background: linear-gradient(180deg, var(--sky-soft) 0%, var(--cream) 78%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 76px 0 64px; }
.hero-copy h1 { color: var(--oak); }
.hero-copy h1 .accent { color: var(--leaf-deep); }
.hero-copy .lead { max-width: 30em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; filter: drop-shadow(0 18px 30px rgba(43,33,23,.10)); }

/* Trust strip */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; align-items: center; padding: 22px 0; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: .95rem; font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; color: var(--leaf); flex: none; }

/* Products */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .14s ease, box-shadow .14s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-icon { width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; }
.product-icon svg { width: 30px; height: 30px; }
.product-icon.heart { background: #fbe9e6; color: #b5443a; }
.product-icon.write { background: var(--sky-soft); color: #2f6f93; }
.product-icon.school { background: #eef6e9; color: var(--leaf-deep); }
.product-card h3 { margin-bottom: 8px; }
.product-card p { color: var(--muted); font-size: .98rem; flex: 1 1 auto; }
.product-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.badge { font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: var(--parchment); color: var(--bark); }
.product-domain { font-size: .9rem; color: var(--muted); font-weight: 500; }

/* About */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.about-points { list-style: none; margin: 22px 0 0; padding: 0; }
.about-points li { display: flex; gap: 13px; margin-bottom: 16px; }
.about-points svg { width: 22px; height: 22px; color: var(--leaf); flex: none; margin-top: 3px; }
.about-points strong { color: var(--oak); }
.about-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.about-card .acorn-quote { font-family: "Fraunces", Georgia, serif; font-size: 1.45rem; color: var(--oak); line-height: 1.3; margin: 0 0 14px; }
.about-card cite { color: var(--muted); font-style: normal; font-size: .95rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: .92rem; color: var(--oak); margin-bottom: 7px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink);
  font: inherit; font-size: 1rem;
  transition: border-color .12s ease, box-shadow .12s ease;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(79, 122, 58, .14);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .86rem; color: var(--muted); margin-top: 6px; }
.contact-info { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.contact-info h3 { font-size: 1.1rem; }
.contact-info address { font-style: normal; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.contact-info .label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); display: block; margin-bottom: 6px; }
.alert { padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 22px; font-size: .96rem; }
.alert-ok { background: #eef6e9; border: 1px solid #cbe2bd; color: var(--leaf-deep); }
.alert-err { background: #fcecea; border: 1px solid #f0c8c2; color: #a23b30; }

/* Footer */
.site-footer { background: var(--oak); color: #efe6d6; padding: 56px 0 28px; }
.site-footer a { color: #f1e2c5; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-seal { width: 78px; height: 78px; margin-bottom: 16px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: #cbbda3; font-size: .95rem; max-width: 30em; margin-top: 14px; }
.footer-col h4 { color: #fff; font-family: inherit; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: #d8cab0; font-size: .96rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-top: 22px; color: #c4b596; font-size: .88rem; }
.footer-bottom address { font-style: normal; }

/* Legal pages */
.legal { padding: 60px 0 80px; }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal h1 { margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: .92rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.4rem; margin-top: 38px; }
.legal h3 { margin-top: 26px; }
.legal p, .legal li { color: #3d3326; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.back-link { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 30px; font-weight: 500; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 460px; margin: 0 auto; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.open .nav {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 18px 24px; gap: 16px;
  }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
