:root {
  --black: #050505;
  --ink: #0e0c09;
  --charcoal: #14110c;
  --charcoal-2: #211a10;
  --yellow: #e3b22f;
  --yellow-2: #f4d36d;
  --cream: #f3ead8;
  --muted: #b8ad99;
  --line: rgba(227, 178, 47, 0.22);
  --glass: rgba(255, 255, 255, 0.06);
  --shadow: 0 28px 74px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 10%, rgba(227, 178, 47, 0.14), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #0c0a07 46%, #050505 100%);
  color: var(--cream);
  font-family: "Inter", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: keep-all;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.62));
  border-bottom: 1px solid rgba(227, 178, 47, 0.12);
  backdrop-filter: blur(22px);
}

.brand-mark {
  display: grid;
  line-height: 0.98;
  color: var(--yellow);
  font-family: "Inter", "Noto Sans KR", sans-serif;
  text-transform: uppercase;
}

.brand-mark span {
  font-size: 13px;
  color: var(--cream);
  letter-spacing: 0.16em;
}

.brand-mark strong {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
}

.brand-mark-image {
  display: block;
  width: clamp(70px, 7vw, 96px);
  padding: 4px;
  background: var(--yellow);
  border-radius: 8px;
}

.brand-mark-image img {
  width: 100%;
  border-radius: 7px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  color: rgba(247, 239, 224, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(227, 178, 47, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.top-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.top-nav a:hover {
  color: #050505;
  background: var(--yellow);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  min-height: 84svh;
  padding: 96px clamp(20px, 6vw, 84px) 44px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -12vw;
  width: min(52vw, 620px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(227, 178, 47, 0.18);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 660px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section-title h2,
.section-heading h2,
.recruit h2,
.site-footer h2 {
  margin: 0;
  font-family: "Inter", "Noto Sans KR", sans-serif;
  font-weight: 900;
  line-height: 1.03;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(46px, 7vw, 100px);
}

.hero-copy {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(247, 239, 224, 0.8);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 500;
  line-height: 1.68;
  text-wrap: pretty;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid rgba(255, 196, 0, 0.3);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #050505;
  background: linear-gradient(135deg, var(--yellow), #ffe599);
  box-shadow: 0 16px 44px rgba(227, 178, 47, 0.22);
}

.button.secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.button.secondary:hover {
  border-color: rgba(255, 196, 0, 0.7);
  background: rgba(227, 178, 47, 0.1);
}

.dark-button {
  color: var(--yellow);
  background: var(--black);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 590px;
  margin: 36px 0 0;
  padding: 1px;
  background: var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.hero-stats div {
  padding: 16px;
  background: rgba(13, 12, 9, 0.72);
}

.hero-stats dt {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--cream);
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 600px;
}

.hero-image {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 20%, rgba(5, 5, 5, 0.55)),
    radial-gradient(circle at 32% 14%, rgba(227, 178, 47, 0.32), transparent 26rem);
}

.hero-image-main {
  inset: 3% 0 8% 8%;
  border-radius: 38px;
  background-image: url("assets/photos/food-fajita.jpg");
}

.hero-image-side {
  right: 4%;
  bottom: 0;
  width: 42%;
  aspect-ratio: 0.74;
  border-radius: 24px;
  background-image: url("assets/photos/interior-night.jpg");
  transform: rotate(2deg);
}

.hero-badge {
  position: absolute;
  left: 0;
  bottom: 17%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 132px;
  min-height: 78px;
  padding: 14px;
  color: #050505;
  background: var(--yellow);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 20px 50px rgba(227, 178, 47, 0.22);
}

.section-band {
  padding: clamp(62px, 9vw, 112px) clamp(20px, 6vw, 84px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section-title h2,
.section-heading h2,
.recruit h2,
.site-footer h2 {
  max-width: 700px;
  font-size: clamp(34px, 5.1vw, 72px);
  text-wrap: balance;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 32px;
}

.section-lead {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(247, 239, 224, 0.72);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68;
}

.story-panel {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    linear-gradient(135deg, rgba(227, 178, 47, 0.06), transparent);
  border: 1px solid rgba(227, 178, 47, 0.12);
  border-radius: 18px;
}

.story-panel p {
  margin: 0;
  color: rgba(247, 239, 224, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.72;
}

.history {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(227, 178, 47, 0.04)),
    #080705;
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 17px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, var(--yellow), rgba(227, 178, 47, 0));
}

.timeline article {
  position: relative;
  padding: 20px 22px 20px 54px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(227, 178, 47, 0.13);
  border-radius: 18px;
}

.timeline article::before {
  position: absolute;
  top: 27px;
  left: 10px;
  width: 15px;
  aspect-ratio: 1;
  content: "";
  background: var(--yellow);
  border: 4px solid #17120a;
  border-radius: 50%;
}

.timeline span,
.catalog-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline strong {
  display: block;
  color: var(--cream);
  font-size: 21px;
  line-height: 1.25;
}

.timeline p {
  margin: 10px 0 0;
  color: rgba(247, 239, 224, 0.7);
  line-height: 1.6;
}

.atmosphere {
  background: linear-gradient(180deg, transparent, rgba(227, 178, 47, 0.035), transparent);
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 220px;
  gap: 14px;
}

.photo-tile {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 420px;
  background: #0e0d0a;
  border: 1px solid rgba(227, 178, 47, 0.14);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.photo-tile::after,
.award-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(5, 5, 5, 0.36));
  pointer-events: none;
}

.photo-tile img,
.award-photo img,
.store-item.with-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-tile.large {
  grid-row: span 2;
}

.photo-tile.wide {
  grid-column: span 2;
}

.menu {
  background:
    linear-gradient(180deg, rgba(227, 178, 47, 0.07), transparent 56%),
    #080705;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-catalog {
  padding-top: clamp(28px, 5vw, 72px);
  background: #080705;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.catalog-card {
  min-height: 210px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(227, 178, 47, 0.1), transparent 50%),
    rgba(255, 255, 255, 0.052);
  border: 1px solid rgba(227, 178, 47, 0.13);
  border-radius: 18px;
}

.catalog-card h3 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.12;
}

.catalog-card p {
  margin: 14px 0 0;
  color: rgba(247, 239, 224, 0.7);
  line-height: 1.6;
}

.menu-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  content-visibility: auto;
  contain-intrinsic-size: 440px;
  border: 1px solid rgba(227, 178, 47, 0.14);
  border-radius: 18px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.menu-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 18%, rgba(5, 5, 5, 0.72) 68%, rgba(5, 5, 5, 0.96));
}

.menu-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.menu-card:hover img {
  transform: scale(1.06);
}

.menu-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
}

