@import url("https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Noto+Serif+KR:wght@500;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");

:root {
  --bb-yellow: #ffe001;
  --bb-orange: #e9471a;
  --bb-ink: #333333;
  --bb-charcoal: #57585a;
  --bb-white: #ffffff;
  --bb-soft: #f2eeed;
  --bb-line: rgba(51, 51, 51, 0.16);
  --bb-font: "Pretendard", "Noto Sans KR", sans-serif;
  --bb-serif: "Noto Serif KR", serif;
  --bb-display: "Black Han Sans", "Pretendard", sans-serif;
  --bb-header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--bb-ink);
  background: var(--bb-white);
  font-family: var(--bb-font);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.bb-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.bb-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bb-icon {
  width: 19px;
  height: 19px;
  stroke-width: 2;
  flex: 0 0 auto;
}

.bb-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--bb-ink);
  border-radius: 4px;
  background: var(--bb-yellow);
  color: var(--bb-ink);
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.bb-button:hover,
.bb-button:focus-visible {
  transform: translateY(-2px);
  background: var(--bb-white);
}

.bb-button--dark {
  background: var(--bb-ink);
  color: var(--bb-white);
  border-color: var(--bb-ink);
}

.bb-button--dark:hover,
.bb-button--dark:focus-visible {
  color: var(--bb-ink);
  background: var(--bb-yellow);
}

.bb-button--outline {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.bb-button--white {
  background: var(--bb-white);
  color: var(--bb-ink);
  border-color: var(--bb-white);
}

.bb-button--orange {
  background: var(--bb-orange);
  color: var(--bb-white);
  border-color: var(--bb-orange);
}

.bb-icon-button {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
}

.bb-icon-button svg {
  width: 23px;
  height: 23px;
}

.bb-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: var(--bb-orange);
  font-size: 13px;
  font-weight: 800;
}

.bb-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  background: currentColor;
}

.bb-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.bb-section-head h2 {
  margin-bottom: 0;
  max-width: 720px;
  font-size: 40px;
  line-height: 1.22;
  font-weight: 800;
}

.bb-section-head p {
  max-width: 460px;
  margin-bottom: 4px;
  color: rgba(51, 51, 51, 0.72);
}

.bb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--bb-header);
}

.bb-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bb-logo {
  width: 138px;
  min-height: 44px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.bb-logo img {
  width: 100%;
  height: auto;
}

.bb-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.bb-nav a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}

.bb-nav a:hover,
.bb-nav a:focus-visible {
  border-color: var(--bb-yellow);
}

.bb-header__actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.bb-menu-button {
  display: none;
}

.bb-mobile-nav {
  display: none;
  position: fixed;
  top: var(--bb-header);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 48;
  padding: 22px 20px 36px;
  background: var(--bb-white);
  color: var(--bb-ink);
  overflow-y: auto;
}

.bb-mobile-nav.is-open {
  display: block;
}

.bb-mobile-nav a {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--bb-line);
  font-size: 19px;
  font-weight: 800;
}

.bb-mobile-nav__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
}

.bb-preview-switcher {
  position: fixed;
  top: 96px;
  right: 16px;
  z-index: 60;
  display: flex;
  padding: 4px;
  border: 1px solid rgba(51, 51, 51, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--bb-ink);
}

.bb-preview-switcher a {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 0 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
}

.bb-preview-switcher a.is-current {
  background: var(--bb-ink);
  color: var(--bb-white);
}

.bb-footer {
  background: var(--bb-ink);
  color: var(--bb-white);
  padding: 52px 0 34px;
}

.bb-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.bb-footer__logo {
  width: 150px;
  margin-bottom: 18px;
}

.bb-footer h3 {
  margin-bottom: 13px;
  font-size: 14px;
}

.bb-footer p,
.bb-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.bb-footer__links {
  display: grid;
  gap: 7px;
}

.bb-footer__links a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.bb-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.bb-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bb-field {
  display: grid;
  gap: 7px;
}

.bb-field--full {
  grid-column: 1 / -1;
}

.bb-field label {
  font-size: 13px;
  font-weight: 700;
}

.bb-field input,
.bb-field select,
.bb-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(51, 51, 51, 0.28);
  border-radius: 4px;
  background: var(--bb-white);
  color: var(--bb-ink);
}

