:root{
  --bg: #0b0f14;
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.10);
  --border: rgba(255,255,255,0.12);
  --shadow: 0 14px 40px rgba(0,0,0,0.40);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.25);
  --brand1: #f6c26b;
  --brand2: #ff8a5b;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(246,194,107,0.25), transparent 65%),
    radial-gradient(1200px 700px at 90% 10%, rgba(255,138,91,0.20), transparent 65%),
    radial-gradient(800px 500px at 50% 100%, rgba(139,69,19,0.08), transparent 70%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(11,15,20,0.80);
  border-bottom: 1px solid rgba(246,194,107,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.logo{
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(246,194,107,0.15), rgba(255,138,91,0.12));
  border: 2px solid rgba(246,194,107,0.3);
  padding: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(246,194,107,0.2);
}
.logo:hover{
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(246,194,107,0.35);
  border-color: rgba(246,194,107,0.5);
}

.brand-text{ display: grid; gap: 3px; }
.brand-name{ 
  font-weight: 900; 
  letter-spacing: 0.3px; 
  font-size: 18px;
  background: linear-gradient(135deg, var(--text) 0%, var(--brand1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-sub{ 
  font-size: 12px; 
  color: var(--muted);
  font-weight: 600;
}

.nav{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nav a{
  padding: 10px 16px;
  border-radius: 14px;
  color: var(--muted);
  border: 2px solid transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}
.nav a:hover{
  color: var(--brand1);
  background: rgba(246,194,107,0.1);
  border-color: rgba(246,194,107,0.3);
  text-decoration: none;
  transform: translateY(-1px);
}

.hero{
  padding: 40px 0 22px;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.hero-text h1{
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.85) 50%, #f6c26b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-text p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 60ch;
}

.cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 12px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 16px;
  border: 2px solid var(--border);
  background: rgba(255,255,255,0.04);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn:hover::before{
  width: 300px;
  height: 300px;
}
.btn.primary{
  border: none;
  background: linear-gradient(135deg, #f6c26b 0%, #ff8a5b 100%);
  color: #1b1208;
  box-shadow: 0 8px 24px rgba(246,194,107,0.4), 0 4px 12px rgba(255,138,91,0.3);
  position: relative;
  z-index: 1;
}
.btn.primary::after{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffd699 0%, #ffb088 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.btn.primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(246,194,107,0.5), 0 6px 16px rgba(255,138,91,0.4);
  text-decoration: none;
}
.btn.primary:hover::after{
  opacity: 1;
}
.btn.ghost{
  backdrop-filter: blur(10px);
}
.btn.ghost:hover{
  background: rgba(255,255,255,0.1);
  text-decoration: none;
  border-color: rgba(246,194,107,0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(246,194,107,0.2);
}

.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.chip{
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border: 2px solid rgba(246,194,107,0.3);
  background: linear-gradient(135deg, rgba(246,194,107,0.12), rgba(255,138,91,0.08));
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(246,194,107,0.15);
}
.chip:hover{
  background: linear-gradient(135deg, rgba(246,194,107,0.25), rgba(255,138,91,0.18));
  border-color: rgba(246,194,107,0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(246,194,107,0.3);
}

.notice{
  margin-top: 18px;
  border: 2px solid rgba(246,194,107,0.35);
  background: linear-gradient(135deg, rgba(246,194,107,0.15), rgba(255,138,91,0.12));
  border-radius: 18px;
  padding: 16px 20px;
  color: var(--text);
  max-width: 68ch;
  box-shadow: 0 4px 16px rgba(246,194,107,0.2);
  backdrop-filter: blur(10px);
}
.notice strong{
  color: var(--brand1);
}

.hero-card{
  border-radius: 28px;
  border: 2px solid rgba(246,194,107,0.25);
  background:
    radial-gradient(500px 300px at 30% 15%, rgba(246,194,107,0.25), transparent 65%),
    radial-gradient(500px 300px at 75% 35%, rgba(255,138,91,0.20), transparent 65%),
    rgba(255,255,255,0.08);
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.4),
    0 8px 24px rgba(246,194,107,0.15),
    inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.hero-card:hover{
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(246,194,107,0.45);
  box-shadow: 
    0 28px 80px rgba(0,0,0,0.5),
    0 12px 32px rgba(246,194,107,0.3),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.card-top{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid rgba(246,194,107,0.2);
  background: linear-gradient(135deg, rgba(246,194,107,0.08), rgba(255,138,91,0.06));
  backdrop-filter: blur(10px);
}

.mini-logo-wrap{
  width: 68px;
  height: 68px;
  border-radius: 18px;
  border: 2px solid rgba(246,194,107,0.3);
  background: linear-gradient(135deg, rgba(246,194,107,0.15), rgba(255,138,91,0.12));
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(246,194,107,0.2);
}
.mini-logo{
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.mini-title{ display: grid; gap: 2px; }
.t1{ font-weight: 800; }
.t2{ font-size: 12px; color: var(--muted); }

.card-body{
  padding: 16px;
}

.metric{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.m-label{ color: var(--muted); font-size: 12px; }
.m-value{ font-weight: 700; color: rgba(255,255,255,0.90); }

.divider{
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.card-link{
  display: inline-block;
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 16px;
  border: 2px solid rgba(246,194,107,0.3);
  background: linear-gradient(135deg, rgba(246,194,107,0.12), rgba(255,138,91,0.08));
  color: var(--brand1);
  font-weight: 600;
  transition: all 0.3s ease;
}
.card-link:hover{
  text-decoration: none;
  background: linear-gradient(135deg, rgba(246,194,107,0.25), rgba(255,138,91,0.18));
  border-color: rgba(246,194,107,0.5);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(246,194,107,0.25);
}

.section{
  padding: 44px 0;
}
.section.alt{
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

h2{
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text) 0%, var(--brand1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
}

.hours{
  border: 2px solid rgba(246,194,107,0.25);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(246,194,107,0.08), rgba(255,138,91,0.06));
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.hours .row{
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid rgba(246,194,107,0.15);
  color: var(--text);
  font-weight: 600;
  transition: all 0.2s ease;
}
.hours .row:first-child{ border-top: none; }
.hours .row:hover{
  background: rgba(246,194,107,0.12);
  padding-left: 24px;
}

.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.hint{
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.info-box{
  border-radius: 20px;
  border: 2px solid rgba(246,194,107,0.25);
  background: linear-gradient(135deg, rgba(246,194,107,0.1), rgba(255,138,91,0.08));
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.info-box:hover{
  border-color: rgba(246,194,107,0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(246,194,107,0.3), 0 6px 16px rgba(0,0,0,0.3);
}
.info-box h3{
  margin: 0 0 12px;
  font-size: 16px;
}
.info-line{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.info-line:first-of-type{ border-top: none; }
.info-line span:first-child{
  color: var(--muted);
  font-size: 12px;
}

.footer{
  margin-top: 32px;
  padding-top: 20px;
  border-top: 2px solid rgba(246,194,107,0.2);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.footer a{
  color: var(--brand1);
  font-weight: 600;
  transition: all 0.2s ease;
}
.footer a:hover{
  color: var(--brand2);
  text-decoration: none;
}

/* Gallery Section */
.gallery-section{
  background: 
    radial-gradient(600px 400px at 80% 50%, rgba(246,194,107,0.12), transparent 70%),
    rgba(255,255,255,0.02);
  border-top: 1px solid rgba(246,194,107,0.15);
  border-bottom: 1px solid rgba(246,194,107,0.15);
}

.gallery{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.gallery-item{
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 2px solid rgba(246,194,107,0.2);
  background: rgba(255,255,255,0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.gallery-item:hover{
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(246,194,107,0.5);
  box-shadow: 0 16px 48px rgba(246,194,107,0.3), 0 8px 24px rgba(0,0,0,0.4);
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img{
  transform: scale(1.1);
}

.gallery-overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(11,15,20,0.95), rgba(11,15,20,0.7) 70%, transparent);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay{
  transform: translateY(0);
}

.gallery-overlay span{
  font-size: 18px;
  font-weight: 700;
  color: var(--brand1);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Legal pages styles */
.legal-content{
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1{
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--text);
}

.legal-content h2{
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-content h3{
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.88);
}

.legal-content p{
  line-height: 1.7;
  margin-bottom: 14px;
  color: var(--muted);
}

.legal-content ul{
  margin: 14px 0;
  padding-left: 24px;
  color: var(--muted);
}

.legal-content li{
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-content a{
  color: var(--brand1);
  text-decoration: underline;
}

.legal-content a:hover{
  color: var(--brand2);
}

.info-block{
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  margin: 16px 0;
}

.notice-info{
  background: linear-gradient(135deg, rgba(246,194,107,0.15), rgba(255,138,91,0.12));
  border: 1px solid rgba(246,194,107,0.3);
  border-radius: 16px;
  padding: 16px;
  margin: 20px 0;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
}

.notice-info strong{
  color: var(--brand1);
  display: block;
  margin-bottom: 8px;
}

.notice-info ul{
  margin-top: 12px;
}

/* Smooth Scroll */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

.hero-card {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gallery-item {
  animation: fadeInUp 0.6s ease-out both;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }

/* Responsive */
@media (max-width: 900px){
  .hero-inner{ 
    grid-template-columns: 1fr; 
    gap: 24px;
  }
  .two-col{ 
    grid-template-columns: 1fr; 
    gap: 24px;
  }
  .brand{ 
    min-width: unset; 
  }
  .hero-text h1{
    font-size: clamp(28px, 8vw, 42px);
  }
  h2{
    font-size: 26px;
  }
  .gallery{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .logo{
    width: 56px;
    height: 56px;
  }
  .brand-name{
    font-size: 16px;
  }
  .nav{
    gap: 6px;
  }
  .nav a{
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media (max-width: 600px){
  .container{
    width: calc(100% - 32px);
  }
  .header-inner{
    padding: 12px 0;
  }
  .logo{
    width: 48px;
    height: 48px;
  }
  .brand-name{
    font-size: 15px;
  }
  .brand-sub{
    font-size: 11px;
  }
  .btn{
    padding: 12px 18px;
    font-size: 14px;
  }
  .chips{
    gap: 8px;
  }
  .chip{
    font-size: 12px;
    padding: 8px 12px;
  }
}
