:root{
  --bg:#f2ece3;
  --bg2:#e7dbc8;
  --surface:rgba(255,255,255,.84);
  --surface-strong:rgba(255,255,255,.96);
  --line:rgba(72,54,28,.12);
  --text:#261b12;
  --muted:#706253;
  --gold:#b78626;
  --gold2:#dfc07a;
  --gold3:#7a5916;
  --danger:#a24141;
  --shadow:0 18px 48px rgba(58,39,15,.12);
  --radius:24px;
  --max:1360px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;overflow-x:hidden}

body{
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(223,192,122,.18), transparent 26%),
    radial-gradient(circle at 100% 10%, rgba(131,148,115,.12), transparent 22%),
    linear-gradient(180deg,var(--bg),var(--bg2));
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button,input,textarea,select{font:inherit}

input,textarea,select{
  width:100%;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.88);
  color:var(--text);
  padding:12px 14px;
  outline:none;
}

textarea{
  min-height:130px;
  resize:vertical;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

.page{
  padding:28px 0 44px;
}

.topbar{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter:blur(16px);
  background:rgba(242,236,227,.82);
  border-bottom:1px solid var(--line);
}

.topbar-inner{
  min-height:88px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:18px;
  align-items:center;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-logo{
  width:66px;
  height:66px;
  border-radius:18px;
  object-fit:contain;
  background:#fff;
  border:1px solid var(--line);
  padding:8px;
  box-shadow:var(--shadow);
}

.brand-fallback{
  display:none;
  width:66px;
  height:66px;
  border-radius:18px;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:800;
  background:linear-gradient(135deg,var(--gold2),var(--gold),var(--gold3));
}

.brand-copy strong{
  display:block;
  font-size:1.08rem;
}

.brand-copy small{
  color:var(--muted);
}

.main-nav{
  display:flex;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
}

.nav-link{
  padding:10px 14px;
  border-radius:999px;
  color:#403325;
  transition:.2s ease;
}

.nav-link:hover,
.nav-link.active{
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}

.actions,.toolbar{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:11px 16px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  transition:transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-gold{
  color:#fff;
  background:linear-gradient(135deg,var(--gold2),var(--gold),var(--gold3));
  box-shadow:0 12px 26px rgba(151,114,33,.26);
}

.btn-soft{
  background:rgba(255,255,255,.95);
  border:1px solid var(--line);
  color:#3d3023;
}

.btn-dark{
  background:#3f3428;
  color:#fff;
}

.btn-danger{
  background:var(--danger);
  color:#fff;
}

.btn-small{
  padding:8px 12px;
  font-size:.92rem;
}

.card{
  background:var(--surface);
  border:1px solid rgba(255,255,255,.45);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}

.card.pad{
  padding:22px;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.72rem;
  color:#8a7658;
  font-weight:700;
}

.gold-title{
  background:linear-gradient(135deg,#f8e8ae 2%, #d9bc76 28%, #b78626 58%, #7e5a16 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 8px 22px rgba(183,134,38,.12);
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:14px;
  margin:0 0 18px;
}

.muted{
  color:var(--muted);
  line-height:1.72;
}

.small-pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.94);
}

.serif-head{
  font-family:Georgia,serif;
  margin:0;
}

.hero-slider-shell{
  padding:18px;
  overflow:hidden;
}

.hero-slider{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  min-height:480px;
  background:#d8d1c4;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition:opacity .8s ease;
}

.hero-slide.active{
  opacity:1;
  pointer-events:auto;
}

.hero-slide img{
  width:100%;
  height:480px;
  object-fit:cover;
  transform:scale(1.04);
}

.hero-slide.active img{
  animation:slowZoom 7s linear infinite alternate;
}

@keyframes slowZoom{
  from{transform:scale(1.02)}
  to{transform:scale(1.08)}
}

.hero-slide-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:30px;
  color:#fff;
  background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.58));
}

.hero-slide-overlay h2{
  margin:.35rem 0 0;
  font-family:Georgia,serif;
  font-size:clamp(1.5rem,3vw,2.35rem);
  line-height:1.12;
}

.hero-slide-controls{
  position:absolute;
  right:22px;
  bottom:18px;
  display:flex;
  gap:10px;
  z-index:5;
  flex-wrap:wrap;
  max-width:220px;
  justify-content:flex-end;
}

.hero-dot{
  width:14px;
  height:14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.85);
  background:rgba(255,255,255,.35);
  cursor:pointer;
}