.bb-field textarea {
  min-height: 116px;
  resize: vertical;
}

.bb-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
}

.bb-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--bb-orange);
}

.bb-form__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.bb-form__status {
  min-height: 24px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.bb-accordion {
  border-top: 1px solid var(--bb-line);
}

.bb-faq {
  border-bottom: 1px solid var(--bb-line);
}

.bb-faq__button {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  font-weight: 800;
}

.bb-faq__button svg {
  width: 20px;
  height: 20px;
  transition: transform 160ms ease;
}

.bb-faq__button[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.bb-faq__panel {
  padding: 0 48px 20px 0;
  color: rgba(51, 51, 51, 0.72);
}

.bb-faq__panel[hidden] {
  display: none;
}

/* Option A */
.option-a .bb-header {
  background: var(--bb-charcoal);
  color: var(--bb-white);
}

.option-a .bb-logo img,
.option-b .bb-hero-logo,
.option-b .bb-footer__logo,
.option-a .bb-footer__logo {
  filter: none;
}

.option-a .bb-header .bb-logo img {
  filter: brightness(0) invert(1);
}

.option-a .bb-header .bb-button {
  border-color: var(--bb-yellow);
}

.a-hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background-image: url("assets/store-recent-03.jpg");
  background-position: center;
  background-size: cover;
  color: var(--bb-white);
}

.a-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.52);
}

.a-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 76px;
}

.a-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--bb-yellow);
  font-size: 14px;
  font-weight: 800;
}

.a-hero__label::before {
  content: "";
  width: 30px;
  height: 3px;
  background: currentColor;
}

.a-hero h1 {
  margin-bottom: 18px;
  font-size: 74px;
  line-height: 1.02;
  font-weight: 900;
}

.a-hero__copy {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 600;
}

.a-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.a-route {
  padding: 70px 0 78px;
  background: var(--bb-yellow);
}

.a-route .bb-kicker {
  color: var(--bb-ink);
}

.a-route__intro {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 34px;
}

.a-route__intro h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.22;
}

.a-route__intro p {
  margin-bottom: 6px;
  font-weight: 600;
}

.a-route__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.a-route-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--bb-ink);
  border-radius: 6px;
  background: var(--bb-white);
}

.a-route-card--image {
  position: relative;
  overflow: hidden;
  color: var(--bb-white);
  background-image: url("assets/shop-in-shop.jpg");
  background-position: center;
  background-size: cover;
}

.a-route-card--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.64);
}

.a-route-card--image > * {
  position: relative;
  z-index: 1;
}

.a-route-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.a-route-card__icon svg {
  width: 24px;
  height: 24px;
}

.a-route-card h3 {
  margin: 38px 0 8px;
  font-size: 26px;
  line-height: 1.25;
}

.a-route-card p {
  max-width: 480px;
  margin-bottom: 22px;
  color: inherit;
}

.a-route-card__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.a-route-card__link svg {
  width: 18px;
  height: 18px;
}

.a-menu {
  padding: 90px 0;
  background: var(--bb-white);
}

.a-filter {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--bb-line);
  border-radius: 6px;
  background: var(--bb-soft);
}

.a-filter button {
  min-height: 44px;
  padding: 0 15px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--bb-ink);
  font-size: 13px;
  font-weight: 800;
}

.a-filter button.is-active {
  background: var(--bb-ink);
  color: var(--bb-white);
}

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

.a-menu-card {
  min-width: 0;
  border: 1px solid var(--bb-line);
  border-radius: 6px;
  background: var(--bb-white);
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease;
}

.a-menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--bb-ink);
}

.a-menu-card[hidden] {
  display: none;
}

.a-menu-card__media {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 18px;
  background: var(--bb-soft);
}

.a-menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.a-menu-card__body {
  padding: 18px;
}

.a-menu-card__type {
  color: var(--bb-orange);
  font-size: 12px;
  font-weight: 800;
}

.a-menu-card h3 {
  margin: 5px 0 0;
  font-size: 20px;
}

.a-stores {
  padding: 88px 0;
  background: var(--bb-charcoal);
  color: var(--bb-white);
}

.a-stores .bb-kicker {
  color: var(--bb-yellow);
}

