:root {
  color-scheme: light;
  --charcoal: #17110f;
  --charcoal-soft: #2d2420;
  --cream: #fff8eb;
  --paper: #f3ece1;
  --white: #ffffff;
  --red: #8d211d;
  --red-dark: #4a1210;
  --green: #284f3e;
  --green-dark: #183428;
  --gold: #d2ad63;
  --gold-soft: #f0d89a;
  --ink-muted: rgba(23, 17, 15, 0.68);
  --line: rgba(23, 17, 15, 0.13);
  --line-light: rgba(255, 248, 235, 0.18);
  --shadow: 0 28px 80px rgba(23, 17, 15, 0.2);
  --shadow-soft: 0 18px 48px rgba(23, 17, 15, 0.12);
  --header-height: 74px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.86), rgba(243, 236, 225, 0.98)),
    repeating-linear-gradient(90deg, rgba(23, 17, 15, 0.025) 0 1px, transparent 1px 36px);
  color: var(--charcoal);
  font-family:
    Pretendard,
    "Noto Sans KR",
    -apple-system,
    BlinkMacSystemFont,
    "Apple SD Gothic Neo",
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  overflow: hidden;
}

section {
  scroll-margin-top: var(--header-height);
}

.site-header {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(23, 17, 15, 0.94), rgba(23, 17, 15, 0.78));
  border-bottom: 1px solid rgba(210, 173, 99, 0.2);
  box-shadow: 0 18px 42px rgba(23, 17, 15, 0.2);
  color: var(--white);
  display: flex;
  gap: 24px;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  padding: 0 36px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

@supports (backdrop-filter: blur(14px)) {
  .site-header {
    backdrop-filter: blur(16px) saturate(130%);
    background: rgba(23, 17, 15, 0.76);
  }
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.12rem;
  font-weight: 900;
  gap: 12px;
  min-width: 0;
  white-space: nowrap;
}

.brand__mark {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(141, 33, 29, 0.98), rgba(74, 18, 16, 0.98));
  border: 1px solid rgba(240, 216, 154, 0.42);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 24px rgba(0, 0, 0, 0.18);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  line-height: 1;
  width: 38px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  margin-left: auto;
}

.site-nav a {
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: rgba(255, 248, 235, 0.84);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 42px;
  padding: 13px 14px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(210, 173, 99, 0.12);
  color: var(--gold-soft);
  outline: 0;
}

