@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&display=swap");

:root {
  --bg: #faf9f6;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #4a4a4a;
  --muted: #7f7a74;
  --accent: #c5a28e;
  --accent-strong: #b89480;
  --line: #e9dfd7;
  --shadow: 0 18px 40px rgba(74, 74, 74, 0.08);
  --radius: 24px;
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Pretendard", "Noto Sans KR", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(197, 162, 142, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #f3efe9 100%);
  min-height: 100vh;
}

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

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

.shell {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-links a,
.button,
button {
  border: 1px solid var(--line);
  border-radius: 9999px;
  padding: 10px 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition:
    opacity 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.button:hover,
button:hover {
  opacity: 0.86;
  box-shadow: 0 14px 28px rgba(74, 74, 74, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 28px 0 12px;
}

.card,
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.panel {
  padding: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin-top: 18px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

p {
  line-height: 1.72;
  color: var(--muted);
}

.actions,
.meta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.button.primary,
button.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: transparent;
}

.button.secondary,
button.secondary {
  background: var(--surface-strong);
}

.grid,
.stack,
.post-list {
  display: grid;
  gap: 18px;
}

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

.post-list {
  padding: 20px 0 44px;
}

.post-item,
.comment,
.upload-item {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.post-item-media {
  display: block;
  height: 220px;
  margin: -18px -20px 18px;
  background-position: center;
  background-size: cover;
  border-radius: 18px 18px 0 0;
}

.post-item h3 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.page-header {
  padding: 24px 0 8px;
}

.search-row,
.form-grid {
  display: grid;
  gap: 12px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.detail,
.admin-layout {
  display: grid;
  gap: 24px;
  padding: 20px 0 44px;
}

.admin-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.content {
  white-space: pre-wrap;
  line-height: 1.75;
}

.muted,
.kicker,
.footer {
  color: var(--muted);
}

.footer {
  padding: 28px 0 42px;
  font-size: 0.92rem;
}

.upload-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.hidden {
  display: none !important;
}

.home-body,
.editorial-body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 249, 246, 0.98)),
    radial-gradient(circle at top right, rgba(197, 162, 142, 0.08), transparent 24%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(233, 223, 215, 0.9);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
}

.topnav,
.topbar-tools {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topnav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--muted);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.topnav a.is-current,
.topnav a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.icon-pill {
  border: 1px solid var(--line);
  border-radius: 9999px;
  padding: 11px 18px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.86);
}

.home-shell,
.editorial-shell {
  padding-top: 48px;
  padding-bottom: 88px;
}

.home-header,
.editorial-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 46px;
}

.home-header h1 {
  font-size: clamp(3.8rem, 8vw, 6.4rem);
}

.editorial-header h1 {
  font-size: clamp(3.3rem, 7vw, 5.4rem);
}

.section-kicker {
  margin: 0 0 14px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--accent);
}

.home-intro {
  max-width: 580px;
  font-size: 1.06rem;
  line-height: 1.9;
  margin: 0;
}

.home-layout,
.board-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
}

.filter-rail {
  position: sticky;
  top: 118px;
  align-self: start;
  display: grid;
  gap: 28px;
}

.filter-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.filter-block h2 {
  font-size: 0.9rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  font-size: 0.98rem;
}

.filter-list li {
  color: var(--muted);
}

.filter-list li.is-active {
  color: var(--text);
  font-weight: 700;
}

.filter-list.subtle li::before {
  content: "*";
  color: rgba(167, 4, 49, 0.45);
  margin-right: 10px;
}

.rail-copy {
  margin: 0;
  font-size: 0.95rem;
}

.rail-actions {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.collection-stage,
.board-stage {
  min-width: 0;
}

.hero-banner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  padding: 36px;
  border-radius: 28px;
  color: #fff7f8;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 30px 60px rgba(167, 4, 49, 0.18);
}

.hero-banner .eyebrow,
.hero-banner p,
.hero-banner .eyebrow::before {
  color: rgba(255, 247, 248, 0.82);
}

.hero-banner h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  margin-top: 18px;
}

.hero-banner p {
  max-width: 650px;
  margin: 18px 0 0;
}

