@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Raleway:wght@300;400;500;600&display=swap');

:root{
  --espresso: #241811;
  --espresso-deep: #17100b;
  --gold: #c89b5c;
  --gold-soft: #e0c393;
  --cream: #f5eee1;
  --cream-dim: #d9cfba;
  --rust: #8b4a3d;
  --line: rgba(200,155,92,0.22);
  --max: 1080px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--espresso);
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,.display{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin: 0;
}

a{ color: inherit; text-decoration: none; }

.eyebrow{
  font-family:'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ---------- Nav ---------- */
.site-nav{
  position: sticky; top:0; z-index: 50;
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 6vw;
  background: linear-gradient(to bottom, rgba(23,16,11,0.96), rgba(23,16,11,0.85));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-nav .brand{
  font-family:'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.site-nav .brand em{ color: var(--gold); font-style: normal; }
.site-nav ul{
  list-style:none; display:flex; gap: 2.4rem; margin:0; padding:0;
}
.site-nav ul li a{
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color .25s ease;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.site-nav ul li a:hover, .site-nav ul li a.active{
  color: var(--gold-soft);
  border-bottom-color: var(--gold);
}
.nav-toggle{ display:none; }

@media (max-width: 720px){
  .site-nav ul{
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--espresso-deep);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .site-nav ul.open{ max-height: 400px; }
  .site-nav ul li{ padding: 16px 6vw; border-top: 1px solid var(--line); }
  .nav-toggle{
    display:block; background:none; border:1px solid var(--line);
    color: var(--cream); font-size: 1rem; padding: 6px 12px; border-radius: 3px;
  }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 78vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding: 6vh 6vw 8vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200,155,92,0.10), transparent 60%),
    linear-gradient(180deg, var(--espresso-deep) 0%, var(--espresso) 70%);
}
.hero .eyebrow{ margin-bottom: 1.1rem; }
.hero h1{
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  max-width: 16ch;
}
.hero h1 .accent{ color: var(--gold); font-style: italic; }
.hero p.sub{
  margin-top: 1.4rem;
  max-width: 46ch;
  font-size: 1.05rem;
  color: var(--cream-dim);
  line-height: 1.6;
}
.hero .cta-row{
  margin-top: 2.4rem;
  display:flex; gap: 1rem; flex-wrap: wrap; justify-content:center;
}

/* petals signature motif */
.petals{ position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.petal{
  position:absolute; top:-5%;
  width: 10px; height: 10px;
  background: var(--gold-soft);
  border-radius: 0 100% 0 100%;
  opacity: 0.55;
  animation: fall linear infinite;
}
@keyframes fall{
  to{ transform: translateY(110vh) rotate(220deg); }
}
@media (prefers-reduced-motion: reduce){
  .petal{ animation: none; display:none; }
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  padding: 0.85rem 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s ease;
  border: 1px solid var(--gold);
}
.btn.primary{ background: var(--gold); color: var(--espresso-deep); font-weight: 600; }
.btn.primary:hover{ background: var(--gold-soft); }
.btn.ghost{ color: var(--gold-soft); }
.btn.ghost:hover{ background: rgba(200,155,92,0.1); }

/* ---------- Sections ---------- */
section{ padding: 7vh 6vw; }
.section-inner{ max-width: var(--max); margin: 0 auto; }
.section-head{ text-align:center; margin-bottom: 3rem; }
.section-head h2{ font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-top: 0.6rem; }
.section-head p{ color: var(--cream-dim); max-width: 52ch; margin: 1rem auto 0; line-height: 1.6; }

.divider{
  width: 60px; height: 1px; background: var(--gold);
  margin: 0 auto;
}

/* pillars grid */
.pillars{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem;
}
@media (max-width: 800px){ .pillars{ grid-template-columns: 1fr; } }
.pillar{
  border: 1px solid var(--line);
  padding: 2.2rem 1.8rem;
  text-align:center;
  transition: border-color .25s ease, transform .25s ease;
}
.pillar:hover{ border-color: var(--gold); transform: translateY(-4px); }
.pillar .num{ font-family:'Cormorant Garamond', serif; font-size:0.85rem; color: var(--gold); letter-spacing:0.2em; }
.pillar h3{ font-size: 1.5rem; margin: 0.8rem 0 0.6rem; }
.pillar p{ color: var(--cream-dim); font-size: 0.92rem; line-height: 1.6; }

/* destination strip */
.strip{
  display:flex; gap: 1.2rem; overflow-x:auto; padding-bottom: 1rem;
  scrollbar-width: thin;
}
.strip::-webkit-scrollbar{ height: 4px; }
.strip::-webkit-scrollbar-thumb{ background: var(--line); }
.dest-card{
  flex: 0 0 260px;
  aspect-ratio: 4/5;
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #3a2a1c, var(--espresso-deep));
  display:flex; align-items:flex-end; padding: 1.4rem;
}
.dest-card .tag{ font-size:0.68rem; letter-spacing:0.18em; text-transform:uppercase; color: var(--gold); }
.dest-card h3{ font-size: 1.5rem; margin-top: 0.3rem; }

/* email capture */
.capture{
  background: var(--espresso-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align:center;
}
.capture form{
  display:flex; gap: 0.8rem; justify-content:center; margin-top: 1.8rem; flex-wrap: wrap;
}
.capture input[type=email]{
  background: transparent; border: 1px solid var(--line); color: var(--cream);
  padding: 0.85rem 1.2rem; font-family:'Raleway'; font-size:0.9rem; min-width: 260px;
  border-radius: 2px;
}
.capture input[type=email]:focus{ outline: 2px solid var(--gold); outline-offset: 2px; }
.capture .note{ margin-top: 0.9rem; font-size: 0.78rem; color: var(--cream-dim); }

/* generic content page */
.page-hero{
  padding: 12vh 6vw 6vh; text-align:center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1{ font-size: clamp(2.2rem, 5vw, 3.2rem); }
.page-hero p{ color: var(--cream-dim); max-width: 52ch; margin: 1rem auto 0; line-height:1.6; }

.coming-soon{
  text-align:center; padding: 10vh 6vw; max-width: 640px; margin: 0 auto;
}
.coming-soon .divider{ margin: 1.6rem auto; }
.coming-soon ul{
  list-style:none; padding:0; margin: 2.4rem 0 0; text-align:left;
  display:inline-block;
}
.coming-soon ul li{
  padding: 0.7rem 0; border-bottom: 1px solid var(--line);
  color: var(--cream-dim); font-size: 0.95rem;
}
.coming-soon ul li::before{ content: "— "; color: var(--gold); }

/* shop grid */
.book-grid{
  display:grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 2rem;
}
.book-card{
  border: 1px solid var(--line); padding: 1.6rem;
  display:flex; flex-direction:column; gap: 0.8rem;
}
.book-card .cover{
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #3a2a1c, var(--espresso-deep));
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond'; color: var(--gold); font-size:0.85rem; text-align:center; padding: 1rem;
}
.book-card h3{ font-size: 1.25rem; }
.book-card p{ color: var(--cream-dim); font-size: 0.85rem; line-height:1.5; margin:0; }
.book-card .btn{ align-self:flex-start; margin-top: 0.4rem; }

/* about */
.about-body{
  max-width: 700px; margin: 0 auto;
  font-size: 1.05rem; line-height: 1.9; color: var(--cream-dim);
}
.about-body p{ margin-bottom: 1.4rem; }
.about-body strong{ color: var(--cream); font-weight: 500; }

/* ---------- Photo Block (Canva-slide style: full-bleed image area + espresso bottom bar) ---------- */
.photo-block{
  position: relative;
  display:flex; flex-direction:column; justify-content:flex-end;
  background: linear-gradient(160deg, #2c3b28 0%, #212f1e 55%, #1c281a 100%);
  border: 1px solid var(--line);
  overflow:hidden;
}
.photo-block.tone-b{ background: linear-gradient(160deg, #3a2a1c 0%, #2a1e14 55%, var(--espresso-deep) 100%); }
.photo-block .pb-top{ padding: 2.4rem 2rem 0; }
.photo-block .pb-eyebrow{
  font-size:0.72rem; letter-spacing:0.28em; text-transform:uppercase; color: var(--gold-soft);
}
.photo-block .pb-bar{
  background: var(--espresso-deep);
  border-top: 1px solid var(--line);
  padding: 1.1rem 1.6rem;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.photo-block .pb-bar .pb-brand{ font-family:'Cormorant Garamond', serif; font-size:1.05rem; }
.photo-block .pb-bar .pb-brand em{ color:var(--gold); font-style:normal; }
.photo-block .pb-bar .pb-note{ font-size:0.7rem; letter-spacing:0.1em; color: var(--cream-dim); text-transform:uppercase; }

/* Hero as photo-block, full viewport */
.hero.pb{
  min-height: 86vh; justify-content:flex-end; align-items:stretch; text-align:left; padding:0;
}
.hero.pb .pb-top{ padding: 4.5vh 6vw 0; flex:1; display:flex; flex-direction:column; justify-content:flex-end; padding-bottom: 4vh; }
.hero.pb h1{ text-align:left; margin-top: 0.8rem; }
.hero.pb .pb-bar{ padding: 1.4rem 6vw; }

/* Tag chip — numbered tan header + dark body, like the "02 / Japan Tip" slide */
.tag-chip{ border: 1px solid var(--line); }
.tag-chip .chip-head{
  background: var(--gold);
  color: var(--espresso-deep);
  padding: 1.2rem 1.6rem 1rem;
}
.tag-chip .chip-head .num{ font-family:'Cormorant Garamond', serif; font-size:2rem; line-height:1; }
.tag-chip .chip-head .eyebrow{ color: var(--espresso-deep); opacity:0.75; }
.tag-chip .chip-body{ padding: 1.6rem; background: var(--espresso-deep); }
.tag-chip .chip-body h3{
  font-family:'Cormorant Garamond', serif; font-style:italic; font-weight:500;
  font-size: 1.4rem; line-height:1.3; margin-bottom:0.7rem;
}
.tag-chip .chip-body p{ color: var(--cream-dim); font-size:0.9rem; line-height:1.6; }

.chip-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
@media (max-width:800px){ .chip-grid{ grid-template-columns: 1fr; } }

footer{
  padding: 5vh 6vw 4vh;
  border-top: 1px solid var(--line);
  text-align:center;
  background: var(--espresso-deep);
}
footer .brand{ font-family:'Cormorant Garamond'; font-size:1.3rem; margin-bottom: 0.6rem; }
footer .socials{
  display:flex; gap: 1.6rem; justify-content:center; margin: 1.2rem 0;
}
footer .socials a{
  font-size: 0.75rem; letter-spacing:0.12em; text-transform:uppercase; color: var(--cream-dim);
}
footer .socials a:hover{ color: var(--gold); }
footer .fine{ font-size: 0.72rem; color: var(--cream-dim); opacity:0.6; margin-top: 1rem; }