.menu-toggle {
  align-items: center;
  background: rgba(210, 173, 99, 0.12);
  border: 1px solid rgba(240, 216, 154, 0.24);
  border-radius: 8px;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.menu-toggle span {
  background: var(--white);
  border-radius: 20px;
  display: block;
  height: 2px;
  width: 18px;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.hero {
  --hero-image: url("assets/hero-offal.png");
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(23, 17, 15, 0.94) 0%, rgba(23, 17, 15, 0.72) 45%, rgba(23, 17, 15, 0.3) 100%),
    linear-gradient(0deg, rgba(74, 18, 16, 0.64), rgba(23, 17, 15, 0.08)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: 91svh;
  padding: calc(var(--header-height) + 58px) 36px 58px;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  left: 36px;
  pointer-events: none;
  position: absolute;
  right: 36px;
  z-index: 1;
}

.hero::before {
  background: linear-gradient(90deg, rgba(210, 173, 99, 0.7), transparent 42%);
  height: 1px;
  top: calc(var(--header-height) + 28px);
}

.hero::after {
  background:
    linear-gradient(180deg, transparent, rgba(23, 17, 15, 0.58)),
    linear-gradient(90deg, rgba(210, 173, 99, 0.28), transparent 58%);
  bottom: 0;
  height: 140px;
  left: 0;
  right: 0;
}

.hero__content {
  max-width: 760px;
  position: relative;
  width: min(100%, 1180px);
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  margin: 0 0 14px;
  padding-left: 36px;
  position: relative;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 24px;
}

.eyebrow--dark {
  color: var(--green);
}

.hero h1 {
  font-size: 4.45rem;
  font-weight: 900;
  line-height: 1.04;
  margin: 0;
  max-width: 760px;
  overflow-wrap: anywhere;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  word-break: keep-all;
}

.hero__body {
  color: rgba(255, 248, 235, 0.88);
  font-size: 1.18rem;
  font-weight: 600;
  margin: 28px 0 0;
  max-width: 620px;
  word-break: keep-all;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 50px;
  padding: 0 22px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  outline: 0;
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 38px rgba(141, 33, 29, 0.28);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(145deg, #a12a25, var(--red-dark));
  box-shadow: 0 22px 48px rgba(141, 33, 29, 0.34);
}

.button--ghost {
  background: rgba(255, 248, 235, 0.08);
  border-color: rgba(240, 216, 154, 0.4);
  color: var(--cream);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(210, 173, 99, 0.16);
  border-color: rgba(240, 216, 154, 0.62);
}

.button--dark {
  background: var(--charcoal);
  color: var(--white);
}

.button--light {
  background: var(--cream);
  border-color: var(--line);
  color: var(--charcoal);
}

.hero__meta {
  border-top: 1px solid rgba(240, 216, 154, 0.24);
  color: rgba(255, 248, 235, 0.78);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 30px;
  max-width: 620px;
  padding-top: 20px;
}

.hero__meta span {
  align-items: center;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 9px;
  white-space: nowrap;
}

.hero__meta span::before {
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(210, 173, 99, 0.12);
  content: "";
  height: 6px;
  width: 6px;
}

.hero__note {
  background: rgba(23, 17, 15, 0.76);
  border: 1px solid rgba(240, 216, 154, 0.24);
  border-radius: 8px;
  bottom: 36px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
  color: rgba(255, 248, 235, 0.88);
  font-weight: 800;
  max-width: 410px;
  padding: 18px 20px;
  position: absolute;
  right: 36px;
  z-index: 2;
}

.section {
  padding: 104px 36px;
  position: relative;
}

.section__inner {
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.section h2 {
  font-size: 2.62rem;
  font-weight: 900;
  line-height: 1.18;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.section p {
  color: var(--ink-muted);
  font-size: 1.04rem;
  margin: 18px 0 0;
  word-break: keep-all;
}

.split-layout {
  align-items: start;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.split-layout--reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.section-copy {
  max-width: 580px;
}

.section--intro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 235, 0.92)),
    repeating-linear-gradient(135deg, rgba(23, 17, 15, 0.028) 0 1px, transparent 1px 18px);
  border-bottom: 1px solid rgba(23, 17, 15, 0.08);
}

.feature-grid {
  display: grid;
  gap: 16px;
  counter-reset: feature;
}

.feature-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 17, 15, 0.12);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  counter-increment: feature;
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 22px 22px 22px 72px;
  position: relative;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.feature-item::before {
  align-items: center;
  background: var(--charcoal);
  border: 1px solid rgba(210, 173, 99, 0.42);
  border-radius: 8px;
  color: var(--gold-soft);
  content: "0" counter(feature);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  left: 22px;
  position: absolute;
  top: 24px;
  width: 34px;
}

.feature-item:hover {
  border-color: rgba(210, 173, 99, 0.5);
  box-shadow: 0 24px 58px rgba(23, 17, 15, 0.16);
  transform: translateY(-2px);
}

.feature-item strong {
  font-size: 1.08rem;
}

.feature-item span {
  color: var(--ink-muted);
}

.section--products {
  background:
    linear-gradient(180deg, rgba(74, 18, 16, 0.96), rgba(23, 17, 15, 0.98)),
    repeating-linear-gradient(90deg, rgba(240, 216, 154, 0.06) 0 1px, transparent 1px 42px);
  color: var(--white);
}

.section--products::before {
  background: linear-gradient(90deg, transparent, rgba(210, 173, 99, 0.45), transparent);
  content: "";
  height: 1px;
  left: 36px;
  position: absolute;
  right: 36px;
  top: 0;
}

.section--products .section-heading {
  max-width: 690px;
}

.section--products p {
  color: rgba(255, 248, 235, 0.78);
}

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

.product-card {
  background: linear-gradient(180deg, var(--white), var(--cream));
  border: 1px solid rgba(240, 216, 154, 0.26);
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.28);
  color: var(--charcoal);
  min-width: 0;
  overflow: hidden;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card:hover {
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px);
}

.product-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  transition: transform 420ms ease;
  width: 100%;
}

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

