:root{
  --ink:#3A3226;
  --paper:#F6E8D8;
  --paper-2:#EFDCC4;
  --sage:#7E9473;
  --sage-deep:#4A6B43;
  --moss:#C9A26B;
  --clay:#B5581F;
  --card:#FFFBF5;
  --line: rgba(74,56,38,0.14);
}
*{box-sizing:border-box;}
::selection{background:var(--sage-deep); color:#fff;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Nunito Sans', sans-serif;
  -webkit-font-smoothing:antialiased;
}
.wrap{max-width:1120px;margin:0 auto;padding:0 30px;}
.eyebrow{
  font-family:'Nunito Sans', sans-serif;
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--sage-deep);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{content:"🌿"; font-size:13px;}

.skip-link{
  position:absolute;
  left:16px; top:-60px;
  background:var(--sage-deep);
  color:#fff;
  padding:12px 18px;
  border-radius:10px;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  z-index:200;
  transition:top .2s ease;
}
.skip-link:focus{top:16px;}

a:focus-visible, button:focus-visible{
  outline:2px solid var(--sage-deep);
  outline-offset:3px;
  border-radius:6px;
}

nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:30px 0;
  position:sticky;
  top:0;
  z-index:60;
  background:transparent;
  transition:background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
nav.scrolled{
  background:rgba(255,251,245,0.88);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 12px 26px -20px rgba(74,56,38,0.4);
  border-radius:0 0 20px 20px;
  margin:0 -20px;
  padding-left:20px;
  padding-right:20px;
}
.logo{
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size:26px;
  letter-spacing:.01em;
  text-decoration:none;
  color:var(--ink);
  display:flex;
  align-items:center;
  gap:11px;
}
.logo img{height:40px; width:auto; display:block;}
.logo em{font-style:italic;font-weight:500;color:var(--sage-deep);}
.navlinks{display:flex;gap:34px;font-size:14px;font-weight:600;}
.navlinks a{color:var(--ink);text-decoration:none;opacity:.7;}
.navlinks a:hover{opacity:1; color:var(--sage-deep);}
.navlinks a.current{opacity:1; color:var(--sage-deep);}

