:root{
  --bg: #FBF7EF;
  --bg-deep: #F3E8D5;
  --surface:#FFFFFF;
  --text:#2B1F16;
  --muted:#6B5A4A;
  --border:#E6D7C3;
  --wood:#C9A777;
  --wood-dark:#8B6A42;
  --wood-deep:#6E4D2E;
  --sea:#3C7A73;
  --radius:16px;
  --max:1160px;
}

/* Subtle textures (paper + wood grain) */
:root{
  --paper-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter, system-ui, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  position:relative;
}

/* paper texture overlay */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image: var(--paper-noise);
  mix-blend-mode:multiply;
  opacity:.22;
  z-index:0;
}

/* keep content above texture */
header, section, footer, .alert-bar, .promo-bar{ position:relative; z-index:1; }

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

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.nav{
  display:flex;
  gap:16px;
  font-weight:600;
}
.nav a{ text-decoration:none; color:var(--text); }
.nav a:hover{ text-decoration:underline; }

.hamburger{
  display:none;
  background:transparent;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 10px;
  cursor:pointer;
}
.hamburger span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  margin:4px 0;
}

.mobile-menu{
  border-bottom:1px solid var(--border);
  background:rgba(251,247,239,.92);
  backdrop-filter: blur(6px);
}
.mobile-menu a{
  display:block;
  padding:12px 0;
  text-decoration:none;
  color:var(--text);
  font-weight:600;
}
.mobile-divider{ height:1px; background:var(--border); margin:10px 0; }

.alert-bar{
  background:var(--wood-deep);
  color:#fff;
  text-align:center;
  font-size:14px;
  padding:8px 16px;
  letter-spacing:.3px;
}

.promo-bar{
  background:var(--bg-deep);
  color:var(--text);
  text-align:center;
  font-weight:600;
  padding:10px 16px;
  border-bottom:1px solid var(--border);
}

header{
  position:relative;
  padding:22px 0;
  border-bottom:1px solid var(--border);
  background:linear-gradient(180deg, rgba(243,232,213,.65), rgba(251,247,239,.0));
}

/* subtle wood strip */
header::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:12px;
  background:
    repeating-linear-gradient(90deg,
      rgba(110,77,46,.85) 0px,
      rgba(110,77,46,.85) 12px,
      rgba(139,106,66,.9) 12px,
      rgba(139,106,66,.9) 24px,
      rgba(201,167,119,.75) 24px,
      rgba(201,167,119,.75) 36px
    );
  box-shadow:0 1px 0 rgba(0,0,0,.08);
}

/* faint wood grain inside the strip */
header::after{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:12px;
  background:
    repeating-linear-gradient(0deg,
      rgba(255,255,255,.10) 0px,
      rgba(255,255,255,.10) 1px,
      rgba(0,0,0,.05) 2px,
      rgba(0,0,0,.05) 3px
    );
  opacity:.35;
  pointer-events:none;
}

.logo img{
  height:80px;
  width:auto;
  display:block;
}

/* Buttons & typography */
h1,h2,h3{ font-family:"Cormorant Garamond",serif; }
h1{ font-size:56px; line-height:1.05; margin:0 0 20px; }
h2{ font-size:38px; margin-bottom:24px; }
p{ color:var(--muted); }

.btn{
  display:inline-block;
  padding:14px 22px;
  border-radius:999px;
  border:1px solid var(--text);
  text-decoration:none;
  font-weight:600;
  margin-right:14px;
}
.btn.primary{background:var(--text);color:var(--bg)}
.btn.secondary{background:transparent;color:var(--text)}

.section{padding:80px 0}
.section.deep{
  background:var(--bg-deep);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border)
}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  box-shadow: 0 1px 0 rgba(43,31,22,.03);
  background-image:
    linear-gradient(180deg, rgba(201,167,119,.10), rgba(255,255,255,0) 42%),
    linear-gradient(0deg, rgba(255,255,255,1), rgba(255,255,255,1));
}
.card h3{margin-top:0;font-size:22px}

/* Hero Carousel */
.hero{
  position:relative;
  overflow:hidden;
  height: clamp(540px, 70vh, 690px);
  padding: 90px 0 70px;
}
.hero-slide{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 84px;
  align-items:center;
  padding: 0 64px;
  opacity:0;
  transform:translateX(40px);
  transition:opacity .55s ease, transform .55s ease;
  pointer-events:none;
}
.hero-slide.active{
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}
.hero-text{ max-width: 560px; }
.hero-image{
  justify-self:end;
  width:100%;
  max-width: 560px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  aspect-ratio: 4 / 3;
}
.hero-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  background: linear-gradient(180deg, rgba(243,232,213,.65), rgba(251,247,239,.0));
}

.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(43,31,22,.65);
  color:#fff;
  border:none;
  width:40px;
  height:40px;
  border-radius:50%;
  cursor:pointer;
  font-size:20px;
  z-index:6;
}
.carousel-arrow.left{ left:1px; }
.carousel-arrow.right{ right:1px; }

.carousel-dots{
  position:absolute;
  bottom:22px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:6;
}
.carousel-dots button{
  width:12px;
  height:12px;
  border-radius:50%;
  border:1px solid rgba(0,0,0,.25);
  background:rgba(255,255,255,.75);
  cursor:pointer;
  transition:all .3s ease;
}
.carousel-dots button.active{
  background:var(--wood-dark);
  border-color:var(--wood-dark);
}

/* Shop grid */
.shop-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.product-card{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--surface);
}
.product-card .thumb{
  aspect-ratio: 4 / 3;
  border-bottom:1px solid var(--border);
  background:linear-gradient(180deg, rgba(243,232,213,.65), rgba(251,247,239,.0));
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-card .thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.product-card .body{ padding:18px; }
.product-card .title{ font-family:"Cormorant Garamond",serif; font-size:22px; margin:0 0 6px; color:var(--text); }
.product-card .meta{ margin:0 0 10px; color:var(--muted); font-size:14px; }
.product-card .price{ font-weight:700; color:var(--text); }
.product-card a{ text-decoration:none; color:inherit; }

.footer{
  padding:54px 0;
  border-top:1px solid rgba(255,255,255,.18);
  text-align:center;
  font-size:14px;
  background:var(--wood-deep);
  color:#fff;
}
.footer .footer-logo{margin-bottom:16px;}
.footer .footer-logo img{
  height:56px;
  width:auto;
  filter: brightness(0) invert(1);
  opacity:.95;
}
.footer a{ color:rgba(255,255,255,.92); text-decoration:none; }
.footer a:hover{ text-decoration:underline; }
.footer .footer-links{
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
  margin:10px 0 14px;
}
.footer .copyright{ opacity:.9; }

@media(max-width:900px){
  .nav{ display:none; }
  .hamburger{ display:inline-flex; align-items:center; justify-content:center; }

  .hero{ height: auto; padding: 48px 0 40px; }
  .hero-slide{
    grid-template-columns:1fr;
    gap:24px;
    padding:0 20px;
    position:absolute;
  }
  .hero-slide.active{ position:relative; }
  .hero-image{ justify-self:stretch; max-width: none; }
  h1{font-size:38px}

  .btn.primary, .btn.secondary{
    display:block;
    width:100%;
    text-align:center;
    margin:0 0 12px 0;
  }
  .btn.secondary{ margin:0; }

  .grid-3{grid-template-columns:1fr}
  .shop-grid{ grid-template-columns:1fr; }
}