.product-card:nth-child(2) img {
  object-position: center;
}

.product-card:nth-child(3) img {
  object-position: center;
}

.product-card__body {
  display: grid;
  gap: 10px;
  padding: 24px;
  position: relative;
}

.product-card__body::before {
  background: linear-gradient(90deg, var(--gold), rgba(210, 173, 99, 0));
  content: "";
  height: 2px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.product-card span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
}

.product-card h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0;
  word-break: keep-all;
}

.product-card p {
  color: var(--ink-muted);
  font-size: 0.98rem;
  margin: 0;
}

.product-card strong {
  color: var(--green);
  font-size: 0.9rem;
}

.section--items {
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.96), rgba(243, 236, 225, 0.94)),
    repeating-linear-gradient(135deg, rgba(23, 17, 15, 0.028) 0 1px, transparent 1px 20px);
  border-bottom: 1px solid rgba(23, 17, 15, 0.08);
}

.section--items .section-heading {
  max-width: 720px;
}

.item-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.item-list li {
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 17, 15, 0.11);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 17, 15, 0.08);
  color: var(--charcoal);
  display: flex;
  font-weight: 900;
  min-height: 52px;
  padding: 13px 15px;
  word-break: keep-all;
}

.section--holiday {
  background:
    linear-gradient(90deg, rgba(255, 248, 235, 0.98), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(141, 33, 29, 0.08), transparent 54%);
  border-bottom: 1px solid rgba(23, 17, 15, 0.1);
  border-top: 1px solid rgba(210, 173, 99, 0.22);
}

.holiday-layout {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

.holiday-copy {
  max-width: 560px;
}

.holiday-copy h2 {
  color: var(--charcoal);
}

.holiday-points {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.holiday-points li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 17, 15, 0.1);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23, 17, 15, 0.08);
  color: var(--charcoal);
  font-weight: 900;
  padding: 14px 16px;
  word-break: keep-all;
}

.holiday-photo {
  margin: 0;
}

.media-placeholder {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 235, 0.58)),
    repeating-linear-gradient(135deg, rgba(23, 17, 15, 0.06) 0 1px, transparent 1px 16px);
  border: 1px dashed rgba(141, 33, 29, 0.34);
  border-radius: 8px;
  color: rgba(23, 17, 15, 0.62);
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 330px;
  overflow: hidden;
  padding: 24px;
  text-align: center;
  word-break: keep-all;
}

.media-placeholder.has-image {
  background: transparent;
  border: 0;
  display: block;
  min-height: 0;
  padding: 0;
}

.media-placeholder.has-image figcaption {
  display: none;
}

.holiday-photo img {
  aspect-ratio: 1 / 1;
  background: rgba(255, 248, 235, 0.95);
  border: 1px solid rgba(210, 173, 99, 0.26);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.section--partners {
  background:
    linear-gradient(135deg, rgba(23, 17, 15, 0.98), rgba(24, 52, 40, 0.96)),
    repeating-linear-gradient(90deg, rgba(240, 216, 154, 0.05) 0 1px, transparent 1px 38px);
  color: var(--white);
}

.section--partners p {
  color: rgba(255, 248, 235, 0.82);
}

.partner-layout {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.9fr);
}