.hero-banner-aside {
  display: grid;
  gap: 14px;
}

.metric-card {
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-card span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.82;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.45;
}

.collection-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin: 36px 0 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(226, 190, 191, 0.7);
}

.meta-label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}

.meta-link {
  font-weight: 700;
  color: var(--accent);
}

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

.collection-grid .post-item {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, rgba(167, 4, 49, 0.08), rgba(202, 41, 71, 0.02));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.collection-grid .post-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(27, 28, 28, 0.08);
}

.collection-grid .post-item h3 {
  font-size: 1.6rem;
  margin-top: 18px;
}

.collection-grid .kicker {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.product-card {
  background: #ffffff;
  border: 1px solid rgba(233, 223, 215, 0.45);
  box-shadow: 0 6px 18px rgba(74, 74, 74, 0.03);
  display: grid;
  gap: 18px;
  padding: 18px 18px 24px;
}

.product-card-media-wrap {
  display: block;
  overflow: hidden;
  background: #f6f1eb;
}

.product-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.24;
  background-size: cover;
  background-position: center;
  transition: transform 280ms ease;
}

.product-card:hover .product-card-media {
  transform: scale(1.035);
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 0 4px;
}

.product-card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.product-card-body h3 a {
  color: #4d4741;
}

.product-card-price {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-empty .product-card-body {
  text-align: center;
}

.home-footer-panel {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 28px 0 0;
}

.home-footer-panel h2 {
  font-size: 2.2rem;
}

.story-shell {
  grid-template-columns: minmax(0, 1.2fr) 360px;
  align-items: start;
  gap: 32px;
}

.story-hero {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, rgba(167, 4, 49, 0.06), rgba(202, 41, 71, 0.01));
  box-shadow: var(--shadow);
}

.story-hero h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  margin: 16px 0 24px;
}

.ghost-action-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}

.ghost-action {
  min-width: 136px;
  padding: 12px 22px;
  border: 1px solid rgba(197, 162, 142, 0.7);
  background: rgba(255, 255, 255, 0.75);
  color: #6b625a;
  box-shadow: none;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.ghost-action:hover {
  background: rgba(197, 162, 142, 0.08);
  color: #4a4a4a;
  box-shadow: none;
  transform: none;
}

.story-cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 24px;
}

.story-content {
  font-size: 1.04rem;
  line-height: 2.02;
}

.story-content p,
.story-content div,
.story-content span {
  line-height: 2.02;
}

.story-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 22px;
}

.story-panel {
  border-radius: 24px;
}

.story-comments .comment {
  background: rgba(255, 255, 255, 0.78);
}

.studio-login {
  margin-bottom: 24px;
}

.studio-layout {
  gap: 28px;
}

.studio-panel {
  border-radius: 28px;
}

.studio-meta {
  margin: 0 0 20px;
  padding-bottom: 18px;
}

.site-footer {
  border-top: 1px solid rgba(226, 190, 191, 0.7);
  padding: 52px 0 58px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(250, 249, 246, 0.96));
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 34px;
}

.site-footer-grid h3 {
  font-size: 0.86rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer-grid a,
.site-footer-grid p {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

@keyframes softRiseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.soft-header,
.showcase-frame,
.editorial-header,
.hero-copy-block,
.hero-stage,
.board-stage,
.story-hero,
.story-sidebar,
.site-footer {
  opacity: 0;
  animation: softRiseIn 720ms ease forwards;
}

.showcase-frame,
.hero-stage,
.board-stage,
.story-sidebar {
  animation-delay: 90ms;
}

.site-footer {
  animation-delay: 160ms;
}

.global-status {
  padding-bottom: 28px;
}

.showcase-body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
}

.showcase-body .global-status {
  width: min(1480px, calc(100% - 24px));
  margin: 0 auto;
  padding: 0 0 16px;
}

.soft-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 249, 246, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233, 223, 215, 0.7);
}