.nav-toggle{
  display:none;
  width:42px;height:42px;
  align-items:center;justify-content:center;
  background:var(--card);
  border:1.5px solid var(--line);
  border-radius:12px;
  cursor:pointer;
  padding:0;
  flex-direction:column;
  gap:5px;
}
.nav-toggle span{
  display:block;
  width:18px;height:2px;
  background:var(--ink);
  border-radius:2px;
  transition:transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.hero{
  background-color:var(--paper-2);
  background-image:
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%),
    url("texture-panel.svg");
  background-repeat:no-repeat, repeat;
  background-size:100% 100%, 150px 150px;
  border-radius:28px;
  padding:70px 60px;
  margin-top:6px;
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:50px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute;
  right:-80px; top:-80px;
  width:280px; height:280px;
  border-radius:50%;
  background:radial-gradient(circle, var(--moss) 0%, transparent 70%);
  opacity:.35;
}
h1{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size:clamp(38px, 4.6vw, 58px);
  line-height:1.08;
  letter-spacing:0;
  margin:20px 0 20px;
}
h1 em{color:var(--sage-deep); font-style:italic; font-weight:600;}
.hero p.lead{
  font-size:16.5px;
  line-height:1.7;
  max-width:44ch;
  opacity:.8;
  margin:0 0 28px;
}
.cta-row{display:flex; gap:14px; align-items:center; position:relative; z-index:1;}
.btn{
  font-size:14px;
  font-weight:700;
  padding:15px 26px;
  border-radius:100px;
  background:linear-gradient(135deg, var(--sage-deep) 0%, #5C7F4F 55%, var(--moss) 130%);
  color:#fff;
  text-decoration:none;
  display:inline-block;
  box-shadow:0 8px 20px -8px rgba(74,107,67,0.45);
  border:1.5px solid var(--sage-deep);
  cursor:pointer;
}
.btn.ghost{
  background:transparent;
  color:var(--sage-deep);
  border:1.5px solid var(--sage-deep);
  box-shadow:none;
}
.btn{transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;}
.btn:hover{transform:translateY(-2px); box-shadow:0 12px 26px -10px rgba(74,107,67,0.5);}
.btn.ghost:hover{background:rgba(74,107,67,0.08); box-shadow:none;}
.btn:active{transform:translateY(0); opacity:.9;}

/* ---- 404 page ---- */
.error-hero{text-align:center; padding:90px 40px;}
.error-hero .error-code{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(70px, 14vw, 130px);
  font-weight:600;
  color:var(--sage-deep);
  line-height:1;
  margin:0 0 8px;
  opacity:.85;
}
.error-hero h1{margin:0 0 14px;}
.error-hero p.lead{margin:0 auto 30px; text-align:center;}
.error-hero .cta-row{justify-content:center;}

/* ---- Long-form article posts ---- */
.post{padding:56px 0 20px;}
.post-meta{
  display:flex; align-items:center; gap:10px;
  font-size:11.5px; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  color:var(--clay);
  margin-bottom:16px;
}
.post-meta .dotsep{opacity:.5; font-weight:400;}
.post-body{max-width:72ch; margin:0 auto;}
.post-body p{font-size:15.5px; line-height:1.85; opacity:.82; margin:0 0 20px;}
.post-body h2{
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size:27px;
  margin:40px 0 14px;
  line-height:1.2;
}
.post-body h2:first-child{margin-top:0;}
.post-body ul, .post-body ol{margin:0 0 22px; padding-left:22px;}
.post-body li{font-size:15px; line-height:1.8; opacity:.8; margin-bottom:8px;}
.post-body strong{color:var(--ink);}
.post-note{
  background-color:var(--paper-2);
  background-image:url("texture-panel.svg");
  background-repeat:repeat;
  background-size:150px 150px;
  border-radius:16px;
  padding:20px 24px;
  margin:28px 0;
  font-size:14px;
  line-height:1.7;
  opacity:.85;
}
.post-note strong{color:var(--sage-deep);}
.related{max-width:72ch; margin:44px auto 0; padding-top:28px; border-top:1px solid var(--line);}
.related h3{
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size:19px;
  margin:0 0 14px;
}
.related-links{display:flex; flex-direction:column; gap:6px;}
.related-links a{color:var(--sage-deep); font-weight:700; font-size:14px; text-decoration:none;}
.related-links a:hover{text-decoration:underline;}

/* ---- Teaser cards linking to long-form posts ---- */
.teaser-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  margin-top:22px;
}
.teaser-card{
  background-color:var(--card);
  background-image:url("texture-panel.svg");
  background-repeat:repeat;
  background-size:150px 150px;
  border-radius:20px;
  padding:26px;
  border:1px solid var(--line);
  text-decoration:none;
  color:var(--ink);
  display:flex;
  flex-direction:column;
  transition:transform .18s ease, box-shadow .18s ease;
}
.teaser-card:hover{transform:translateY(-4px); box-shadow:0 16px 30px -18px rgba(74,56,38,0.25);}
.teaser-card .tag{
  font-size:10.5px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  color:var(--clay);
  display:block;
  margin-bottom:12px;
}
.teaser-card h3{
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size:20px;
  margin:0 0 10px;
  line-height:1.25;
}
.teaser-card p{font-size:13.5px; line-height:1.65; opacity:.72; margin:0 0 16px;}
.teaser-more{margin-top:auto; font-size:13px; font-weight:800; color:var(--sage-deep);}

