:root{
  --green:#234437;
  --green2:#355b49;
  --cypress:#183229;
  --moss:#68755f;
  --olive:#7b7a52;
  --gold:#c69a4b;
  --gold-soft:#e5c98f;
  --red:#8b493b;
  --ink:#211f19;
  --cream:#f4ecdf;
  --paper:#f8f2e8;
  --parchment:#efe3d1;
  --sand:#e6d5bd;
  --muted:#716f64;
  --line:#d7c7ae;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  font-family:Inter,system-ui,sans-serif;
  line-height:1.6;
  background:
    radial-gradient(circle at 8% 7%,rgba(104,117,95,.15),transparent 26%),
    radial-gradient(circle at 92% 10%,rgba(198,154,75,.12),transparent 24%),
    linear-gradient(180deg,#faf5ec 0%,#f4eadc 48%,#efe4d3 100%);
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(248,242,232,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(198,154,75,.28);
  box-shadow:0 8px 28px rgba(38,54,43,.05);
}
.nav-wrap{max-width:1200px;margin:auto;display:flex;align-items:center;justify-content:space-between;padding:10px 22px}
.brand{display:flex;gap:10px;align-items:center}
.brand img{width:54px;height:54px;border-radius:50%;object-fit:cover;box-shadow:0 4px 14px rgba(24,50,41,.12)}
.brand span{display:flex;flex-direction:column;line-height:1}
.brand strong{font:700 22px/1 'Cormorant Garamond',serif;color:var(--cypress)}
.brand small{text-transform:uppercase;letter-spacing:.22em;color:var(--red);font-size:10px;margin-top:4px}
.site-nav{display:flex;gap:24px;align-items:center;font-size:14px;font-weight:600}
.site-nav a:hover{color:var(--green2)}
.nav-cta{padding:10px 14px;border:1px solid var(--gold);border-radius:999px;background:rgba(255,250,242,.6)}
.menu-btn{display:none;border:1px solid var(--line);background:#fffaf2;border-radius:999px;padding:9px 13px;font-weight:700;color:var(--cypress)}

.hero{
  position:relative;
  isolation:isolate;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
  padding:76px 34px 64px;
  overflow:hidden;
  background:
    radial-gradient(circle at 14% 22%,rgba(104,117,95,.22),transparent 25%),
    radial-gradient(circle at 82% 16%,rgba(198,154,75,.15),transparent 24%),
    linear-gradient(135deg,#f6ecdf 0%,#efe3d0 58%,#eadcc6 100%);
  border:1px solid rgba(198,154,75,.18);
  border-top:0;
  border-radius:0 0 38px 38px;
  box-shadow:0 24px 70px rgba(54,47,31,.08);
}
.hero::before{
  content:"";
  position:absolute;
  z-index:-1;
  width:340px;height:150px;
  left:-75px;bottom:-30px;
  border-radius:50%;
  background:
    radial-gradient(ellipse at 20% 50%,rgba(53,91,73,.20) 0 25%,transparent 26%),
    radial-gradient(ellipse at 48% 44%,rgba(53,91,73,.15) 0 26%,transparent 27%),
    radial-gradient(ellipse at 76% 52%,rgba(53,91,73,.18) 0 24%,transparent 25%);
  filter:blur(3px);
}
.hero::after{
  content:"";
  position:absolute;
  z-index:-1;
  right:-75px;top:-35px;
  width:260px;height:210px;
  background:
    radial-gradient(ellipse at 50% 0,rgba(73,83,66,.20) 0 18%,transparent 19%),
    radial-gradient(ellipse at 38% 38%,rgba(73,83,66,.12) 0 18%,transparent 19%),
    radial-gradient(ellipse at 68% 42%,rgba(73,83,66,.12) 0 17%,transparent 18%);
  transform:rotate(12deg);
  filter:blur(4px);
}
.eyebrow{text-transform:uppercase;letter-spacing:.18em;color:var(--red);font-size:12px;font-weight:800;margin:0 0 12px}
.hero h1,.section h2,.section-tight h2{font-family:'Cormorant Garamond',serif;line-height:.95;margin:0;color:var(--cypress)}
.hero h1{font-size:clamp(54px,8vw,98px);letter-spacing:-.045em;text-shadow:0 1px 0 rgba(255,255,255,.35)}
.hero h1 span{color:var(--gold)}
.lead{font-size:19px;max-width:670px;color:#56544a}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin:28px 0}
.btn{display:inline-flex;align-items:center;justify-content:center;border-radius:999px;padding:13px 20px;font-weight:800;font-size:14px;transition:.18s ease}
.primary{background:var(--cypress);color:white;box-shadow:0 8px 20px rgba(24,50,41,.15)}
.primary:hover{background:var(--green2);transform:translateY(-1px)}
.ghost{border:1px solid var(--green);color:var(--cypress);background:rgba(255,250,242,.44)}
.ghost:hover{background:#fff7ea}
.trust-row{display:flex;gap:10px;flex-wrap:wrap}
.trust-row span{background:#eadfce;color:var(--cypress);font-size:12px;font-weight:800;padding:8px 10px;border-radius:999px;border:1px solid rgba(104,117,95,.15)}
.hero-logo-card{
  background:
    radial-gradient(circle at 50% 35%,#fffaf2 0,#f5ead8 58%,#e8d8bf 100%);
  border:1px solid #dfcfb4;
  border-radius:36px;
  padding:28px;
  box-shadow:0 30px 80px rgba(44,49,38,.12),inset 0 1px 0 rgba(255,255,255,.65);
}
.hero-logo-card img{border-radius:28px}

.promise-band{
  margin-top:28px;
  background:
    linear-gradient(180deg,rgba(35,68,55,.98),rgba(24,50,41,.99)),
    radial-gradient(circle at 20% 0,rgba(198,154,75,.12),transparent 35%);
  color:white;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  box-shadow:0 14px 40px rgba(24,50,41,.09);
}
.promise-band>div{padding:28px clamp(22px,4vw,54px);border-right:1px solid rgba(255,255,255,.12)}
.promise-band>div:last-child{border-right:none}
.promise-band strong{font-family:'Cormorant Garamond',serif;font-size:27px;color:#f2cf89}
.promise-band p{font-size:13px;margin:4px 0 0;color:#d9e2dc}

.section{max-width:1200px;margin:auto;padding:88px 22px}
.section-tight{max-width:1200px;margin:auto;padding:36px 22px 88px}
.section-head{display:flex;justify-content:space-between;gap:28px;align-items:end;margin-bottom:30px}
.section-head h2,.section h2,.section-tight h2{font-size:clamp(42px,6vw,68px);letter-spacing:-.03em}
.section-head h2::after,.section-tight h2::after{
  content:"";
  display:block;
  width:74px;
  height:2px;
  margin-top:14px;
  background:linear-gradient(90deg,var(--gold),transparent);
}
.section-note{max-width:470px;color:var(--muted);font-size:14px}
.compact{align-items:start}

#designs{
  position:relative;
  background:
    radial-gradient(circle at 4% 20%,rgba(104,117,95,.08),transparent 24%),
    radial-gradient(circle at 95% 80%,rgba(198,154,75,.07),transparent 20%);
}
.product-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.product-card{
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  background:#fffaf2;
  box-shadow:0 14px 38px rgba(56,47,31,.07);
  transition:.2s ease;
}
.product-card:hover{transform:translateY(-2px);box-shadow:0 18px 44px rgba(56,47,31,.10)}
.product-image{
  aspect-ratio:4/3;
  background:
    radial-gradient(circle at 50% 10%,rgba(255,255,255,.55),transparent 38%),
    linear-gradient(180deg,#efe3d1 0%,#e7d7c0 100%);
  display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.product-image img{width:100%;height:100%;object-fit:contain;padding:10px}
.product-copy{padding:22px}
.badge{display:inline-block;font-size:10px;text-transform:uppercase;letter-spacing:.13em;font-weight:800;color:#76591f;background:#f2e3bf;padding:6px 8px;border-radius:999px;border:1px solid #e5cf9e}
.product-copy h3{font:700 31px/1.05 'Cormorant Garamond',serif;color:var(--cypress);margin:12px 0 8px}
.product-copy p{margin:0 0 10px;color:#5d5a50}
.product-copy small{color:var(--muted);font-weight:600}

.shop-tabs{display:flex;gap:10px;overflow-x:auto;padding:2px 0 18px;margin:-4px 0 18px;scrollbar-width:none;-webkit-overflow-scrolling:touch}
.shop-tabs::-webkit-scrollbar{display:none}
.shop-tab{
  flex:0 0 auto;
  border:1px solid #d7c6aa;
  background:#fff8ed;
  color:var(--cypress);
  border-radius:999px;
  padding:10px 15px;
  font:800 12px/1 Inter,system-ui,sans-serif;
  cursor:pointer;
  white-space:nowrap;
  transition:.18s ease;
}
.shop-tab:hover{border-color:var(--gold);transform:translateY(-1px);background:#fff2de}
.shop-tab.active{background:var(--cypress);border-color:var(--cypress);color:white;box-shadow:0 8px 22px rgba(24,50,41,.16)}
.product-card[hidden]{display:none!important}
.placeholder-art{background:linear-gradient(145deg,#17382d,#315644 55%,#b98b3f);padding:24px}
.placeholder-mark{min-height:100%;width:100%;border:1px solid rgba(255,255,255,.28);border-radius:20px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;color:white;padding:24px}
.placeholder-mark .fleur-mark{font-size:72px;line-height:1;color:#f1d28e}
.placeholder-mark b{font:700 31px/1 'Cormorant Garamond',serif;margin-top:10px}
.placeholder-mark small{margin-top:8px;color:#dce4df}
.filter-note{min-height:22px;margin:16px 0 0;color:var(--muted);font-size:13px}

.collections{
  position:relative;
  border-top:1px solid var(--line);
  background:
    linear-gradient(180deg,rgba(239,227,209,.78),rgba(233,218,196,.76));
  border-radius:30px;
}
.collection-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.collection-grid>div{
  min-height:220px;
  padding:22px;
  background:linear-gradient(180deg,#f3e8d7 0%,#eadbc5 100%);
  border-radius:20px;
  border:1px solid #d9c5a6;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.45);
}
.collection-grid span{font-weight:800;color:var(--gold)}
.collection-grid h3{font:700 29px/1.05 'Cormorant Garamond',serif;color:var(--cypress);margin:36px 0 8px}
.collection-grid p{font-size:14px;color:#656259}

.story{display:grid;grid-template-columns:1.1fr .9fr;gap:22px}
.story-card,.process-card{border-radius:28px;padding:clamp(26px,4vw,46px)}
.story-card{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 88% 8%,rgba(198,154,75,.13),transparent 24%),
    linear-gradient(180deg,#234437 0%,#183229 100%);
  color:white;
  box-shadow:0 18px 45px rgba(24,50,41,.12);
}
.story-card::after{
  content:"";
  position:absolute;
  right:-35px;
  bottom:-45px;
  width:180px;height:160px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(104,117,95,.18),transparent 66%);
}
.story-card h2{color:#f1cd87}
.story-card p{color:#dce4df}
.story-card blockquote{margin:32px 0 0;padding-left:18px;border-left:3px solid var(--gold);font:600 23px/1.35 'Cormorant Garamond',serif}
.process-card{
  background:linear-gradient(180deg,#f2e8d8 0%,#e9dcc9 100%);
  border:1px solid #d7c7ae;
}
.process-card h3{font:700 34px/1.05 'Cormorant Garamond',serif;color:var(--cypress);margin-top:0}
.process-card ol{list-style:none;padding:0;margin:0}
.process-card li{display:grid;grid-template-columns:88px 1fr;gap:14px;padding:15px 0;border-bottom:1px solid #d0bea1}
.process-card li:last-child{border-bottom:none}
.process-card b{color:var(--red)}
.process-card span{font-size:14px}

.custom{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:center}
.custom>div:first-child p:not(.eyebrow){font-size:17px;color:#5d5a50}
.custom-panel{
  background:
    radial-gradient(circle at 100% 0,rgba(198,154,75,.10),transparent 30%),
    linear-gradient(180deg,#1f392f 0%,#142820 100%);
  color:white;
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(198,154,75,.24);
  box-shadow:0 16px 40px rgba(24,50,41,.12);
}
.custom-panel p{display:flex;flex-direction:column;gap:4px}
.custom-panel a:not(.btn){color:#f0c971;font-size:17px}
.full{width:100%;margin:14px 0}
.custom-panel small{color:#c8d0ca}

.faq{
  background:
    linear-gradient(180deg,rgba(248,242,232,.34),rgba(239,227,209,.50));
  border-radius:28px;
}
.faq details{border-top:1px solid var(--line);padding:20px 2px}
.faq details:last-child{border-bottom:1px solid var(--line)}
.faq summary{cursor:pointer;font-weight:800;color:var(--cypress)}
.faq details p{max-width:800px;color:#625f55}

footer{
  background:
    radial-gradient(circle at 15% 0,rgba(198,154,75,.10),transparent 25%),
    linear-gradient(180deg,#1a352b 0%,#10231b 100%);
  color:white;
  padding:38px max(22px,calc((100vw - 1156px)/2));
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
  border-top:1px solid rgba(198,154,75,.2);
}
.footer-brand{display:flex;gap:12px;align-items:center}
.footer-brand img{width:64px;height:64px;border-radius:50%;box-shadow:0 4px 14px rgba(0,0,0,.12)}
.footer-brand div{display:flex;flex-direction:column}
.footer-brand strong{font-family:'Cormorant Garamond',serif;font-size:26px;color:#f1d28e}
.footer-brand span{font-size:12px;color:#bfcac3}
.footer-links{display:flex;flex-direction:column;text-align:right;gap:6px;font-size:13px}
.copyright{grid-column:1/-1;border-top:1px solid rgba(255,255,255,.12);padding-top:18px;margin:0;font-size:11px;color:#9fb0a6}

@media(max-width:860px){
  .menu-btn{display:block}
  .site-nav{
    display:none;
    position:absolute;
    top:74px;
    left:14px;
    right:14px;
    background:#fff8ee;
    border:1px solid var(--line);
    border-radius:18px;
    padding:14px;
    flex-direction:column;
    align-items:stretch;
    box-shadow:0 18px 60px rgba(0,0,0,.12)
  }
  .site-nav.open{display:flex}
  .site-nav a{padding:9px 8px}
  .hero{grid-template-columns:1fr;padding-top:48px}
  .hero-logo-card{max-width:560px;margin:auto}
  .promise-band{grid-template-columns:1fr}
  .promise-band>div{border-right:0;border-bottom:1px solid rgba(255,255,255,.14)}
  .product-grid,.story,.custom{grid-template-columns:1fr}
  .collection-grid{grid-template-columns:repeat(2,1fr)}
  .section-head{align-items:start;flex-direction:column}
  footer{grid-template-columns:1fr}
  .footer-links{text-align:left}
  .copyright{grid-column:auto}
}

@media(max-width:520px){
  .nav-wrap{padding:8px 14px}
  .brand{gap:8px}
  .brand span{display:flex}
  .brand strong{font-size:18px}
  .brand small{display:none}
  .brand img{width:42px;height:42px}
  .menu-btn{padding:8px 12px}
  .site-nav{top:64px;left:10px;right:10px}
  .hero{padding:30px 16px 36px;gap:24px;border-radius:0 0 26px 26px}
  .hero h1{font-size:46px;line-height:.98}
  .lead{font-size:16px;margin-bottom:18px}
  .hero-actions{display:grid;grid-template-columns:1fr;margin:20px 0 16px}
  .hero-actions .btn{width:100%}
  .trust-row{gap:7px}
  .trust-row span{font-size:11px;padding:7px 9px}
  .hero-logo-card{padding:8px;border-radius:20px;max-width:320px;width:100%}
  .hero-logo-card img{border-radius:16px}
  .promise-band{margin-top:20px}
  .promise-band>div{padding:20px 18px}
  .promise-band strong{font-size:24px}
  .section,.section-tight{padding-left:16px;padding-right:16px}
  .section{padding-top:52px;padding-bottom:52px}
  .section-tight{padding-top:26px;padding-bottom:52px}
  .section-head{gap:12px;margin-bottom:22px}
  .section-head h2,.section h2,.section-tight h2{font-size:38px;line-height:1}
  .section-note{font-size:13px}
  .product-grid,.collection-grid{grid-template-columns:1fr}
  .product-card{border-radius:20px}
  .product-image{aspect-ratio:1/1}
  .product-image img{padding:6px}
  .product-copy{padding:18px}
  .product-copy h3{font-size:28px}
  .shop-tabs{margin-left:-16px;margin-right:-16px;padding-left:16px;padding-right:16px;padding-bottom:14px}
  .shop-tab{padding:10px 13px;font-size:11px}
  .placeholder-mark .fleur-mark{font-size:58px}
  .placeholder-mark b{font-size:27px}
  .collection-grid>div{min-height:0;padding:18px}
  .collection-grid h3{font-size:27px;margin:18px 0 6px}
  .story-card,.process-card{padding:22px 18px;border-radius:22px}
  .story-card blockquote{font-size:20px}
  .process-card li{grid-template-columns:72px 1fr;gap:10px;padding:12px 0}
  .custom-panel{padding:20px;border-radius:20px}
  .faq{border-radius:22px}
  .faq details{padding:17px 2px}
  footer{padding:28px 16px}
  .footer-brand img{width:48px;height:48px}
  .footer-brand strong{font-size:23px}
}
