
:root{
  --bg:#f6f1e7;
  --paper:#fbf7ef;
  --ink:#101410;
  --muted:#566056;
  --line:#dcd2c1;
  --forest:#243128;
  --sage:#9cad9a;
  --sand:#e8dcc8;
  --clay:#d38a67;
  --mustard:#e4b453;
  --sky:#a6cfd1;
  --cream:#fffdf9;
  --shadow:0 18px 60px rgba(16,20,16,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(228,180,83,.11), transparent 18%),
    radial-gradient(circle at 82% 14%, rgba(166,207,209,.14), transparent 18%),
    linear-gradient(180deg, #fbf7ef 0%, #f5efe5 100%);
  color:var(--ink);
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
.container{width:min(1320px, calc(100% - 40px)); margin:0 auto}

.topbar{
  background:var(--forest);
  color:#fff;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.16);
}
.ticker{
  min-width:max-content;
  display:flex;
  gap:32px;
  align-items:center;
  padding:10px 0;
  font-size:10px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  animation:marquee 28s linear infinite;
}
.ticker span::after{
  content:"✦";
  margin-left:32px;
  color:var(--mustard);
}
@keyframes marquee{to{transform:translateX(-50%)}}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(251,247,239,.86);
  border-bottom:1px solid rgba(16,20,16,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  min-height:100px; gap:20px;
}
.brand{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 16px;
  border:1.5px solid var(--ink);
  border-radius:26px;
  background:rgba(255,255,255,.82);
  box-shadow:6px 6px 0 var(--ink);
}
.brand img{width:168px; height:auto}

.desktop-nav{
  display:flex; gap:28px; align-items:center;
  font-size:12px; letter-spacing:.16em; text-transform:uppercase; font-weight:800;
}
.desktop-nav a{
  position:relative; opacity:.88;
}
.desktop-nav a::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-8px; height:2px;
  background:var(--mustard);
  transform:scaleX(0); transform-origin:left;
  transition:.22s ease;
}
.desktop-nav a:hover::after{transform:scaleX(1)}
.menu-toggle{
  display:none; border:1.5px solid var(--ink); background:#fff; color:var(--ink);
  padding:12px 14px; border-radius:999px; font-size:12px; font-weight:800; letter-spacing:.12em; text-transform:uppercase;
}
.mobile-nav{
  display:none; grid-template-columns:1fr; gap:8px;
  padding:0 20px 18px;
}
.mobile-nav a{
  padding:12px 14px; border-radius:14px; background:#fff; border:1px solid var(--line);
  font-size:12px; letter-spacing:.12em; text-transform:uppercase; font-weight:700;
}
.mobile-nav.open{display:grid}

.hero{
  position:relative;
  padding:58px 0 42px;
  overflow:hidden;
}
.shape{
  position:absolute; border-radius:50%; filter:blur(4px); opacity:.7;
}
.shape-a{width:260px;height:260px;background:rgba(228,180,83,.30);top:85px;left:-70px}
.shape-b{width:380px;height:380px;background:rgba(166,207,209,.24);right:-120px;top:30px}
.shape-c{width:250px;height:250px;background:rgba(211,138,103,.20);right:18%;bottom:-40px}

.hero-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:40px;
  align-items:center;
}
.kicker,.section-kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-size:11px; font-weight:800; letter-spacing:.17em; text-transform:uppercase;
  color:var(--muted);
}
.kicker span,.section-kicker::before{
  content:""; width:9px; height:9px; border-radius:50%; background:var(--clay);
  display:inline-block;
}
.hero-copy h1{
  margin:18px 0 18px;
  font-size:clamp(48px, 6.2vw, 92px);
  line-height:.96;
  letter-spacing:-.045em;
  max-width:10ch;
}
.lead{
  font-size:18px; line-height:1.7; color:#475047; max-width:58ch; margin:0 0 30px;
}
.cta-row{
  display:flex; gap:14px; flex-wrap:wrap; margin-bottom:28px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:54px; padding:0 22px; border-radius:999px;
  font-size:11px; font-weight:800; letter-spacing:.16em; text-transform:uppercase;
  transition:.22s ease;
}
.btn-dark{
  background:var(--ink); color:#fff; border:1.5px solid var(--ink); box-shadow:6px 6px 0 var(--mustard);
}
.btn-dark:hover{transform:translate(-2px,-2px); box-shadow:10px 10px 0 var(--mustard)}
.btn-light{
  background:rgba(255,255,255,.85); color:var(--ink); border:1.5px solid var(--ink); box-shadow:6px 6px 0 var(--sky);
}
.btn-light:hover{transform:translate(-2px,-2px); box-shadow:10px 10px 0 var(--sky)}
.badge-row{display:flex; gap:12px; flex-wrap:wrap}
.mini-badge{
  background:rgba(255,255,255,.75);
  border:1.5px solid var(--ink);
  border-radius:999px;
  padding:9px 14px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.hero-visual{position:relative; padding:34px 20px 38px 20px}
.hero-card{
  border:1.5px solid var(--ink);
  background:#fff;
  box-shadow:12px 12px 0 var(--ink);
  overflow:hidden;
}
.hero-card-main{
  max-width:820px;
  margin-left:auto;
  border-radius:34px;
}
.hero-card-main img{
  width:100%; height:720px; object-fit:cover; object-position:center 35%;
}
.hero-note{
  position:absolute;
  background:#fff;
  border:1.5px solid var(--ink);
  box-shadow:6px 6px 0 var(--ink);
  padding:12px 16px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.note-one{left:-8px; top:86px; transform:rotate(-5deg); background:var(--mustard)}
.note-two{right:18px; bottom:28px; transform:rotate(4deg); background:var(--sky)}
.hero-stamp{
  position:absolute; right:-10px; top:-2px;
  width:160px; height:160px; border-radius:50%;
  background:rgba(255,255,255,.92);
  border:1.5px solid var(--ink);
  display:grid; place-items:center; box-shadow:8px 8px 0 var(--ink);
}
.hero-stamp img{width:95px; height:auto}

.ribbon{
  background:var(--mustard);
  border-top:1.5px solid var(--ink);
  border-bottom:1.5px solid var(--ink);
  overflow:hidden;
}
.ribbon-track{
  min-width:max-content;
  display:flex; gap:28px; align-items:center;
  padding:16px 0;
  font-size:14px; font-weight:900; letter-spacing:.12em; text-transform:uppercase;
  animation:marquee 24s linear infinite;
}
.ribbon-track span::after{content:"★"; margin-left:28px}

.shop-section,.story-section,.gallery-section,.launch-section{padding:90px 0}
.section-head{max-width:760px; margin:0 0 34px}
.section-head h2{
  margin:12px 0 12px; font-size:clamp(32px, 4.1vw, 58px); line-height:1; letter-spacing:-.04em;
}
.section-copy{margin:0; color:#526052; font-size:17px; line-height:1.75}

.category-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}
.category-card{
  position:relative;
  background:#fff;
  border:1.5px solid var(--ink);
  border-radius:26px;
  padding:28px 24px 24px;
  box-shadow:8px 8px 0 var(--ink);
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.category-card.alt{background:#eef5f5}
.category-card.soft{background:#f7efe4}
.category-card.dark{background:#232a24; color:#fff}
.category-card.dark p{color:rgba(255,255,255,.78)}
.category-card.dark a{border-color:#fff}
.card-number{
  position:absolute; top:18px; right:18px;
  width:42px; height:42px; border-radius:50%;
  display:grid; place-items:center;
  border:1.5px solid var(--ink);
  font-size:11px; font-weight:900; background:var(--paper);
}
.category-card h3{
  margin:0 0 12px; font-size:24px; line-height:1.05; letter-spacing:-.03em;
}
.category-card p{
  margin:0 0 18px; color:#596459; line-height:1.65;
}
.category-card a{
  align-self:flex-start;
  font-size:11px; font-weight:800; letter-spacing:.16em; text-transform:uppercase;
  border-bottom:2px solid var(--mustard); padding-bottom:6px;
}

.feature-band{
  padding:26px 0;
  background:var(--forest);
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
.feature-pill{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  padding:20px 16px;
  text-align:center;
  color:#fff;
}
.feature-pill strong{
  display:block;
  margin-bottom:6px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.feature-pill span{
  color:rgba(255,255,255,.72);
  font-size:13px;
}

.story-grid{
  display:grid;
  grid-template-columns: .94fr 1.06fr;
  gap:36px;
  align-items:center;
}
.story-copy h2{
  margin:12px 0 16px;
  font-size:clamp(34px, 4.6vw, 62px);
  line-height:1.02;
  letter-spacing:-.045em;
  max-width:11ch;
}
.story-copy p{
  color:#4f5a4f; line-height:1.75; font-size:17px;
}
.quote-card{
  position:relative;
  margin-top:28px;
  background:#fff;
  border:1.5px solid var(--ink);
  border-radius:24px;
  padding:22px 22px 18px 28px;
  box-shadow:8px 8px 0 var(--sky);
}
.quote-mark{
  position:absolute;
  right:18px; top:-18px;
  font-family:Georgia, serif;
  font-size:90px;
  line-height:1;
  color:rgba(166,207,209,.6);
}
.quote-card p{
  margin:0; font-size:20px; line-height:1.5; color:var(--ink);
}

.story-visual{position:relative; min-height:640px}
.story-photo{
  border:1.5px solid var(--ink);
  border-radius:30px;
  overflow:hidden;
  box-shadow:12px 12px 0 var(--ink);
  background:#fff;
}
.story-photo img{
  width:100%; height:640px; object-fit:cover; object-position:center;
}
.story-floating-card{
  position:absolute;
  left:-12px; bottom:28px;
  width:min(320px, 72%);
  background:rgba(255,255,255,.95);
  border:1.5px solid var(--ink);
  border-radius:26px;
  box-shadow:8px 8px 0 var(--mustard);
  padding:18px 18px 16px;
}
.story-floating-card img{width:116px; margin:0 0 12px}
.story-floating-card p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:#4f5a4f;
}

.gallery-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr .95fr 1.05fr;
  gap:16px;
  align-items:start;
}
.shot{
  margin:0;
  background:#fff;
  border:1.5px solid var(--ink);
  overflow:hidden;
  box-shadow:8px 8px 0 var(--ink);
}
.shot img{width:100%; height:100%; object-fit:cover}
.shot-a{height:460px; border-radius:36px 20px 20px 20px; transform:rotate(-1.3deg)}
.shot-b{height:280px; border-radius:20px 36px 20px 20px; transform:rotate(1.6deg)}
.shot-c{height:380px; border-radius:20px; transform:rotate(-.6deg); margin-top:38px}
.shot-d{height:440px; border-radius:20px 20px 36px 20px; transform:rotate(1.2deg); margin-top:10px}

.sticker-row{
  display:flex; gap:14px; flex-wrap:wrap; justify-content:center;
  margin-top:34px;
}
.sticker{
  background:#fff;
  border:1.5px solid var(--ink);
  border-radius:999px;
  padding:11px 16px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  box-shadow:4px 4px 0 var(--ink);
}
.sticker:nth-child(2){background:var(--mustard)}
.sticker:nth-child(3){background:var(--sky)}
.sticker:nth-child(4){background:var(--sand)}
.sticker:nth-child(5){background:#fff7d6}

.launch-section{
  background:linear-gradient(180deg, #f3eadb 0%, #efe2cf 100%);
  border-top:1.5px solid var(--ink);
  border-bottom:1.5px solid var(--ink);
  position:relative;
  overflow:hidden;
}
.launch-section::after{
  content:"LI";
  position:absolute; right:-.02em; bottom:-.18em;
  font-size:270px; font-weight:900; line-height:.8;
  color:rgba(16,20,16,.05); letter-spacing:-.12em; pointer-events:none;
}
.launch-grid{
  display:grid; grid-template-columns: 1fr .95fr; gap:26px; align-items:center;
}
.launch-copy h2{
  margin:12px 0 12px;
  font-size:clamp(34px, 4.3vw, 62px);
  line-height:1;
  letter-spacing:-.045em;
  max-width:11ch;
}
.launch-copy p{color:#4f5a4f; font-size:17px; line-height:1.7; margin:0}
.launch-form{
  position:relative; z-index:1;
  display:flex; gap:12px; align-items:center;
  background:rgba(255,255,255,.74);
  border:1.5px solid var(--ink);
  border-radius:999px;
  padding:10px;
  box-shadow:10px 10px 0 var(--ink);
}
.launch-form input{
  flex:1; min-height:56px; padding:0 18px; border:0; outline:none; background:transparent;
  font-size:16px;
}
.launch-form button{
  min-height:56px; padding:0 22px;
  border:1.5px solid var(--ink); border-radius:999px;
  background:var(--ink); color:#fff;
  font-size:11px; font-weight:900; letter-spacing:.15em; text-transform:uppercase;
  cursor:pointer;
}

.site-footer{
  padding:24px 0 40px;
  background:#f8f2e8;
}
.footer-row{
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.footer-row p,.footer-row a{
  margin:0; font-size:11px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; color:#526052;
}

@media (max-width: 1080px){
  .hero-grid,.story-grid,.launch-grid{grid-template-columns:1fr}
  .hero-card-main img{height:560px}
  .story-copy h2,.launch-copy h2{max-width:none}
  .category-grid,.feature-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .shot-a,.shot-b,.shot-c,.shot-d{height:360px; margin-top:0; transform:none}
  .story-visual{min-height:auto}
}
@media (max-width: 760px){
  .desktop-nav{display:none}
  .menu-toggle{display:inline-flex}
  .brand img{width:136px}
  .nav{min-height:84px}
  .hero{padding-top:30px}
  .hero-copy h1{max-width:none}
  .hero-card-main img{height:420px}
  .hero-stamp{width:112px;height:112px}
  .hero-stamp img{width:68px}
  .hero-note{font-size:9px}
  .category-grid,.feature-grid,.gallery-grid{grid-template-columns:1fr}
  .feature-pill{border-radius:26px}
  .launch-form{border-radius:28px; flex-direction:column; align-items:stretch}
  .launch-form button{width:100%}
}
@media (max-width: 560px){
  .container{width:min(calc(100% - 24px), 1320px)}
  .brand{padding:8px 12px; box-shadow:4px 4px 0 var(--ink)}
  .hero-copy h1{font-size:46px}
  .lead,.section-copy,.story-copy p,.launch-copy p{font-size:16px}
  .btn{width:100%}
  .hero-card-main{border-radius:24px}
  .hero-note{display:none}
  .story-photo img{height:420px}
  .story-floating-card{position:relative; left:auto; bottom:auto; width:100%; margin-top:16px}
  .topbar .ticker,.ribbon-track{font-size:11px}
}
