:root {
  --ink: #09283d;
  --muted: #637d8f;
  --paper: #f7fbfe;
  --panel: #ffffff;
  --soft-blue: #e7f7ff;
  --pale-blue: #eefaff;
  --vanilla-foam: #f7efe2;
  --vanilla-foam-deep: #efe0ca;
  --accent: #00a5df;
  --accent-strong: #006ca8;
  --navy: #05273f;
  --coffee: #c18b5b;
  --line: rgba(12, 88, 130, 0.14);
  --shadow: 0 22px 58px rgba(7, 56, 86, 0.13);
  --radius: 8px;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fbfdff 0%, #f2f9fd 42%, #ffffff 100%);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(193, 139, 91, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(247, 239, 226, 0.98));
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 34px 56px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.brand {
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  filter: drop-shadow(0 7px 12px rgba(0, 80, 124, 0.12));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  color: var(--navy);
  font-size: 19px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0;
  color: #5f737f;
  font-size: 12px;
  font-weight: 700;
}

.header-tools a {
  position: relative;
  padding: 0 13px;
}

.header-tools a + a::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 10px;
  background: rgba(9, 40, 61, 0.18);
  transform: translateY(-50%);
  content: "";
}

.search-button {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-left: 12px;
  border: 1px solid rgba(193, 139, 91, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--accent-strong);
}

.main-nav {
  align-self: stretch;
  display: flex;
  justify-content: end;
  gap: 0;
  height: 100%;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-item > a {
  display: flex;
  align-items: center;
  min-width: 118px;
  padding: 0 18px;
  border-radius: 0;
  letter-spacing: 0;
  text-align: center;
}

.nav-item > a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}

.nav-item:hover > a,
.nav-item:focus-within > a {
  background: rgba(239, 224, 202, 0.88);
  color: var(--accent-strong);
}

.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
  transform: scaleX(1);
}

.mega-panel {
  position: absolute;
  left: 50%;
  top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 20px;
  min-width: 250px;
  max-width: 380px;
  padding: 18px 22px 20px;
  border-top: 1px solid rgba(193, 139, 91, 0.16);
  border-bottom: 1px solid rgba(193, 139, 91, 0.2);
  border-left: 1px solid rgba(193, 139, 91, 0.16);
  border-right: 1px solid rgba(193, 139, 91, 0.16);
  border-radius: 0 0 var(--radius) var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.99), rgba(247, 239, 226, 0.99));
  color: var(--navy);
  box-shadow: 0 16px 32px rgba(7, 56, 86, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-item:nth-last-child(-n + 2) .mega-panel {
  left: auto;
  right: 0;
  transform: translate(0, -8px);
}

.nav-item:nth-last-child(-n + 2):hover .mega-panel,
.nav-item:nth-last-child(-n + 2):focus-within .mega-panel {
  transform: translate(0, 0);
}

.mega-panel div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mega-panel strong {
  margin-bottom: 5px;
  color: var(--accent-strong);
  font-size: 14px;
}

.mega-panel a {
  color: #587384;
  font-size: 12px;
  font-weight: 700;
}

.mega-panel a:hover {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button,
.quick-links a,
.store-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--accent-strong);
}

.hero {
  position: relative;
  display: grid;
  min-height: 500px;
  overflow: hidden;
  background: #f8fdff;
  color: var(--navy);
}

.hero-carousel {
  display: block;
  min-height: 620px;
  background: #f8fdff;
}

.hero-brand {
  min-height: 500px;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 780ms ease, visibility 780ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero-slide-home .hero-media {
  position: absolute;
}

.hero-news-media,
.hero-news-overlay {
  position: absolute;
  inset: 0;
}

.hero-news-media {
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.015);
  transition: transform 7s ease;
}

.hero-slide-news.is-active .hero-news-media {
  transform: scale(1.06);
}

.hero-slide-dark .hero-news-overlay {
  background: linear-gradient(90deg, rgba(5, 29, 27, 0.88), rgba(5, 29, 27, 0.55) 48%, rgba(5, 29, 27, 0.12));
}

.hero-slide-light .hero-news-overlay {
  background: linear-gradient(90deg, rgba(255, 250, 238, 0.95), rgba(255, 250, 238, 0.68) 47%, rgba(255, 250, 238, 0.05));
}

.hero-news-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  padding-bottom: 72px;
}

.hero-news-copy {
  max-width: 610px;
}

.hero-news-meta {
  display: flex;
  gap: 16px;
  margin: 0 0 20px;
  color: #d9b365;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hero-slide-light .hero-news-meta {
  color: #b84d35;
}

.hero-news-meta time {
  opacity: 0.75;
}

.hero-news-copy h2 {
  margin: 0;
  color: white;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1.06;
  letter-spacing: -0.06em;
  word-break: keep-all;
}

.hero-slide-light .hero-news-copy h2 {
  color: #155b32;
}

.hero-news-copy > p:not(.hero-news-meta) {
  max-width: 540px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}

.hero-slide-light .hero-news-copy > p:not(.hero-news-meta) {
  color: #526853;
}

.hero-news-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.hero-slide-light .hero-news-copy > a {
  color: #155b32;
}

.hero-carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  color: #0a4e42;
  transform: translateX(-50%);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 5px 18px rgba(4, 42, 36, 0.12);
  backdrop-filter: blur(8px);
}

.hero-dots button {
  position: relative;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-dots button::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: rgba(10, 78, 66, 0.34);
  transition: inset 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.hero-dots button:hover::after,
.hero-dots button:focus-visible::after {
  background: rgba(8, 116, 95, 0.7);
}

.hero-dots button:focus-visible {
  outline: 2px solid #08745f;
  outline-offset: 1px;
  border-radius: 50%;
}

.hero-dots button.is-active::after {
  inset: 5px;
  background: #08745f;
  box-shadow: 0 0 0 3px rgba(8, 116, 95, 0.16);
}

.hero-news-label {
  position: absolute;
  right: 24px;
  bottom: 34px;
  z-index: 4;
  margin: 0;
  color: rgba(10, 78, 66, 0.62);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.news-feature-grid {
  display: grid;
  gap: 28px;
}

.news-feature-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
}

.news-feature-image {
  min-height: 390px;
  overflow: hidden;
}

.news-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.news-feature-card:hover .news-feature-image img {
  transform: scale(1.035);
}

.news-feature-copy {
  align-self: center;
  padding: clamp(34px, 6vw, 80px);
}

.news-feature-copy > p:first-child {
  display: flex;
  gap: 16px;
  margin: 0 0 20px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.news-feature-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.05em;
  word-break: keep-all;
}

.news-feature-copy > p:not(:first-child) {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.news-feature-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.news-notice-heading {
  margin-top: 90px;
}

.home-news-section {
  padding-top: 74px;
  padding-bottom: 86px;
  background:
    linear-gradient(135deg, #ffffff 0%, #ffffff 54%, rgba(231, 247, 255, 0.72) 54%, rgba(247, 239, 226, 0.42) 100%);
}

.home-news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--navy);
}

.home-news-heading h2 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 3.6vw, 50px);
  letter-spacing: -0.04em;
}

.home-news-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

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