@media (max-width:820px){
  .teaser-grid{grid-template-columns:1fr;}
  .post-body{max-width:none;}
}
/* ---- Contact form ---- */
.contact-wrap{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:40px;
  align-items:start;
}
.contact-info{
  background-color:var(--paper-2);
  background-image:url("texture-panel.svg");
  background-repeat:repeat;
  background-size:150px 150px;
  border-radius:20px;
  padding:32px;
}
.contact-info h3{
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size:22px;
  margin:0 0 12px;
}
.contact-info p{font-size:14px; line-height:1.7; opacity:.75; margin:0 0 18px;}
.contact-info a.email{color:var(--sage-deep); font-weight:700; text-decoration:none; word-break:break-all;}
.contact-info a.email:hover{text-decoration:underline;}
.contact-form{
  background-color:var(--card);
  background-image:url("texture-panel.svg");
  background-repeat:repeat;
  background-size:150px 150px;
  border-radius:20px;
  padding:32px;
  border:1px solid var(--line);
}
.form-row{margin-bottom:18px; display:flex; flex-direction:column; gap:6px;}
.form-row label{font-size:12.5px; font-weight:700; letter-spacing:.02em; color:var(--ink);}
.form-row input, .form-row textarea{
  font-family:'Nunito Sans', sans-serif;
  font-size:14.5px;
  padding:13px 15px;
  border-radius:12px;
  border:1.5px solid var(--line);
  background:var(--paper);
  color:var(--ink);
  resize:vertical;
}
.form-row input:focus, .form-row textarea:focus{
  outline:none;
  border-color:var(--sage-deep);
}
.form-note{font-size:12px; opacity:.55; margin-top:4px;}
.form-status{
  margin-top:16px;
  font-size:13.5px;
  font-weight:700;
  display:none;
  padding:12px 16px;
  border-radius:12px;
}
.form-status.success{display:block; background:rgba(74,107,67,0.12); color:var(--sage-deep);}
.form-status.error{display:block; background:rgba(181,88,31,0.12); color:var(--clay);}
.form-status.sending{display:block; background:var(--paper-2); color:var(--ink); opacity:.7;}
.hp-field{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden;}

@media (max-width:820px){
  .contact-wrap{grid-template-columns:1fr;}
}

.cookie-banner{
  position:fixed;
  left:20px; right:20px; bottom:20px;
  max-width:640px;
  margin:0 auto;
  background:var(--card);
  background-image:url("texture-panel.svg");
  background-repeat:repeat;
  background-size:150px 150px;
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px 26px;
  box-shadow:0 24px 50px -20px rgba(58,50,38,0.35);
  z-index:300;
  transform:translateY(140%);
  opacity:0;
  transition:transform .45s ease, opacity .45s ease;
}
.cookie-banner.visible{transform:translateY(0); opacity:1;}
.cookie-banner[hidden]{display:none;}
.cookie-banner p{
  margin:0 0 16px;
  font-size:13.5px;
  line-height:1.6;
  opacity:.85;
}
.cookie-banner p a{color:var(--sage-deep); font-weight:700; text-decoration:underline;}
.cookie-actions{display:flex; flex-wrap:wrap; gap:10px;}
.cookie-actions .btn{padding:11px 22px; font-size:13px;}
.cookie-settings-link{
  background:none;
  border:none;
  padding:0;
  font:inherit;
  font-size:13px;
  font-weight:600;
  color:var(--ink);
  text-decoration:none;
  cursor:pointer;
  opacity:.6;
}
.cookie-settings-link:hover{opacity:1; color:var(--sage-deep);}

@media (max-width:480px){
  .cookie-banner{left:12px; right:12px; bottom:12px; padding:20px;}
  .cookie-actions{flex-direction:column;}
  .cookie-actions .btn{width:100%; text-align:center;}
}

.leaf-card{
  background-color:var(--card);
  background-image:url("texture-panel.svg");
  background-repeat:repeat;
  background-size:150px 150px;
  border-radius:22px;
  padding:26px;
  position:relative;
  z-index:1;
  box-shadow:0 20px 40px -20px rgba(74,56,38,0.22);
}
.leaf-card .cap{
  font-size:12px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--sage-deep);
  opacity:.7;
  margin-bottom:16px;
  display:block;
}
.tone-row{display:flex; gap:10px; margin-bottom:10px;}
.tone{
  flex:1;
  height:58px;
  border-radius:12px;
  position:relative;
}
.tone span{
  position:absolute;
  bottom:7px;left:9px;
  font-size:11px;
  font-weight:700;
  color:#fff;
  letter-spacing:.02em;
}

