/* GENZ Ramyeon — shared styles */

:root {
  --cream: #FFF8F0;
  --ink: #1A1A1A;
  --red: #FF0038;
  --deep: #C0392B;
  --font-display: 'Black Han Sans', sans-serif;
  --font-eyebrow: 'Do Hyeon', sans-serif;
  --font-body: 'Noto Sans KR', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
}

body {
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

a { color: var(--red); }
a:hover { color: var(--deep); }
::selection { background: var(--red); color: var(--cream); }

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

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(18px, 5vw, 44px);
  padding-right: clamp(18px, 5vw, 44px);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--cream);
  padding: 20px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0);
  transition: background .2s, padding .2s, border-color .2s;
}

.site-header.is-scrolled {
  padding: 9px 0;
  border-bottom-color: rgba(26, 26, 26, .08);
}

.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
}

.brand img {
  height: 46px;
  width: auto;
  transition: height .2s;
}

.site-header.is-scrolled .brand img { height: 34px; }

.brand .word {
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1;
  transition: font-size .2s;
}

.site-header.is-scrolled .brand .word { font-size: 19px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .01em;
  color: var(--ink);
  padding: 9px 15px;
  border-radius: 999px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}

.main-nav a:hover { background: var(--red); color: var(--cream); }
.main-nav a.is-active { color: var(--red); }

.order-btn {
  margin-left: 10px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--red);
  padding: 9px 18px;
  border: 1.5px solid var(--red);
  border-radius: 999px;
  transition: background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}

.order-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.burger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-sheet {
  overflow: hidden;
  background: var(--cream);
  max-height: 0;
  opacity: 0;
  transition: max-height .32s ease, opacity .25s;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 clamp(18px, 5vw, 44px);
}

.mobile-sheet.is-open {
  max-height: 440px;
  opacity: 1;
  padding: 18px clamp(18px, 5vw, 44px);
}

.mobile-sheet a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: .01em;
  color: var(--ink);
  padding: 6px 0;
  transition: color .15s;
}

.mobile-sheet a:hover, .mobile-sheet a.is-active { color: var(--red); }

.mobile-sheet .order-btn {
  margin-top: 14px;
  margin-left: 0;
  text-align: center;
  font-size: 16px;
  color: var(--cream);
  background: var(--red);
  border: none;
  padding: 15px;
  border-radius: 14px;
}

.mobile-sheet .order-btn:hover { background: var(--ink); color: var(--cream); }

@media (max-width: 879px) {
  .main-nav { display: none; }
  .burger { display: flex; }
}

@media (min-width: 880px) {
  .mobile-sheet { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  padding-top: clamp(96px, 13vw, 150px);
  padding-bottom: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow.small { font-size: 13px; }

.hero-copy h1.eyebrow { margin: 0; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.btn {
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 999px;
  transition: background .18s, color .18s;
  display: inline-block;
}

.btn-solid {
  color: var(--cream);
  background: var(--red);
}

.btn-solid:hover { background: var(--ink); color: var(--cream); }

.btn-outline {
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--ink);
  padding: 14.5px 28.5px;
}

.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ---------- Hero trio (Slurp / Snap / Repeat) ---------- */

.hero-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 26px);
}

@media (max-width: 700px) {
  .hero-trio { grid-template-columns: 1fr; }
}

.hero-tile {
  position: relative;
  height: clamp(420px, 44vw, 660px);
  border-radius: 26px;
  overflow: hidden;
  background: #f0e6db;
}

@media (max-width: 700px) {
  .hero-tile { height: clamp(320px, 82vw, 460px); }
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.hero-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .32) 0%, rgba(0, 0, 0, .48) 45%, rgba(0, 0, 0, .82) 100%);
  transition: opacity .45s ease;
}

.hero-tile .word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  color: var(--cream);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
  text-align: center;
  transition: opacity .35s ease;
}