.home-news-banner {
  display: grid;
  grid-template-columns: minmax(170px, 0.85fr) minmax(0, 1.15fr);
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(21, 152, 211, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(5, 39, 63, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-news-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(5, 39, 63, 0.12);
}

.home-news-image {
  min-height: 230px;
  overflow: hidden;
  background: #f7fbfe;
}

.home-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.home-news-banner:hover .home-news-image img {
  transform: scale(1.035);
}

.home-news-copy {
  display: grid;
  align-content: center;
  gap: 9px;
  padding: clamp(22px, 3vw, 34px);
}

.home-news-copy em {
  color: var(--accent-strong);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-news-copy strong {
  color: var(--navy);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.home-news-copy small {
  color: #0b624c;
  font-size: 13px;
  font-weight: 900;
}

.home-news-copy span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
}

@media (max-width: 900px) {
  .home-news-banners {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .home-news-heading {
    display: block;
  }

  .home-news-heading > a {
    margin-top: 18px;
  }

  .home-news-banner {
    grid-template-columns: 1fr;
  }

  .home-news-image {
    min-height: 210px;
  }
}

@media (max-width: 900px) {
  .hero-news-content {
    align-items: flex-end;
    padding-bottom: 120px;
  }

  .hero-news-copy {
    max-width: 620px;
  }

  .hero-news-label {
    display: none;
  }

  .news-feature-card {
    grid-template-columns: 1fr;
  }

  .news-feature-image {
    min-height: 330px;
  }
}

@media (max-width: 520px) {
  .hero-carousel,
  .hero-slide {
    min-height: 680px;
  }

  .hero-news-copy h2 {
    font-size: 46px;
  }

  .hero-news-copy > p:not(.hero-news-meta) {
    font-size: 15px;
  }

  .hero-carousel-controls {
    width: calc(100% - 28px);
    gap: 7px;
  }

  .hero-dots {
    display: none;
  }

  .news-feature-image {
    min-height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-news-media,
  .news-feature-image img {
    transition: none;
  }
}

.hero::after {
  content: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.98), rgba(255, 252, 246, 0.92) 34%, rgba(231, 247, 255, 0.34) 52%, rgba(255, 255, 255, 0) 74%),
    url("assets/mybox/wecafe-sign-hero.png") right center/auto 100% no-repeat,
    linear-gradient(160deg, rgba(255, 252, 246, 0.98) 0%, rgba(255, 252, 246, 0.98) 35%, rgba(231, 247, 255, 0.94) 35%, rgba(231, 247, 255, 0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(540px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 76px);
  padding: 30px 0 50px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-nowrap {
  white-space: nowrap;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #0078b8;
  text-shadow: none;
  animation: heroTextRise 720ms ease both;
}

.hero .eyebrow::after {
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 120, 184, 0.72), rgba(0, 120, 184, 0));
  content: "";
}

.hero h1 {
  margin: 0;
  color: #075f4c;
  font-size: clamp(50px, 5.7vw, 78px);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: none;
  animation: heroTextRise 820ms 80ms ease both;
}

.hero p {
  max-width: 560px;
  margin: 22px 0 0;
  color: #244c52;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
}

.hero-message {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  max-width: 500px;
  margin-top: 22px;
}

.hero-message p {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 0 0 0 18px;
  border-top: 0;
  border-left: 2px solid rgba(0, 120, 184, 0.36);
  color: #173d40;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  line-height: 1.72;
  text-shadow: none;
  animation: heroTextRise 820ms 180ms ease both;
}

.hero-message strong {
  display: block;
  margin-bottom: 5px;
  color: #075f4c;
  font-size: clamp(16px, 1.22vw, 19px);
  font-weight: 900;
  letter-spacing: 0;
}

.hero-message span {
  display: block;
  color: #244c52;
}

@keyframes heroTextRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-product-showcase {
  position: absolute;
  right: clamp(22px, 6vw, 92px);
  bottom: 68px;
  z-index: 1;
  width: min(360px, 32vw);
  height: 320px;
  pointer-events: none;
}

.hero-product-showcase::before {
  position: absolute;
  inset: 12% 4% 2%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.92), rgba(220, 246, 255, 0.32) 46%, transparent 68%);
  filter: blur(2px);
  content: "";
}

.hero-product-showcase img {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 26px 30px rgba(2, 26, 43, 0.3));
}

.hero-drink-main {
  left: 27%;
  bottom: 3%;
  width: 46%;
}

.hero-drink-blue {
  right: 0;
  bottom: 17%;
  width: 35%;
}

.hero-dessert {
  left: 0;
  bottom: 2%;
  width: 44%;
}

.button {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.button.primary {
  background: white;
  color: var(--accent-strong);
  box-shadow: 0 16px 36px rgba(0, 83, 128, 0.24);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: white;
}

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 24px;
  z-index: 1;
  width: min(320px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(246, 252, 255, 0.18);
  backdrop-filter: blur(16px);
}

.hero-note span {
  color: #9fe5ff;
  font-weight: 900;
}

.hero-note strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.hero-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: white;
}

.quick-links a {
  min-height: 92px;
  border-right: 1px solid var(--line);
  color: var(--accent-strong);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.quick-links a:hover {
  background: var(--navy);
  color: white;
}

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

.section,
.work-band,
.season-strip {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.season-strip {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.season-strip h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.08;
}

.season-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 900;
  white-space: nowrap;
}

.history-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.28fr) minmax(0, 0.72fr);
  align-items: center;
  gap: clamp(38px, 5vw, 76px);
  background:
    linear-gradient(135deg, #ffffff 0%, #ffffff 42%, rgba(231, 247, 255, 0.78) 42%, rgba(247, 239, 226, 0.62) 100%);
}

.history-poster {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 20px;
  background: #050505;
}

.history-poster img {
  width: min(280px, 90%);
  max-height: 320px;
  object-fit: contain;
}

.history-copy {
  max-width: 820px;
}

.history-copy h2 {
  max-width: none;
  color: var(--navy);
  font-size: clamp(34px, 3.6vw, 52px);
  white-space: nowrap;
}

.history-copy > p:not(.eyebrow) {
  max-width: 820px;
  margin: 24px 0 0;
  color: #244c52;
  font-size: clamp(15px, 1.18vw, 17px);
  font-weight: 700;
  line-height: 1.75;
}

.history-copy-line {
  display: block;
  white-space: nowrap;
}

.history-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.history-timeline article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 108, 168, 0.2);
  background: transparent;
  box-shadow: none;
}

.history-timeline img {
  width: 100%;
  height: 144px;
  min-height: 0;
  border-radius: 4px;
  object-fit: cover;
}

.history-timeline article > div {
  display: grid;
  align-content: start;
  padding: 0;
}

.history-timeline span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.history-timeline strong {
  display: block;
  margin-top: 8px;
  color: #0b624c;
  font-size: 15px;
  line-height: 1.36;
  font-weight: 900;
}

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