.index{padding:78px 0 30px;}
.index-head{text-align:center; margin-bottom:44px;}
.index-head .eyebrow{justify-content:center;}
.index-head h2{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size:36px;
  margin:12px 0 0;
}
.cat-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:18px;
}
.cat{
  background-color:var(--card);
  background-image:url("texture-panel.svg");
  background-repeat:repeat;
  background-size:150px 150px;
  border-radius:18px;
  padding:28px 20px;
  min-height:190px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border:1px solid var(--line);
  transition:transform .18s ease, box-shadow .18s ease;
  text-decoration:none;
  color:var(--ink);
}
.cat:hover{transform:translateY(-4px); box-shadow:0 16px 30px -18px rgba(74,56,38,0.25);}
.cat .leafmark{font-size:22px;}
.cat h3{
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size:20px;
  margin:16px 0 6px;
  line-height:1.15;
}
.cat p{font-size:12.5px; opacity:.65; line-height:1.55; margin:0;}

.routine{
  padding:80px 0;
  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:60px;
  background-color:var(--paper-2);
  background-image:url("texture-panel.svg");
  background-repeat:repeat;
  background-size:150px 150px;
  border-radius:28px;
  margin:20px 0;
  padding:60px;
}
.routine-copy h2{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size:36px;
  margin:14px 0 16px;
  line-height:1.1;
}
.routine-copy p{font-size:15px; line-height:1.7; opacity:.75; max-width:36ch;}
.steps{position:relative;}
.steps::before{
  content:"";
  position:absolute; left:19px; top:10px; bottom:10px;
  width:1px; background:var(--line);
}
.step{display:flex; gap:20px; padding:14px 0;}
.step .dot{
  width:40px;height:40px;flex-shrink:0;
  border-radius:50%;
  background-color:var(--card);
  background-image:url("texture-panel.svg");
  background-repeat:repeat;
  background-size:60px 60px;
  border:1.5px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;
  font-size:13px;
  position:relative; z-index:1;
}
.step.active .dot{background:var(--sage-deep); color:#fff; border-color:var(--sage-deep);}
.step-body h4{
  font-family:'Cormorant Garamond', serif; font-weight:600;
  font-size:17px; margin:6px 0 4px;
}
.step-body p{font-size:13px; opacity:.65; margin:0; line-height:1.55;}
.tod{
  font-size:10.5px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  color:var(--clay);
}

footer{
  padding:44px 0 58px;
  display:grid;
  grid-template-columns:auto minmax(0, 1fr);
  gap:38px;
  align-items:center;
  font-size:13px;
  opacity:.6;
}
footer .logo{font-size:18px; white-space:nowrap;}
footer .logo img{height:30px;}
footer .footlinks{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:center;
  column-gap:22px;
  row-gap:10px;
  max-width:760px;
  margin-left:auto;
}
footer .footlinks a{
  color:var(--ink);
  text-decoration:none;
  white-space:nowrap;
}
footer .footlinks a:hover{color:var(--sage-deep);}
footer .footlinks .cookie-settings-link{
  opacity:1;
  color:var(--ink);
  white-space:nowrap;
}
footer .footlinks .cookie-settings-link:hover{opacity:1; color:var(--sage-deep);}

body{
  background-image:
    radial-gradient(circle at 12% 0%, rgba(201,162,107,0.16) 0%, transparent 45%),
    radial-gradient(circle at 100% 30%, rgba(181,88,31,0.08) 0%, transparent 40%),
    url("texture.svg");
  background-repeat:no-repeat, no-repeat, repeat;
  background-size:auto, auto, 150px 150px;
  background-attachment: scroll;
}

/* ---- Category / interior pages ---- */
.page-hero{
  background-color:var(--paper-2);
  background-image:
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%),
    url("texture-panel.svg");
  background-repeat:no-repeat, repeat;
  background-size:100% 100%, 150px 150px;
  border-radius:28px;
  padding:56px 60px;
  margin-top:6px;
  position:relative;
  overflow:hidden;
}
.page-hero::after{
  content:"";
  position:absolute;
  right:-70px; top:-90px;
  width:240px; height:240px;
  border-radius:50%;
  background:radial-gradient(circle, var(--moss) 0%, transparent 70%);
  opacity:.3;
}
.breadcrumb{
  font-size:13px; font-weight:600; opacity:.6; margin-bottom:14px; position:relative; z-index:1;
}
.breadcrumb a{color:var(--ink); text-decoration:none;}
.breadcrumb a:hover{color:var(--sage-deep);}
.page-hero h1{margin:14px 0 16px; font-size:clamp(32px,4vw,46px); position:relative; z-index:1;}
.page-hero p.lead{position:relative; z-index:1; margin:0;}