.menu-card span,
.store-item span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-card h3,
.store-item h3 {
  margin: 10px 0 8px;
  font-size: clamp(23px, 2.7vw, 32px);
  line-height: 1.1;
}

.menu-card p,
.store-item p,
.proof-grid p,
.site-footer p {
  margin: 0;
  color: rgba(247, 239, 224, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.menu-board {
  background: #070605;
}

.menu-board-details {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(227, 178, 47, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.052);
  border: 1px solid rgba(227, 178, 47, 0.14);
  border-radius: 18px;
}

.menu-board-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  color: var(--cream);
  cursor: pointer;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 900;
  list-style: none;
}

.menu-board-details summary::-webkit-details-marker {
  display: none;
}

.menu-board-details summary::after {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  content: "+";
  color: #050505;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
}

.menu-board-details[open] summary {
  margin-bottom: 18px;
}

.menu-board-details[open] summary::after {
  content: "-";
}

.menu-board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.menu-board-grid img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  object-position: top center;
  background: #f6f0e6;
  border: 1px solid rgba(227, 178, 47, 0.14);
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.locations {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(227, 178, 47, 0.045));
}

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

.store-item {
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(227, 178, 47, 0.1), transparent 48%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(227, 178, 47, 0.12);
  border-radius: 18px;
}

.store-item.with-photo {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.store-item.with-photo img {
  aspect-ratio: 1.08;
  border-radius: 13px;
}

.beomeo-plan {
  background:
    linear-gradient(180deg, rgba(227, 178, 47, 0.045), rgba(5, 5, 5, 0)),
    #070605;
}

.beomeo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 22px;
}

.beomeo-points span {
  padding: 9px 13px;
  color: rgba(247, 239, 224, 0.86);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(227, 178, 47, 0.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.plan-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 14px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 340px;
  background: #0e0d0a;
  border: 1px solid rgba(227, 178, 47, 0.14);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.plan-card.large {
  grid-row: span 2;
}

.plan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-card.large img {
  object-position: center;
}

.plan-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(5, 5, 5, 0.78));
  pointer-events: none;
}

.plan-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px;
}

.plan-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card strong {
  display: block;
  color: var(--cream);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.35;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.58fr);
  gap: 18px;
  align-items: start;
}

.proof-layout .section-heading {
  grid-column: 1;
}

