html{
scroll-behavior:smooth;
}

:root{
  --bg:#0a0a0a;
  --fg:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --faint:rgba(255,255,255,.55);
  --line:rgba(255,255,255,.16);
  --card:rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--fg);font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;}
a{color:inherit}
.container{max-width:1050px;margin:0 auto;padding:28px 18px;}
nav{display:flex;justify-content:space-between;align-items:center;gap:18px;padding:5px 18px;border-bottom:1px solid var(--line);position:sticky;top:0;background:rgba(10,10,10,.78);backdrop-filter:blur(8px);z-index:20}
nav .brand{display:flex;align-items:center;gap:12px;text-decoration:none}
nav .brand span{letter-spacing:.12em;text-transform:uppercase;font-size:12px;color:var(--muted)}
nav .links{display:flex;gap:16px;flex-wrap:wrap}
nav .links a{font-size:13px;letter-spacing:.06em;text-transform:uppercase;text-decoration:none;color:var(--muted)}
nav .links a:hover{color:var(--fg)}

.banner{
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 14px;
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-size:12px;
  letter-spacing:.06em;
  color:var(--muted);
}
.badge{
  display:inline-block;
  font-size:12px;
  letter-spacing:.08em;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.22);
  color:rgba(255,255,255,0.9);
}

h1,h2,h3{font-family: "Cormorant Garamond", "Georgia", serif; font-weight:500; margin:0 0 10px}
h1{font-size:44px; line-height:1.05}
h2{font-size:30px}
h3{font-size:22px}
p{margin:0 0 14px; color:var(--muted); line-height:1.6}
.small{font-size:12px;color:var(--faint)}
hr{border:0;border-top:1px solid var(--line);margin:28px 0}

.hero{
  min-height:78vh;
  display:grid;
  align-items:center;
  position:relative;
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background: url("../images/hero.jpg") center/cover no-repeat;
  opacity:.32;
  transform:scale(1.02);
}
.hero-inner{position:relative; z-index:2; padding:58px 18px}
.hero-card{
  max-width:760px;
  border:1px solid var(--line);
  border-radius:24px;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(10px);
  padding:26px;
}
.hero-card .question{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:36px; line-height:1.1; color:var(--fg);
  margin:10px 0 18px;
}
.hero-logo{
  width:140px; height:auto; display:block; margin:0 0 10px;
  opacity:.95;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.btn.primary{background: rgba(255,255,255,0.92); color:#000;}
.btn.ghost{background: transparent;}
.btn:disabled, .btn[aria-disabled="true"]{opacity:.5; pointer-events:none;}

.grid{display:grid; gap:16px}
.grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}
@media (max-width:860px){ .grid.two{grid-template-columns:1fr} h1{font-size:38px} }

.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--card);
  padding:20px;
  backdrop-filter: blur(6px);
}

.product-card{position:relative}
.product-card .sub{margin-top:4px}
.price{font-size:20px;margin:12px 0 14px;color:var(--fg)}
.price .thb{font-weight:600}
.price .sep{opacity:.55;margin:0 8px}
.actions{display:flex; gap:10px; flex-wrap:wrap}
.fineprint{margin-top:12px;font-size:12px;color:var(--faint)}

.section-title{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap}
.section-title p{margin:0;color:var(--faint)}

.photo-row{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; margin-top:10px}
.photo{
  height:210px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#111 center/cover no-repeat;
  overflow:hidden;
}
@media (max-width:860px){ .photo-row{grid-template-columns:1fr} .photo{height:230px} }

.footer{
  padding:26px 18px;
  border-top:1px solid var(--line);
  color:var(--faint);
  font-size:12px;
}

/* OPTION C: Monochrome everywhere except lot reveal pages */
body.mono img,
body.mono .hero-bg,
body.mono .photo {
  filter: grayscale(100%) contrast(1.05);
}

.timeline{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap:24px;
  margin-top:40px;
  position:relative;
}

.timeline-step{
  text-align:center;
  padding:10px;
}

.timeline-step img{
  width:100%;
  max-width:220px;
  height:160px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:12px;
}

@media (max-width:768px){

  .timeline-step img{
    width:100%;
    max-width:none;
    height:230px;
  }

}

.timeline-step h3{
  margin-bottom:6px;
}

.timeline-step p{
  font-size:14px;
  line-height:1.6;
  max-width:220px;
  margin:auto;
}

.journey-photo{
  width:100%;
  max-width:500px;
  border-radius:18px;
  display:block;
  margin:auto;
}

.brand-grid{
  display:grid;
  grid-template-columns: 70% 30%;
  gap:40px;
  align-items:end;
}

.brand-image img{
  width:100%;
  border-radius:18px;
  max-width:260px;
}

@media (max-width:768px){

.brand-grid{
  grid-template-columns:1fr;
}

}

.faq .card + .card{
  margin-top:18px;
}

.order-again{
text-align:center;
margin-top:80px;
}

.order-again p{
margin:10px 0 25px;
}

.lot-compare{
margin-top:60px;
text-align:center;
}

.compare-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
margin-top:30px;
}

.compare-card{
border:1px solid var(--line);
padding:25px;
border-radius:16px;
background:var(--card);
}

.compare-process{
font-weight:600;
margin:10px 0 15px;
opacity:0.8;
}

@media (max-width:768px){

.compare-grid{
grid-template-columns:1fr;
}

}

.farm-gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
margin-top:24px;
}

.farm-gallery figure{
margin:0;
text-align:center;
}

.farm-gallery img{
width:100%;
height:240px;
object-fit:cover;
border-radius:18px;
display:block;
}

.farm-gallery figcaption{
margin-top:8px;
font-size:13px;
letter-spacing:0.04em;
text-transform:uppercase;
opacity:0.6;
}

@media (max-width:768px){

.farm-gallery{
grid-template-columns:1fr;
}

.farm-gallery img{
height:230px;
}

}