.content{padding:64px 0;}
.article-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.article-grid.two-col{grid-template-columns:repeat(2, 1fr);}
.article{
  background-color:var(--card);
  background-image:url("texture-panel.svg");
  background-repeat:repeat;
  background-size:150px 150px;
  border-radius:20px;
  padding:30px;
  border:1px solid var(--line);
}
.article .tag{
  font-size:10.5px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  color:var(--clay);
  display:block;
  margin-bottom:12px;
}
.article h3{
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size:22px;
  margin:0 0 10px;
  line-height:1.2;
}
.article p{font-size:14px; line-height:1.7; opacity:.72; margin:0;}
.article ul{margin:12px 0 0; padding-left:18px;}
.article li{font-size:14px; line-height:1.7; opacity:.72; margin-bottom:4px;}

.callout{
  background-color:var(--paper-2);
  background-image:url("texture-panel.svg");
  background-repeat:repeat;
  background-size:150px 150px;
  border-radius:22px;
  padding:40px 46px;
  margin:36px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}
.callout h3{
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size:24px;
  margin:0 0 6px;
}
.callout p{margin:0; font-size:14px; opacity:.7; max-width:44ch;}

/* ---- Product cards ---- */
.product-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.product-card{
  background-color:var(--card);
  background-image:url("texture-panel.svg");
  background-repeat:repeat;
  background-size:150px 150px;
  border-radius:20px;
  padding:26px 28px 30px;
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
}
.product-icon{
  width:64px; height:64px;
  border-radius:16px;
  background:var(--paper-2);
  display:flex; align-items:center; justify-content:center;
  font-size:30px;
  margin-bottom:18px;
  border:1px solid var(--line);
}
.product-card .tag{
  font-size:10.5px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  color:var(--clay);
  display:block;
  margin-bottom:10px;
}
.product-card h3{
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size:22px;
  margin:0 0 8px;
  line-height:1.2;
}
.product-card p{font-size:14px; line-height:1.7; opacity:.72; margin:0 0 16px;}
.rating{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
}
.rating .stars{
  color:var(--clay);
  font-size:15px;
  letter-spacing:2px;
}
.rating .rating-label{
  font-size:11.5px;
  font-weight:700;
  opacity:.6;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.review{
  margin-top:auto;
  padding-top:16px;
  border-top:1px solid var(--line);
  font-size:13.5px;
  line-height:1.65;
  font-style:italic;
  opacity:.75;
}
.review::before{content:"“";}
.review::after{content:"”";}
.review-by{
  display:block;
  margin-top:8px;
  font-size:11px;
  font-style:normal;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
  opacity:.55;
}

/* ---- Scroll reveal ---- */
.reveal{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease;}
.reveal.in-view{opacity:1; transform:none;}

@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1; transform:none; transition:none;}
  .nav-toggle span, nav, .cat, a{transition:none;}
}

/* ---- Tablet ---- */
@media (max-width:1000px) and (min-width:821px){
  .cat-grid{grid-template-columns:repeat(3, 1fr);}
  .article-grid{grid-template-columns:repeat(2, 1fr);}
  .product-grid{grid-template-columns:repeat(2, 1fr);}
}