.hero-dot.active{
  background:linear-gradient(135deg,#f8e8ae,#d9bc76,#b78626);
  border-color:#fff;
}

.hero-message-block{
  text-align:center;
  padding:24px 14px 6px;
}

.hero-title{
  font-family:Georgia,serif;
  font-size:clamp(2.3rem,5vw,4.8rem);
  line-height:1;
  margin:0 0 10px;
}

.hero-message{
  font-family:Georgia,serif;
  font-size:clamp(1.08rem,2vw,1.42rem);
  line-height:1.72;
  max-width:980px;
  margin:0 auto 18px;
}

.hero-sub-actions{
  justify-content:center;
}

.inspiration-shell{
  margin-top:26px;
}

.inspiration-grid{
  display:grid;
  grid-template-columns:1.35fr .85fr .85fr;
  gap:18px;
}

.inspire-card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  background:rgba(255,255,255,.9);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  min-height:250px;
}

.inspire-card-large{
  min-height:470px;
}

.inspire-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.inspire-overlay,
.inspire-copy,
.editorial-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  color:#fff;
  background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.62));
}

.inspire-overlay{
  padding:28px;
}

.inspire-copy{
  padding:20px;
}

.inspire-overlay h3,
.inspire-copy h3{
  font-family:Georgia,serif;
  margin:.35rem 0 .55rem;
  line-height:1.15;
}

.editorial-band{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  margin-top:26px;
}

.editorial-feature{
  position:relative;
  overflow:hidden;
  min-height:390px;
}

.editorial-feature img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.editorial-overlay{
  padding:28px;
}

.editorial-stack{
  display:grid;
  gap:18px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.product-card{
  overflow:hidden;
  border-radius:24px;
  background:var(--surface-strong);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.product-card img{
  width:100%;
  height:300px;
  object-fit:cover;
}

.product-body{
  padding:18px;
}

.product-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-top:14px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.list-stack{
  display:grid;
  gap:12px;
}

.user-row,
.product-row,
.board-card,
.cart-row{
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius:20px;
  padding:14px;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}

.user-row header,
.product-row header{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:start;
  margin-bottom:12px;
}

.board-grid{
  display:grid;
  gap:12px;
  margin-bottom:12px;
}

.stack{
  display:grid;
  gap:12px;
}

.inline-fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.hidden{
  display:none;
}

.upload-preview{
  width:100%;
  max-height:220px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
}

.cart-list{
  display:grid;
  gap:12px;
}

.cart-row{
  display:grid;
  grid-template-columns:110px 1fr auto;
  gap:14px;
  align-items:center;
}

.cart-row img{
  width:110px;
  height:90px;
  object-fit:cover;
  border-radius:14px;
}

.cart-actions{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}

.meeting-shell{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
}

.calendar-grid .calendar-head{
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:10px;
  margin-bottom:10px;
}

.calendar-grid .calendar-body{
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:10px;
}

.calendar-day{
  min-height:110px;
  text-align:left;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.92);
  padding:14px;
  cursor:pointer;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}

.calendar-day:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 26px rgba(0,0,0,.08);
}

.calendar-day.has-meetings{
  background:rgba(223,192,122,.25);
}

.calendar-empty{
  min-height:88px;
  border-radius:20px;
  background:rgba(255,255,255,.35);
  border:1px solid var(--line);
}

.field-card{
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  border-radius:20px;
  padding:12px;
}

.select-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.footer{
  padding:28px 0 40px;
  color:var(--muted);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .6s ease, transform .6s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

@media (max-width:1150px){
  .product-grid,
  .stats-grid,
  .inspiration-grid,
  .editorial-band,
  .grid-2{
    grid-template-columns:1fr 1fr;
  }
  .inspire-card-large{
    grid-column:1 / -1;
  }
}

@media (max-width:980px){
  .meeting-shell,
  .select-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:900px){
  .topbar-inner,
  .product-grid,
  .stats-grid,
  .inspiration-grid,
  .editorial-band,
  .grid-2,
  .inline-fields,
  .cart-row{
    grid-template-columns:1fr!important;
  }
  .main-nav{
    justify-content:flex-start;
  }
  .hero-slider{
    min-height:340px;
  }
  .hero-slide img{
    height:340px;
  }
}

@media (max-width:640px){
  .wrap{
    padding:0 12px;
  }
  .topbar{
    position:static;
  }
  .brand-copy small{
    display:none;
  }
  .product-card img{
    height:220px;
  }
  .hero-slide img{
    height:250px;
  }
  .hero-slider{
    min-height:250px;
  }
  .hero-slide-overlay{
    padding:18px;
  }
}