:root{
  --ink:#18212c;
  --ink2:#2e281d;
  --muted:#665b4a;
  --cream:#f8f1e6;
  --paper:#fffaf1;
  --white:#ffffff;
  --olive:#758247;
  --olive2:#465126;
  --mint:#dfe8c8;
  --bronze:#aa7b42;
  --bronze2:#745028;
  --sand:#eadcc7;
  --line:rgba(50,39,23,.14);
  --shadow:0 28px 80px rgba(45,35,18,.15);
  --radius:34px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(170,123,66,.19), transparent 24%),
    radial-gradient(circle at 88% 3%, rgba(117,130,71,.20), transparent 25%),
    linear-gradient(180deg,#fffaf1 0%,#f8f1e6 50%,#fbf7ee 100%);
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background-image:
    linear-gradient(rgba(24,33,44,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,33,44,.025) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.55), transparent 82%);
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{width:min(1220px, calc(100% - 36px)); margin-inline:auto}

.notice{
  background:linear-gradient(90deg,var(--olive2),var(--olive),var(--bronze));
  color:#fff;
  font-weight:900;
  letter-spacing:.02em;
}
.notice .container{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:14px;
}
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,250,241,.82);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:1000;
  letter-spacing:.045em;
  text-transform:uppercase;
}
.brand-mark{
  width:52px;
  height:52px;
  border-radius:18px;
  display:grid;
  place-items:center;
  color:#fff;
  font-family:Georgia,serif;
  font-size:22px;
  background:linear-gradient(135deg,var(--olive2),var(--olive),var(--bronze));
  box-shadow:0 16px 34px rgba(70,81,38,.22);
}
.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  color:#4b4235;
  font-weight:900;
  font-size:14px;
}
.nav-links a:hover{color:var(--bronze2)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 21px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:1000;
  transition:.22s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(135deg,var(--bronze),var(--bronze2));
  color:#fff;
  box-shadow:0 16px 34px rgba(116,80,40,.26);
}
.btn-secondary{
  background:rgba(255,255,255,.64);
  border-color:rgba(116,80,40,.25);
  color:var(--bronze2);
}
.btn-ghost{
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.34);
  color:#fff;
}

.hero{
  position:relative;
  overflow:hidden;
  padding:74px 0 76px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:48px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  margin-bottom:22px;
  border-radius:999px;
  background:rgba(117,130,71,.13);
  border:1px solid rgba(117,130,71,.2);
  color:var(--olive2);
  font-weight:1000;
}
.kicker span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--olive);
  box-shadow:0 0 0 8px rgba(117,130,71,.14);
}
.hero h1{
  margin:0;
  color:#261f15;
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(54px, 8vw, 104px);
  line-height:.91;
  letter-spacing:-.062em;
}
.hero .big-message{
  margin:26px 0 20px;
  max-width:730px;
  color:var(--olive2);
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(31px, 4vw, 52px);
  line-height:1.06;
  letter-spacing:-.035em;
}
.lead{
  max-width:720px;
  margin:0 0 32px;
  color:#534938;
  font-size:clamp(18px, 2vw, 22px);
  line-height:1.72;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.social-note{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;
  align-items:start;
  margin-top:28px;
  max-width:720px;
  padding:22px;
  border-radius:28px;
  background:rgba(255,255,255,.58);
  border:1px solid var(--line);
  box-shadow:0 14px 34px rgba(45,35,18,.07);
}
.social-note b{
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  border-radius:16px;
  color:#fff;
  background:linear-gradient(135deg,var(--olive2),var(--olive));
}
.social-note strong{
  display:block;
  margin-bottom:6px;
  color:#2e281d;
  font-size:19px;
}
.social-note span{
  color:#665b4a;
  line-height:1.55;
  font-weight:750;
}
.hero-visual{
  position:relative;
  min-height:690px;
}
.hero-photo{
  position:absolute;
  right:0;
  top:0;
  width:min(92%, 620px);
  overflow:hidden;
  border-radius:44px;
  border:12px solid rgba(255,255,255,.75);
  box-shadow:var(--shadow);
  transform:rotate(1.2deg);
}
.hero-photo img{
  width:100%;
  height:625px;
  object-fit:cover;
}
.launch-badge{
  position:absolute;
  left:0;
  top:56px;
  width:220px;
  padding:24px;
  border-radius:34px;
  color:#fff;
  background:linear-gradient(135deg,var(--olive2),var(--bronze));
  box-shadow:0 26px 58px rgba(70,81,38,.25);
  transform:rotate(-5deg);
}
.launch-badge small{
  display:block;
  text-transform:uppercase;
  letter-spacing:.12em;
  opacity:.84;
  font-weight:1000;
  margin-bottom:8px;
}
.launch-badge strong{
  display:block;
  font-family:Georgia,serif;
  font-size:40px;
  line-height:.95;
}
.product-strip{
  position:absolute;
  left:16px;
  bottom:24px;
  right:28px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.product-pill{
  padding:12px 13px;
  border-radius:18px;
  text-align:center;
  color:#fff;
  font-weight:1000;
  background:rgba(31,41,55,.68);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.2);
}

.section{padding:82px 0}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:34px;
}
.eyebrow{
  display:block;
  margin-bottom:10px;
  color:var(--bronze2);
  font-size:12px;
  font-weight:1000;
  letter-spacing:.13em;
  text-transform:uppercase;
}
h2{
  margin:0;
  color:#292115;
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(36px, 5vw, 64px);
  line-height:.98;
  letter-spacing:-.045em;
}
.section-head p{
  margin:0;
  max-width:510px;
  color:var(--muted);
  line-height:1.7;
  font-weight:750;
}

