:root {
  --red: #bc002d;
  --red-dark: #8c0021;
  --ink: #1a1512;
  --cream: #faf6f0;
  --cream-dark: #f0e8db;
  --gold: #c9a45c;
  --text: #2b2420;
  --text-light: #6b625a;
  --radius: 14px;
  --shadow: 0 20px 40px -20px rgba(0,0,0,.25);
  --font-head: 'Shippori Mincho', serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; }

.center { text-align: center; }

.section__kicker {
  color: var(--red);
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.section__subtitle {
  color: var(--text-light);
  max-width: 560px;
  margin: .5rem auto 0;
  font-size: .9rem;
}

code {
  background: var(--cream-dark);
  padding: .1rem .4rem;
  border-radius: 4px;
  font-size: .85em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 25px -8px rgba(188,0,45,.6);
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--full { width: 100%; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,21,18,.0);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 1.4rem 0;
}
.header.scrolled {
  background: rgba(26,21,18,.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px -15px rgba(0,0,0,.5);
  padding: .8rem 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  text-decoration: none;
  color: #fff;
}
.logo__mark {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1.1rem;
}
.logo__text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__text small {
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav {
  display: flex;
  gap: 2rem;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }
.header__cta { flex-shrink: 0; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: #fff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(160deg, #1a1512 0%, #3b1210 45%, #6b0f20 100%);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(201,164,92,.25), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(188,0,45,.35), transparent 45%);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.02) 0 2px, transparent 2px 60px);
}
.sakura {
  position: absolute; inset: 0;
  pointer-events: none;
  font-size: 1.6rem;
  opacity: .5;
}
.sakura span {
  position: absolute;
  animation: float 14s linear infinite;
}
.sakura span:nth-child(1){ left: 8%; top: -10%; animation-delay: 0s; }
.sakura span:nth-child(2){ left: 22%; top: -10%; animation-delay: 2s; font-size: 1.1rem; }
.sakura span:nth-child(3){ left: 45%; top: -10%; animation-delay: 5s; }
.sakura span:nth-child(4){ left: 63%; top: -10%; animation-delay: 8s; font-size: 1.3rem; }
.sakura span:nth-child(5){ left: 80%; top: -10%; animation-delay: 3s; }
.sakura span:nth-child(6){ left: 95%; top: -10%; animation-delay: 10s; font-size: 1rem; }
@keyframes float {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: .6; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
}
.hero__kicker {
  color: var(--gold);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 700;
  margin-bottom: .5rem;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #f0e0d8;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-head);
}
.stat .star { color: var(--gold); }
.stat small {
  color: #cbb;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__torii {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 260px;
  color: rgba(201,164,92,.18);
  z-index: 1;
}

/* ===== ABOUT ===== */
.about { padding: 7rem 0; background: var(--cream); }
.about__inner {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 3rem;
  align-items: center;
}
.about__text h2 { font-size: 2.2rem; margin: .3rem 0 1.2rem; color: var(--ink); }
.about__text p { color: var(--text-light); margin-bottom: 1.5rem; }
.about__text blockquote {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 1.2rem;
}
.about__deco {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__deco .circle {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red) 0%, var(--red-dark) 70%);
  opacity: .9;
}
.about__deco .kanji {
  position: absolute;
  font-family: var(--font-head);
  font-size: 6rem;
  color: #fff;
}

/* ===== MENU ===== */
.menu { padding: 7rem 0; background: var(--ink); color: #fff; }
.menu .section__kicker { color: var(--gold); }
.menu h2 { color: #fff; font-size: 2.3rem; margin-bottom: .5rem; }
.menu .section__subtitle { color: #cbbfb5; }

.menu__grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.dish {
  background: #241c19;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dish--featured { grid-column: span 2; grid-row: span 2; }
.dish--featured .dish__img { height: 260px; }
.dish__img {
  height: 150px;
  background-size: cover;
  background-position: center;
  background-color: #33281f;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: .8rem;
}
.dish__tag {
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem .7rem;
  border-radius: 999px;
  font-weight: 600;
  height: fit-content;
}
.dish__tag--dessert { background: var(--gold); color: var(--ink); }
.dish__body { padding: 1.2rem 1.4rem 1.5rem; }
.dish__body h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.dish__body p { font-size: .85rem; color: #b9ada4; }
.dish--featured .dish__body h3 { font-size: 1.4rem; }

.menu__cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== RESERVAR ===== */
.reservar { padding: 7rem 0; background: var(--cream-dark); }
.reservar__inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}
.reservar__info h2 { font-size: 2.2rem; margin: .3rem 0 1rem; color: var(--ink); }
.reservar__info p { color: var(--text-light); margin-bottom: 1.5rem; }
.reservar__list { list-style: none; }
.reservar__list li { margin-bottom: .6rem; color: var(--text); font-weight: 500; }

.reservar__form {
  background: #fff;
  padding: 2.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.reservar__form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.form__full { grid-column: span 2; }
.reservar__form input,
.reservar__form select,
.reservar__form textarea {
  border: 1.5px solid #e2d9cc;
  border-radius: 8px;
  padding: .7rem .9rem;
  font-family: var(--font-body);
  font-size: .9rem;
  background: var(--cream);
  color: var(--text);
}
.reservar__form input:focus,
.reservar__form select:focus,
.reservar__form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form__hint { font-size: .78rem; color: var(--text-light); text-align: center; }

/* ===== HORARIOS ===== */
.horarios { padding: 7rem 0; background: var(--cream); }
.horarios__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.horarios__card, .horarios__map {
  background: #fff;
  padding: 2.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.horarios h2 { font-size: 1.8rem; margin: .2rem 0 1.2rem; color: var(--ink); }
.hours { list-style: none; }
.hours li {
  display: flex;
  justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-weight: 500;
}
.hours__note { font-size: .78rem; color: var(--text-light); margin-top: .8rem; }
.hours__price {
  margin-top: 1.5rem;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--red);
}
.horarios__map p { color: var(--text-light); margin-bottom: 1.5rem; }

/* ===== OPINIONES ===== */
.opiniones { padding: 7rem 0; background: var(--cream-dark); }
.opiniones h2 { color: var(--ink); font-size: 2.2rem; margin-bottom: 1.5rem; }
.opiniones__rating {
  margin-bottom: 3rem;
}
.rating__number {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--red);
  display: block;
}
.rating__stars { color: var(--gold); font-size: 1.4rem; letter-spacing: .1em; }
.rating__count { display: block; color: var(--text-light); font-size: .85rem; margin-top: .3rem; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.review {
  background: #fff;
  padding: 1.8rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-style: italic;
  color: var(--text);
  border-top: 3px solid var(--red);
}

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: #cbbfb5; padding: 3.5rem 0 2rem; }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer .logo__text { color: #fff; }
.footer p { font-size: .85rem; margin-top: .5rem; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { color: #cbbfb5; text-decoration: none; font-size: .9rem; }
.footer__links a:hover { color: var(--gold); }
.footer__copy { width: 100%; text-align: center; font-size: .78rem; margin-top: 2rem; border-top: 1px solid #3a2f29; padding-top: 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { position: fixed; top: 0; right: -100%; height: 100vh; width: 70%; background: var(--ink); flex-direction: column; padding: 6rem 2rem; transition: right .3s ease; }
  .nav.open { right: 0; }
  .nav__toggle { display: flex; }
  .header__cta { display: none; }
  .about__inner, .reservar__inner, .horarios__inner { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .dish--featured { grid-column: span 2; grid-row: span 1; }
  .dish--featured .dish__img { height: 150px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .form__full { grid-column: span 1; }
}

@media (max-width: 480px) {
  .menu__grid { grid-template-columns: 1fr; }
  .dish--featured { grid-column: span 1; }
  .hero__stats { gap: 1.5rem; }
}