.hero-tile:hover img { transform: scale(1.08); }
.hero-tile:hover::after { opacity: 0; }
.hero-tile:hover .word { opacity: 0; }

/* ---------- Marquee (reusable infinite ticker) ---------- */

.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-seg {
  display: flex;
  flex: none;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Promise strip ---------- */

.promise-strip {
  border-top: 1px solid rgba(26, 26, 26, .1);
  border-bottom: 1px solid rgba(26, 26, 26, .1);
  padding-top: 22px;
  padding-bottom: 22px;
}

.promise-strip .marquee-track { animation-duration: 16s; }

.promise-strip .marquee-seg {
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  padding-right: clamp(40px, 6vw, 90px);
}

.promise-strip span {
  font-family: var(--font-eyebrow);
  font-size: clamp(14px, 2.6vw, 17px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

/* ---------- Section heading ---------- */

.section {
  padding-top: clamp(60px, 9vw, 110px);
  padding-bottom: clamp(60px, 9vw, 110px);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin-bottom: clamp(38px, 5vw, 58px);
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5.5vw, 54px);
  line-height: 1.05;
  color: var(--ink);
}

.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(30px, 4vw, 44px);
}

.section-head-row .col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-link {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 2px solid var(--red);
  padding-bottom: 3px;
  transition: color .16s;
  align-self: flex-start;
  white-space: nowrap;
}

.text-link:hover { color: var(--red); }

/* ---------- Steps grid ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(26, 26, 26, .1);
  border: 1px solid rgba(26, 26, 26, .1);
  border-radius: 22px;
  overflow: hidden;
}

@media (min-width: 620px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step {
  background: var(--cream);
  padding: clamp(26px, 3.4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 210px;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.step:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(26, 26, 26, .10);
}

.step .n {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--red);
}

.step h3 {
  margin: 0;
  font-family: var(--font-eyebrow);
  font-size: 22px;
  color: var(--ink);
}

.step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(26, 26, 26, .65);
}

/* ---------- Menu preview ---------- */

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 26px);
}

@media (min-width: 620px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.dish-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid rgba(26, 26, 26, .1);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.dish-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 26, 26, .12);
}

.dish-card .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0e6db;
}

.dish-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }

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

.dish-card .body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dish-card .title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.dish-card h3 {
  margin: 0;
  font-family: var(--font-eyebrow);
  font-size: 20px;
  color: var(--ink);
}

.dish-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(26, 26, 26, .6);
}

.dish-card .heat {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}

.heat-hot { color: var(--red); }
.heat-mild { color: rgba(26, 26, 26, .5); }
.heat-medium { color: var(--deep); }

/* ---------- Story ---------- */

.story {
  background: var(--ink);
  color: var(--cream);
}

.story .wrap {
  max-width: 1000px;
  padding-top: clamp(64px, 10vw, 120px);
  padding-bottom: clamp(64px, 10vw, 120px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}

.story p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4.4vw, 44px);
  line-height: 1.28;
  letter-spacing: -.005em;
  color: var(--cream);
}

.story p span { color: var(--red); }

.story .btn-invert {
  color: var(--ink);
  background: var(--cream);
}

.story .btn-invert:hover { background: var(--red); color: var(--cream); }

/* ---------- Reviews ---------- */

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 26px);
}

@media (min-width: 700px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  margin: 0;
  background: #fff;
  border: 1.5px solid rgba(26, 26, 26, .1);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(26, 26, 26, .12);
}

.review-card .mark {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: .6;
  color: var(--red);
}

.review-card blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}

.review-card figcaption {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--red);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  flex: none;
}

.review-card .who { display: flex; flex-direction: column; }
.review-card .who strong { font-weight: 500; font-size: 14px; color: var(--ink); }
.review-card .who span { font-size: 12px; color: rgba(26, 26, 26, .55); }

/* ---------- Locations ---------- */

.locations { border-top: 1px solid rgba(26, 26, 26, .1); }

.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 26px);
}

