:root{
  /* Always.Never palette (blush / ivory / charcoal) */
  --bg: #f6f0ec;        /* warm ivory background */
  --panel: #ffffff;     /* cards */
  --panel2: #fbf6f3;    /* soft section */
  --text: #1e1a18;      /* charcoal text */
  --muted: #6b5f5a;     /* muted brown-grey */
  --line: rgba(30,26,24,0.14);
  --accent: #1e1a18;    /* primary accent (charcoal) */
  --shadow: 0 24px 70px rgba(30,26,24,0.10);
  --radius: 20px;

  --blush: #e7cfc9;     /* the pink band */
}


*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(231,207,201,0.55), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(231,207,201,0.35), transparent 65%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.container{
  width:min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.dot{ opacity:.9; }

.topbar{
  position: sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(10,11,16,0.62);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  text-decoration:none;
  color: var(--text);
  display:flex;
  flex-direction:column;
  gap: 2px;
}
.brand__mark{
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06em;
  font-size: 16px;
}
.brand__sub{
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav{
  display:flex;
  gap: 18px;
  align-items:center;
}
.nav a{
  color: var(--muted);
  text-decoration:none;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.nav a:hover{ color: var(--text); }
.nav__cta{
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text) !important;
  background: rgba(255,255,255,0.06);
}

.hamburger{
  display:none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  width: 44px;
  height: 40px;
  gap: 6px;
  align-items:center;
  justify-content:center;
}
.hamburger span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.78);
  border-radius: 999px;
}

.mobilemenu{
  border-top: 1px solid var(--line);
  padding: 12px 0 16px;
}
.mobilemenu a{
  display:block;
  padding: 12px 20px;
  color: var(--muted);
  text-decoration:none;
}
.mobilemenu a:hover{ color: var(--text); }
.mobilemenu__cta{
  margin: 6px 20px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  color: var(--text) !important;
  text-align:center;
}

.hero{
  padding: 32px 0 24px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.pill{
  display:inline-block;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
}
.h1{
  margin: 14px 0 10px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 55ch;
}

.ctaRow{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin: 18px 0 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid var(--line);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn--primary{
  background: var(--text);
  color: #ffffff;
  border-color: var(--text);
}
.btn--primary:hover{ background: #141110; }
.btn--ghost{
  background: #ffffff;
  color: var(--text);
}
.btn--ghost:hover{ background: #f4eeeb; }

.btn--full{ width:100%; border-radius: 14px; }

.proof{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 14px;
}
.proof__item{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,0.04);
}
.proof__item .k{ display:block; font-size: 12px; color: var(--muted); }
.proof__item .v{ display:block; font-size: 13px; margin-top: 4px; }

.fine{
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.center{ text-align:center; }

.card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card__body{ padding: 16px; }

.productArt{
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}
.productArt__frame{
  height: 320px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    radial-gradient(120px 120px at 60% 30%, rgba(255,255,255,0.20), transparent 60%),
    radial-gradient(200px 200px at 40% 70%, rgba(255,255,255,0.12), transparent 60%),
    rgba(0,0,0,0.18);
  display:flex;
  align-items:flex-end;
  padding: 16px;
}
.productArt__label{
  border-radius: 16px;
  padding: 14px;
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
}
.label__brand{
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: rgba(255,255,255,0.86);
}
.label__name{
  margin-top: 6px;
  font-size: 18px;
  letter-spacing: 0.10em;
}
.label__desc{
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.priceRow{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.priceRow__title{ font-weight: 600; letter-spacing: 0.02em; }
.priceRow__meta{ font-size: 12px; color: var(--muted); margin-top: 4px; }
.price{
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
}

.bullets{
  margin: 10px 0 14px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.bullets li{ margin: 6px 0; }

.section{
  padding: 54px 0;
}
.section--alt{
  background: var(--panel2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.h2{
  font-family: "Playfair Display", serif;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 0 0 8px;
  font-size: clamp(22px, 3.2vw, 34px);
}
.sub{
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.tile{
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
}
.tile h3{
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.03em;
}
.tile p{ margin:0; color: var(--muted); line-height: 1.7; }

.active{
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
}
.active__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.active__name{ font-weight: 600; font-size: 14px; }
.active__tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
}
.active p{ margin:0; color: var(--muted); line-height: 1.7; }

.note{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  line-height: 1.7;
}

.faq{
  display:grid;
  gap: 10px;
}
details{
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  padding: 12px 14px;
}
summary{
  cursor:pointer;
  list-style:none;
  font-weight: 600;
  letter-spacing: 0.02em;
}
summary::-webkit-details-marker{ display:none; }
details p{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.ctaFinal{
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  padding: 18px;
  text-align:center;
  background: rgba(255,255,255,0.05);
}
.ctaFinal h3{
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.footer{
  padding: 28px 0 44px;
}
.footer__inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.footer__brand{
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06em;
}
.footer__links{
  display:flex;
  gap: 14px;
}
.footer__links a{
  color: var(--muted);
  text-decoration:none;
  font-size: 12px;
}
.footer__links a:hover{ color: var(--text); }

@media (max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; }
  .proof{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .hamburger{ display:flex; }
}

.productImage{
  padding: 18px;
  display:flex;
  justify-content:center;
  align-items:center;
  background: linear-gradient(180deg, var(--blush), #ffffff 70%);
  border-bottom: 1px solid var(--line);
}

.productImage img{
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(30,26,24,0.18));
}

/* ===== Brand Masthead ===== */

.brand-header{
  text-align: center;
  padding: 56px 20px 32px;
  background: transparent;
}

.brand-logo{
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #1f1a18;
}

.brand-logo .dot{
  opacity: 0.9;
}

.brand-tagline{
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: rgba(31,26,24,0.55);
}