.partner-map {
  margin: 0;
}

.partner-map img {
  background: rgba(255, 248, 235, 0.95);
  border: 1px solid rgba(240, 216, 154, 0.28);
  border-radius: 8px;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.3);
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.partner-map.media-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 248, 235, 0.12), rgba(210, 173, 99, 0.08)),
    repeating-linear-gradient(135deg, rgba(255, 248, 235, 0.08) 0 1px, transparent 1px 16px);
  border-color: rgba(240, 216, 154, 0.32);
  color: rgba(255, 248, 235, 0.76);
}

.partner-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.partner-list span {
  background: rgba(255, 248, 235, 0.08);
  border: 1px solid rgba(240, 216, 154, 0.2);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  color: rgba(255, 248, 235, 0.9);
  font-weight: 900;
  padding: 14px 16px;
  word-break: keep-all;
}

.order-band {
  background:
    linear-gradient(90deg, rgba(255, 248, 235, 0.96), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, rgba(210, 173, 99, 0.18), transparent 46%);
  border-bottom: 1px solid rgba(23, 17, 15, 0.1);
  border-top: 1px solid rgba(210, 173, 99, 0.28);
  padding: 72px 36px;
}

.order-layout {
  align-items: center;
  border-left: 3px solid var(--gold);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  padding-left: 34px;
}

.order-layout p {
  color: var(--ink-muted);
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0;
}

.section--extras {
  background:
    linear-gradient(180deg, rgba(243, 236, 225, 0.94), rgba(255, 248, 235, 0.92)),
    repeating-linear-gradient(0deg, rgba(23, 17, 15, 0.025) 0 1px, transparent 1px 32px);
}

.notice-panel {
  background:
    linear-gradient(145deg, rgba(23, 17, 15, 0.98), rgba(45, 36, 32, 0.98)),
    linear-gradient(90deg, rgba(210, 173, 99, 0.2), transparent);
  border: 1px solid rgba(240, 216, 154, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  padding: 38px;
  position: relative;
}

.notice-panel::before {
  background: var(--gold);
  content: "";
  height: 3px;
  left: 38px;
  position: absolute;
  right: 38px;
  top: 0;
}

.notice-panel h2 {
  font-size: 2rem;
}

.notice-panel ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.notice-panel li {
  border-bottom: 1px solid rgba(240, 216, 154, 0.18);
  color: rgba(255, 248, 235, 0.84);
  padding-bottom: 14px;
  word-break: keep-all;
}

.notice-panel li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.section--contact {
  background:
    linear-gradient(135deg, rgba(24, 52, 40, 0.98), rgba(23, 17, 15, 0.98)),
    repeating-linear-gradient(90deg, rgba(240, 216, 154, 0.05) 0 1px, transparent 1px 38px);
  color: var(--white);
}

.section--contact::before {
  background: linear-gradient(90deg, rgba(210, 173, 99, 0.72), transparent 52%);
  content: "";
  height: 1px;
  left: 36px;
  position: absolute;
  right: 36px;
  top: 0;
}

.section--contact p {
  color: rgba(255, 248, 235, 0.82);
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
}

.business-card-wall {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.business-card-photo {
  margin: 28px 0 0;
  max-width: 520px;
  width: 88%;
}

.business-card-photo img {
  aspect-ratio: 853 / 724;
  border: 1px solid rgba(240, 216, 154, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.22);
  height: auto;
  object-fit: contain;
  width: 100%;
}

.business-card {
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.98), rgba(232, 206, 174, 0.94));
  border: 1px solid rgba(210, 173, 99, 0.34);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  color: var(--charcoal);
  display: grid;
  gap: 13px;
  min-height: 320px;
  overflow: hidden;
  padding: 26px 24px 0;
  position: relative;
}

.business-card::before {
  border: 1px solid rgba(141, 33, 29, 0.26);
  border-radius: 8px;
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
}