@media (max-width:820px){
  .hero{grid-template-columns:1fr; padding:44px 26px;}
  .cat-grid{grid-template-columns:repeat(2,1fr);}
  .routine{grid-template-columns:1fr; padding:40px 26px;}
  .article-grid, .article-grid.two-col{grid-template-columns:1fr;}
  .product-grid{grid-template-columns:1fr;}
  .page-hero{padding:40px 26px;}
  .callout{flex-direction:column; align-items:flex-start; padding:30px;}

  .nav-toggle{display:flex;}
  .navlinks{
    display:none;
    position:absolute;
    top:calc(100% + 8px);
    left:0; right:0;
    flex-direction:column;
    gap:2px;
    background:var(--card);
    background-image:url("texture-panel.svg");
    background-repeat:repeat;
    background-size:150px 150px;
    border:1px solid var(--line);
    border-radius:16px;
    padding:10px;
    box-shadow:0 20px 36px -20px rgba(74,56,38,0.35);
  }
  .navlinks.open{display:flex;}
  .navlinks a{
    padding:12px 14px;
    border-radius:10px;
    opacity:1;
  }
  .navlinks a:hover, .navlinks a.current{background:rgba(74,107,67,0.1); color:var(--sage-deep);}

  footer{flex-direction:column; gap:18px; text-align:center;}
  footer .footlinks{flex-wrap:wrap; justify-content:center; gap:10px 20px;}
}

@media (max-width:480px){
  .tone-row{flex-wrap:wrap;}
  .tone{flex:1 1 45%;}
}
/* Arreglo de legibilidad para las tarjetas del sitio */
.teaser,
.card,
.teaser-card {
  background-color: #ffffff;
  border: 1px solid #e8e2d5;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
/* Estilos para las cajas de texto del formulario de contacto */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #d0c8b8;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #3b5240;
  box-shadow: 0 0 0 2px rgba(59, 82, 64, 0.1);
}
/* Corrección de opacidad y fondos limpios */
.article,
.product-card,
.cat,
.contact-form,
.contact-info,
.leaf-card,
.post-note,
.callout,
.card {
  background-color: #ffffff;
  background-image: none;
  border: 1px solid rgba(74, 56, 38, 0.12);
  box-shadow: 0 4px 16px rgba(74, 56, 38, 0.05);
}

.form-row input,
.form-row textarea {
  background-color: #ffffff;
  background-image: none;
}

/* Solución definitiva para la opacidad de los botones */
button, 
.btn, 
a.btn, 
input[type="submit"] {
  opacity: 1;
  visibility: visible;
  -webkit-tap-highlight-color: transparent;
}
/* ==========================================
   ESTILOS MEJORADOS PARA ARTÍCULOS
   ========================================== */

/* Ancho y centrado de la lectura para mayor confort */
.content-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 16px 60px;
}

/* Estilo de la tarjeta principal del artículo */
.content-body article.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Encabezados dentro del artículo */
.content-body h2 {
  font-size: 1.5rem;
  color: #2c3e35;
  margin-top: 36px;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.content-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #8fa89b; /* Color suave a juego con la marca */
  border-radius: 2px;
}

.content-body h2:first-of-type {
  margin-top: 0;
}

/* Párrafos e interlineado para lectura descansada */
.content-body p {
  line-height: 1.8;
  color: #4a5568;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* Listas estilizadas */
.content-body ul, 
.content-body ol {
  margin-bottom: 24px;
  padding-left: 24px;
  color: #4a5568;
}

.content-body li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.content-body li strong {
  color: #2c3e35;
}

/* Bloque destacado para avisos o reglas clave */
.content-body p strong:only-child,
.content-body .highlight-box {
  background-color: #f4f7f5;
  border-left: 4px solid #8fa89b;
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  display: block;
  margin: 24px 0;
}

/* Adaptación para pantallas móviles */
@media (max-width: 600px) {
  .content-body article.card {
    padding: 24px 18px;
  }
  
  .content-body h2 {
    font-size: 1.3rem;
  }
}
/* Estilos y efectos para imágenes de artículos */
.article-image-container {
  position: relative;
  width: 100%;
  max-height: 420px;
  margin: 25px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  background-color: #f7f9f8;
}

.article-image {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
  filter: brightness(0.98) contrast(1.02);
}

/* Efecto hover interactivo */
.article-image-container:hover .article-image {
  transform: scale(1.03);
  filter: brightness(1.02) contrast(1.05);
}

/* Pie de foto integrado opcional */
.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: linear-gradient(transparent, rgba(44, 62, 53, 0.75));
  color: #ffffff;
  font-size: 0.85rem;
  font-style: italic;
  pointer-events: none;
}
/* Mejoras editoriales */
.editorial-meta{
  margin: .75rem 0 1.5rem;
  padding: .8rem 1rem;
  border-left: 3px solid currentColor;
  background: rgba(126,148,115,.08);
  font-size: .92rem;
  line-height: 1.55;
}
.sources{
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,.12);
}
.sources p{max-width: 70ch;}
.sources ul{padding-left:1.25rem;}
.sources li{margin:.55rem 0;}
.sources a{text-decoration:underline;text-underline-offset:2px;}