.soft-header-inner {
  width: min(1520px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.soft-header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.soft-header-nav-left {
  justify-content: flex-start;
}

.soft-header-nav-right {
  justify-content: flex-end;
}

.soft-header-nav a {
  transition: opacity 180ms ease, color 180ms ease;
}

.soft-header-nav a:hover {
  opacity: 0.7;
  color: var(--accent-strong);
}

.soft-header-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: #5d554d;
}

.showcase-frame {
  display: grid;
  grid-template-columns: 186px minmax(0, 1fr) 202px;
  min-height: calc(100vh - 39px);
  border-top: 0;
}

.left-rail,
.right-rail {
  background: #fbfaf7;
}

.left-rail {
  padding: 22px 16px 24px;
  border-right: 1px solid #e4ddd4;
}

.right-rail {
  padding: 18px 18px 24px;
  border-left: 1px solid #e4ddd4;
  position: relative;
}

.rail-brand {
  display: block;
  padding: 26px 6px 22px;
  color: #2d241d;
}

.rail-brand-title {
  display: block;
  font-family: "Noto Sans KR", "Segoe UI", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.rail-brand-sub {
  display: block;
  margin-top: 12px;
  color: #9b6a44;
  font-size: 0.9rem;
  letter-spacing: 0.34em;
}

.rail-nav,
.rail-subnav {
  display: grid;
  gap: 9px;
}

.rail-nav {
  margin-top: 18px;
}

.rail-nav a,
.rail-subnav a {
  font-size: 0.95rem;
  line-height: 1.35;
}

.rail-nav a.is-current {
  color: #d84040;
}

.rail-divider {
  width: 18px;
  height: 1px;
  background: #bcb4aa;
  margin: 22px 0 26px;
}

.rail-search {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 34px;
  border: 1px solid #ddd3c8;
  background: #fff;
}

.rail-search input {
  border: 0;
  border-radius: 0;
  padding: 10px 12px;
  min-width: 0;
  background: transparent;
}

.rail-search button {
  border: 0;
  border-left: 1px solid #ddd3c8;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  background: transparent;
  font-size: 1.1rem;
  color: #8f8b84;
}

.showcase-main {
  padding: 50px 28px 72px;
}

.hero-copy-block {
  margin: 0 auto 34px;
  max-width: 760px;
  text-align: center;
}

.hero-copy-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-copy-block h1 {
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #4f473f;
}

.hero-copy-block p {
  margin: 16px auto 0;
  max-width: 620px;
  font-size: 1.02rem;
  color: var(--muted);
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 18px;
  align-items: start;
}

.hero-visual,
.hero-aside,
.promo-grid {
  min-width: 0;
}

.hero-photo {
  position: relative;
  min-height: 635px;
  overflow: hidden;
  border: 1px solid #e9e1d7;
  background: #f5f0ee;
  border-radius: 1rem;
}

.hero-photo-media,
.promo-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 66% 30%, rgba(248, 209, 58, 0.95), rgba(248, 209, 58, 0) 4.2rem),
    radial-gradient(circle at 71% 24%, rgba(243, 185, 47, 0.95), rgba(243, 185, 47, 0) 3.5rem),
    radial-gradient(circle at 74% 29%, rgba(239, 198, 58, 0.95), rgba(239, 198, 58, 0) 4rem),
    radial-gradient(circle at 66% 58%, rgba(154, 111, 63, 0.94), rgba(154, 111, 63, 0) 5rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(244, 236, 230, 0.24)),
    linear-gradient(120deg, #f5eff1 0%, #efeaee 52%, #f6f2ef 100%);
}

.hero-photo-fallback::before {
  content: "";
  position: absolute;
  left: 16%;
  bottom: 17%;
  width: 41%;
  height: 48%;
  border-radius: 8% 8% 12% 12%;
  background:
    repeating-linear-gradient(180deg, rgba(126, 79, 38, 0.92) 0 6px, rgba(162, 112, 67, 0.92) 6px 12px),
    linear-gradient(180deg, rgba(164, 115, 67, 0.92), rgba(115, 73, 36, 0.92));
  box-shadow: inset 0 0 0 2px rgba(120, 75, 38, 0.24);
}

.hero-photo-fallback::after {
  content: "";
  position: absolute;
  left: 27%;
  bottom: 57%;
  width: 17%;
  height: 17%;
  border: 10px solid rgba(152, 103, 59, 0.96);
  border-bottom-width: 7px;
  border-radius: 50%;
}

.hero-photo.has-image {
  background: #f3efea;
}

.hero-photo.has-image .hero-photo-fallback {
  display: none;
}

.hero-dots {
  position: absolute;
  right: 18px;
  bottom: 8px;
  display: flex;
  gap: 4px;
}

.hero-dots span {
  width: 16px;
  height: 4px;
  background: rgba(188, 188, 188, 0.72);
}

.hero-dots span.is-active {
  background: rgba(97, 97, 97, 0.88);
}

.promo-label,
.showcase-section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b7b6a;
}