.award-photo {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 460px;
  border: 1px solid rgba(227, 178, 47, 0.14);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.proof-layout .proof-grid {
  grid-column: 1;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid article {
  padding: 24px;
  min-height: 210px;
  background: #0e0d0a;
  border: 1px solid rgba(227, 178, 47, 0.12);
  border-radius: 18px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 34px;
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.recruit {
  color: #050505;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 32%),
    var(--yellow);
}

.recruit-inner {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.section-kicker.dark {
  color: #050505;
}

.recruit ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.recruit li {
  padding: 10px 14px;
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.operation,
.franchise {
  background:
    linear-gradient(180deg, rgba(227, 178, 47, 0.045), rgba(5, 5, 5, 0)),
    #080705;
}

.operation-layout,
.franchise-layout,
.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.quick-card {
  min-height: 150px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(227, 178, 47, 0.11), transparent 52%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(227, 178, 47, 0.14);
  border-radius: 18px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 178, 47, 0.42);
  background: rgba(227, 178, 47, 0.1);
}

.quick-card.reserve {
  color: #050505;
  background: linear-gradient(135deg, var(--yellow), #ffe9a9);
}

.quick-card.instagram {
  background:
    linear-gradient(135deg, rgba(227, 178, 47, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
}

.quick-card.call {
  border-color: rgba(247, 239, 224, 0.22);
}

.quick-card.kakao {
  color: #050505;
  background: linear-gradient(135deg, #fee500, #fff2a8);
  border-color: rgba(254, 229, 0, 0.65);
}

.quick-card.franchise-link {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(227, 178, 47, 0.08)),
    rgba(255, 255, 255, 0.052);
}

.quick-card span {
  display: block;
  margin-bottom: 12px;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  opacity: 0.78;
  text-transform: uppercase;
}

.quick-card strong {
  display: block;
  color: inherit;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
}

.quick-card small {
  display: block;
  margin-top: 10px;
  color: inherit;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.72;
}

.map-section {
  background:
    radial-gradient(circle at 72% 26%, rgba(227, 178, 47, 0.13), transparent 26rem),
    #050505;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.branch-card {
  padding: clamp(22px, 3.5vw, 34px);
  background:
    linear-gradient(135deg, rgba(227, 178, 47, 0.1), transparent 52%),
    rgba(255, 255, 255, 0.052);
  border: 1px solid rgba(227, 178, 47, 0.16);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.branch-heading span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.branch-heading h3 {
  margin: 10px 0 0;
  color: var(--cream);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.15;
}

.branch-heading p {
  margin: 10px 0 0;
  color: rgba(247, 239, 224, 0.7);
}

.branch-card .store-info {
  max-width: none;
}

.map-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5.1vw, 70px);
  line-height: 1.03;
}

.map-copy p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(247, 239, 224, 0.72);
  line-height: 1.65;
}

.store-info {
  display: grid;
  gap: 1px;
  max-width: 560px;
  margin: 22px 0 0;
  padding: 1px;
  overflow: hidden;
  background: rgba(227, 178, 47, 0.16);
  border-radius: 18px;
}

.store-info div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.052);
}

.store-info dt {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.store-info dd {
  margin: 0;
  color: rgba(247, 239, 224, 0.84);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.map-actions .map-button {
  min-width: min(100%, 220px);
  box-shadow:
    0 18px 46px rgba(227, 178, 47, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.map-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(227, 178, 47, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(227, 178, 47, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 54% 46%, rgba(227, 178, 47, 0.2), transparent 9rem),
    #0d0b08;
  background-size: 54px 54px, 54px 54px, auto, auto;
  border: 1px solid rgba(227, 178, 47, 0.16);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.map-card::before,
.map-card::after {
  position: absolute;
  content: "";
  background: rgba(227, 178, 47, 0.26);
}

.map-card::before {
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  transform: rotate(-8deg);
}

.map-card::after {
  top: 8%;
  bottom: 8%;
  left: 52%;
  width: 2px;
  transform: rotate(14deg);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  padding: 13px 16px;
  color: #050505;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 44px rgba(227, 178, 47, 0.26);
}

.map-card span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: rgba(247, 239, 224, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3.4vw, 30px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(227, 178, 47, 0.14);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 9px;
  color: rgba(247, 239, 224, 0.82);
  font-size: 14px;
  font-weight: 900;
}

.inquiry-form .full {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(227, 178, 47, 0.16);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--cream);
  background: rgba(5, 5, 5, 0.54);
  font: inherit;
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: rgba(227, 178, 47, 0.58);
  box-shadow: 0 0 0 3px rgba(227, 178, 47, 0.1);
}

.agreement {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  color: rgba(247, 239, 224, 0.66) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.agreement input {
  width: 18px;
  height: 18px;
}

.form-button {
  grid-column: 1 / -1;
  border: 0;
  cursor: pointer;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: clamp(58px, 8vw, 92px) clamp(20px, 6vw, 84px) 96px;
  background:
    radial-gradient(circle at 12% 0, rgba(227, 178, 47, 0.16), transparent 28rem),
    #050505;
  border-top: 1px solid var(--line);
}

.footer-copy {
  max-width: 760px;
}

.site-footer small {
  color: rgba(247, 239, 224, 0.42);
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  gap: 9px;
  padding: 9px;
  background: rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  flex: 1;
  min-height: 58px;
  padding: 17px 12px;
  color: #050505;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

.mobile-cta a + a {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 940px) {
  .site-header {
    padding: 14px 18px;
  }

  .top-nav {
    gap: 3px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 88px;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
    min-height: 420px;
    margin-bottom: 26px;
  }

  .hero-image-main {
    inset: 0 12% 5% 0;
  }

  .hero-image-side {
    right: 0;
    width: 36%;
  }

  .split,
  .history-layout,
  .operation-layout,
  .franchise-layout,
  .map-layout,
  .menu-grid,
  .catalog-grid,
  .proof-grid,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .branch-grid {
    grid-template-columns: 1fr;
  }

  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .plan-showcase {
    grid-template-columns: 1fr;
  }

  .plan-card.large {
    grid-row: auto;
  }

  .plan-card {
    min-height: 360px;
  }

  .photo-tile.large,
  .photo-tile.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .award-photo,
  .proof-layout .section-heading,
  .proof-layout .proof-grid {
    grid-column: auto;
    grid-row: auto;
  }

  .award-photo {
    min-height: 400px;
  }

  .menu-card,
  .menu-card img {
    min-height: 390px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 132px;
  }

  .site-header {
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
  }

  .top-nav {
    flex: 1;
    justify-content: flex-start;
    gap: 5px;
    min-width: 0;
    max-width: calc(100vw - 96px);
    padding: 5px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav a {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 12px 14px;
    scroll-snap-align: start;
  }

  .top-nav a:nth-child(3),
  .top-nav a:nth-child(4) {
    display: inline-flex;
  }

  .hero {
    padding-inline: 16px;
    padding-bottom: 46px;
  }

  .brand-mark-image {
    width: 68px;
  }

  .hero h1 {
    max-width: 9em;
    font-size: clamp(32px, 9.4vw, 48px);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 32rem;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
    min-height: 60px;
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-stats div {
    padding: 16px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-badge {
    width: 116px;
    min-height: 70px;
    font-size: 12px;
  }

  .section-band {
    padding: clamp(50px, 13vw, 78px) 16px;
  }

  .photo-mosaic,
  .menu-board-grid,
  .catalog-grid,
  .quick-actions,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 280px;
  }

  .store-info div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .inquiry-form .full {
    grid-column: auto;
  }

  .photo-mosaic {
    grid-auto-rows: 240px;
  }

  .menu-board-grid img {
    aspect-ratio: 0.74;
  }

  .store-item.with-photo {
    grid-template-columns: 1fr;
  }

  .store-item.with-photo img {
    aspect-ratio: 1.45;
  }

  .award-photo {
    min-height: 340px;
  }

  .plan-card {
    min-height: 280px;
  }

  .plan-card.large {
    min-height: 310px;
  }

  .section-title h2,
  .section-heading h2,
  .recruit h2,
  .site-footer h2 {
    font-size: clamp(24px, 6.4vw, 32px);
    line-height: 1.12;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .story-panel,
  .store-item,
  .proof-grid article {
    border-radius: 22px;
  }

  .menu-card {
    min-height: 350px;
    border-radius: 18px;
  }

  .menu-card img {
    min-height: 350px;
  }

  .menu-card div {
    padding: 20px;
  }

  .menu-grid,
  .catalog-grid,
  .proof-grid,
  .store-stack,
  .quick-actions {
    gap: 12px;
  }

  .menu-card h3,
  .store-item h3 {
    font-size: clamp(22px, 6.2vw, 28px);
  }

  .mobile-cta {
    display: flex;
    left: 8px;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    padding: 8px;
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  }

  .mobile-cta a {
    min-height: 56px;
    padding: 14px 6px;
    border-radius: 20px;
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .brand-mark-image {
    width: 62px;
  }

  .top-nav {
    max-width: calc(100vw - 84px);
  }

  .top-nav a {
    min-height: 40px;
    padding: 11px 12px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .mobile-cta a {
    font-size: 13px;
  }
}