@media (min-width: 760px) { .loc-grid { grid-template-columns: 1fr 1fr; } }

.loc-card {
  background: #fff;
  border: 1.5px solid rgba(26, 26, 26, .1);
  border-radius: 20px;
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.loc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(26, 26, 26, .12);
}

.loc-card.coming-soon {
  background: var(--cream);
  border: 1.5px dashed rgba(26, 26, 26, .28);
}

.loc-card.coming-soon:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.loc-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.loc-status .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
}

.loc-card.coming-soon .dot { background: rgba(26, 26, 26, .3); }

.loc-status span.label {
  font-family: var(--font-eyebrow);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}

.loc-card.coming-soon .loc-status span.label { color: rgba(26, 26, 26, .5); }

.loc-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  color: var(--ink);
}

.loc-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 26, 26, .65);
}

.loc-card .text-link { margin-top: 6px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
}

.footer-strip { border-bottom: 1px solid rgba(255, 248, 240, .12); }

.footer-strip .wrap {
  padding-top: 26px;
  padding-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-marquee { flex: 1 1 auto; min-width: 0; }

.footer-strip .btn { flex: none; }

.footer-marquee .marquee-track { animation-duration: 14s; }

.footer-seg {
  align-items: center;
  gap: 14px;
  padding-right: 14px;
}

.footer-seg span {
  font-family: var(--font-eyebrow);
  font-size: clamp(14px, 2.2vw, 18px);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}

.footer-seg .dot { color: var(--red); }

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px 28px;
  padding-top: clamp(38px, 6vw, 60px);
  padding-bottom: clamp(38px, 6vw, 60px);
}

@media (min-width: 760px) {
  .footer-main { grid-template-columns: 1.4fr 1fr 1.1fr 1fr; }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col.brand-col { gap: 16px; max-width: 340px; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-brand img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.footer-brand .word { font-family: var(--font-display); font-size: 22px; color: var(--cream); }

.footer-col p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 248, 240, .62);
}

.footer-col .tagline {
  font-family: var(--font-eyebrow);
  font-size: 14px;
  letter-spacing: .18em;
  color: var(--red);
}

.footer-col .col-title {
  font-family: var(--font-eyebrow);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, .45);
}

.footer-col a {
  text-decoration: none;
  font-size: 14.5px;
  color: rgba(255, 248, 240, .82);
  transition: color .15s;
}

.footer-col a:hover { color: var(--red); }

.footer-col .addr {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 248, 240, .82);
}

.footer-col .addr.dim { color: rgba(255, 248, 240, .55); }
.footer-col .addr strong { font-weight: 500; color: var(--cream); }
.footer-col .addr.dim strong { color: rgba(255, 248, 240, .82); }

.socials { display: flex; gap: 10px; margin-top: 4px; }

.socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 240, .22);
  border-radius: 999px;
  color: rgba(255, 248, 240, .82);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: background .16s, color .16s, border-color .16s;
}

.socials a:hover { background: var(--red); color: var(--cream); border-color: var(--red); }

.footer-bottom { border-top: 1px solid rgba(255, 248, 240, .12); }

.footer-bottom .wrap {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 248, 240, .45);
}

/* ==================================================================
   Shared inner-page components (Menu / Experience / Franchise / Contact)
   ================================================================== */

.hidden { display: none !important; }

/* ---------- Page head ---------- */

.page-head {
  padding-top: clamp(110px, 14vw, 168px);
  padding-bottom: clamp(20px, 3vw, 32px);
}

.page-head--wide { padding-bottom: clamp(30px, 4vw, 44px); }

.page-head h1 {
  margin: 10px 0 16px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 8vw, 84px);
  line-height: .98;
  color: var(--ink);
}

.page-head p {
  margin: 0;
  max-width: 560px;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  color: rgba(26, 26, 26, .65);
}

/* ---------- CTA band ---------- */

.cta-band { border-top: 1px solid rgba(26, 26, 26, .1); }