.home-link-grid a {
  display: grid;
  container-type: inline-size;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(21, 152, 211, 0.16);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.home-link-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-link-grid .home-store-card img {
  object-fit: contain;
  padding: 8px 18px;
  background: #ffffff;
}

.home-link-grid span {
  margin: 24px 24px 8px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.home-link-grid strong {
  margin: 0 24px 26px;
  color: var(--navy);
  font-size: clamp(15px, 7cqw, 30px);
  line-height: 1.18;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

@supports not (font-size: 1cqw) {
  .home-link-grid strong {
    font-size: clamp(16px, 1.65vw, 27px);
  }
}

.page-hero {
  min-height: 420px;
  padding: clamp(96px, 12vw, 150px) clamp(20px, 6vw, 92px) clamp(56px, 8vw, 90px);
  background:
    linear-gradient(90deg, rgba(2, 26, 43, 0.9), rgba(0, 77, 119, 0.56)),
    url("assets/mybox/20260206_184621_Instagram_LSC.jpg") center/cover;
  color: white;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.menu-page-hero {
  background:
    linear-gradient(90deg, rgba(2, 26, 43, 0.9), rgba(0, 108, 168, 0.42)),
    url("assets/mybox/68.jpg") right center/contain no-repeat,
    #05273f;
}

.space-page-hero {
  background:
    linear-gradient(90deg, rgba(2, 26, 43, 0.9), rgba(0, 77, 119, 0.56)),
    url("assets/mybox/20260206_184621_Instagram_LSC.jpg") center/cover;
}

.store-page-hero {
  background:
    linear-gradient(90deg, rgba(2, 26, 43, 0.9), rgba(0, 77, 119, 0.5)),
    url("assets/mybox/20260204_115452.jpg") center/cover;
}

.store-empty-section {
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 100px 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(207, 232, 226, 0.62), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f4f7f1 100%);
}

.store-empty-section h1,
.store-empty-section p {
  margin: 0;
}

.store-empty-section h1 {
  color: var(--navy);
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: -0.055em;
}

.store-empty-section > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}

.store-empty-section > span {
  margin-top: 12px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.store-empty-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 8px;
  border: 1px solid rgba(0, 93, 75, 0.2);
  border-radius: 50%;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.72);
}

.store-empty-mark svg {
  width: 30px;
  height: 30px;
}

.news-page-hero {
  background:
    linear-gradient(90deg, rgba(2, 26, 43, 0.92), rgba(0, 108, 168, 0.58)),
    url("assets/mybox/7.jpg") right center/contain no-repeat,
    #05273f;
}

/* WHAT'S NEW — menu page처럼 밝고 정돈된 소식 페이지 */
.news-clean-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: 520px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fbfaf6;
}

.news-clean-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 125px) clamp(24px, 7vw, 105px);
}

.news-clean-copy h1 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.news-clean-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.news-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 40px;
}

.news-hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.news-hero-links svg {
  width: 15px;
  height: 15px;
}

.news-clean-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 8vw, 105px);
  color: #0d624f;
  background:
    linear-gradient(145deg, transparent 0 21%, rgba(255, 255, 255, 0.5) 21.1% 48%, transparent 48.1%),
    linear-gradient(145deg, #dcedea 0%, #eaf3ef 62%, #d7e9e4 100%);
}

.news-clean-visual::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(13, 98, 79, 0.16);
  border-radius: 50%;
}

.news-clean-visual > span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.news-clean-visual > strong {
  margin-top: 18px;
  font-size: clamp(54px, 7vw, 102px);
  line-height: 0.87;
  letter-spacing: -0.07em;
}

.news-clean-visual > small {
  margin-top: 34px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.news-clean-section {
  background: #ffffff;
}

.news-category-tabs {
  position: sticky;
  top: 85px;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.news-category-tabs button {
  position: relative;
  min-height: 74px;
  border: 0;
  color: #7a8b92;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.news-category-tabs button::after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: -1px;
  left: 20%;
  height: 3px;
  background: var(--accent-strong);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.news-category-tabs button:hover,
.news-category-tabs button.is-active {
  color: var(--navy);
}

.news-category-tabs button.is-active::after {
  transform: scaleX(1);
}

.news-empty-message {
  margin: 0;
  padding: 90px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 16px;
}

[data-news-section][hidden],
.news-feature-card[hidden],
.news-empty-message[hidden] {
  display: none;
}

.news-notice-section {
  background: #f7f7f3;
}

.news-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.news-section-heading h2 {
  margin: 5px 0 0;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.055em;
}

.news-section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: right;
}

.news-clean-section .news-feature-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.news-clean-section .news-feature-card:only-child {
  max-width: 780px;
}

.news-clean-section .news-feature-card {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  min-height: 0;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(5, 39, 63, 0.07);
}

.news-clean-section .news-feature-image {
  min-height: 240px;
  max-height: 240px;
}

.news-clean-section .news-feature-copy {
  padding: 30px clamp(28px, 5vw, 64px);
}

.event-detail-page {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0 120px;
}

.event-detail-heading {
  padding-bottom: 34px;
  border-bottom: 2px solid var(--navy);
}

.event-detail-heading h1 {
  margin: 10px 0 28px;
  color: var(--navy);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.06em;
}

.event-detail-heading div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.event-detail-poster {
  margin: 46px auto 0;
  overflow: hidden;
  border-radius: 14px;
  background: #f8f4e9;
}

.event-detail-poster img {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: contain;
}

.event-detail-copy {
  width: min(780px, 100%);
  margin: 70px auto;
  text-align: center;
}

.event-detail-copy h2 {
  margin: 12px 0 26px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.055em;
}

.event-detail-copy > p:not(.eyebrow) {
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.event-detail-copy > strong {
  display: block;
  margin: 0 auto 18px;
  color: #0b624c;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
  word-break: keep-all;
}

.event-detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 18px;
  text-align: left;
}

.event-detail-info-grid article,
.event-detail-notice {
  padding: 24px;
  border: 1px solid rgba(21, 152, 211, 0.14);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(5, 39, 63, 0.06);
}

.event-detail-info-grid span,
.event-detail-notice span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.event-detail-info-grid ul,
.event-detail-notice ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: #244c52;
  font-size: 15px;
  line-height: 1.65;
}

.event-detail-notice {
  margin-bottom: 34px;
  text-align: left;
  background: linear-gradient(135deg, #ffffff, #f4fbff);
}

.event-detail-copy > a,
.event-detail-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-weight: 800;
}

.event-detail-nav {
  padding-top: 34px;
  border-top: 1px solid var(--line);
  text-align: center;
}

@media (max-width: 680px) {
  .event-detail-page { width: min(100% - 28px, 1120px); padding-top: 54px; }
  .event-detail-heading div { display: grid; gap: 8px; }
  .event-detail-poster { margin-top: 28px; }
  .event-detail-copy { margin: 50px auto; }
  .event-detail-info-grid { grid-template-columns: 1fr; }
}

.news-clean-section .news-feature-copy h3 {
  font-size: clamp(25px, 3vw, 34px);
}

.news-clean-section .news-feature-copy > p:not(:first-child) {
  margin: 17px 0 25px;
  line-height: 1.7;
}

.news-list.news-clean-list {
  border-top: 2px solid var(--navy);
}

.news-list.news-clean-list a {
  grid-template-columns: 42px 95px minmax(0, 1fr) 90px 20px;
  min-height: 92px;
  transition: padding 180ms ease, background 180ms ease;
}

.news-list.news-clean-list a:hover {
  padding-right: 14px;
  padding-left: 14px;
  background: rgba(255, 255, 255, 0.75);
}

.news-list.news-clean-list em {
  color: #a9b4b0;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.news-list.news-clean-list strong {
  color: var(--navy);
  font-size: 18px;
}

.news-list.news-clean-list svg {
  width: 17px;
  height: 17px;
  color: var(--accent-strong);
}

@media (max-width: 900px) {
  .news-clean-hero {
    grid-template-columns: 1fr 0.75fr;
  }

  .news-clean-section .news-feature-grid {
    grid-template-columns: 1fr;
  }

  .news-clean-section .news-feature-card {
    grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1fr);
  }

  .news-clean-section .news-feature-image {
    max-height: none;
  }
}

