/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* ┌─────────────────────────────────────────────┐
     │ 📸 REPLACE THIS with your hero image:       │
     │ background-image: url('images/hero.jpg');   │
     │ background-size: cover;                     │
     │ background-position: center;                │
     └─────────────────────────────────────────────┘ */
  background:
    radial-gradient(ellipse at 60% 40%, rgba(90, 50, 20, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(180, 100, 30, 0.25) 0%, transparent 50%),
    linear-gradient(135deg, #0d0600 0%, #1a0e00 30%, #0f1a0a 60%, #000d1a 100%);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

/* Decorative Japanese pattern overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.5em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title span { display: block; }

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(245, 239, 227, 0.75);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}

.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.5);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.8); }
}

/* Stats badges */
.hero-badges {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,168,76,0.3);
  border-left: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  padding: 1.2rem 2rem;
  gap: 1.8rem;
  border-top-left-radius: 4px;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}

.badge-label {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 0.3rem;
  line-height: 1.4;
}

.badge-sep {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.25);
}

/* ===========================
   ABOUT SECTION
=========================== */
.about {
  padding: 8rem 3rem;
  background: var(--dark);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #1e1409 0%, #2a1f0d 50%, #1a1209 100%);
  border: 1px dashed rgba(201,168,76,0.3);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.img-icon { font-size: 4rem; opacity: 0.4; }

.img-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.img-hint code {
  display: block;
  color: var(--gold);
  margin-top: 0.3rem;
  font-size: 0.75rem;
}

.about-img-accent {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  z-index: -1;
}

.about-years {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  text-align: center;
}

.years-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.years-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.about-text p {
  font-size: 0.925rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.9;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}

.pillar {
  padding: 1.2rem;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  text-align: center;
  transition: all var(--transition);
}

.pillar:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
}

.pillar-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.pillar h4 { font-size: 0.85rem; color: var(--gold); margin-bottom: 0.3rem; }
.pillar p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

/* ===========================
   SIGNATURE DISHES
=========================== */
.signature {
  padding: 7rem 3rem;
  background: var(--charcoal);
}

.signature-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.signature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  align-items: end;
}

.sig-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition);
}

.sig-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.sig-card-featured {
  border-color: rgba(201,168,76,0.25);
}

.sig-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sig-card-featured .sig-card-img {
  aspect-ratio: 1/1;
}

/* ┌────────────────────────────────────────────────────┐
   │ 📸 DISH IMAGE PLACEHOLDERS                        │
   │ Replace each gradient with:                       │
   │   background-image: url('images/your-dish.jpg'); │
   └────────────────────────────────────────────────────┘ */
.sig-img-1 {
  background: linear-gradient(145deg, #0a1a1a 0%, #0f2a20 50%, #081510 100%);
}
.sig-img-2 {
  background: linear-gradient(145deg, #1a0a0a 0%, #2a1008 50%, #150800 100%);
}
.sig-img-3 {
  background: linear-gradient(145deg, #0a0a1a 0%, #16100a 50%, #1a0f05 100%);
}

.sig-img-content {
  text-align: center;
}

.dish-emoji {
  display: block;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.dish-img-label {
  font-size: 0.68rem;
  color: rgba(201,168,76,0.5);
  font-family: monospace;
}

.featured-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
}

.sig-card-body {
  padding: 1.5rem;
}

.sig-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.sig-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin: 0.4rem 0 0.7rem;
}

.sig-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.sig-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sig-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold);
}

.sig-link {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.sig-link:hover { color: var(--gold); }

/* ===========================
   EXPERIENCE SECTION
=========================== */
.experience {
  padding: 7rem 3rem;
  background: var(--dark);
  display: flex;
  gap: 5rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.exp-content { flex: 1; }

.exp-content p {
  font-size: 0.925rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.9;
}

.exp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0 2.5rem;
}

.exp-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  transition: all var(--transition);
}

.exp-feat:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.2);
}

.feat-icon { font-size: 1.4rem; flex-shrink: 0; }
.exp-feat h4 { font-size: 0.85rem; color: var(--cream); margin-bottom: 0.2rem; }
.exp-feat p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

.exp-images {
  flex: 1;
  display: flex;
  gap: 1rem;
}

.exp-img-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ┌────────────────────────────────────────────────────┐
   │ 📸 INTERIOR / AMBIANCE PHOTOS                     │
   │ Replace each gradient background with your image: │
   │   background-image: url('images/interior-1.jpg') │
   └────────────────────────────────────────────────────┘ */
.exp-img {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px dashed rgba(201,168,76,0.2);
  display: flex;
  align-items: flex-end;
  min-height: 180px;
  transition: transform var(--transition);
}

.exp-img:hover { transform: scale(0.99); }

.exp-img-1 {
  flex: 1;
  min-height: 380px;
  background: linear-gradient(145deg, #100c06 0%, #1e1408 100%);
}

.exp-img-2, .exp-img-3 {
  background: linear-gradient(145deg, #060c10 0%, #0e1a14 100%);
}

.exp-img-label {
  font-size: 0.68rem;
  color: rgba(201,168,76,0.5);
  font-family: monospace;
  padding: 0.6rem 0.8rem;
  background: rgba(0,0,0,0.5);
  width: 100%;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
  padding: 7rem 0;
  background: var(--charcoal);
  overflow: hidden;
}

.test-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 3rem;
}

.test-track-wrap {
  overflow: hidden;
  padding: 1rem 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.test-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.test-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 2rem;
  transition: all var(--transition);
}

.test-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
}

.test-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.test-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  flex-shrink: 0;
}

.test-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--cream);
}

.test-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.test-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.test-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  cursor: pointer;
  transition: all var(--transition);
}

.test-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact {
  background: var(--dark);
  padding: 7rem 3rem;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.info-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Form */
.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.form-group select option { background: var(--dark-2); color: var(--cream); }

.form-group textarea { resize: vertical; min-height: 90px; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success span { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.form-success h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.875rem; color: var(--text-muted); }

/* ===========================
   RESPONSIVE
=========================== */
.experience {
  flex-direction: row;
}

@media (max-width: 1100px) {
  .experience {
    flex-direction: column;
    max-width: 100%;
  }
  .exp-images {
    flex-direction: row;
  }
  .exp-img-1 { min-height: 250px; }
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-image-wrap { max-width: 420px; margin: 0 auto; }
  .signature-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .sig-card-featured .sig-card-img { aspect-ratio: 4/3; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .about { padding: 5rem 1.5rem; }
  .signature { padding: 5rem 1.5rem; }
  .contact { padding: 5rem 1.5rem; }
  .testimonials { padding: 5rem 0; }
  .hero-badges { display: none; }
  .about-pillars { grid-template-columns: 1fr; }
  .exp-features { grid-template-columns: 1fr; }
  .exp-images { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .test-track { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}