.cta-band .wrap {
  max-width: 1000px;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 5.5vw, 52px);
  line-height: 1.05;
  color: var(--ink);
}

.cta-band p {
  margin: 0;
  max-width: 440px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26, 26, 26, .65);
}

.cta-band .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- Subsection head (Menu: Bowls / Add-ons / Sides) ---------- */

.subsection { padding-top: clamp(26px, 4vw, 44px); padding-bottom: clamp(26px, 4vw, 44px); }
.subsection.bordered-top { border-top: 1px solid rgba(26, 26, 26, .1); }

.subsection-head {
  margin: 0 0 clamp(22px, 3vw, 32px);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4.4vw, 40px);
  color: var(--ink);
}

.subsection-head .muted {
  font-family: var(--font-eyebrow);
  font-size: 15px;
  color: rgba(26, 26, 26, .45);
  letter-spacing: .04em;
}

/* ---------- Menu filter tabs ---------- */

.menu-tabs {
  position: sticky;
  top: 64px;
  z-index: 20;
  background: var(--cream);
}

.menu-tabs .row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 14px 0;
}

.tab-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(26, 26, 26, .18);
  background: transparent;
  color: var(--ink);
  transition: background .16s, color .16s, border-color .16s;
}

.tab-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.tab-btn.is-active,
.tab-btn.is-active:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--cream);
}

/* ---------- Dotted rows (Contact hours) ---------- */

.dotted-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(26, 26, 26, .1);
}

.dotted-row .name { font-size: 15.5px; color: var(--ink); white-space: nowrap; }

.dotted-row .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(26, 26, 26, .25);
  transform: translateY(-4px);
}

.dotted-row .time {
  font-weight: 500;
  font-size: 15px;
  color: var(--red);
  white-space: nowrap;
}

/* ---------- Add-on / sides chip grid (Menu) ---------- */

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

@media (min-width: 640px) { .addon-grid { grid-template-columns: repeat(3, 1fr); } }

.addon-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #fff;
  border: 1.5px solid rgba(26, 26, 26, .1);
  border-radius: 999px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.addon-chip:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(26, 26, 26, .10);
}

.addon-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red);
  flex: none;
}

.addon-chip .name { font-size: 14.5px; color: var(--ink); }

/* ---------- Experience: alternating steps ---------- */

.exp-steps {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 40px) clamp(18px, 5vw, 44px) clamp(40px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 90px);
}

.exp-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

@media (min-width: 780px) {
  .exp-step { grid-template-columns: 1fr 1fr; }
  .exp-step:nth-child(even) .exp-step-text { order: 2; }
  .exp-step:nth-child(even) .exp-step-media { order: 1; }
}

.exp-step-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exp-step-text .n {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  line-height: .9;
  color: var(--red);
}

.exp-step-text h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 40px);
  line-height: 1.05;
  color: var(--ink);
}

.exp-step-text p {
  margin: 0;
  max-width: 400px;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(26, 26, 26, .68);
}

.exp-step-media {
  aspect-ratio: 5 / 4;
  border-radius: 22px;
  overflow: hidden;
  background: #f0e6db;
}

.exp-step-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }

.exp-step:hover .exp-step-media img { transform: scale(1.06); }

/* ---------- Experience: "stay a while" play section ---------- */

.play-section { background: var(--ink); color: var(--cream); }

.play-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 26px);
}

@media (min-width: 760px) { .play-grid { grid-template-columns: repeat(3, 1fr); } }

.play-card {
  background: rgba(255, 248, 240, .05);
  border: 1px solid rgba(255, 248, 240, .14);
  border-radius: 20px;
  padding: clamp(26px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.play-card:hover {
  background: rgba(255, 0, 56, .1);
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .35);
}

.play-card .tag {
  font-family: var(--font-eyebrow);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
}

.play-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--cream);
}

.play-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 248, 240, .62);
}

/* ---------- Franchise: stats strip ---------- */