.a-stores .bb-section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.a-store-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.a-store-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.a-store-filter button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: transparent;
  color: var(--bb-white);
  font-size: 13px;
  font-weight: 700;
}

.a-store-filter button.is-active {
  background: var(--bb-yellow);
  color: var(--bb-ink);
  border-color: var(--bb-yellow);
}

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

.a-store-card {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bb-ink);
}

.a-store-card[hidden] {
  display: none;
}

.a-store-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.a-store-card__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 17px 18px;
  background: rgba(51, 51, 51, 0.9);
}

.a-store-card__caption span {
  display: block;
  color: var(--bb-yellow);
  font-size: 12px;
  font-weight: 800;
}

.a-store-card__caption strong {
  font-size: 19px;
}

.a-process {
  padding: 90px 0;
  background: var(--bb-soft);
}

.a-process__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 2px solid var(--bb-ink);
}

.a-process__item {
  min-height: 190px;
  padding: 20px 16px 18px 0;
  border-right: 1px solid var(--bb-line);
}

.a-process__item:last-child {
  border-right: 0;
}

.a-process__item span {
  display: block;
  margin-bottom: 36px;
  color: var(--bb-orange);
  font-size: 12px;
  font-weight: 800;
}

.a-process__item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.a-process__item p {
  margin-bottom: 0;
  color: rgba(51, 51, 51, 0.68);
  font-size: 13px;
}

.a-faq-section {
  padding: 90px 0;
}

.a-faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 76px;
}

.a-faq-layout h2 {
  font-size: 40px;
  line-height: 1.24;
}

.a-inquiry {
  padding: 88px 0;
  background: var(--bb-yellow);
}

.a-inquiry__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 76px;
  align-items: start;
}

.a-inquiry h2 {
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1.2;
}

.a-inquiry__tel {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 22px;
  font-weight: 900;
}

/* Option B */
.option-b {
  background: #ffffff;
}

.option-b .bb-header {
  background: rgba(255, 255, 255, 0.96);
  color: var(--bb-ink);
  border-bottom: 1px solid var(--bb-line);
}

.option-b .bb-header .bb-logo img,
.preview-index__brand img {
  filter: brightness(0);
}

.option-b .bb-nav a:hover,
.option-b .bb-nav a:focus-visible {
  border-color: var(--bb-orange);
}

.b-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: end;
  background-image: url("assets/store-01.jpg");
  background-size: cover;
  background-position: center;
  color: var(--bb-white);
}

.b-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.58);
}

.b-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 68px;
}

.b-hero__content::before {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-bottom: 22px;
  background: var(--bb-yellow);
}

.b-hero h1 {
  margin-bottom: 18px;
  font-family: var(--bb-serif);
  font-size: 72px;
  line-height: 1.12;
  font-weight: 700;
}

.b-hero blockquote {
  max-width: 720px;
  margin-bottom: 28px;
  font-family: var(--bb-serif);
  font-size: 24px;
  line-height: 1.65;
}

.b-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
}

.b-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.b-story {
  padding: 110px 0;
}

.b-story__lead {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 82px;
  margin-bottom: 80px;
  align-items: start;
}

.b-story__lead h2 {
  margin-bottom: 0;
  font-family: var(--bb-serif);
  font-size: 48px;
  line-height: 1.35;
  font-weight: 600;
}

.b-story__copy {
  padding-top: 10px;
  border-top: 1px solid var(--bb-ink);
}

.b-story__copy p {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.85;
}

.b-story__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--bb-line);
}

.b-story__fact {
  min-height: 180px;
  padding: 23px 24px 20px 0;
  border-right: 1px solid var(--bb-line);
}

.b-story__fact:last-child {
  border-right: 0;
  padding-left: 24px;
}

.b-story__fact:nth-child(2) {
  padding-left: 24px;
}

.b-story__fact span {
  display: block;
  margin-bottom: 42px;
  color: var(--bb-orange);
  font-size: 12px;
  font-weight: 800;
}

.b-story__fact strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--bb-serif);
  font-size: 22px;
}

.b-story__fact p {
  margin: 0;
  color: rgba(51, 51, 51, 0.68);
  font-size: 13px;
}

.b-menu {
  padding: 100px 0;
  background: var(--bb-soft);
}

.b-menu__header {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  margin-bottom: 42px;
}