.hero-aside {
  display: grid;
  grid-template-rows: 200px 180px 200px;
  gap: 10px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.promo-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  min-height: 100%;
  border: 1px solid #e5ddd3;
  background: #fff;
  color: #1f1f1f;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}

.promo-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.88;
}

.promo-tile.has-image::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.9));
}

.promo-tile > * {
  position: relative;
  z-index: 1;
}

.promo-tile strong {
  font-size: 1.08rem;
  line-height: 1.14;
  letter-spacing: -0.05em;
}

.promo-tile p {
  margin: 8px 0 0;
  color: #8f8478;
  font-size: 0.8rem;
  line-height: 1.5;
}

.promo-guide::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, #f8f5f2, #ece7e3);
}

.promo-best::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, #f0ece7, #eadac9);
}

.promo-b2b::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.8)),
    linear-gradient(135deg, #cfeeff, #dff3f9 55%, #e7eef7 100%);
}

.promo-notice::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, #fbf8f4, #efe7dd);
}

.showcase-section {
  padding: 64px 0 0;
}

.showcase-section-head {
  margin-bottom: 42px;
  text-align: center;
}

.showcase-section-kicker {
  display: inline-block;
  margin-bottom: 10px;
}

.showcase-section-head h2 {
  margin: 0;
  font-size: 3.2rem;
  color: #102041;
  letter-spacing: -0.05em;
}

.showcase-section-head p {
  margin: 12px 0 0;
  color: #a08976;
  font-size: 1.02rem;
}

.showcase-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.showcase-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 14px;
}

.showcase-arrow {
  width: 44px;
  height: 44px;
  justify-self: center;
  border: 1px solid #ddd7ce;
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
  color: #544d44;
  font-size: 2rem;
  line-height: 1;
  padding: 0;
}

.showcase-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.showcase-pager span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cfcfcf;
}

.showcase-pager span.is-active {
  background: #898989;
}

.showcase-card {
  display: grid;
  gap: 12px;
}

.showcase-card-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border: 1px solid #ece3da;
  background-color: #f5efee;
  overflow: hidden;
}

.showcase-card-image.has-image {
  background-position: center;
  background-size: cover;
}

.showcase-card-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  padding: 4px 7px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.showcase-card-body h3 {
  margin: 0;
  font-size: 0.98rem;
  color: #1f1f1f;
}

.showcase-card-body p {
  margin: 6px 0 0;
  color: #8a7a69;
  font-size: 0.78rem;
  line-height: 1.55;
}

.image-tone-1,
.image-tone-2,
.image-tone-3,
.image-tone-4,
.image-tone-5,
.image-tone-6 {
  background-size: cover;
  background-position: center;
}