@media (max-width: 680px) {
  .news-clean-hero {
    grid-template-columns: 1fr;
  }

  .news-clean-visual {
    min-height: 270px;
    padding: 46px 24px;
  }

  .news-clean-visual > strong {
    font-size: 62px;
  }

  .news-section-heading {
    display: block;
  }

  .news-section-heading > p {
    margin-top: 16px;
    text-align: left;
  }

  .news-clean-section .news-feature-card {
    grid-template-columns: 1fr;
  }

  .news-clean-section .news-feature-image {
    min-height: 235px;
  }

  .news-list.news-clean-list a {
    grid-template-columns: 34px 1fr 18px;
    gap: 7px 12px;
    padding: 20px 0;
  }

  .news-list.news-clean-list span,
  .news-list.news-clean-list strong,
  .news-list.news-clean-list time {
    grid-column: 2;
  }

  .news-list.news-clean-list em {
    grid-row: 1 / span 3;
  }

  .news-list.news-clean-list svg {
    grid-column: 3;
    grid-row: 1 / span 3;
    align-self: center;
  }

  .news-list.news-clean-list time {
    text-align: left;
  }
}

.page-section {
  padding-top: clamp(56px, 7vw, 90px);
}

.about-section,
.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.work-band h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.work-band p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  gap: 14px;
}

.feature-grid article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 6px 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(21, 152, 211, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f7fcff);
  box-shadow: var(--shadow);
}

.feature-grid i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  color: var(--accent-strong);
}

.feature-grid strong {
  font-size: 18px;
}

.feature-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.gallery-section {
  background: #ffffff;
}

.space-overview {
  text-align: center;
  background: #fffdf8;
}

.space-overview h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 66px);
  letter-spacing: -0.05em;
}

.space-overview > p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.floor-jump {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 46px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.floor-jump a {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 24px 28px;
  color: var(--navy);
  text-align: left;
}

.floor-jump a + a {
  border-left: 1px solid var(--line);
}

.floor-jump span,
.space-card small {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.floor-jump strong {
  font-size: 25px;
}

.space-floor {
  background: #ffffff;
}

.space-floor-second {
  background: linear-gradient(180deg, #edf6f1 0%, #f8fbf7 100%);
}

.space-floor-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: start;
  margin-bottom: 48px;
}

.space-floor-heading > div:first-child > span {
  display: block;
  color: var(--accent-strong);
  font-size: clamp(72px, 10vw, 150px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
  opacity: 0.16;
}

.space-floor-heading .eyebrow {
  margin-top: 22px;
}

.space-floor-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.space-floor-heading > div:last-child > p {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.space-card-grid-large {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.space-card {
  overflow: hidden;
  border: 1px solid rgba(5, 39, 63, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 42px rgba(5, 39, 63, 0.08);
}

.space-card-grid-large .space-card {
  grid-column: span 2;
}

.space-card-wide {
  grid-column: span 3;
}

.space-photo-placeholder {
  display: grid;
  min-height: 255px;
  place-content: center;
  gap: 12px;
  color: rgba(5, 80, 65, 0.62);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 45%),
    repeating-linear-gradient(135deg, rgba(0, 104, 87, 0.035) 0 1px, transparent 1px 12px),
    #e6f1ec;
}

.space-photo-placeholder svg {
  width: 34px;
  height: 34px;
  margin: 0 auto;
}

.space-photo-placeholder span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.space-card-image {
  display: block;
  width: 100%;
  height: 255px;
  object-fit: cover;
  object-position: center;
}

.space-card-image-laptop {
  object-position: center 58%;
}

.space-card-image-sofa {
  object-position: center 72%;
}

.space-card-image-cactus {
  object-position: center 54%;
}

.space-card-image-first-floor-work {
  object-position: center 44%;
}

.space-card-image-first-floor-sofa {
  object-position: center 62%;
}

.space-card-image-meeting {
  object-position: center 62%;
}

.space-card > div:last-child {
  padding: 25px 26px 28px;
}

.space-card h3 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 24px;
}

.space-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.space-card .space-booking-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
}

.space-card .space-booking-note:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.space-booking-note i:last-child {
  margin-left: auto;
}

.space-booking-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.cactus-card .space-photo-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 45%),
    repeating-linear-gradient(135deg, rgba(49, 101, 34, 0.04) 0 1px, transparent 1px 12px),
    #e8f2df;
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(232, 248, 255, 0.82), rgba(255, 255, 255, 0.92)),
    linear-gradient(90deg, rgba(0, 108, 168, 0.06), transparent);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.section-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  font-weight: 900;
  white-space: nowrap;
}

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

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  border: 1px solid rgba(21, 152, 211, 0.16);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.gallery-grid figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 39, 63, 0.46));
  content: "";
}

.gallery-main {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-spotlight img {
  object-fit: contain;
  padding: clamp(28px, 5vw, 70px);
  background:
    radial-gradient(circle at 50% 54%, rgba(231, 247, 255, 0.95), rgba(255, 255, 255, 0.94) 60%);
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  z-index: 1;
  background: rgba(5, 39, 63, 0.72);
  color: white;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.menu-photo {
  overflow: hidden;
  border: 1px solid rgba(21, 152, 211, 0.16);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.menu-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  padding: 34px;
  background: radial-gradient(circle at 50% 55%, rgba(231, 247, 255, 0.88), white 62%);
}

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

.menu-card {
  display: grid;
  align-content: center;
  min-height: 126px;
  padding: 24px;
  border: 1px solid rgba(21, 152, 211, 0.16);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.menu-card-featured {
  grid-column: span 2;
  min-height: 164px;
  background:
    linear-gradient(135deg, rgba(5, 39, 63, 0.92), rgba(0, 108, 168, 0.84)),
    url("assets/mybox/8.jpg") right 20px center/contain no-repeat;
  color: white;
}

.menu-card-featured span,
.menu-card-featured strong {
  color: #9fe5ff;
}

.menu-card-featured p {
  color: rgba(255, 255, 255, 0.78);
}

.product-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.product-row article {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(21, 152, 211, 0.16);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.product-row img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

.product-row span {
  margin-top: 12px;
  color: var(--accent-strong);
  font-weight: 900;
}

.menu-promo {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 250px;
  margin: 28px auto 0;
  padding: clamp(24px, 3.5vw, 36px) clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(193, 139, 91, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 252, 246, 0.96) 0%, rgba(255, 252, 246, 0.96) 36%, rgba(231, 247, 255, 0.92) 36%, rgba(231, 247, 255, 0.92) 100%);
}

.menu-promo-copy h2 {
  margin: 0;
  color: #0b624c;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: 0;
}

.menu-promo-copy p:not(.eyebrow) {
  max-width: 360px;
  margin: 14px 0 0;
  color: #4f6d61;
  font-size: 14px;
  line-height: 1.55;
}

.promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 18px;
  padding: 0 18px;
  border: 2px solid #0b624c;
  border-radius: 6px;
  color: #0b624c;
  font-size: 13px;
  font-weight: 900;
}

.menu-promo-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.6vw, 20px);
  align-items: end;
}

.menu-promo-products article {
  display: grid;
  justify-items: center;
  text-align: center;
}