.b-menu__header h2 {
  font-family: var(--bb-serif);
  font-size: 48px;
  line-height: 1.3;
}

.b-menu__header p {
  padding-top: 13px;
  border-top: 1px solid var(--bb-ink);
  font-size: 17px;
  line-height: 1.8;
}

.b-menu-row {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  min-height: 430px;
  border-top: 1px solid var(--bb-line);
}

.b-menu-row:nth-child(even) {
  grid-template-columns: 0.72fr 1fr;
}

.b-menu-row:nth-child(even) .b-menu-row__media {
  order: 2;
}

.b-menu-row__media {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 30px;
  background: var(--bb-white);
}

.b-menu-row__media img {
  width: min(360px, 88%);
  height: 360px;
  object-fit: contain;
}

.b-menu-row__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.b-menu-row__copy span {
  color: var(--bb-orange);
  font-size: 12px;
  font-weight: 800;
}

.b-menu-row__copy h3 {
  margin: 10px 0 18px;
  font-family: var(--bb-serif);
  font-size: 34px;
  line-height: 1.3;
}

.b-menu-row__copy p {
  max-width: 440px;
  color: rgba(51, 51, 51, 0.7);
}

.b-spaces {
  padding: 100px 0;
  background: var(--bb-ink);
  color: var(--bb-white);
}

.b-spaces__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 38px;
}

.b-spaces__head h2 {
  margin-bottom: 0;
  font-family: var(--bb-serif);
  font-size: 48px;
  line-height: 1.28;
}

.b-spaces__head p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.b-space-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 260px 260px;
  gap: 10px;
}

.b-space-photo {
  position: relative;
  overflow: hidden;
}

.b-space-photo:first-child {
  grid-row: 1 / 3;
}

.b-space-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.b-space-photo:hover img {
  transform: scale(1.02);
}

.b-space-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 13px 15px;
  background: rgba(51, 51, 51, 0.88);
  font-size: 13px;
}

.b-franchise {
  padding: 110px 0;
  background: var(--bb-yellow);
}

.b-franchise__layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 84px;
}

.b-franchise h2 {
  font-family: var(--bb-serif);
  font-size: 48px;
  line-height: 1.28;
}

.b-franchise__intro p {
  font-size: 17px;
}

.b-franchise__list {
  border-top: 1px solid var(--bb-ink);
}

.b-franchise__step {
  display: grid;
  grid-template-columns: 70px 170px 1fr;
  gap: 20px;
  min-height: 112px;
  align-items: center;
  border-bottom: 1px solid rgba(51, 51, 51, 0.35);
}

.b-franchise__step span {
  color: var(--bb-orange);
  font-weight: 800;
}

.b-franchise__step strong {
  font-size: 18px;
}

.b-franchise__step p {
  margin: 0;
  font-size: 14px;
}

.b-faq {
  padding: 96px 0;
}

.b-faq__layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 84px;
}

.b-faq h2 {
  font-family: var(--bb-serif);
  font-size: 42px;
}

.b-inquiry {
  padding: 100px 0;
  background: var(--bb-charcoal);
  color: var(--bb-white);
}

.b-inquiry__layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 84px;
}

.b-inquiry h2 {
  font-family: var(--bb-serif);
  font-size: 48px;
  line-height: 1.3;
}

.b-inquiry p {
  color: rgba(255, 255, 255, 0.74);
}

.b-inquiry .bb-field input,
.b-inquiry .bb-field select,
.b-inquiry .bb-field textarea {
  border-color: rgba(255, 255, 255, 0.42);
}

.b-inquiry .bb-form__status {
  color: var(--bb-yellow);
}

/* Option C */
.option-c {
  background: var(--bb-white);
}

.option-c .bb-header {
  background: var(--bb-yellow);
  color: var(--bb-ink);
  border-bottom: 1px solid var(--bb-ink);
}

.option-c .bb-header .bb-logo img {
  filter: brightness(0);
}

.option-c .bb-footer__logo {
  filter: brightness(0) invert(1);
}

.option-c .bb-nav a:hover,
.option-c .bb-nav a:focus-visible {
  border-color: var(--bb-orange);
}

.c-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background-image: url("assets/store-recent-gunpo.jpg");
  background-position: center 40%;
  background-size: cover;
  color: var(--bb-white);
}