.image-tone-1 {
  background:
    radial-gradient(circle at 42% 58%, rgba(191, 153, 104, 0.92), rgba(191, 153, 104, 0) 18%),
    radial-gradient(circle at 59% 49%, rgba(129, 93, 53, 0.92), rgba(129, 93, 53, 0) 22%),
    linear-gradient(135deg, #f3efef, #f8f2ef);
}

.image-tone-2 {
  background:
    radial-gradient(circle at 50% 44%, rgba(129, 93, 53, 0.92), rgba(129, 93, 53, 0) 18%),
    radial-gradient(circle at 61% 56%, rgba(192, 149, 97, 0.94), rgba(192, 149, 97, 0) 24%),
    linear-gradient(135deg, #f2eded, #f5f0eb);
}

.image-tone-3 {
  background:
    radial-gradient(circle at 53% 42%, rgba(166, 121, 69, 0.92), rgba(166, 121, 69, 0) 20%),
    radial-gradient(circle at 52% 60%, rgba(118, 83, 44, 0.92), rgba(118, 83, 44, 0) 26%),
    linear-gradient(135deg, #f4efed, #faf7f1);
}

.image-tone-4 {
  background:
    radial-gradient(circle at 50% 48%, rgba(189, 146, 94, 0.72), rgba(189, 146, 94, 0) 26%),
    radial-gradient(circle at 52% 50%, rgba(145, 99, 54, 0.72), rgba(145, 99, 54, 0) 36%),
    linear-gradient(135deg, #f2e9e7, #f8f3f2);
}

.image-tone-5 {
  background:
    radial-gradient(circle at 44% 56%, rgba(185, 151, 109, 0.92), rgba(185, 151, 109, 0) 20%),
    radial-gradient(circle at 61% 61%, rgba(140, 105, 67, 0.92), rgba(140, 105, 67, 0) 17%),
    linear-gradient(135deg, #f1eded, #f8f5f2);
}

.image-tone-6 {
  background:
    radial-gradient(circle at 54% 48%, rgba(198, 165, 124, 0.92), rgba(198, 165, 124, 0) 18%),
    radial-gradient(circle at 52% 48%, rgba(243, 237, 228, 0.94), rgba(243, 237, 228, 0) 8%),
    linear-gradient(135deg, #f4efef, #fbf7f3);
}

.info-box {
  padding: 18px 0 22px;
  border-bottom: 1px solid #e4ddd4;
}

.info-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-box h3,
.info-head h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

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

.notice-list a,
.info-box p {
  color: #6b655e;
  font-size: 0.9rem;
  line-height: 1.5;
}

.info-phone {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.1;
  color: #102041;
  font-weight: 800;
}

.social-row {
  display: flex;
  gap: 10px;
  padding-top: 18px;
}

.social-row a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #d8d7d3;
  color: #fff;
  font-weight: 700;
}

.floating-chat {
  position: sticky;
  top: calc(100vh - 110px);
  margin: 84px 0 0 auto;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: #cfc600;
  color: #363112;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  font-size: 1.8rem;
}

.showcase-mobile-nav {
  display: none;
}

@media (max-width: 1320px) {
  .showcase-frame {
    grid-template-columns: 170px minmax(0, 1fr) 180px;
  }

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

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

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

@media (max-width: 1080px) {
  .showcase-frame {
    grid-template-columns: 1fr;
  }

  .left-rail,
  .right-rail {
    display: none;
  }

  .showcase-main {
    padding: 16px 14px 92px;
  }

  .soft-header-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .soft-header-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .showcase-section {
    padding: 42px 0 0;
  }

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

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

  .showcase-arrow {
    display: none;
  }

  .showcase-mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e4ddd4;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
  }

  .showcase-mobile-nav a {
    padding: 14px 8px calc(14px + env(safe-area-inset-bottom));
    text-align: center;
    font-size: 0.85rem;
    color: #534b43;
  }
}

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

  .hero-copy-block {
    margin-bottom: 24px;
  }

  .hero-copy-block h1 {
    font-size: 2.5rem;
  }

  .hero-aside,
  .promo-grid,
  .showcase-products {
    grid-template-columns: 1fr;
  }

  .showcase-section-head h2 {
    font-size: 2rem;
  }

  .showcase-card-body h3 {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .hero,
  .grid.two,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .home-header,
  .editorial-header,
  .home-layout,
  .board-layout,
  .hero-banner,
  .home-footer-panel,
  .story-shell,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .topnav,
  .topbar-tools,
  .collection-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-rail,
  .story-sidebar {
    position: static;
  }

  .collection-grid,
  .board-grid {
    grid-template-columns: 1fr;
  }

  .shell {
    width: min(1340px, calc(100% - 24px));
  }

  .home-shell,
  .editorial-shell {
    padding-top: 28px;
  }
}
