:root {
  --bg: #140f12;
  --bg-soft: #1b1418;
  --surface: rgba(255, 249, 244, 0.9);
  --surface-strong: #ffffff;
  --text: #2b1d22;
  --muted: #78666d;
  --line: rgba(126, 98, 61, 0.16);
  --primary: #9c2f4e;
  --primary-deep: #6f2038;
  --accent: #d3af68;
  --accent-soft: #f0dfb4;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 14px 32px rgba(0, 0, 0, 0.18);
  --radius: 22px;
  --container: min(1120px, calc(100% - 32px));
  --font: "Didot", "Baskerville", "Times New Roman", serif;
  --font-ui: "Avenir Next", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--text);
  font-family: var(--font-ui);
  line-height: 1.75;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(156, 47, 78, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(211, 175, 104, 0.08), transparent 20%),
    linear-gradient(180deg, #140f12 0%, #1a1317 36%, #120d10 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
}

body::before {
  top: 72px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(156, 47, 78, 0.18);
}

body::after {
  left: -80px;
  bottom: 18%;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(211, 175, 104, 0.1);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: -40px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--primary-deep);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
  position: relative;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 248, 242, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(211, 175, 104, 0.035) 1px, transparent 1px);
  background-size: auto, 22px 22px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-label,
.eyebrow,
.brand-ruby {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--accent-soft);
  font-weight: 700;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.section-head h2,
.hero h1,
.mama-name,
.footer-name {
  margin: 0;
  font-family: var(--font);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-head h2 {
  color: #fff7ee;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.section-head h2 {
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  margin-top: 10px;
  margin-bottom: 10px;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(240, 223, 180, 0.95) 100%);
  box-shadow: 0 0 18px rgba(211, 175, 104, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(20, 15, 18, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(211, 175, 104, 0.14);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font);
}

.brand strong {
  font-size: 1.32rem;
  font-weight: 800;
  color: #fff7ee;
}

.header-nav {
  display: none;
  gap: 18px;
  color: rgba(255, 247, 238, 0.72);
  font-size: 0.95rem;
}

.header-call {
  display: none;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.header-call,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #b88d49 0%, #8c6731 100%);
  box-shadow: 0 16px 30px rgba(140, 103, 49, 0.24);
}

.button-secondary {
  border: 1px solid rgba(211, 175, 104, 0.2);
  background: rgba(255, 248, 242, 0.08);
  color: #fff7ee;
}

.header-call:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(140, 103, 49, 0.3);
}

.hero {
  padding-top: 52px;
}

.hero-grid,
.two-column,
.access-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  position: relative;
}

.hero-copy {
  display: grid;
  gap: 20px;
  align-content: start;
  position: relative;
  isolation: isolate;
  padding: 32px;
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(180deg, rgba(39, 27, 31, 0.88), rgba(26, 18, 22, 0.92)),
    linear-gradient(135deg, rgba(211, 175, 104, 0.04), rgba(156, 47, 78, 0.06));
  border: 1px solid rgba(211, 175, 104, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 100%);
}

.hero-copy::after {
  content: "ICHIGO ICHIE";
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(240, 223, 180, 0.32);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: #fff7ee;
}

.hero h1 span {
  display: block;
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: clamp(0.92rem, 2.8vw, 1.02rem);
  color: rgba(255, 247, 238, 0.74);
  letter-spacing: 0.08em;
}

.lead {
  margin: 0;
  font-size: 1.06rem;
  max-width: 34rem;
  color: rgba(255, 247, 238, 0.84);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 248, 242, 0.06);
  border: 1px solid rgba(211, 175, 104, 0.14);
  font-size: 0.84rem;
  color: rgba(255, 247, 238, 0.82);
}

.hero-actions,
.access-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .button,
.contact-actions .button {
  flex: 1 1 220px;
}

.hero-callout {
  margin: -2px 0 0;
  color: var(--accent-soft);
  font-weight: 700;
}

.hero-mini-note {
  display: grid;
  gap: 4px;
  padding-top: 6px;
  color: rgba(255, 247, 238, 0.68);
  font-size: 0.92rem;
}

.hero-mini-note p {
  margin: 0;
}