.c-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.58);
}

.c-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 108px;
  padding-bottom: 50px;
}

.c-hero__copy {
  max-width: 760px;
}

.c-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 4px;
  background: var(--bb-yellow);
  color: var(--bb-ink);
  font-weight: 800;
}

.c-hero h1 {
  margin-bottom: 12px;
  font-family: var(--bb-display);
  font-size: 92px;
  line-height: 1.05;
  font-weight: 400;
}

.c-hero__copy > p:not(.c-hero__eyebrow) {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 650;
}

.c-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.c-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(51, 51, 51, 0.84);
  overflow: hidden;
}

.c-hero__facts span {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.c-hero__facts span:last-child {
  border-right: 0;
}

.c-hero__facts svg {
  width: 22px;
  height: 22px;
  color: var(--bb-yellow);
}

.c-route {
  padding: 92px 0;
  background: var(--bb-soft);
}

.c-route__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.c-route__head h2,
.c-section-head h2,
.c-store-picker h2,
.c-prepare h2,
.c-faq h2,
.c-inquiry h2 {
  margin-bottom: 0;
  font-family: var(--bb-display);
  font-size: 44px;
  line-height: 1.2;
  font-weight: 400;
}

.c-route-tabs {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  border: 1px solid var(--bb-ink);
  border-radius: 6px;
  background: var(--bb-white);
}

.c-route-tabs button {
  min-height: 48px;
  padding: 0 15px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--bb-ink);
  font-size: 14px;
  font-weight: 800;
}

.c-route-tabs button.is-active {
  background: var(--bb-ink);
  color: var(--bb-white);
}

.c-route-panel {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 42px;
  padding: 30px;
  border: 2px solid var(--bb-ink);
  border-radius: 8px;
  background: var(--bb-yellow);
}

.c-route-panel[hidden] {
  display: none;
}

.c-route-panel__title {
  display: flex;
  align-items: center;
  gap: 17px;
}

.c-route-panel__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--bb-ink);
  border-radius: 8px;
  background: var(--bb-white);
}

.c-route-panel__icon svg {
  width: 28px;
  height: 28px;
}

.c-route-panel__title small {
  font-weight: 800;
}

.c-route-panel__title h3 {
  margin: 3px 0 0;
  font-size: 25px;
  line-height: 1.35;
}

.c-route-panel__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-route-panel__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
}

.c-route-panel__list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.c-menu {
  padding: 96px 0;
  background: var(--bb-charcoal);
  color: var(--bb-white);
}

.c-menu .bb-kicker,
.c-inquiry .bb-kicker {
  color: var(--bb-yellow);
}

.c-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.c-section-head > div:first-child {
  max-width: 760px;
}

.c-section-head p {
  max-width: 700px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.c-rail-controls {
  display: flex;
  gap: 8px;
}

.c-rail-controls button {
  color: var(--bb-white);
}

.c-rail-controls button:disabled {
  cursor: default;
  opacity: 0.36;
}

.c-menu-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 32%;
  gap: 14px;
  padding-bottom: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--bb-yellow) rgba(255, 255, 255, 0.18);
}

.c-menu-item {
  min-width: 0;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: var(--bb-white);
  color: var(--bb-ink);
  overflow: hidden;
}

.c-menu-item__media {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 18px;
  background: var(--bb-soft);
}

.c-menu-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-menu-item > div:last-child {
  padding: 18px 20px 20px;
}

.c-menu-item span {
  color: var(--bb-orange);
  font-size: 13px;
  font-weight: 800;
}

.c-menu-item h3 {
  margin: 4px 0 0;
  font-size: 22px;
}

.c-stores {
  padding: 100px 0;
  background: var(--bb-white);
}

.c-stores__layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 54px;
  align-items: center;
}

.c-store-stage {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  background: var(--bb-ink);
  overflow: hidden;
}

.c-store-stage img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: opacity 160ms ease;
}

.c-store-stage__caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 10px 16px;
  border-radius: 6px;
  background: rgba(51, 51, 51, 0.9);
  color: var(--bb-white);
}

.c-store-stage__caption span {
  color: var(--bb-yellow);
  font-size: 13px;
  font-weight: 800;
}

.c-store-picker > p {
  margin: 17px 0 28px;
  color: rgba(51, 51, 51, 0.7);
}