.stats-strip { border-top: 1px solid rgba(26, 26, 26, .1); border-bottom: 1px solid rgba(26, 26, 26, .1); }

.stats-strip .wrap {
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 28px);
}

@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }

.stat-item { display: flex; flex-direction: column; gap: 6px; }

.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1;
  color: var(--red);
}

.stat-item .label {
  font-size: 14px;
  color: rgba(26, 26, 26, .62);
  line-height: 1.5;
}

/* ---------- Franchise: why-partner grid ---------- */

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(26, 26, 26, .1);
  border: 1px solid rgba(26, 26, 26, .1);
  border-radius: 22px;
  overflow: hidden;
}

@media (min-width: 620px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  background: var(--cream);
  padding: clamp(26px, 3.2vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 190px;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.why-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(26, 26, 26, .10);
}

.why-card h3 {
  margin: 0;
  font-family: var(--font-eyebrow);
  font-size: 20px;
  color: var(--red);
}

.why-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(26, 26, 26, .66);
}

/* ---------- Franchise: enquire section ---------- */

.enquire-section { background: var(--ink); color: var(--cream); }

.enquire-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 64px);
}

@media (min-width: 860px) { .enquire-grid { grid-template-columns: 1fr 1fr; } }

.enquire-copy { display: flex; flex-direction: column; gap: 22px; }
.enquire-copy .head { display: flex; flex-direction: column; gap: 12px; }

.enquire-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.08;
  color: var(--cream);
}

.get-list { display: flex; flex-direction: column; gap: 2px; }

.get-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 248, 240, .12);
}

.get-item .dash { color: var(--red); font-size: 18px; line-height: 1.4; flex: none; }
.get-item .text { font-size: 15px; line-height: 1.55; color: rgba(255, 248, 240, .82); }

.enquire-form-card {
  background: var(--cream);
  border-radius: 22px;
  padding: clamp(26px, 3.4vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.enquire-form-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--ink);
}

.enquire-form { display: flex; flex-direction: column; gap: 13px; }

.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(26, 26, 26, .18);
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
  font-family: var(--font-body);
}

.form-textarea { resize: vertical; }

.form-submit {
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--cream);
  background: var(--red);
  border: none;
  padding: 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .18s, color .18s;
}

.form-submit:hover { background: var(--ink); color: var(--cream); }

.form-hint { font-size: 12px; color: rgba(26, 26, 26, .5); line-height: 1.5; }

.form-success {
  background: rgba(255, 0, 56, .08);
  border: 1px solid var(--red);
  border-radius: 14px;
  padding: 22px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 26px);
}

@media (min-width: 820px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }

.location-card {
  background: #fff;
  border: 1.5px solid rgba(26, 26, 26, .1);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(26, 26, 26, .12);
}

.location-card .map {
  aspect-ratio: 16 / 9;
  background: #f0e6db;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.location-card .map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, #e9ddcf 0 14px, #f0e6db 14px 28px);
}

.location-card .map span {
  position: relative;
  font-family: var(--font-eyebrow);
  font-size: 13px;
  letter-spacing: .08em;
  color: rgba(26, 26, 26, .5);
}

.location-card .body {
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
}

.location-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 26, 26, .66);
}

.details-col { display: flex; flex-direction: column; gap: clamp(18px, 2.4vw, 26px); }

.info-card {
  background: #fff;
  border: 1.5px solid rgba(26, 26, 26, .1);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(26, 26, 26, .12);
}

.info-card .col-title {
  font-family: var(--font-eyebrow);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, .45);
}

.contact-links { display: flex; flex-direction: column; gap: 12px; }

.contact-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  transition: color .15s;
}

.contact-link:hover { color: var(--red); }

.contact-link .icon {
  width: 38px;
  height: 38px;
  flex: none;
  border: 1px solid rgba(26, 26, 26, .16);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
}

.contact-link .value { font-size: 15px; }
