
:root{
  --bg:#f4f1ef;
  --ink:#111;
  --muted:#5f5f5f;
  --line:#e6d9d9;
  --accent:#d35c67;  /* 紅色星星 */
  --card:#ffffff;
  --shadow:0 14px 34px rgba(0,0,0,.10);
  --soft:0 10px 24px rgba(0,0,0,.06);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:"Cormorant Garamond", serif;
}

/* Navbar */
.container{width:90%; max-width:1150px; margin:0 auto;}
.nav{
  position:fixed; top:0; left:0; right:0;
  background:rgba(244,241,239,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(0,0,0,.05);
  z-index:1000;
}
.nav-inner{
  display:flex; justify-content:space-between; align-items:center;
  padding:2px 0;
}
.nav-links a{
  text-decoration:none;
  color:var(--ink);
  margin-left:24px;
  font-size:14px;
  opacity:.75;
  transition:.18s;
  padding:8px 10px;
  border-radius:999px;
}
.nav-links a:hover{opacity:1; background:rgba(211,92,103,.10)}
.nav-links a.active{
  opacity:1;
  background:rgba(211,92,103,.14);
  outline:1px solid rgba(211,92,103,.22);
}

/* Sections */
.section-light{padding:110px 0;}
.hero{padding:150px 0 110px;}

/* Red star divider (設計稿紅色星星分隔線) */
.starline{
  position:relative;
  height:1px;
  background:var(--line);
  margin:18px 0 32px;
}
.starline::after{
  content:"";
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:14px; height:14px;
  background:var(--accent);
  clip-path: polygon(50% 0%, 62% 35%, 100% 50%, 62% 65%, 50% 100%, 38% 65%, 0% 50%, 38% 35%);
  box-shadow:0 0 0 10px rgba(211,92,103,.12);
}

/* Typography */
.hero-title{
  font-family:"Playfair Display", serif;
  font-size:66px;
  line-height:1.02;
  letter-spacing:.3px;
  margin-bottom:32px;
}
.section-title{
  font-family:"Playfair Display", serif;
  font-size:52px;
  letter-spacing:.4px;
}
.section-big{
  font-family:"Playfair Display", serif;
  font-size:56px;
  line-height:1.05;
}
.center{text-align:center}

.brand-block h3{
  font-weight:700;
  font-size:18px;
  margin-bottom:10px;
}
.brand-block p{
  color:var(--muted);
  font-size:16px;
  max-width:44ch;
}

.about-text{
  max-width:74ch;
  margin:18px auto 0;
  color:var(--muted);
  font-size:18px;
  text-align:center;
}

/* Hero layout */
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:64px;
  align-items:center;
}
.hero-art{
  border-radius: 150px 150px 22px 22px;
  overflow:hidden;
  box-shadow: var(--soft);
  transform: translateY(0);
  animation: float 4.5s ease-in-out infinite;
}
.hero-art img{width:100%; display:block;}

/* 🎀 Hero 微動畫：文字淡入 + 上滑 */
.hero-text{
  opacity:0;
  transform: translateY(10px);
  animation: reveal .9s ease-out .12s forwards;
}
@keyframes reveal{
  to{opacity:1; transform: translateY(0);}
}
@keyframes float{
  0%,100%{transform: translateY(0);}
  50%{transform: translateY(-8px);}
}

/* Button */
.btn{
  display:inline-block;
  margin-top:18px;
  padding:10px 22px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  box-shadow: var(--soft);
  text-decoration:none;
  color:var(--ink);
  font-size:14px;
  transition: transform .18s, box-shadow .18s;
}
.btn:hover{transform: translateY(-2px); box-shadow: var(--shadow);}

/* Frames */
.section-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  margin-bottom:38px;
}
.show-more{
  font-size:14px;
  text-decoration:none;
  color:var(--ink);
  opacity:.7;
}
.show-more:hover{opacity:1}

.frame-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:40px;
}

/* ✨ Frame hover 放大 + 陰影動畫 */
.frame-card{
  appearance:none;
  border:none;
  background:transparent;
  padding:0;
  cursor:pointer;
  border-radius:16px;
  overflow:hidden;
  box-shadow: var(--soft);
  transform: translateY(0) scale(1);
  transition: transform .18s ease, box-shadow .18s ease;
}
.frame-card:hover{
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow);
}
.frame-card img{width:100%; display:block;}

/* Stickers */
.sticker-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:64px;
  margin-top:54px;
}
.sticker-card{
  border-radius:16px;
  overflow:hidden;
  box-shadow: var(--soft);
}
.sticker-card img{width:100%; display:block;}

/* Footer */
footer{
  background:#111;
  color:#fff;
  padding:70px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:44px;
}
footer h4{
  font-family:"Playfair Display", serif;
  font-size:18px;
  margin-bottom:14px;
}
footer a{
  display:block;
  color:#fff;
  opacity:.85;
  text-decoration:none;
  margin:8px 0;
  font-size:14px;
}
footer a:hover{opacity:1}
.footer-item{color:#cfcfcf; font-size:14px; margin:8px 0;}
.copyright{
  text-align:center;
  margin-top:34px;
  font-size:12px;
  color:#8f8f8f;
}

/* 🔍 Modal Lightbox */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:2000;
}
.modal.is-open{display:block;}
.modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
}
.modal-dialog{
  position:relative;
  width:min(92vw, 980px);
  margin: 90px auto 30px;
  background:#111;
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.modal-dialog img{
  width:100%;
  height:auto;
  display:block;
  background:#111;
}
.modal-close{
  position:absolute;
  top:10px; right:10px;
  border:none;
  background: rgba(255,255,255,.14);
  color:#fff;
  width:38px; height:38px;
  border-radius:999px;
  cursor:pointer;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.modal-close:hover{background: rgba(255,255,255,.22);}

/* Responsive */
@media(max-width:1000px){
  .hero-grid{grid-template-columns:1fr; gap:36px;}
  .hero-title{font-size:48px;}
  .section-big{font-size:44px;}
  .frame-grid{grid-template-columns:1fr; gap:26px;}
  .sticker-grid{grid-template-columns:1fr; gap:26px;}
  .section-header{flex-direction:column; align-items:flex-start}
  .modal-dialog{margin: 86px auto 20px;}
}



/* Make STICKERS cards same style as FRAME cards */
.sticker-card{
  border-radius:16px;
  overflow:hidden;
  box-shadow: var(--soft);
  transform: translateY(0) scale(1);
  transition: transform .18s ease, box-shadow .18s ease;
  background:#fff;
}

.sticker-card:hover{
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow);
}

.sticker-card img{
  width:100%;
  display:block;
}


/* Single Logo Style */
.logo-single{
  height:128px;
  width:auto;

}