.menu-promo-products img {
  width: 100%;
  height: clamp(92px, 12vw, 140px);
  object-fit: contain;
  cursor: zoom-in;
  filter: drop-shadow(0 12px 14px rgba(7, 56, 86, 0.12));
}

.menu-promo-products strong {
  margin-top: 10px;
  color: #0b624c;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.25;
}

.menu-promo-products span {
  margin-top: 4px;
  color: #55796b;
  font-size: 11px;
  font-weight: 800;
}

.menu-catalog {
  padding-top: clamp(34px, 4vw, 52px);
  background: white;
}

.menu-catalog > .menu-list-title,
.menu-catalog > .menu-filter-box,
.menu-catalog > .section-heading,
.menu-catalog > .menu-browser,
.menu-catalog > .menu-category {
  width: min(1080px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.menu-list-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.menu-list-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 56px);
}

.menu-list-title nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.menu-list-title nav span::before,
.menu-list-title nav strong::before {
  margin-right: 10px;
  color: rgba(9, 40, 61, 0.28);
  content: ">";
}

.menu-list-title nav strong {
  color: var(--accent-strong);
}

.menu-filter-box {
  display: grid;
  gap: 0;
  margin-top: 28px;
  margin-bottom: 34px;
  border: 1px solid rgba(21, 152, 211, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 16%, rgba(36, 181, 224, 0.18), transparent 34%),
    radial-gradient(circle at 88% 28%, rgba(0, 108, 168, 0.12), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
  overflow: hidden;
}

.filter-tabs {
  display: grid;
  grid-template-columns: minmax(160px, 200px);
  gap: 10px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(21, 152, 211, 0.14);
}

.filter-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  cursor: default;
}

.filter-tabs button.is-active {
  background:
    linear-gradient(135deg, rgba(0, 108, 168, 0.96), rgba(36, 181, 224, 0.9));
  color: white;
}

.filter-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px 24px;
}

.filter-row + .filter-row {
  border-top: 1px solid rgba(21, 152, 211, 0.14);
}

.filter-row > strong {
  color: var(--navy);
  font-size: 16px;
}

.filter-chips,
.theme-banners {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.filter-checks label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: #263f4f;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.filter-checks input {
  width: 14px;
  height: 14px;
  margin: 0 8px 0 0;
  accent-color: #0078b8;
}

.filter-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(0, 108, 168, 0.16);
  border-radius: 999px;
  background: white;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.theme-banners a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(5, 39, 63, 0.94), rgba(0, 108, 168, 0.72));
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.menu-browser {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(320px, 0.78fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 42px;
}

.menu-preview {
  position: sticky;
  top: 118px;
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(193, 139, 91, 0.2);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(7, 56, 86, 0.07);
}

.menu-preview img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  cursor: zoom-in;
}

.menu-preview div {
  margin-top: 14px;
  text-align: center;
}

.menu-preview span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-preview strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: clamp(20px, 1.8vw, 28px);
}

.menu-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-height: 430px;
  overflow-y: auto;
  padding-right: 4px;
}

.menu-thumb-grid button {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 14px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(7, 56, 86, 0.06);
  cursor: pointer;
}

.menu-thumb-grid button:hover,
.menu-thumb-grid button.is-active {
  border-color: var(--accent);
  background: linear-gradient(180deg, #ffffff, var(--vanilla-foam));
}

.menu-thumb-grid img {
  width: 100%;
  height: 98px;
  object-fit: contain;
}

.menu-category {
  padding: 30px 0 36px;
  border-top: 1px solid var(--line);
}

.menu-category.is-hidden {
  display: none;
}

.menu-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.menu-category-heading span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-category-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 2.4vw, 34px);
}

.signature-category {
  margin-top: 10px;
  padding: 36px 24px 40px;
  border: 1px solid rgba(193, 139, 91, 0.28);
  border-radius: 6px;
  background: linear-gradient(145deg, #fffdf8, #f8f0e3);
}

.signature-category .menu-category-heading span {
  color: #9b6b3e;
}

.signature-category .menu-items article {
  border-color: rgba(193, 139, 91, 0.22);
}

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

.menu-items article {
  display: grid;
  align-content: start;
  min-height: 218px;
  padding: 16px;
  border: 1px solid rgba(21, 152, 211, 0.14);
  border-radius: 4px;
  background: #ffffff;
  box-shadow: none;
}

.menu-items img {
  width: 100%;
  height: 132px;
  object-fit: contain;
  margin-bottom: 14px;
  cursor: zoom-in;
}

.menu-image-placeholder {
  width: 100%;
  height: 132px;
  margin-bottom: 14px;
  border: 1px dashed rgba(99, 125, 143, 0.28);
  border-radius: 3px;
  background: linear-gradient(145deg, rgba(247, 251, 254, 0.86), rgba(238, 243, 246, 0.58));
}

.menu-items strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.3;
}

.menu-items span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(2, 26, 43, 0.78);
  backdrop-filter: blur(10px);
}

.image-lightbox.is-open {
  display: grid;
}

.image-lightbox figure {
  display: grid;
  gap: 14px;
  max-width: min(920px, 94vw);
  max-height: 90vh;
  margin: 0;
}

.image-lightbox img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.image-lightbox figcaption {
  color: white;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.image-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.menu-card span,
.news-list span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card h3 {
  margin: 8px 0 8px;
  font-size: 24px;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.menu-card strong {
  margin-top: 14px;
  color: var(--navy);
  font-size: 18px;
}

.work-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(2, 26, 43, 0.92), rgba(0, 91, 139, 0.72)),
    url("assets/mybox/20260206_185017.jpg") center/cover fixed;
  color: white;
}

.work-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.program-list {
  display: grid;
  gap: 12px;
}

.program-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px 18px;
  align-items: center;
  min-height: 82px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.program-list time {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(159, 229, 255, 0.38);
  border-radius: 50%;
  color: #9fe5ff;
  font-weight: 900;
}

.program-list strong {
  font-size: 20px;
}

.program-list span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.location-section {
  background: linear-gradient(180deg, #ffffff 0%, #f2fbff 100%);
}

.map-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(21, 152, 211, 0.16);
  border-radius: var(--radius);
  background: #e7f3f8;
  box-shadow: var(--shadow);
}

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

.map-location-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: 0 14px 38px rgba(5, 39, 63, 0.18);
  backdrop-filter: blur(12px);
}

.map-location-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
}

.map-location-card strong,
.map-location-card small {
  display: block;
}

.map-location-card strong {
  font-size: 17px;
}

.map-location-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.store-address {
  margin: 22px 0 16px !important;
  color: var(--navy) !important;
  font-size: clamp(19px, 2vw, 26px) !important;
  font-weight: 900;
  line-height: 1.55 !important;
}

.info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.info-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(21, 152, 211, 0.18);
  border-radius: 999px;
  background: white;
  color: var(--accent-strong);
  font-weight: 900;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.map-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.map-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(5, 39, 63, 0.14);
}

.map-action-naver {
  background: #03c75a;
  color: white;
}

.map-action-kakao {
  background: #fee500;
  color: #281c1c;
}

@media (max-width: 520px) {
  .map-panel iframe {
    min-height: 420px;
  }

  .map-location-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
  }

  .map-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.news-list {
  display: grid;
  border-top: 2px solid var(--accent-strong);
}

