:root{
  --bg: #fbfaf7;          /* warm off-white */
  --bg2:#f3f0ea;          /* beige */
  --text:#1b1b1b;
  --muted:#5b5b5b;
  --line:rgba(0,0,0,.08);

  /* OsaNYX-inspired palette (sage, aqua, beige, coral) */
  --sage:#6b8f7a;
  --aqua:#2aa9b1;
  --beige:#e9dfcf;
  --coral:#ff6f61;

  --card:#ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;
  --max: 1120px;

  --h1: clamp(2.2rem, 5vw, 3.2rem);
  --h2: clamp(1.6rem, 3.6vw, 2.2rem);
  --h3: 1.15rem;
  --body: 1.02rem;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 800px at 10% -10%, rgba(42,169,177,.14), transparent 55%),
              radial-gradient(900px 600px at 110% 0%, rgba(107,143,122,.18), transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  line-height:1.6;
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
section{padding:64px 0}
.small{font-size:.92rem;color:var(--muted)}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-size:.82rem; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(27,27,27,.70);
}
.kicker:before{
  content:""; width:26px; height:2px; background:linear-gradient(90deg,var(--aqua),var(--sage));
  border-radius:2px;
}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(251,250,247,.74);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px; text-decoration:none;
  font-weight:700; letter-spacing:.02em;
}
.logo{
  width:34px; height:34px; border-radius:12px;
  background: conic-gradient(from 210deg, var(--aqua), var(--sage), var(--coral), var(--aqua));
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.navlinks{display:flex; gap:18px; align-items:center}
.navlinks a{
  text-decoration:none;
  color:rgba(27,27,27,.78);
  font-size:.95rem;
  padding:8px 10px; border-radius:12px;
}
.navlinks a:hover{background:rgba(0,0,0,.04); color:rgba(27,27,27,.94)}
.cta{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(42,169,177,.35);
  background: linear-gradient(180deg, rgba(42,169,177,.14), rgba(42,169,177,.06));
  text-decoration:none;
  font-weight:600;
  box-shadow: 0 10px 26px rgba(42,169,177,.10);
}
.cta:hover{transform: translateY(-1px)}
.cta:active{transform: translateY(0)}
.menuBtn{
  display:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.6);
  border-radius:14px;
  padding:10px 12px;
}
.menuPanel{
  display:none;
  padding:12px 0 16px;
  border-top:1px solid var(--line);
}
.menuPanel a{
  display:block; padding:10px 10px; border-radius:12px; text-decoration:none;
  color:rgba(27,27,27,.82);
}
.menuPanel a:hover{background:rgba(0,0,0,.04)}
@media (max-width: 860px){
  .navlinks{display:none}
  .menuBtn{display:inline-flex}
  .menuPanel{display:block}
}

.hero{
  padding:76px 0 30px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:28px;
  align-items:center;
}
@media (max-width: 920px){
  .heroGrid{grid-template-columns:1fr}
}
.h1{font-size:var(--h1); line-height:1.06; margin:12px 0 14px}
.lead{font-size: clamp(1.02rem, 2.2vw, 1.18rem); color:rgba(27,27,27,.78); max-width:55ch}
.heroActions{display:flex; gap:12px; flex-wrap:wrap; margin-top:22px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
  text-decoration:none;
  font-weight:650;
  box-shadow: var(--shadow);
}
.btn.primary{
  border-color: rgba(107,143,122,.45);
  background: linear-gradient(180deg, rgba(107,143,122,.22), rgba(107,143,122,.10));
}
.btn.secondary{
  border-color: rgba(255,111,97,.35);
  background: linear-gradient(180deg, rgba(255,111,97,.18), rgba(255,111,97,.06));
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}

.heroCard{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCard .pad{padding:20px}
.badges{
  display:flex; gap:10px; flex-wrap:wrap;
}
.badge{
  font-size:.84rem;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(233,223,207,.38);
}
.badge.aqua{background: rgba(42,169,177,.14); border-color: rgba(42,169,177,.28)}
.badge.sage{background: rgba(107,143,122,.14); border-color: rgba(107,143,122,.28)}
.badge.coral{background: rgba(255,111,97,.14); border-color: rgba(255,111,97,.28)}
.heroArt{
  height:220px;
  background:
    radial-gradient(140px 140px at 20% 25%, rgba(42,169,177,.45), transparent 65%),
    radial-gradient(220px 180px at 70% 35%, rgba(107,143,122,.45), transparent 65%),
    radial-gradient(220px 180px at 55% 90%, rgba(255,111,97,.35), transparent 60%),
    linear-gradient(180deg, rgba(233,223,207,.55), rgba(255,255,255,.65));
  border-top:1px solid rgba(0,0,0,.05);
}

.grid2{display:grid; grid-template-columns:1fr 1fr; gap:18px}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
@media (max-width: 900px){.grid3{grid-template-columns:1fr}}
@media (max-width: 820px){.grid2{grid-template-columns:1fr}}

.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow);
  padding:20px;
}
.card h3{margin:0 0 10px; font-size:var(--h3)}
.card p{margin:0 0 10px; color:rgba(27,27,27,.78)}
.list{
  margin:12px 0 0; padding-left: 18px;
  color:rgba(27,27,27,.78)
}