.concept-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}
.concept-text{
  padding:40px;
  border-radius:38px;
  background:rgba(255,250,241,.88);
  border:1px solid var(--line);
  box-shadow:0 18px 48px rgba(45,35,18,.08);
}
.concept-text h3{
  margin:0 0 16px;
  color:#292115;
  font-family:Georgia,serif;
  font-size:34px;
  line-height:1.08;
}
.concept-text p{
  margin:0 0 18px;
  color:#625746;
  font-weight:750;
  line-height:1.75;
}
.concept-photo{
  border-radius:38px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.concept-photo img{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
}
.values{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:22px;
}
.value{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.6);
  border:1px solid var(--line);
}
.value b{
  display:block;
  color:var(--olive2);
  margin-bottom:6px;
  font-size:17px;
}
.value span{
  display:block;
  color:#685d4c;
  line-height:1.48;
  font-weight:750;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.card{
  min-height:245px;
  padding:26px;
  border-radius:30px;
  background:rgba(255,250,241,.88);
  border:1px solid var(--line);
  box-shadow:0 18px 46px rgba(45,35,18,.08);
}
.card-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  margin-bottom:18px;
  background:linear-gradient(135deg,rgba(117,130,71,.18),rgba(170,123,66,.14));
  font-size:25px;
}
.card h3{
  margin:0 0 10px;
  color:#292115;
  font-size:22px;
}
.card p{
  margin:0;
  color:#665b4a;
  line-height:1.62;
  font-weight:750;
}

.launch-panel{
  padding:42px;
  border-radius:42px;
  background:linear-gradient(135deg,#414b25 0%,#748149 56%,#aa7b42 100%);
  color:#fff;
  box-shadow:0 28px 78px rgba(65,75,37,.28);
}
.launch-panel h2{color:#fff}
.launch-panel p{
  max-width:860px;
  color:rgba(255,255,255,.88);
  line-height:1.75;
  font-weight:750;
}
.launch-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:26px;
}
.launch-item{
  padding:20px;
  border-radius:24px;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.20);
}
.launch-item b{
  display:block;
  font-size:19px;
  margin-bottom:7px;
}
.launch-item span{
  display:block;
  color:rgba(255,255,255,.78);
  font-weight:750;
  line-height:1.45;
}

.recipes{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
}
.recipe-main{
  border-radius:40px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
  background:#fff;
}
.recipe-main img{
  width:100%;
  height:660px;
  object-fit:cover;
}
.recipe-list{
  display:grid;
  gap:16px;
}
.recipe{
  display:grid;
  grid-template-columns:155px 1fr;
  gap:18px;
  align-items:center;
  padding:14px;
  border-radius:28px;
  background:rgba(255,250,241,.88);
  border:1px solid var(--line);
  box-shadow:0 16px 40px rgba(45,35,18,.07);
}
.recipe img{
  width:155px;
  height:125px;
  object-fit:cover;
  border-radius:20px;
}
.recipe h3{
  margin:0 0 7px;
  color:#292115;
  font-size:20px;
}
.recipe p{
  margin:0;
  color:#665b4a;
  line-height:1.55;
  font-weight:750;
}
.recipe-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.contact{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:26px;
  align-items:center;
  padding:44px;
  border-radius:42px;
  background:rgba(255,250,241,.9);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.contact p{
  color:#665b4a;
  line-height:1.75;
  font-weight:750;
}
.email-card{
  padding:28px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--line);
}
.email-card small{
  display:block;
  margin-bottom:10px;
  color:#7c6e58;
  font-weight:1000;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.email-card a{
  display:block;
  color:var(--bronze2);
  font-size:clamp(24px,3vw,36px);
  font-weight:1000;
  word-break:break-word;
}
.email-card span{
  display:block;
  margin-top:12px;
  color:#756856;
  font-weight:800;
}

.footer{
  padding:34px 0 48px;
  color:#776b58;
  font-weight:800;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding-top:24px;
  border-top:1px solid var(--line);
}

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

@media(max-width:1150px){
  .hero-grid,.concept-grid,.recipes,.contact{grid-template-columns:1fr}
  .hero-visual{min-height:680px}
  .cards,.launch-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:820px){
  .notice .container{font-size:13px; padding:10px 0}
  .nav{min-height:auto; padding:14px 0}
  .nav-links{display:none}
  .hero{padding-top:46px}
  .hero h1{font-size:48px}
  .hero .big-message{font-size:33px}
  .hero-visual{min-height:auto}
  .hero-photo,.launch-badge,.product-strip{
    position:relative;
    inset:auto;
    width:100%;
    transform:none;
    margin-top:16px;
  }
  .hero-photo img{height:440px}
  .product-strip{grid-template-columns:repeat(2,1fr)}
  .section-head{display:block}
  .section-head p{margin-top:15px}
  .values,.cards,.launch-grid{grid-template-columns:1fr}
  .recipe-main img{height:440px}
  .recipe{grid-template-columns:1fr}
  .recipe img{width:100%; height:220px}
  .footer-inner{display:block}
}
@media(max-width:540px){
  .container{width:min(100% - 24px, 1220px)}
  .btn{width:100%}
  .concept-text,.launch-panel,.contact{padding:26px}
}