.news-list a {
  display: grid;
  grid-template-columns: 110px 1fr 80px;
  gap: 20px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.news-list strong {
  font-size: 20px;
}

.news-list time {
  color: var(--muted);
  text-align: right;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 42px clamp(20px, 5vw, 72px);
  background: #041f33;
  color: white;
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

/* Apple season menu */
.apple-menu-page {
  background: #f8f4e9;
}

.apple-campaign {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  min-height: calc(100vh - 90px);
  overflow: hidden;
  padding: 80px max(30px, calc((100vw - 1240px) / 2));
  background:
    linear-gradient(112deg, rgba(255, 250, 235, 0.98) 0 48%, rgba(218, 239, 193, 0.64) 48% 100%);
}

.apple-campaign::before {
  position: absolute;
  inset: 0;
  opacity: 0.33;
  background-image: radial-gradient(rgba(29, 94, 46, 0.22) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
  pointer-events: none;
  content: "";
}

.apple-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.5;
}

.apple-orb-one {
  top: -180px;
  right: -100px;
  width: 520px;
  height: 520px;
  background: #a7d55f;
}

.apple-orb-two {
  left: -180px;
  bottom: -220px;
  width: 420px;
  height: 420px;
  background: #ffd56b;
}

.apple-campaign-copy,
.apple-campaign-visual,
.apple-bottom-line {
  position: relative;
  z-index: 1;
}

.apple-campaign-copy {
  padding: 30px 50px 55px 0;
}

.apple-season-label {
  margin: 0 0 40px;
  color: #bb4a2d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.apple-script {
  margin: 0 0 -6px;
  color: #d46a4b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.3vw, 34px);
  font-style: italic;
}

.apple-campaign h1 {
  margin: 0;
  color: #155b32;
  font-size: clamp(70px, 8.5vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.085em;
  word-break: keep-all;
}

.apple-campaign h1 span {
  display: block;
  margin-left: 0.55em;
  color: #2d753e;
}

.apple-english {
  margin: 30px 0 0;
  color: #174d2b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 29px);
  letter-spacing: 0.06em;
}

.apple-english i {
  margin: 0 8px;
  color: #c25e3e;
  font-size: 0.72em;
  letter-spacing: 0;
}

.apple-description {
  margin: 34px 0 0;
  color: #4b604e;
  font-size: 15px;
  line-height: 1.9;
}

.apple-description strong {
  color: #155b32;
}

.apple-options {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}

.apple-options > span {
  min-width: 130px;
  padding: 14px 18px;
  border: 1px solid rgba(21, 91, 50, 0.45);
  background: rgba(255, 255, 255, 0.58);
  color: #155b32;
}

.apple-options b,
.apple-options small {
  display: block;
}

.apple-options b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.apple-options small {
  margin-top: 4px;
  color: #687a69;
  font-size: 11px;
}

.apple-options > i {
  color: #bb4a2d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
}

.apple-campaign-visual {
  min-height: 650px;
}

.apple-photo-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(710px, 56vw);
  aspect-ratio: 1.42;
  overflow: hidden;
  border: 14px solid rgba(255, 255, 255, 0.84);
  border-radius: 50% 50% 44% 56% / 58% 43% 57% 42%;
  background: white;
  box-shadow: 0 35px 70px rgba(37, 94, 42, 0.2);
  transform: translate(-48%, -50%) rotate(-2deg);
}

.apple-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04) rotate(2deg);
}

.apple-stamp {
  position: absolute;
  top: 10%;
  right: 0;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(187, 74, 45, 0.55);
  border-radius: 50%;
  color: #ad482f;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-align: center;
  transform: rotate(9deg);
}

.apple-note {
  position: absolute;
  left: 1%;
  bottom: 5%;
  padding: 15px 18px;
  background: #155b32;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.35;
  transform: rotate(-5deg);
}

.apple-bottom-line {
  position: absolute;
  right: max(30px, calc((100vw - 1240px) / 2));
  bottom: 26px;
  margin: 0;
  color: rgba(21, 91, 50, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.apple-choice-band {
  padding: 120px 24px;
  background: #155b32;
  color: white;
  text-align: center;
}

.apple-choice-band > p:first-child {
  margin: 0 0 20px;
  color: #d9e993;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.apple-choice-band h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.2;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.apple-choice-band > p:last-child {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

@media (max-width: 900px) {
  .apple-campaign {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 74px 24px 90px;
  }

  .apple-campaign-copy {
    padding: 0;
  }

  .apple-campaign-visual {
    min-height: 520px;
    margin-top: 30px;
  }

  .apple-photo-frame {
    width: min(680px, 86vw);
  }

  .apple-stamp {
    right: 2%;
  }
}

@media (max-width: 520px) {
  .apple-campaign h1 {
    font-size: 70px;
  }

  .apple-description br {
    display: none;
  }

  .apple-options {
    gap: 8px;
  }

  .apple-options > span {
    min-width: 0;
    flex: 1;
    padding: 13px 12px;
  }

  .apple-campaign-visual {
    min-height: 380px;
  }

  .apple-photo-frame {
    width: 94vw;
    border-width: 8px;
  }

  .apple-stamp {
    top: 2%;
    width: 88px;
    height: 88px;
    font-size: 8px;
  }

  .apple-note {
    left: 0;
    bottom: 1%;
    font-size: 13px;
  }

  .apple-bottom-line {
    display: none;
  }

  .apple-choice-band {
    padding: 90px 18px;
  }
}

/* WE CAFE brand story */
.about-page {
  background: #f6f1e8;
}

.about-page main {
  overflow: hidden;
}

.about-page h1,
.about-page h2,
.about-page h3 {
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.about-kicker {
  margin: 0 0 18px;
  color: #197967;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.about-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 90px);
  background: #102d2a;
  color: white;
}

.about-hero-photo,
.about-hero-shade {
  position: absolute;
  inset: 0;
}

.about-hero-photo {
  background: url("assets/mybox/wecafe-counter-hero-no-barista.png") center 48% / cover no-repeat;
  filter: saturate(0.72) contrast(1.04);
  transform: scale(1.01);
}

.about-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 28, 25, 0.92) 0%, rgba(5, 28, 25, 0.7) 38%, rgba(5, 28, 25, 0.13) 72%),
    linear-gradient(0deg, rgba(5, 28, 25, 0.54), transparent 55%);
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0 74px;
}

.about-hero .about-kicker {
  color: #d7b46a;
}

.about-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(68px, 10.5vw, 154px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.065em;
}

.about-hero h1 em {
  color: #e7c170;
  font-weight: 400;
}

.about-hero-lead {
  margin: 44px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.8;
}

.about-scroll {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 800;
}

.about-manifesto {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 170px;
}

.about-section-index {
  color: #987343;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.about-manifesto h2,
.culture-copy h2,
.pillars-intro h2,
.about-history-callout h2,
.about-closing h2 {
  margin: 0;
  color: #173d38;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.about-manifesto h2,
.values-heading h2,
.culture-copy h2,
.pillars-intro h2,
.about-closing h2 {
  max-width: 100%;
}

.about-manifesto h2 span {
  color: #a27949;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.about-manifesto-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  max-width: 840px;
  margin: 64px 0 0 auto;
  color: #526b66;
  font-size: 16px;
  line-height: 1.95;
}

.about-manifesto-text p {
  margin: 0;
}

.wecafe-values {
  padding: 130px max(24px, calc((100vw - 1180px) / 2));
  background: #123e38;
  color: white;
}

.values-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 74px;
}

.values-heading .about-kicker {
  color: #d4b268;
}

.values-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.values-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.9;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.23);
  border-left: 1px solid rgba(255, 255, 255, 0.23);
}