.c-store-picker__list {
  border-top: 1px solid var(--bb-ink);
}

.c-store-picker__list button {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 58px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--bb-line);
  background: transparent;
  color: var(--bb-ink);
  text-align: left;
}

.c-store-picker__list button.is-active {
  background: var(--bb-yellow);
  padding-inline: 12px;
}

.c-store-picker__list button span {
  color: var(--bb-orange);
  font-size: 12px;
  font-weight: 800;
}

.c-store-picker__list button strong {
  font-size: 17px;
}

.c-store-picker__list button svg {
  width: 20px;
  height: 20px;
}

.c-prepare {
  padding: 86px 0;
  background: var(--bb-yellow);
}

.c-prepare .bb-kicker {
  color: var(--bb-ink);
}

.c-prepare__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 76px;
  align-items: start;
}

.c-prepare__layout > div > p {
  margin: 16px 0 0;
  font-weight: 650;
}

.c-prepare__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--bb-ink);
  list-style: none;
}

.c-prepare__list li {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.34);
}

.c-prepare__list li:nth-child(odd) {
  border-right: 1px solid rgba(51, 51, 51, 0.34);
}

.c-prepare__list li:nth-child(even) {
  padding-left: 18px;
}

.c-prepare__list svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.c-prepare__list span,
.c-prepare__list strong {
  display: block;
}

.c-prepare__list span {
  font-size: 13px;
}

.c-prepare__list strong {
  margin-bottom: 2px;
  font-size: 17px;
}

.c-faq {
  padding: 92px 0;
  background: var(--bb-soft);
}

.c-faq__layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 76px;
}

.c-inquiry {
  padding: 92px 0;
  background: var(--bb-charcoal);
  color: var(--bb-white);
}

.c-inquiry__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 76px;
}

.c-inquiry__intro > p {
  margin: 17px 0 24px;
  color: rgba(255, 255, 255, 0.72);
}

.c-inquiry__phone {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.c-inquiry__phone svg {
  width: 28px;
  height: 28px;
  color: var(--bb-yellow);
}

.c-inquiry__phone span,
.c-inquiry__phone strong {
  display: block;
}

.c-inquiry__phone span {
  font-size: 12px;
}

.c-inquiry__phone strong {
  font-size: 22px;
}

.c-inquiry .bb-field input,
.c-inquiry .bb-field select,
.c-inquiry .bb-field textarea {
  border-color: rgba(255, 255, 255, 0.42);
}

.c-inquiry .bb-form__status {
  color: var(--bb-yellow);
}

/* Index */
.preview-index {
  min-height: 100vh;
  background: var(--bb-soft);
}

.preview-index__header {
  min-height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--bb-line);
  background: var(--bb-white);
}

.preview-index__header .bb-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.preview-index__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.preview-index__brand img {
  width: 112px;
}

.preview-index__brand span {
  padding-left: 14px;
  border-left: 1px solid var(--bb-line);
  color: rgba(51, 51, 51, 0.64);
  font-size: 13px;
}

.preview-index__main {
  padding: 52px 0 70px;
}

.preview-index__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.preview-index__intro h1 {
  margin-bottom: 8px;
  font-size: 38px;
  line-height: 1.25;
}

.preview-index__intro p {
  margin-bottom: 0;
  color: rgba(51, 51, 51, 0.67);
}

.preview-index__legend {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.preview-index__legend span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--bb-line);
  border-radius: 4px;
  background: var(--bb-white);
  font-size: 12px;
  font-weight: 700;
}

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

.preview-proposal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 36px;
  padding: 30px 0;
  border-top: 1px solid var(--bb-line);
  border-bottom: 1px solid var(--bb-line);
}

.preview-proposal h2 {
  margin: 4px 0 6px;
  font-size: 25px;
}

.preview-proposal p {
  margin: 0;
  color: rgba(51, 51, 51, 0.67);
}

.preview-proposal .bb-button {
  flex: 0 0 auto;
}

.preview-card {
  border: 1px solid var(--bb-line);
  border-radius: 8px;
  background: var(--bb-white);
  overflow: hidden;
}

.preview-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bb-ink);
}

.preview-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.preview-card:hover .preview-card__media img {
  transform: scale(1.02);
}