.business-card__logo {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(74, 18, 16, 0.55);
}

.business-card__company {
  color: #321c16;
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0;
}

.business-card strong {
  border-bottom: 1px solid rgba(74, 18, 16, 0.34);
  color: #2a1813;
  display: inline-flex;
  font-size: 1.55rem;
  justify-self: start;
  line-height: 1.2;
  padding: 8px 28px 10px 0;
}

.business-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.business-card dl div {
  align-items: baseline;
  display: flex;
  gap: 10px;
}

.business-card dt {
  color: rgba(74, 18, 16, 0.72);
  font-size: 0.9rem;
  font-weight: 900;
  min-width: 50px;
}

.business-card dd {
  color: #2a1813;
  font-size: 1.04rem;
  font-weight: 900;
  margin: 0;
}

.business-card__small {
  color: rgba(42, 24, 19, 0.74);
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0;
}

.business-card__band {
  align-self: end;
  background: linear-gradient(90deg, #9a5c34, #b47a4a);
  color: #24100b;
  font-size: 0.92rem;
  font-weight: 900;
  margin: 10px -24px 0;
  padding: 16px 18px;
  text-align: center;
}

.contact-box {
  background: rgba(255, 248, 235, 0.08);
  border: 1px solid rgba(240, 216, 154, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.18);
  font-style: normal;
  padding: 34px;
}

.contact-box dl {
  display: grid;
  gap: 22px;
  margin: 0;
}

.contact-box div {
  border-bottom: 1px solid rgba(240, 216, 154, 0.14);
  display: grid;
  gap: 5px;
  padding-bottom: 18px;
}

.contact-box div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-box dt {
  color: rgba(240, 216, 154, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-box dd {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0;
  overflow-wrap: anywhere;
}

.site-footer {
  align-items: center;
  background: #0f0b0a;
  border-top: 1px solid rgba(210, 173, 99, 0.18);
  color: rgba(255, 248, 235, 0.68);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  padding: 24px 36px;
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 3.1rem;
  }

  .hero__note {
    bottom: 24px;
    left: 36px;
    right: auto;
  }

  .split-layout,
  .split-layout--reverse,
  .order-layout,
  .contact-layout,
  .holiday-layout,
  .partner-layout {
    grid-template-columns: 1fr;
  }

  .holiday-copy {
    max-width: 720px;
  }

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

  .item-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand__mark {
    height: 34px;
    width: 34px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    align-items: stretch;
    background: rgba(31, 26, 23, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    min-width: 220px;
    opacity: 0;
    padding: 8px;
    pointer-events: none;
    position: absolute;
    right: 18px;
    top: calc(100% + 10px);
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
  }

  .hero {
    min-height: 84svh;
    padding: calc(var(--header-height) + 40px) 22px 118px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero__body {
    font-size: 1.05rem;
  }

  .hero__note {
    bottom: 22px;
    left: 22px;
    max-width: calc(100% - 44px);
    right: 22px;
  }

  .section {
    padding: 70px 22px;
  }

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

  .order-band {
    padding: 54px 22px;
  }

  .notice-panel,
  .contact-box {
    padding: 24px;
  }

  .product-grid,
  .business-card-wall {
    grid-template-columns: 1fr;
  }

  .business-card-photo {
    max-width: 560px;
    width: 100%;
  }

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

  .partner-layout {
    gap: 34px;
  }

}

@media (max-width: 460px) {
  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section h2 {
    font-size: 1.76rem;
  }

  .item-list {
    grid-template-columns: 1fr;
  }

  .business-card {
    min-height: 300px;
    padding: 22px 20px 0;
  }

  .business-card__logo {
    font-size: 2.7rem;
  }

  .business-card__company {
    font-size: 1.1rem;
  }

  .business-card strong {
    font-size: 1.35rem;
  }

  .business-card__band {
    margin-left: -20px;
    margin-right: -20px;
  }
}

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