.value-grid article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  min-height: 230px;
  padding: 38px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.23);
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  transition: background 220ms ease, color 220ms ease;
}

.value-grid article:hover {
  background: #e7c170;
  color: #123e38;
}

.value-grid article > span {
  color: #e7c170;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  line-height: 0.82;
}

.value-grid article:hover > span {
  color: #123e38;
}

.value-grid strong {
  display: block;
  margin: 4px 0 20px;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.value-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.75;
}

.value-grid article:hover p {
  color: rgba(18, 62, 56, 0.78);
}

.culture-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  background: #fcfaf5;
}

.culture-photo-main {
  min-height: 850px;
}

.culture-photo {
  position: relative;
  overflow: hidden;
}

.culture-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-photo-main img {
  object-position: center;
}

.culture-photo-main > span {
  position: absolute;
  left: 32px;
  bottom: 32px;
  padding: 10px 14px;
  background: rgba(10, 39, 35, 0.82);
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.culture-copy {
  align-self: center;
  padding: 100px clamp(42px, 6vw, 100px);
}

.culture-copy .about-section-index {
  margin-bottom: 64px;
}

.culture-copy h2 {
  margin-bottom: 42px;
  font-size: clamp(34px, 4vw, 56px);
}

.culture-copy > p:not(.about-kicker) {
  margin: 0 0 22px;
  color: #536c66;
  font-size: 15px;
  line-height: 1.95;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid #173d38;
  color: #173d38;
  font-size: 13px;
  font-weight: 900;
}

.culture-photo-detail {
  position: absolute;
  right: clamp(22px, 5vw, 78px);
  bottom: -150px;
  width: min(300px, 23vw);
  height: 420px;
  border: 12px solid #f6f1e8;
  box-shadow: 0 28px 55px rgba(22, 55, 49, 0.18);
}

.culture-photo-detail img {
  object-position: center 34%;
}

.culture-photo-detail figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 38px 16px 16px;
  background: linear-gradient(transparent, rgba(7, 31, 27, 0.82));
  color: white;
  font-size: 11px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 230px 0 150px;
}

.pillars-intro {
  align-self: start;
  position: sticky;
  top: 140px;
}

.pillar-list {
  border-top: 1px solid rgba(23, 61, 56, 0.24);
}

.pillar-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 34px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(23, 61, 56, 0.24);
}

.pillar-list article > span {
  color: #a27949;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.pillar-list strong {
  display: block;
  margin-bottom: 14px;
  color: #173d38;
  font-size: 25px;
}

.pillar-list p {
  margin: 0;
  color: #5a706c;
  font-size: 15px;
  line-height: 1.85;
}

.about-history-callout {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
}

.history-callout-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 25, 23, 0.92), rgba(4, 25, 23, 0.55) 60%, rgba(4, 25, 23, 0.26)),
    url("assets/mybox/history-2008-westend.png") center / cover no-repeat;
}

.history-callout-copy {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  padding: 100px 0;
}

.history-callout-copy .about-kicker {
  color: #e7c170;
}