.hero-summary {
  display: grid;
  gap: 12px;
  margin: 6px 0 0;
}

.hero-summary div,
.feature-card,
.photo-card,
.mama-card,
.info-card,
.menu-card,
.contact-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-summary div {
  padding: 18px 18px;
  background: rgba(255, 248, 242, 0.08);
  border-color: rgba(211, 175, 104, 0.14);
}

.hero-summary dt {
  font-size: 0.82rem;
  color: rgba(255, 247, 238, 0.58);
}

.hero-summary dd {
  margin: 4px 0 0;
  font-weight: 700;
  color: #fff7ee;
}

.hero-visual,
.outside-main {
  margin: 0;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  padding: 12px;
  border-radius: 28px;
  background: rgba(255, 248, 242, 0.08);
  border: 1px solid rgba(211, 175, 104, 0.14);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: -12px;
  right: -12px;
  width: 88px;
  height: 88px;
  border-radius: 28px;
  border: 1px solid rgba(211, 175, 104, 0.18);
  background: linear-gradient(135deg, rgba(211, 175, 104, 0.18), rgba(156, 47, 78, 0.1));
  transform: rotate(6deg);
  z-index: -1;
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 16px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(211, 175, 104, 0.14);
  z-index: -1;
}

.hero-visual img,
.photo-card img,
.outside-main img {
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
}

.hero-visual img {
  aspect-ratio: 4 / 3;
  object-position: center 56%;
}

.outside-main img {
  aspect-ratio: 4 / 5;
  object-position: center 46%;
}

.photo-card-interior-main img {
  aspect-ratio: 16 / 10;
  object-position: center 56%;
}

.photo-card-karaoke img {
  aspect-ratio: 16 / 11;
  object-position: center 26%;
}

.photo-card-bottle img {
  aspect-ratio: 16 / 11;
  object-position: center 34%;
}

.photo-card-entry img {
  aspect-ratio: 16 / 11;
  object-position: center 22%;
}

.photo-card-sign img {
  aspect-ratio: 16 / 11;
  object-position: center 35%;
}

.photo-card-street img {
  aspect-ratio: 16 / 11;
  object-position: center 50%;
}

.feature-grid,
.info-grid,
.menu-layout,
.outside-grid {
  display: grid;
  gap: 16px;
}

.feature-card,
.info-card,
.menu-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.feature-card {
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.96), rgba(248, 240, 234, 0.92));
}

.feature-card:nth-child(1)::after,
.feature-card:nth-child(4)::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(211, 175, 104, 0.18), transparent 70%);
}

.feature-card::before,
.info-card::before,
.menu-card::before,
.mama-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.feature-card h3,
.info-card h3,
.menu-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: var(--font);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.photo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.photo-card,
.outside-main {
  padding: 12px;
  overflow: hidden;
}

.photo-card-large {
  grid-column: 1 / -1;
}

.photo-card {
  background: rgba(255, 255, 255, 0.76);
}

.photo-card-karaoke,
.photo-card-bottle,
.photo-card-entry,
.photo-card-sign,
.photo-card-street {
  transform: none;
}

.note,
.contact-note,
.section-head p {
  color: rgba(255, 247, 238, 0.82);
}

.feature-card p,
.info-card p,
.menu-card p,
.menu-card li,
.mama-card p,
.footer-inner p {
  color: rgba(43, 29, 34, 0.84);
}

.mama-card,
.contact-card {
  display: grid;
  gap: 20px;
  padding: 32px;
}

.mama-card {
  background:
    linear-gradient(135deg, rgba(255, 251, 247, 0.96) 0%, rgba(250, 244, 238, 0.94) 58%, rgba(211, 175, 104, 0.16) 100%);
}

.mama-name {
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  margin-bottom: 12px;
}

.mama-copy {
  padding: 24px;
  border-radius: calc(var(--radius) - 4px);
  background: linear-gradient(180deg, rgba(211, 175, 104, 0.12), rgba(255, 255, 255, 0.74));
}

.access-grid {
  align-items: start;
}