/* =========================================================
   PIEL VIVA — AJUSTE EDITORIAL PARA LA VERSIÓN DE PRUEBA
   Menos textura en interiores, más protagonismo del contenido.
   ========================================================= */

/* Fondo general limpio: la textura queda reservada para zonas de identidad. */
body{
  background-image:
    radial-gradient(circle at 12% 0%, rgba(201,162,107,0.10) 0%, transparent 42%),
    radial-gradient(circle at 100% 30%, rgba(181,88,31,0.05) 0%, transparent 38%);
  background-repeat:no-repeat, no-repeat;
  background-size:auto, auto;
}

/* La portada conserva la personalidad visual, pero con textura más discreta. */
.hero{
  background-image:
    linear-gradient(180deg, rgba(239,220,196,.98) 0%, rgba(246,232,216,.98) 100%),
    url("texture-panel.svg");
  background-size:100% 100%, 190px 190px;
}

/* En páginas interiores, el contenido debe respirar. */
.page-hero{
  background-image:linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}

.routine,
.callout,
.contact-info,
.post-note{
  background-image:none;
}

/* Tarjetas: fondo blanco ya establecido; reforzamos la sensación editorial. */
.article,
.product-card,
.cat,
.contact-form,
.leaf-card,
.post-note,
.callout,
.card,
.teaser-card{
  background-image:none;
}

/* Aviso de cookies más compacto para no tapar el contenido. */
.cookie-banner{
  max-width:580px;
  padding:18px 20px;
  border-radius:16px;
  background-image:none;
  box-shadow:0 18px 42px -18px rgba(58,50,38,0.30);
}
.cookie-banner p{
  font-size:12.8px;
  line-height:1.55;
  margin-bottom:12px;
}
.cookie-actions{
  gap:9px;
}
.cookie-actions .btn{
  padding:11px 18px;
  font-size:13px;
}

/* Mejor lectura de los artículos. */
.content-body{
  max-width:780px;
}

/* Enlaces internos y elementos de navegación ligeramente más visibles. */
.navlinks a{
  opacity:.78;
}
.navlinks a:hover,
.navlinks a.current{
  opacity:1;
}

/* En pantallas grandes, evita que la portada domine demasiado. */
@media (min-width:1000px){
  .hero{
    min-height:400px;
  }
}

/* En móvil, conservar espacios cómodos y evitar banners invasivos. */
@media (max-width:700px){
  .cookie-banner{
    left:12px;
    right:12px;
    bottom:12px;
    padding:16px;
  }
  .cookie-actions .btn{
    width:100%;
  }
}

/* V2.1 — navegación legible al desplazarse */
nav{
  background:rgba(255,251,245,0.72);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
nav.scrolled{
  background:rgba(255,251,245,0.94);
}
.editorial-meta{
  margin:.75rem 0 1.5rem;
  padding:.8rem 1rem;
  border-left:3px solid var(--sage-deep);
  background:rgba(126,148,115,.08);
  font-size:.92rem;
  line-height:1.55;
}

@media (max-width:820px){
  footer{
    grid-template-columns:1fr;
    gap:22px;
    text-align:center;
  }
  footer .footlinks{
    justify-content:center;
    margin-left:0;
    max-width:none;
  }
}

/* Auditoría editorial final 9→10 */
.section-intro{max-width:72ch; margin:0 auto 28px; font-size:1.04rem; line-height:1.75; opacity:.78;}
.hero-editorial-note{max-width:62ch; margin:18px auto 0; font-size:.9rem; line-height:1.55; opacity:.72;}