.about-history-callout h2 {
  max-width: 1040px;
  color: white;
  font-size: clamp(34px, 4.25vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.history-callout-copy > p:not(.about-kicker) {
  max-width: 650px;
  margin: 38px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.9;
}

.about-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 15px 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
  font-size: 13px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.about-outline-button:hover {
  background: white;
  color: #173d38;
}

.about-outline-button-dark {
  border-color: rgba(7, 95, 76, 0.54);
  color: #075f4c;
}

.about-outline-button-dark:hover {
  background: #075f4c;
  color: white;
}

.about-closing {
  padding: 150px 24px;
  background: #e8c273;
  text-align: center;
}

.about-closing .about-kicker {
  color: #5d4829;
}

.about-closing h2 {
  color: #163c37;
}

.about-closing > p:not(.about-kicker) {
  margin: 28px 0 38px;
  color: #5b513e;
  font-size: 16px;
}

.about-closing > div {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.about-closing a {
  min-width: 140px;
  padding: 14px 24px;
  border: 1px solid #173d38;
  color: #173d38;
  font-size: 13px;
  font-weight: 900;
}

.about-closing a:first-child {
  background: #173d38;
  color: white;
}

@media (max-width: 900px) {
  .about-hero {
    min-height: 720px;
  }

  .about-hero-shade {
    background: linear-gradient(0deg, rgba(5, 28, 25, 0.94), rgba(5, 28, 25, 0.18) 74%);
  }

  .about-hero-copy {
    padding-bottom: 64px;
  }

  .about-scroll {
    position: static;
    margin-top: 38px;
  }

  .about-manifesto,
  .about-pillars {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .about-manifesto {
    padding: 100px 0 110px;
  }

  .about-manifesto-text,
  .values-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-manifesto-text {
    margin-top: 44px;
  }

  .wecafe-values {
    padding-top: 90px;
    padding-bottom: 90px;
  }

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

  .culture-feature {
    grid-template-columns: 1fr;
  }

  .culture-photo-main {
    min-height: 620px;
  }

  .culture-copy {
    padding: 90px 24px 150px;
  }

  .culture-photo-detail {
    right: 24px;
    bottom: -110px;
    width: 240px;
    height: 330px;
  }

  .about-pillars {
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .pillars-intro {
    position: static;
  }
}

@media (max-width: 520px) {
  .about-hero {
    min-height: 680px;
  }

  .about-hero-copy,
  .about-manifesto,
  .about-pillars,
  .history-callout-copy {
    width: calc(100% - 36px);
  }

  .about-hero h1 {
    font-size: 62px;
  }

  .about-hero-lead br,
  .about-manifesto h2 br,
  .culture-copy h2 br,
  .about-history-callout h2 br {
    display: none;
  }

  .about-page h1,
  .about-page h2,
  .about-page h3 {
    overflow-wrap: break-word;
  }

  .about-manifesto {
    grid-template-columns: 1fr;
  }

  .about-manifesto-text,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-grid article {
    min-height: 190px;
  }

  .culture-photo-main {
    min-height: 500px;
  }

  .culture-photo-detail {
    width: 190px;
    height: 280px;
  }

  .about-pillars {
    padding-top: 170px;
  }

  .about-closing {
    padding: 100px 18px;
  }

  .about-closing > div {
    display: grid;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: 72px;
    width: calc(100% - 32px);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-tools,
  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    top: 72px;
    left: -16px;
    right: -16px;
    display: grid;
    gap: 0;
    height: auto;
    padding: 10px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
  }

  .main-nav.is-open .nav-item {
    display: block;
  }

  .main-nav.is-open .nav-item > a {
    justify-content: space-between;
    min-width: 0;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
  }

  .main-nav.is-open .nav-item > a::after,
  .main-nav.is-open .mega-panel {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    align-self: start;
    width: min(540px, calc(100% - 40px));
    margin-left: 20px;
    padding-top: 52px;
    padding-bottom: 160px;
  }

  .hero-product-showcase {
    right: 20px;
    bottom: 74px;
    width: min(340px, 74vw);
    height: 260px;
  }

  .hero-note {
    left: 20px;
    right: auto;
    bottom: 14px;
  }

  .quick-links,
  .season-strip,
  .history-strip,
  .home-link-grid,
  .about-section,
  .gallery-grid,
  .menu-layout,
  .menu-grid,
  .product-row,
  .menu-promo,
  .menu-promo-products,
  .menu-list-title,
  .menu-browser,
  .menu-items,
  .work-band,
  .location-section {
    grid-template-columns: 1fr;
  }

  .season-strip {
    display: grid;
    align-items: start;
  }

  .history-copy {
    position: static;
  }

  .history-copy h2 {
    white-space: normal;
  }

  .history-copy-line {
    white-space: normal;
  }

  .history-poster {
    min-height: 280px;
  }

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

  .history-timeline img {
    height: 180px;
  }

  .quick-links a {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .gallery-main {
    grid-row: auto;
  }

  .menu-card-featured {
    grid-column: auto;
  }

  .menu-preview {
    position: static;
    min-height: 420px;
  }

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

  .filter-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .filter-tabs {
    grid-template-columns: 1fr;
    padding: 20px 18px 14px;
  }

  .filter-checks {
    gap: 10px 18px;
  }

  .program-list article,
  .news-list a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .program-list time {
    grid-row: auto;
  }

  .news-list time {
    text-align: left;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
  }

  .brand small {
    display: none;
  }

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

  .hero-product-showcase {
    opacity: 0.92;
    width: min(300px, 82vw);
    height: 230px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-message {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .history-timeline {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }
}

/* Apple drink in the existing new-menu banner */
.apple-menu-promo {
  scroll-margin-top: 90px;
  background: linear-gradient(158deg, #fffaf0 0 42%, #e9f6df 42% 100%);
}

.apple-menu-promo .menu-promo-copy h2 {
  color: #155b32;
}

.apple-menu-promo .menu-promo-copy > p:not(.eyebrow) {
  max-width: 480px;
  color: #526853;
}

.apple-promo-options {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.apple-promo-options span {
  display: grid;
  gap: 2px;
  min-width: 126px;
  padding: 10px 14px;
  border: 1px solid rgba(21, 91, 50, 0.34);
  background: rgba(255, 255, 255, 0.62);
  color: #627465;
  font-size: 10px;
}

.apple-promo-options strong {
  color: #155b32;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.apple-promo-options i {
  color: #b85035;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
}

.apple-promo-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.apple-promo-image {
  height: 280px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.82);
  border-radius: 50% 46% 52% 44%;
  box-shadow: 0 24px 55px rgba(21, 91, 50, 0.16);
}

.apple-promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apple-promo-name span,
.apple-promo-name strong,
.apple-promo-name small {
  display: block;
}

.apple-promo-name span {
  margin-bottom: 12px;
  color: #b85035;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.apple-promo-name strong {
  color: #155b32;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.2;
  word-break: keep-all;
}

.apple-promo-name small {
  margin-top: 10px;
  color: #607363;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .apple-promo-product {
    grid-template-columns: minmax(0, 1fr) 190px;
  }

  .apple-promo-image {
    height: 250px;
  }
}

@media (max-width: 520px) {
  .apple-promo-options {
    align-items: stretch;
  }

  .apple-promo-options span {
    min-width: 0;
    flex: 1;
  }

  .apple-promo-product {
    grid-template-columns: 1fr;
  }

  .apple-promo-image {
    height: 230px;
  }
}

@media (max-width: 900px) {
  .space-floor-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .space-floor-heading > div:first-child {
    display: flex;
    gap: 18px;
    align-items: end;
  }

  .space-floor-heading > div:first-child > span {
    font-size: 82px;
  }

  .space-floor-heading .eyebrow {
    margin: 0 0 7px;
  }

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

  .space-card-grid-large .space-card {
    grid-column: auto;
  }

  .space-card-grid-large .space-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .floor-jump,
  .space-card-grid,
  .space-card-grid-large {
    grid-template-columns: 1fr;
  }

  .floor-jump a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .space-card-grid-large .space-card-wide {
    grid-column: auto;
  }

  .space-photo-placeholder {
    min-height: 220px;
  }

  .space-card-image {
    height: 220px;
  }
}

@media (max-width: 680px) {
  .news-category-tabs {
    top: 72px;
    padding: 0 10px;
  }

  .news-category-tabs button {
    min-height: 60px;
    font-size: 13px;
  }
}

/* Mobile-wide stability pass */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
video,
iframe {
  max-width: 100%;
}

@media (max-width: 680px) {
  body {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .main-nav.is-open {
    left: -12px;
    right: -12px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .brand strong {
    font-size: 17px;
    white-space: nowrap;
  }

  .hero,
  .hero-slide {
    min-height: 540px;
  }

  .hero-content,
  .hero-news-content {
    width: calc(100% - 32px);
    margin: 0 16px;
  }

  .hero-content {
    padding-top: 44px;
    padding-bottom: 150px;
  }

  .hero-content h1,
  .hero-news-copy h2 {
    font-size: clamp(38px, 13vw, 52px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-news-content {
    align-items: flex-end;
    padding-bottom: 110px;
  }

  .hero-news-copy > p:not(.hero-news-meta) {
    margin: 18px 0 24px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-carousel-controls {
    bottom: 14px;
    width: auto;
  }

  .hero-product-showcase {
    right: 10px;
    bottom: 58px;
    width: min(280px, 78vw);
    height: 205px;
  }

  .section,
  .page-section,
  .location-section,
  .menu-browser {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-heading h2,
  .news-section-heading h2,
  .menu-list-title h2,
  .space-floor-heading h2 {
    font-size: clamp(30px, 10vw, 42px);
    overflow-wrap: anywhere;
  }

  .news-clean-copy {
    padding: 58px 18px;
  }

  .news-clean-copy h1 {
    font-size: clamp(46px, 15vw, 64px);
  }

  .news-category-tabs {
    grid-template-columns: repeat(4, minmax(70px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .news-clean-section .news-feature-card {
    grid-template-columns: 1fr;
  }

  .news-clean-section .news-feature-image {
    min-height: 210px;
    max-height: 250px;
  }

  .news-clean-section .news-feature-copy {
    padding: 24px 20px 28px;
  }

  .event-detail-page {
    width: calc(100% - 28px);
    padding: 48px 0 80px;
  }

  .event-detail-heading h1 {
    font-size: clamp(36px, 12vw, 50px);
    line-height: 1.12;
  }

  .event-detail-poster {
    border-radius: 8px;
  }

  .event-detail-poster img {
    max-height: none;
    height: auto;
  }

  .event-detail-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .event-detail-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.75;
  }

  .menu-promo,
  .menu-promo-products,
  .menu-items,
  .menu-grid,
  .product-row {
    min-width: 0;
  }

  .menu-promo-products {
    grid-template-columns: 1fr;
  }

  .menu-item,
  .menu-card,
  .product-card {
    min-width: 0;
  }

  .menu-item img,
  .menu-card img,
  .product-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
  }

  .space-card-image,
  .space-photo-placeholder {
    height: auto;
    min-height: 210px;
    aspect-ratio: 4 / 3;
  }

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

  .site-footer {
    gap: 22px;
    padding: 46px 18px;
  }

  .site-footer a,
  .site-footer p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 390px) {
  .hero-content h1,
  .hero-news-copy h2 {
    font-size: 40px;
  }

  .news-category-tabs button {
    padding: 0 8px;
    font-size: 12px;
  }

  .apple-promo-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
