:root{
  /* Soft boutique palette */
  --bg: #fff7f8;
  --surface: #ffffff;
  --ink: #251b1f;
  --muted: #6b5b61;

  --rose: #e7a9b7;
  --rose-deep: #cc7e93;
  --cream: #fff1e8;
  --sage: #8aa69b;

  --border: rgba(37, 27, 31, 0.10);
  --shadow: 0 18px 55px rgba(37, 27, 31, 0.12);
  --radius: 18px;
  --radius-sm: 14px;

  --serif: "Fraunces", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--surface);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  z-index: 1000;
}
.skip-link:focus{ left: 10px; }

h1,h2,h3,h4{
  font-family: var(--serif);
  letter-spacing: 0.2px;
  margin: 0 0 10px 0;
}
h1{
  font-size: clamp(2.2rem, 3.5vw, 3.3rem);
  line-height: 1.1;
}
h2{
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.2;
}
.h3{ font-size: 1.25rem; }
.h4{ font-size: 1.05rem; }
p{ margin: 0 0 14px 0; }

.lead{
  font-size: 1.1rem;
  color: var(--ink);
  max-width: 62ch;
}
.muted{ color: var(--muted); }
.small{ font-size: 0.95rem; }

.pill{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(231,169,183,0.22);
  border: 1px solid rgba(204,126,147,0.25);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  font-weight: 600;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
  user-select: none;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37, 27, 31, 0.12);
}
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: linear-gradient(180deg, var(--rose), var(--rose-deep));
  color: #fff;
  border-color: rgba(0,0,0,0.06);
}
.btn-primary:hover{
  box-shadow: 0 14px 30px rgba(204,126,147,0.35);
}

.btn-secondary{
  background: rgba(255,255,255,0.75);
}

.btn-full{ width: 100%; }

.link{
  color: var(--rose-deep);
  text-decoration: none;
  font-weight: 650;
}
.link:hover{ text-decoration: underline; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 247, 248, 0.72);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}
.brand-mark{
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(231,169,183,0.22);
  border: 1px solid rgba(204,126,147,0.25);
  font-size: 1.1rem;
}
.brand-name{
  display: block;
  font-family: var(--serif);
  font-weight: 650;
  font-size: 1.1rem;
  line-height: 1.1;
}
.brand-tag{
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 2px;
}

.nav{ display: flex; align-items: center; gap: 10px; }
.nav-menu{
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-link{
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 10px;
  border-radius: 999px;
  transition: background 140ms ease;
}
.nav-link:hover{
  background: rgba(231,169,183,0.18);
}

.nav-toggle{
  display: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.8);
  border-radius: 999px;
  padding: 10px 12px;
}
.nav-toggle-lines{
  width: 18px;
  height: 12px;
  display: block;
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
}
.nav-toggle-lines::before{ top: 1px; }
.nav-toggle-lines::after{ bottom: 1px; }

/* Hero */
.hero{
  position: relative;
  padding: 56px 0 32px;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(231,169,183,0.35), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(138,166,155,0.25), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(231,169,183,0.25), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,241,232,0.65), transparent 52%);
}

.hero-inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.hero-copy{
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 16px 60px rgba(37, 27, 31, 0.10);
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.trust{
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 550;
}
.trust-icon{
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(231,169,183,0.18);
  border: 1px solid rgba(204,126,147,0.20);
  color: var(--rose-deep);
}

.hero-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.hero-card-top{ margin-bottom: 12px; }

.grid-cards{
  display: grid;
  gap: 12px;
}

.product-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255,255,255,0.85);
}
.product-visual{
  height: 88px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(231,169,183,0.25), rgba(255,241,232,0.75)),
    radial-gradient(circle at 20% 20%, rgba(138,166,155,0.25), transparent 55%);
  border-bottom: 1px solid var(--border);
}
.product-visual .label{
  position: absolute;
  left: 14px;
  bottom: 12px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  font-weight: 650;
}
.product-body{
  padding: 14px;
}
.product-body h3{
  margin: 0 0 6px 0;
  font-size: 1.05rem;
}
.product-body p{
  margin: 0 0 10px 0;
  color: var(--muted);
}

.hero-bottom{
  height: 20px;
  margin-top: 34px;
  background: linear-gradient(90deg, rgba(231,169,183,0.28), rgba(138,166,155,0.18), rgba(255,241,232,0.45));
  border-top: 1px solid rgba(37, 27, 31, 0.06);
  border-bottom: 1px solid rgba(37, 27, 31, 0.06);
}