.split{
  display:grid; gap:18px;
  grid-template-columns: .92fr 1.08fr;
  align-items:start;
}
@media (max-width: 920px){.split{grid-template-columns:1fr}}
.quote{
  border-left:4px solid rgba(42,169,177,.45);
  padding:10px 0 10px 16px;
  color:rgba(27,27,27,.80)
}

.hr{height:1px; background:var(--line); margin:14px 0}

footer{
  padding:26px 0;
  border-top:1px solid var(--line);
  background: rgba(251,250,247,.75);
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.4fr .6fr .6fr;
  gap:18px;
}
@media (max-width: 920px){.footerGrid{grid-template-columns:1fr}}
.footerGrid a{text-decoration:none; color:rgba(27,27,27,.78)}
.footerGrid a:hover{text-decoration:underline}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  color:rgba(27,27,27,.74);
  font-size:.92rem;
}
.notice{
  font-size:.9rem;
  color:rgba(27,27,27,.68);
  margin-top:12px;
}

/* Products */
.filters{
  display:flex; flex-wrap:wrap; gap:10px; align-items:center;
  margin:18px 0 14px;
}
.input, .select{
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
  background: rgba(255,255,255,.78);
  min-width: 180px;
  font-size: .98rem;
}
.productsGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
@media (max-width: 980px){.productsGrid{grid-template-columns: repeat(2,1fr)}}
@media (max-width: 700px){.productsGrid{grid-template-columns:1fr}}

.pCard{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height: 280px;
}
.pImg{
  height: 170px;
  background: linear-gradient(135deg, rgba(42,169,177,.18), rgba(107,143,122,.18), rgba(255,111,97,.10));
  border-bottom:1px solid rgba(0,0,0,.05);
  display:flex; align-items:center; justify-content:center;
}
.pImg img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}
.pBody{padding:16px 16px 14px; display:flex; flex-direction:column; gap:10px; flex:1}
.pTitle{font-weight:750; margin:0; line-height:1.15}
.tags{display:flex; gap:8px; flex-wrap:wrap}
.tag{
  font-size:.78rem;
  padding:6px 9px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(233,223,207,.35);
  color:rgba(27,27,27,.75);
}
.tag.aqua{background: rgba(42,169,177,.12); border-color: rgba(42,169,177,.22)}
.tag.sage{background: rgba(107,143,122,.12); border-color: rgba(107,143,122,.22)}
.tag.coral{background: rgba(255,111,97,.12); border-color: rgba(255,111,97,.22)}
.pMeta{color:rgba(27,27,27,.72); font-size:.92rem}
.pActions{display:flex; gap:10px; margin-top:auto}
.pActions a{flex:1; text-align:center}

.modalBack{
  position:fixed; inset:0; background: rgba(0,0,0,.45);
  display:none; align-items:center; justify-content:center;
  padding:18px;
  z-index:80;
}
.modal{
  width:min(980px, 100%);
  max-height: min(86vh, 920px);
  overflow:auto;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.55);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.modalHeader{
  position:sticky; top:0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
  padding:14px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.modalHeader h3{margin:0; font-size:1.1rem}
.iconBtn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  border-radius: 14px;
  padding:10px 12px;
  cursor:pointer;
}
.modalBody{padding:16px}
.table{
  width:100%;
  border-collapse: collapse;
  border:1px solid var(--line);
  border-radius: 16px;
  overflow:hidden;
}
.table th, .table td{
  border-bottom:1px solid var(--line);
  padding:10px 12px;
  text-align:left;
  vertical-align: top;
}
.table th{
  background: rgba(233,223,207,.35);
  font-weight:700;
}
.table tr:last-child td{border-bottom:none}
.callout{
  padding:12px 14px;
  border-radius: 16px;
  border:1px dashed rgba(255,111,97,.40);
  background: rgba(255,111,97,.10);
  color:rgba(27,27,27,.78);
  margin-top:12px;
}