.map-card {
  overflow: hidden;
  min-height: 360px;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.menu-list {
  margin: 0;
  padding-left: 1.2em;
}

.menu-card-highlight {
  background: linear-gradient(180deg, rgba(211, 175, 104, 0.18), rgba(255, 252, 248, 0.98));
  overflow: hidden;
}

.menu-card-highlight::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -20px;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(211, 175, 104, 0.24), rgba(156, 47, 78, 0.08));
  transform: rotate(10deg);
  opacity: 0.9;
}

.price-stack {
  display: grid;
  gap: 14px;
}

.price-panel {
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(38, 27, 32, 0.06);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.price-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(180deg, var(--accent) 0%, #9a7439 100%);
}

.price-label,
.price-main,
.price-sub,
.menu-note {
  margin: 0;
}

.price-label {
  margin-bottom: 8px;
  color: #8d6732;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.price-main {
  font-family: var(--font);
  font-size: clamp(2rem, 5.2vw, 2.9rem);
  line-height: 1.05;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-sub {
  margin-top: 6px;
  font-family: var(--font);
  font-size: clamp(1.65rem, 4.4vw, 2.15rem);
  line-height: 1.1;
  color: #8d6732;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.menu-note {
  margin-top: 14px;
  color: var(--muted);
}

.contact-actions {
  align-items: flex-start;
}

.contact-card {
  background:
    linear-gradient(135deg, rgba(23, 16, 19, 0.98), rgba(48, 31, 37, 0.96)),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  color: #fff;
  border-color: rgba(211, 175, 104, 0.14);
}

.contact-card::before {
  background: linear-gradient(90deg, rgba(240,223,180,0.95), rgba(211, 175, 104, 0.9));
}

.contact-card .section-label,
.contact-card .contact-note {
  color: rgba(255,255,255,0.72);
}

.contact-card p,
.contact-card h2 {
  color: #fff7ee;
}

.site-footer .footer-name {
  color: #fff7ee;
}

.contact-card .button-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
}

.button-large {
  min-height: 60px;
  padding-inline: 26px;
  font-size: 1.05rem;
}

.site-footer {
  padding: 28px 0 110px;
  border-top: 1px solid rgba(211, 175, 104, 0.12);
  background: rgba(255, 248, 242, 0.04);
  color: rgba(255, 247, 238, 0.74);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-name {
  font-size: 1.2rem;
}

.footer-call {
  color: var(--accent-soft);
  font-weight: 700;
}

.floating-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 15;
  display: grid;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(184, 141, 73, 0.98), rgba(140, 103, 49, 0.98));
  box-shadow: 0 18px 28px rgba(80, 55, 24, 0.32);
}

.floating-call span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.floating-call strong {
  font-size: 1.15rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .section {
    padding: 104px 0;
  }

  .hero-copy {
    padding: 40px;
  }

  .hero-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid,
  .info-grid,
  .menu-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-card-highlight {
    grid-column: 1 / -1;
  }

  .outside-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outside-grid .photo-card-street {
    grid-column: 1 / -1;
  }

  .mama-card,
  .contact-card {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .header-call {
    display: inline-flex;
  }

  .floating-call {
    display: none;
  }
}

@media (min-width: 960px) {
  .header-nav {
    display: flex;
  }

  .hero-grid,
  .two-column,
  .access-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 40px;
  }

  .hero-grid {
    align-items: center;
  }

  .feature-grid,
  .info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .menu-layout {
    grid-template-columns: 1.25fr 1fr 1fr;
  }

  .menu-card-highlight {
    grid-column: span 1;
    grid-row: span 2;
  }

  .photo-grid {
    grid-template-columns: 1.35fr 0.82fr 0.82fr;
    align-items: start;
  }

  .photo-card-large {
    grid-column: span 1;
  }

  .feature-grid .feature-card:nth-child(2),
  .feature-grid .feature-card:nth-child(4) {
    transform: translateY(18px);
  }

  .photo-card-karaoke {
    margin-top: 18px;
  }

  .photo-card-bottle {
    margin-top: 42px;
  }

  .outside-grid {
    grid-template-columns: 0.9fr 0.9fr 1.2fr;
    align-items: start;
  }

  .outside-grid .photo-card-street {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .header-call,
  .button {
    transition: none;
  }
}