/* Sections */
.section{ padding: 54px 0; }
.section-alt{
  background: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(37, 27, 31, 0.06);
  border-bottom: 1px solid rgba(37, 27, 31, 0.06);
}

.section-head{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section-head p{ max-width: 68ch; }

.collection-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.collection{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 40px rgba(37, 27, 31, 0.09);
}
.collection-icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 10px;
  background: rgba(231,169,183,0.18);
  border: 1px solid rgba(204,126,147,0.20);
  color: var(--rose-deep);
  font-size: 1.1rem;
}
.bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{ margin: 6px 0; }

.cta-row{ margin-top: 18px; }
.cta-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(231,169,183,0.20), rgba(255,255,255,0.9));
}

/* About + Contact helpers (optional if your HTML uses them) */
.about-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}
.values{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.value{
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}
.about-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 40px rgba(37, 27, 31, 0.09);
}
.details{ margin: 12px 0 16px; }
.detail{
  padding: 10px 0;
  border-bottom: 1px solid rgba(37, 27, 31, 0.07);
}
.detail:last-child{ border-bottom: 0; }
dt{ font-weight: 700; margin-bottom: 4px; }
dd{ margin: 0; color: var(--muted); }

.contact-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.contact-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.note{
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px dashed rgba(204,126,147,0.45);
  background: rgba(255,241,232,0.55);
}
.contact-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 40px rgba(37, 27, 31, 0.09);
}
.link-block{
  display: block;
  text-decoration: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(37, 27, 31, 0.10);
  background: rgba(255,255,255,0.9);
}
.link-block:hover{
  box-shadow: 0 12px 26px rgba(37, 27, 31, 0.10);
  transform: translateY(-1px);
}
.link-title{ display: block; font-weight: 800; color: var(--ink); }
.link-desc{ display: block; color: var(--muted); margin-top: 4px; }
.divider{ height: 1px; background: rgba(37, 27, 31, 0.08); margin: 14px 0; }

/* Footer */
.site-footer{
  padding: 26px 0;
  border-top: 1px solid rgba(37, 27, 31, 0.10);
  background: rgba(255,255,255,0.55);
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-brand{
  font-family: var(--serif);
  font-weight: 650;
  margin-right: 10px;
}
.footer-right{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-link{
  text-decoration: none;
  font-weight: 650;
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 999px;
}
.footer-link:hover{
  background: rgba(231,169,183,0.18);
}

/* Blog */
.blog-toolbar{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  margin: 12px 0 18px;
}
.blog-search{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.blog-input{
  width: min(420px, 100%);
  padding: 12px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.85);
  font-family: var(--sans);
  font-size: 1rem;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:10px;
}
.post-card{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(37, 27, 31, 0.09);
  overflow:hidden;
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.post-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 55px rgba(37, 27, 31, 0.14);
}
.post-link{
  display:block;
  text-decoration:none;
  padding:18px;
}
.post-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.post-pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(204,126,147,0.25);
  background: rgba(231,169,183,0.18);
  font-weight:750;
  font-size:0.9rem;
  color: var(--ink);
}
.post-date{
  color: var(--muted);
  font-weight:650;
  font-size:0.95rem;
}
.read-more{
  display:inline-block;
  margin-top:10px;
  color: var(--rose-deep);
  font-weight:800;
}

.blog-list{ display:grid; gap:12px; }
.post-row{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,0.85);
}

.post-header{ max-width:78ch; }
.post-kicker{ display:flex; gap:10px; align-items:center; margin:0 0 12px 0; }
.post-content{
  max-width:78ch;
  background: rgba(255,255,255,0.75);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:22px;
}
.post-content h2{ margin-top:18px; }
.post-content ul{ margin-top:10px; }
.post-cta{ display:flex; flex-wrap:wrap; gap:12px; margin-top:18px; }

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .collection-grid{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .values{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .section-head{ flex-direction: column; align-items: start; }
  .blog-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .nav-toggle{ display: inline-flex; }
  .nav-menu{
    position: absolute;
    right: 20px;
    top: 68px;
    width: min(340px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 55px rgba(37, 27, 31, 0.18);
  }
  .nav-menu.open{ display: flex; }
  .nav-link{ padding: 10px 12px; }
}
