
:root {
  --bg: #fbf8f3;
  --bg2: #f6f1ea;
  --card: rgba(255,255,255,0.86);
  --ink: #201a17;
  --muted: #665851;
  --soft: #8d7868;
  --line: #e7dbcf;
  --line-2: #dccfc3;
  --accent: #201a17;
  --accent-2: #2f7d53;
  --cream: #faf6f1;
  --shadow: 0 20px 60px rgba(40,30,20,0.08);
  --shadow-lg: 0 25px 90px rgba(34,24,18,0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 55%, #f7f3ee 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
button { cursor: pointer; }
.page-shell { position: relative; overflow-x: clip; }
.page-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 520px;
  background: radial-gradient(circle at top, rgba(255,255,255,0.92), transparent 68%);
  pointer-events: none;
  z-index: -1;
}
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header { padding: 24px 0 0; position: sticky; top: 0; z-index: 40; }
.header-card {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 24px; background: rgba(255,255,255,0.68); border: 1px solid rgba(255,255,255,0.7);
  border-radius: 36px; box-shadow: 0 25px 80px rgba(34,24,18,0.08); backdrop-filter: blur(12px);
}
.brand { display:flex; align-items:center; gap:14px; min-width:0; flex:1 1 auto; }
.brand img { width:56px; height:56px; object-fit:contain; border-radius:999px; box-shadow:0 6px 16px rgba(20,20,20,0.08); }
.brand-text { min-width:0; }
.brand-kicker { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.2em; color:var(--accent-2); }
.brand-sub { margin-top:4px; font-size:14px; color:#70635a; }
.nav { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.pill, .cta, .ghost-btn, .outline-btn, .mobile-link {
  display:inline-flex; align-items:center; justify-content:center; min-height:42px; padding:0 18px;
  border-radius:999px; transition:0.2s ease;
}
.pill, .mobile-link { background:rgba(255,255,255,0.85); border:1px solid var(--line-2); color:var(--ink); font-size:14px; font-weight:500; }
.pill:hover, .ghost-btn:hover, .outline-btn:hover, .mobile-link:hover { background:#fff; }
.cta { background:var(--accent); color:#fff; border:0; }
.cta:hover { opacity:0.92; }
.outline-btn { background:rgba(255,255,255,0.82); border:1px solid #daccc0; color:var(--ink); }
.ghost-btn { background:#fff; border:1px solid #d9cdbf; color:var(--ink); }
.menu-toggle {
  display:none; width:48px; height:48px; border-radius:999px; border:1px solid var(--line-2); background:rgba(255,255,255,0.9); color:var(--ink);
  align-items:center; justify-content:center; flex:0 0 auto; position:relative;
}
.menu-toggle-bar, .menu-toggle-bar::before, .menu-toggle-bar::after {
  content:""; position:absolute; left:50%; width:18px; height:2px; margin-left:-9px; border-radius:999px; background:currentColor; transition:transform .2s ease, opacity .2s ease, top .2s ease;
}
.menu-toggle-bar { top:23px; }
.menu-toggle-bar::before { top:-6px; }
.menu-toggle-bar::after { top:6px; }
.menu-toggle.open .menu-toggle-bar { background:transparent; }
.menu-toggle.open .menu-toggle-bar::before { top:0; transform:rotate(45deg); }
.menu-toggle.open .menu-toggle-bar::after { top:0; transform:rotate(-45deg); }
.mobile-menu {
  display:none; margin-top:14px; padding:12px; border-radius:24px; border:1px solid var(--line); background:rgba(255,255,255,0.96); box-shadow:0 18px 50px rgba(33,23,16,0.08);
}
.mobile-menu.open { display:block; }
.mobile-menu-grid { display:grid; gap:10px; }
.mobile-link, .mobile-menu .cta { width:100%; min-height:46px; }
.section { padding:72px 0; }
.hero, .product-hero, .split, .grid-2, .grid-3, .about-split, .dark-cta-wrap { display:grid; gap:24px; }
.hero { grid-template-columns:1.08fr 0.92fr; align-items:center; gap:48px; padding:72px 0 56px; }
.product-hero { grid-template-columns:0.95fr 1.05fr; align-items:center; gap:40px; padding:72px 0 56px; }
.about-split { grid-template-columns:1fr 1fr; align-items:center; gap:48px; padding:72px 0 56px; }
.split { grid-template-columns:1.05fr 0.95fr; }
.grid-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
.grid-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
.eyebrow {
  display:inline-flex; padding:8px 16px; border-radius:999px; border:1px solid #e4d8cd; background:rgba(255,255,255,0.7); box-shadow:0 4px 14px rgba(22,22,22,0.04);
  font-size:12px; font-weight:500; letter-spacing:0.22em; text-transform:uppercase; color:var(--soft);
}
.hero h1, .page-title { margin:22px 0 0; font-size:clamp(44px,6vw,76px); line-height:0.96; letter-spacing:-0.045em; }
.page-title { font-size:clamp(42px,5vw,66px); }
.lead, .hero p.lead { margin:24px 0 0; max-width:760px; font-size:20px; line-height:1.7; color:#62554e; }
.sublead { margin:16px 0 0; font-size:18px; line-height:1.7; color:#5f524b; }
.cta-row { margin-top:32px; display:flex; flex-wrap:wrap; gap:12px; }
.stat-pills { margin-top:38px; display:flex; flex-wrap:wrap; gap:12px; }
.stat-pills span { border:1px solid #e5dbcf; background:rgba(255,255,255,0.72); border-radius:999px; padding:10px 14px; font-size:14px; color:#6f6158; }
.hero-card, .panel, .feature-card, .product-card, .info-card, .faq-item, .gallery-card, .dark-cta, .wide-card { background:var(--card); border:1px solid var(--line); border-radius:32px; box-shadow:var(--shadow); }
.hero-card { padding:24px; background:linear-gradient(180deg,#fffdfb 0%,#f3ece3 100%); box-shadow:var(--shadow-lg); position:relative; z-index:1; }
.frame { overflow:hidden; border-radius:28px; border:1px solid var(--line); background:#fff; padding:12px; }
.frame img { width:100%; height:auto; border-radius:22px; object-fit:cover; }
.caption { margin-top:22px; font-size:14px; line-height:1.9; color:#6f6158; }
.section-title { max-width:780px; margin:0 auto; text-align:center; }
.kicker { font-size:12px; font-weight:500; letter-spacing:.24em; text-transform:uppercase; color:var(--soft); }
.section-title h2 { margin:14px 0 0; font-size:clamp(34px,4vw,46px); line-height:1.08; }
.section-title p { margin:16px 0 0; font-size:18px; line-height:1.7; color:var(--muted); }
.feature-card, .info-card, .gallery-card { padding:28px; }
.number-badge { width:48px; height:48px; display:inline-flex; align-items:center; justify-content:center; border-radius:18px; background:#f2ebe3; color:#5d4f47; font-size:18px; margin-bottom:20px; }
.feature-card h3, .info-card h3, .product-card h3, .gallery-card h3 { margin:0; font-size:28px; line-height:1.15; }
.feature-card p, .info-card p, .gallery-card p, .product-card .desc { margin:14px 0 0; font-size:15px; line-height:1.9; color:#655851; }
.panel { padding:32px; }
.panel-list { margin-top:24px; display:grid; gap:14px; }
.panel-item { padding:16px 18px; border:1px solid #ebdfd4; background:#fcfaf7; border-radius:18px; font-size:15px; line-height:1.8; color:#5f524b; }
.quote { margin-top:24px; font-size:34px; line-height:1.5; letter-spacing:-0.03em; }
.quote-by { margin-top:24px; font-size:14px; color:#6b5d55; }
.product-card { padding:24px; }
.product-top { display:flex; justify-content:space-between; gap:16px; align-items:flex-start; }
.badge { display:inline-flex; border:1px solid var(--line); background:var(--cream); padding:6px 12px; border-radius:999px; font-size:11px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:#8b7667; }
.meta { margin-top:18px; font-size:12px; font-weight:700; letter-spacing:.24em; text-transform:uppercase; color:#8c7668; }
.price-box { background:#faf7f2; border:1px solid #e8ddd2; border-radius:18px; padding:14px 16px; text-align:right; min-width:108px; }
.price-box .label, .price-box .currency, .small-note { font-size:10px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:#8f7a6b; }
.price-box .price { margin-top:4px; font-size:34px; line-height:1; font-weight:700; }
.card-image { margin-top:24px; overflow:hidden; border-radius:28px; border:1px solid #eee4d8; background:linear-gradient(135deg,#f9f4ed 0%,#ebe0d4 100%); padding:12px; }
.card-image img { width:100%; height:280px; object-fit:cover; border-radius:22px; }
.bullets { margin-top:24px; display:grid; gap:12px; }
.bullets div { padding:14px 16px; border:1px solid #eee3d7; background:#fcfaf7; border-radius:18px; font-size:14px; color:#554841; }
.card-actions { margin-top:28px; }
.card-actions .cta { width:100%; min-height:48px; }
.currency-note { margin-top:10px; text-align:center; }
.gallery-card img { width:100%; height:288px; object-fit:cover; border-radius:22px; border:1px solid #eadfd3; }
.faq-list { display:grid; gap:16px; margin-top:48px; }
.faq-item { padding:22px 24px; }
.faq-item summary { list-style:none; cursor:pointer; font-size:22px; font-weight:600; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item p { margin:16px 0 0; font-size:15px; line-height:1.9; color:#655851; }
.dark-cta { padding:34px 38px; border-radius:36px; border:1px solid #e6dbcf; background:#201a17; color:#fff; box-shadow:0 18px 70px rgba(33,23,16,0.22); }
.dark-cta .kicker { color:#d0c2b5; }
.dark-cta-wrap { display:flex; align-items:end; justify-content:space-between; gap:24px; }
.dark-cta h2 { margin:14px 0 0; font-size:42px; line-height:1.08; }
.dark-cta p { margin:14px 0 0; font-size:18px; line-height:1.7; color:#ebe3da; }
.dark-cta .cta { background:#fff; color:var(--ink); }
.footer-space { height:96px; }
.mobile-bar { position:fixed; left:0; right:0; bottom:0; z-index:25; padding:12px 16px; background:rgba(255,255,255,0.95); border-top:1px solid #e5d8cc; box-shadow:0 -10px 40px rgba(33,23,16,0.08); backdrop-filter:blur(10px); display:none; }
.mobile-bar .cta { width:100%; min-height:48px; }
.modal { position:fixed; inset:0; display:none; align-items:center; justify-content:center; z-index:100; padding:16px; background:rgba(18,15,13,0.5); backdrop-filter:blur(4px); }
.modal.open { display:flex; }
.modal-card { position:relative; width:min(100%,560px); max-height:calc(100dvh - 32px); overflow:auto; border-radius:28px; border:1px solid rgba(255,255,255,0.6); background:#fbf8f4; box-shadow:0 30px 100px rgba(25,18,12,0.18); -webkit-overflow-scrolling:touch; }
.modal-top { padding:32px 32px 22px; border-bottom:1px solid #eee5db; }
.modal-body { padding:24px 32px 32px; }
.modal-close { position:absolute; top:14px; right:14px; padding:8px 12px; border-radius:999px; border:1px solid #ded3c6; background:rgba(255,255,255,0.92); color:#5d4f47; z-index:2; }
.modal h3 { margin:16px 0 0; font-size:32px; line-height:1.08; }
.modal p { margin:14px 0 0; font-size:15px; line-height:1.8; color:#62544d; }
.form-grid { display:grid; gap:16px; }
.form-label { display:block; font-size:14px; font-weight:600; color:#3d322c; margin-bottom:8px; }
.input { width:100%; min-height:48px; border-radius:18px; border:1px solid #ddd2c6; background:#fff; padding:0 16px; font-size:14px; outline:none; }
.input:focus { border-color:#bca592; }
.check { display:flex; gap:12px; align-items:flex-start; padding:16px; border-radius:18px; border:1px solid #e7ddd3; background:rgba(255,255,255,0.8); font-size:14px; color:#5d5048; }
.success { border:1px solid #e2d7cb; background:#fff; border-radius:24px; padding:28px; text-align:center; }
.success .tick { margin:0 auto; width:48px; height:48px; border-radius:999px; display:flex; align-items:center; justify-content:center; background:#f1ebe4; font-size:22px; }
.success h4 { margin:18px 0 0; font-size:28px; }
.muted-center { text-align:center; font-size:12px; line-height:1.7; color:#857468; margin-top:10px; }
.hidden { display:none !important; }
@media (max-width: 980px) {
  .hero, .product-hero, .split, .grid-2, .grid-3, .about-split { grid-template-columns:1fr; }
  .dark-cta-wrap { display:grid; gap:18px; }
}
@media (max-width: 780px) {
  .container { width:min(100% - 24px, 1180px); }
  .site-header { padding-top: 18px; }
  .header-card { padding:18px; border-radius:28px; }
  .brand img { width:46px; height:46px; }
  .brand-kicker { font-size:11px; letter-spacing:.16em; }
  .brand-sub { font-size:12px; line-height:1.25; margin-top:2px; }
  .nav { display:none; }
  .menu-toggle { display:inline-flex; }
  .section { padding:56px 0; }
  .hero, .product-hero, .about-split { padding:56px 0 36px; gap:28px; }
  .hero h1, .page-title { font-size: clamp(34px, 14vw, 58px); line-height:0.98; }
  .lead, .hero p.lead, .sublead { font-size:16px; line-height:1.65; }
  .cta-row { display:grid; grid-template-columns:1fr; }
  .cta-row .cta, .cta-row .outline-btn, .cta-row .ghost-btn { width:100%; }
  .stat-pills { gap:10px; margin-top:28px; }
  .stat-pills span { font-size:13px; padding:9px 12px; }
  .hero-card, .panel, .feature-card, .product-card, .info-card, .faq-item, .gallery-card { border-radius:26px; }
  .hero-card, .panel, .feature-card, .product-card, .info-card, .gallery-card { padding:20px; }
  .product-top { flex-direction:column; }
  .price-box { align-self:flex-start; text-align:left; min-width:0; }
  .card-image img, .gallery-card img { height:220px; }
  .quote { font-size:28px; }
  .section-title h2 { font-size:32px; }
  .section-title p { font-size:16px; }
  .faq-item { padding:18px 18px; }
  .faq-item summary { font-size:18px; }
  .mobile-bar { display:block; }
  .footer-space { height:128px; }
  .modal { align-items:flex-end; padding:8px; }
  .modal-card { width:100%; max-height:min(88dvh, 760px); border-radius:24px 24px 0 0; }
  .modal-top { padding:24px 18px 16px; }
  .modal-body { padding:18px 18px 20px; }
  .modal h3 { font-size:24px; }
  .modal-close { top:10px; right:10px; padding:8px 10px; }
  .check { padding:14px; }
}


.site-footer {
  margin-top: 120px;
  padding: 0 0 16px;
}
.footer-shell {
  border-top: 1px solid rgba(32,26,23,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.74) 18%, rgba(255,255,255,0.82) 100%);
  padding: 42px 28px 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) repeat(3, minmax(120px, 1fr));
  gap: 28px 36px;
  align-items: start;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand-col {
  max-width: 340px;
}
.footer-brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #2f7d53;
}
.footer-tag {
  margin-top: 2px;
  color: #8f8377;
  font-size: 13px;
}
.footer-copy {
  margin-top: 10px;
  color: #7e7368;
  font-size: 13px;
  line-height: 1.8;
}
.footer-heading {
  color: #5d514a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-col a,
.footer-link-button {
  color: #8f8377;
  font-size: 13px;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease;
}
.footer-col a:hover,
.footer-link-button:hover {
  color: #3d342f;
}
.footer-bottom {
  margin-top: 30px;
}
.footer-bottom-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(220,207,195,0) 0%, rgba(220,207,195,0.95) 18%, rgba(220,207,195,0.95) 82%, rgba(220,207,195,0) 100%);
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
}
.footer-bottom-note,
.footer-copyright {
  color: #a09386;
  font-size: 12px;
}
.footer-space { height: 152px; }

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
  }
}
@media (max-width: 767px) {
  .site-footer {
    margin-top: 88px;
  }
  .footer-shell {
    padding: 34px 22px 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: none;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-space {
    height: 136px;
  }
}
@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