.preview-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--bb-yellow);
  color: var(--bb-ink);
  font-size: 12px;
  font-weight: 800;
}

.preview-card__body {
  padding: 22px;
}

.preview-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.preview-card__meta span {
  color: var(--bb-orange);
  font-size: 12px;
  font-weight: 800;
}

.preview-card h2 {
  margin-bottom: 9px;
  font-size: 26px;
}

.preview-card p {
  min-height: 52px;
  color: rgba(51, 51, 51, 0.68);
  font-size: 14px;
}

.preview-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 22px;
}

.preview-card__tags span {
  padding: 5px 8px;
  border: 1px solid var(--bb-line);
  border-radius: 3px;
  background: var(--bb-soft);
  font-size: 11px;
  font-weight: 700;
}

.preview-card__button {
  width: 100%;
}

@media (max-width: 1100px) {
  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .bb-nav {
    gap: 18px;
  }

  .bb-nav a {
    font-size: 13px;
  }

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

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

  .a-store-card:last-child {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .a-store-card:last-child img {
    min-height: 360px;
  }

  .a-process__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .a-process__item:nth-child(3) {
    border-right: 0;
  }

  .b-menu-row,
  .b-menu-row:nth-child(even) {
    grid-template-columns: 1fr 1fr;
  }

  .c-route-panel {
    grid-template-columns: 1fr 1fr;
  }

  .c-route-panel .bb-button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .c-stores__layout {
    gap: 34px;
  }

  .c-menu-rail {
    grid-auto-columns: 42%;
  }
}

@media (max-width: 820px) {
  :root {
    --bb-header: 68px;
  }

  .bb-nav,
  .bb-header__actions .bb-button {
    display: none;
  }

  .bb-menu-button {
    display: inline-grid;
  }

  .bb-preview-switcher {
    top: auto;
    right: 10px;
    bottom: 10px;
  }

  .bb-section-head,
  .a-store-toolbar,
  .preview-index__intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .bb-section-head {
    display: flex;
  }

  .bb-section-head h2 {
    font-size: 34px;
  }

  .a-route__intro,
  .a-faq-layout,
  .a-inquiry__layout,
  .b-story__lead,
  .b-menu__header,
  .b-spaces__head,
  .b-franchise__layout,
  .b-faq__layout,
  .b-inquiry__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .c-route__head,
  .c-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .c-route__head {
    display: flex;
  }

  .c-route-panel,
  .c-stores__layout,
  .c-prepare__layout,
  .c-faq__layout,
  .c-inquiry__layout {
    grid-template-columns: 1fr;
  }

  .c-route-panel {
    gap: 26px;
  }

  .c-route-panel .bb-button {
    grid-column: auto;
  }

  .c-menu-rail {
    grid-auto-columns: 62%;
  }

  .c-store-stage,
  .c-store-stage img {
    min-height: 500px;
    height: 500px;
  }

  .a-process__list {
    grid-template-columns: 1fr 1fr;
  }

  .a-process__item:nth-child(3) {
    border-right: 1px solid var(--bb-line);
  }

  .a-process__item:nth-child(even) {
    border-right: 0;
  }

  .b-story__lead {
    margin-bottom: 54px;
  }

  .b-menu-row,
  .b-menu-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .b-menu-row:nth-child(even) .b-menu-row__media {
    order: 0;
  }

  .b-space-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 240px;
  }

  .b-space-photo:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

@media (max-width: 620px) {
  .bb-logo {
    width: 118px;
  }

  .bb-mobile-nav__actions,
  .bb-form {
    grid-template-columns: 1fr;
  }

  .bb-field--full,
  .bb-check,
  .bb-form__actions {
    grid-column: auto;
  }

  .bb-form__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .bb-form__actions .bb-button {
    width: 100%;
  }

  .bb-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bb-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .a-hero {
    min-height: 610px;
    background-position: 63% center;
  }

  .a-hero__inner {
    padding-top: 92px;
    padding-bottom: 56px;
  }

  .a-hero h1 {
    font-size: 52px;
  }

  .a-hero__copy {
    font-size: 17px;
  }

  .a-hero__actions .bb-button {
    width: 100%;
  }

  .a-route,
  .a-menu,
  .a-stores,
  .a-process,
  .a-faq-section,
  .a-inquiry,
  .b-story,
  .b-menu,
  .b-spaces,
  .b-franchise,
  .b-faq,
  .b-inquiry {
    padding: 68px 0;
  }

  .c-route,
  .c-menu,
  .c-stores,
  .c-prepare,
  .c-faq,
  .c-inquiry {
    padding: 68px 0;
  }

  .a-route__intro h2,
  .a-faq-layout h2,
  .a-inquiry h2,
  .b-story__lead h2,
  .b-menu__header h2,
  .b-spaces__head h2,
  .b-franchise h2,
  .b-faq h2,
  .b-inquiry h2 {
    font-size: 36px;
  }

  .c-route__head h2,
  .c-section-head h2,
  .c-store-picker h2,
  .c-prepare h2,
  .c-faq h2,
  .c-inquiry h2 {
    font-size: 36px;
  }

  .c-hero {
    min-height: 700px;
    background-position: 52% center;
  }

  .c-hero__inner {
    padding-top: 78px;
    padding-bottom: 28px;
  }

  .c-hero h1 {
    font-size: 58px;
  }

  .c-hero__copy > p:not(.c-hero__eyebrow) {
    font-size: 17px;
  }

  .c-hero__actions .bb-button {
    width: 100%;
  }

  .c-hero__facts {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .c-hero__facts span {
    min-height: 48px;
    justify-content: flex-start;
    padding: 7px 13px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  }

  .c-hero__facts span:last-child {
    border-bottom: 0;
  }

  .c-route-tabs {
    width: 100%;
  }

  .c-route-panel {
    padding: 22px;
  }

  .c-route-panel__title {
    align-items: flex-start;
  }

  .c-route-panel__title h3 {
    font-size: 21px;
  }

  .c-route-panel .bb-button {
    width: 100%;
  }

  .c-menu-rail {
    grid-auto-columns: 84%;
  }

  .c-store-stage,
  .c-store-stage img {
    min-height: 390px;
    height: 390px;
  }

  .c-store-stage__caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .c-prepare__list {
    grid-template-columns: 1fr;
  }

  .c-prepare__list li,
  .c-prepare__list li:nth-child(odd),
  .c-prepare__list li:nth-child(even) {
    min-height: 90px;
    padding: 13px 0;
    border-right: 0;
  }

  .a-route__grid,
  .a-menu__grid,
  .a-store-grid,
  .a-process__list,
  .b-story__facts {
    grid-template-columns: 1fr;
  }

  .a-route-card {
    min-height: 250px;
    padding: 22px;
  }

  .a-menu-card__media {
    aspect-ratio: 4 / 3;
  }

  .a-store-card,
  .a-store-card:last-child,
  .a-store-card img,
  .a-store-card:last-child img {
    min-height: 400px;
  }

  .a-process__item,
  .a-process__item:nth-child(3),
  .a-process__item:nth-child(even) {
    min-height: 140px;
    border-right: 0;
  }

  .a-process__item span {
    margin-bottom: 18px;
  }

  .b-hero {
    min-height: 620px;
    background-position: 42% center;
  }

  .b-hero h1 {
    font-size: 52px;
  }

  .b-hero blockquote {
    font-size: 19px;
  }

  .b-story__fact,
  .b-story__fact:nth-child(2),
  .b-story__fact:last-child {
    min-height: 144px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--bb-line);
  }

  .b-story__fact span {
    margin-bottom: 20px;
  }

  .b-menu-row__media,
  .b-menu-row {
    min-height: 330px;
  }

  .b-menu-row__media img {
    height: 280px;
  }

  .b-menu-row__copy {
    padding: 30px 20px 42px;
  }

  .b-space-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 300px);
  }

  .b-space-photo:first-child {
    grid-column: auto;
  }

  .b-franchise__step {
    grid-template-columns: 46px 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .b-franchise__step p {
    grid-column: 2;
  }

  .preview-index__header {
    min-height: 64px;
  }

  .preview-index__brand span {
    display: none;
  }

  .preview-index__main {
    padding: 36px 0 54px;
  }

  .preview-index__intro h1 {
    font-size: 31px;
  }

  .preview-proposal {
    align-items: stretch;
    flex-direction: column;
    padding: 24px 0;
  }

  .preview-proposal .bb-button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
