:root {
  --bg: #f6f2ec;
  --paper: #fffaf2;
  --ink: #171515;
  --muted: #6b6258;
  --line: #ded6c9;
  --brand: #ff5a2a;
  --brand-dark: #d6401c;
  --purple: #35164b;
  --green: #12380f;
  --shadow: 0 20px 60px rgba(36, 24, 14, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::after {
  display: block;
  height: 74px;
  content: "";
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(23, 21, 21, 0.92);
  color: #fff;
  backdrop-filter: blur(14px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.logo span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.logo strong {
  font-size: 14px;
  letter-spacing: 0;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: 690px;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 90, 42, 0.28), transparent 30%),
    linear-gradient(135deg, #1d1028 0%, #35164b 48%, #12380f 100%);
  color: #fff;
}

.hero-copy {
  min-width: 0;
}

.kicker {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
}

.hero .kicker,
.final-cta .kicker {
  color: #ffb49c;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 26px;
  font-size: clamp(48px, 7.4vw, 108px);
  line-height: 0.98;
  letter-spacing: 0;
  word-break: keep-all;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4.7vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
}

h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.1;
}

.hero-copy > p:not(.kicker) {
  max-width: 760px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.62;
  word-break: keep-all;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 28px;
}

.hero-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 950;
}

.button.primary {
  border: 0;
  background: var(--brand);
  color: #fff;
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.64);
  color: #fff;
}

.button.light {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.hero-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.hero-card img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px clamp(18px, 5vw, 72px) 0;
  background: var(--line);
}

.quick-info article {
  display: grid;
  gap: 6px;
  min-height: 132px;
  align-content: center;
  padding: 24px;
  background: var(--paper);
}

.quick-info span,
.package-no {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.quick-info strong {
  color: var(--purple);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.quick-info small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.3;
}

.section {
  padding: 82px clamp(18px, 5vw, 72px);
}

.section-title {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-title > p:not(.kicker),
.simple-grid p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.package-scroll {
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.menu-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.menu-overview article {
  display: grid;
  gap: 7px;
  min-height: 148px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(53, 22, 75, 0.14);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(36, 24, 14, 0.08);
}

.menu-overview span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.menu-overview strong {
  font-size: 20px;
  line-height: 1.18;
  word-break: keep-all;
}

.menu-overview p {
  margin-bottom: 0;
  color: var(--purple);
  font-weight: 900;
}

.menu-overview p small,
.package-card .price small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.package-card {
  position: relative;
  display: grid;
  grid-template-rows: 30px 64px 132px 76px auto;
  row-gap: 12px;
  align-items: start;
  min-height: 0;
  padding: 24px;
  border: 1px solid rgba(53, 22, 75, 0.11);
  border-top: 5px solid var(--brand);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    #fff;
  box-shadow: 0 18px 50px rgba(36, 24, 14, 0.08);
}

.package-card h3 {
  display: flex;
  align-items: start;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.05;
  word-break: keep-all;
}

.package-fit {
  max-width: 96%;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.58;
  word-break: keep-all;
}

.package-card .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 76px;
  margin: 0;
  padding: 0 18px;
  background: var(--purple);
  color: #fff;
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.package-card .price small {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #39332d;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.42;
  list-style: none;
}

.package-card li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  word-break: keep-all;
}

.package-card li::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(53, 22, 75, 0.09);
  color: var(--purple);
  font-size: 11px;
  font-weight: 950;
  line-height: 18px;
  text-align: center;
  content: "✓";
}

.package-card .note {
  color: var(--brand-dark);
  font-weight: 950;
}

.package-card .note::before {
  background: rgba(255, 90, 42, 0.12);
  color: var(--brand-dark);
  content: "!";
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: #171515;
  color: #fff;
}

.quote-copy {
  position: sticky;
  top: 96px;
}

.quote-copy .kicker {
  color: #ffb49c;
}

.quote-copy p:not(.kicker) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.quote-box {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  background: #fffaf2;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

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

.quote-fields label,
.quote-check,
.quote-wide {
  display: grid;
  gap: 8px;
}

.quote-fields span,
.quote-check span,
.quote-wide span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.quote-fields input,
.quote-fields select,
.quote-wide textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.quote-fields input,
.quote-fields select {
  min-height: 52px;
  padding: 0 14px;
}

.quote-wide textarea {
  min-height: 112px;
  padding: 14px;
  line-height: 1.5;
  resize: vertical;
}

.quote-referral-etc.is-hidden {
  display: none;
}

.quote-fields select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--purple) 50%),
    linear-gradient(135deg, var(--purple) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 12px) 22px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.quote-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  width: fit-content;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.quote-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.quote-check.is-locked {
  color: var(--muted);
  cursor: not-allowed;
}

.quote-drink-menu {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.quote-drink-menu > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-drink-menu strong {
  color: var(--purple);
  font-size: 17px;
}

.quote-drink-menu a {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-drink-menu p {
  margin-bottom: 0;
  color: #39332d;
  font-size: 14px;
  font-weight: 750;
}

.quote-drink-menu span {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 950;
}

.quote-result {
  display: grid;
  gap: 4px;
  padding: 24px;
  background: var(--purple);
  color: #fff;
}

.quote-result span {
  color: #ffb49c;
  font-size: 13px;
  font-weight: 950;
}

.quote-result strong {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.quote-result p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-actions .button {
  min-width: 180px;
}

.quote-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.quote-note.is-deposit {
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 180, 156, 0.28);
  background: rgba(255, 180, 156, 0.08);
  color: #ffcfbf;
  font-weight: 850;
  word-break: keep-all;
}

.drink-section {
  background: #fffaf2;
}

.drink-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.5fr);
  gap: 18px;
  align-items: start;
}

.drink-menu {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.drink-menu img {
  height: auto;
  object-fit: contain;
}

.drink-guide {
  display: grid;
  gap: 12px;
  align-self: start;
}

.drink-guide article {
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 22px;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}

.drink-guide span {
  color: var(--brand);
  font-weight: 950;
}

.drink-guide strong {
  font-size: 21px;
  line-height: 1.2;
}

.drink-guide p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 750;
}

.drink-guide .is-alert {
  background: var(--purple);
  color: #fff;
}

.drink-guide .is-alert p {
  color: rgba(255, 255, 255, 0.76);
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(53, 22, 75, 0.12);
  background: #fff;
  box-shadow: 0 14px 36px rgba(36, 24, 14, 0.08);
}

.cookie-option span {
  align-self: start;
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
}

.cookie-option strong {
  display: block;
  margin-bottom: 5px;
  color: var(--purple);
  font-size: 20px;
  line-height: 1.2;
  word-break: keep-all;
}

.cookie-option p {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
  word-break: keep-all;
}

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

.cookie-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  margin: 0;
  background: #171515;
}

.cookie-gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.cookie-gallery figure:hover img {
  transform: scale(1.03);
}

.cookie-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 10px;
  background: rgba(23, 21, 21, 0.78);
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  text-align: center;
  backdrop-filter: blur(6px);
}

.available-drinks {
  margin-top: 22px;
}

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

.drink-list article {
  display: grid;
  grid-template-columns: minmax(92px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  min-height: 188px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(53, 22, 75, 0.1);
  box-shadow: 0 16px 36px rgba(36, 24, 14, 0.08);
}

.drink-list img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
}

.drink-list article > div {
  display: grid;
  align-content: center;
  padding: 22px 20px 22px 0;
}

.drink-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 22px;
}

.drink-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.58;
  word-break: keep-all;
}

.education-section {
  background: #ece3d7;
}

.education-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  gap: 24px;
  align-items: end;
  margin-bottom: 16px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(53, 22, 75, 0.94), rgba(18, 56, 15, 0.94)),
    #35164b;
  color: #fff;
}

.education-actions {
  display: grid;
  gap: 10px;
}

.education-actions .button {
  white-space: nowrap;
}

.speaker-profile {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 18px;
  padding: clamp(18px, 3vw, 28px);
  background: #fff;
  border: 1px solid rgba(53, 22, 75, 0.08);
  box-shadow: 0 18px 50px rgba(36, 24, 14, 0.08);
}

.speaker-photo,
.speaker-stage,
.speaker-mini-case {
  overflow: hidden;
  background: #f6f2ec;
}

.speaker-photo {
  margin: 0;
  height: 310px;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.speaker-evidence {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.speaker-stage {
  position: relative;
  height: 230px;
  margin: 0;
}

.speaker-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 21, 21, 0.04), rgba(23, 21, 21, 0.78));
  content: "";
}

.speaker-stage figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  padding: 9px 10px;
  background: rgba(23, 21, 21, 0.68);
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 950;
  word-break: keep-all;
}

.speaker-mini-case {
  display: grid;
  align-content: end;
  min-height: 230px;
  padding: 20px;
  color: #fff;
  text-decoration: none;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 90, 42, 0.34), transparent 30%),
    linear-gradient(135deg, #35164b, #170314 72%);
}

.speaker-mini-case span {
  align-self: start;
  width: fit-content;
  margin-bottom: auto;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffb49c;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.speaker-mini-case strong {
  margin-top: 54px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.14;
  word-break: keep-all;
}

.speaker-mini-case p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
  word-break: keep-all;
}

.speaker-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 0 0 2px;
}

.speaker-copy h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  word-break: keep-all;
}

.speaker-copy > p:not(.kicker) {
  max-width: 820px;
  margin-bottom: 0;
  color: #4a423b;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.62;
  word-break: keep-all;
}

.speaker-points {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #211d1a;
  font-weight: 850;
  line-height: 1.48;
  word-break: keep-all;
}

.speaker-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.speaker-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff3ed;
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
}

.speaker-book {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(150px, 230px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
  min-height: 250px;
  margin-top: 4px;
  padding: clamp(18px, 3vw, 28px);
  color: #fff;
  text-decoration: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 90, 42, 0.34), transparent 34%),
    linear-gradient(135deg, #2a0927, #080408 62%, #1c0f25);
}

.speaker-book img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.32));
}

.speaker-book div {
  display: grid;
  gap: 10px;
  padding: 0;
  background: transparent;
}

.speaker-book span {
  color: #ffb49c;
  font-size: 12px;
  font-weight: 950;
}

.speaker-book strong {
  max-width: 620px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
  word-break: keep-all;
}

.speaker-book p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.6;
  word-break: keep-all;
}

.speaker-book em {
  justify-self: start;
  margin-top: 4px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  word-break: keep-all;
}

.lecture-fit {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 16px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(36, 24, 14, 0.08);
}

.lecture-fit h3 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.lecture-fit ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lecture-fit li {
  padding: 14px 16px;
  background: #f6f2ec;
  color: #39332d;
  font-weight: 800;
  word-break: keep-all;
}

.lecture-topics {
  margin-bottom: 18px;
}

.lecture-topics .theme-heading,
.lecture-cases .theme-heading {
  display: grid;
  justify-content: start;
  gap: 6px;
  margin-bottom: 16px;
}

.lecture-topics .theme-heading strong,
.lecture-cases .theme-heading strong {
  max-width: 720px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.16;
  word-break: keep-all;
}

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

.topic-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 8px;
  min-height: 190px;
  align-content: start;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(53, 22, 75, 0.08);
  box-shadow: 0 18px 50px rgba(36, 24, 14, 0.08);
}

.topic-grid span {
  grid-row: 1 / span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #fff3ed;
  color: var(--brand);
  font-size: 14px;
  font-weight: 950;
}

.topic-grid strong {
  align-self: center;
  max-width: 420px;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.18;
  letter-spacing: 0;
  word-break: keep-all;
}

.topic-grid p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.62;
  word-break: keep-all;
}

.education-hero span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #ffb49c;
  font-size: 13px;
  font-weight: 950;
}

.education-hero h3 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(30px, 4.5vw, 56px);
}

.education-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

.education-grid article,
.workshop-panel {
  background: #fff;
  box-shadow: 0 18px 50px rgba(36, 24, 14, 0.08);
}

.education-grid article {
  min-height: 300px;
  padding: 24px;
}

.education-grid article > p {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
}

.education-grid h3 {
  font-size: 25px;
  word-break: keep-all;
}

.education-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: #39332d;
  font-weight: 750;
}

.workshop-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: clamp(24px, 4vw, 36px);
}

.workshop-panel h3 {
  font-size: clamp(30px, 4vw, 48px);
}

.workshop-panel > div > p:not(.kicker) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.workshop-panel ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workshop-panel li {
  padding: 18px;
  background: #f6f2ec;
}

.workshop-panel span {
  display: block;
  margin-bottom: 22px;
  color: var(--brand);
  font-weight: 950;
}

.workshop-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.workshop-panel li p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.lecture-cases {
  margin-bottom: 22px;
}

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

.lecture-case-grid .case-card {
  --media-height: 230px;
  grid-template-rows: 230px 1fr;
  min-height: 468px;
  border: 1px solid rgba(53, 22, 75, 0.08);
}

.lecture-case-grid .case-card img {
  aspect-ratio: auto;
  height: 230px;
}

.lecture-case-grid .case-card div {
  display: grid;
  grid-template-rows: auto minmax(56px, auto) 1fr;
  gap: 12px;
  align-content: start;
  min-height: 238px;
  padding: 22px;
}

.lecture-case-grid .case-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff3ed;
  color: var(--brand);
  line-height: 1;
}

.lecture-case-grid .case-card strong {
  display: flex;
  align-items: center;
  min-height: 56px;
  font-size: clamp(20px, 1.9vw, 25px);
  line-height: 1.22;
  word-break: keep-all;
}

.lecture-case-grid .case-card p {
  font-size: 15px;
  line-height: 1.62;
  word-break: keep-all;
}

.case-studies {
  margin-top: 22px;
}

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

.case-card {
  --media-height: 210px;
  position: relative;
  display: grid;
  grid-template-rows: var(--media-height) 1fr;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(36, 24, 14, 0.08);
}

.case-card img {
  width: 100%;
  height: var(--media-height);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #ece3d7;
}

.case-card::before,
.proof-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: var(--media-height);
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(22, 10, 31, 0.06) 0%,
      rgba(22, 10, 31, 0.18) 38%,
      #160a1f 38%,
      #160a1f 100%
    );
}

.case-card::after,
.proof-card::after {
  content: attr(data-overlay);
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  top: calc(var(--media-height) - 92px);
  min-height: 64px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
  word-break: keep-all;
  text-shadow: none;
  pointer-events: none;
}

.lecture-case-grid .case-card::after {
  top: calc(var(--media-height) - 104px);
  font-size: clamp(22px, 2vw, 30px);
}

.case-card div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.case-card span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
}

.case-card strong {
  font-size: 22px;
  line-height: 1.18;
  word-break: keep-all;
}

.case-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 750;
}

.simple-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: #fffaf2;
}

.simple-grid > * {
  min-width: 0;
}

.preview-stack {
  display: grid;
  gap: 14px;
}

.preview-stack img {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.guide-panel {
  display: grid;
  gap: 10px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--purple);
  color: #fff;
}

.guide-panel strong {
  font-size: 24px;
  line-height: 1.2;
}

.guide-panel p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.guide-panel p:last-child {
  margin-bottom: 0;
}

.theme-group + .theme-group {
  margin-top: 34px;
}

.theme-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.theme-heading span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
}

.theme-heading strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.best-grid,
.theme-grid {
  display: grid;
  gap: 14px;
}

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

.theme-grid {
  grid-template-columns: repeat(4, 1fr);
}

.theme-group.is-global .theme-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-group.is-global .theme-card img {
  aspect-ratio: 4 / 3;
}

.theme-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 320px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 1px 0 var(--line);
}

.theme-card.is-best {
  box-shadow: 0 0 0 2px var(--brand);
}

.theme-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  flex: 0 0 auto;
  object-fit: cover;
  background: #1d1622;
}

.theme-card > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 18px;
  background: var(--green);
}

.theme-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
  word-break: keep-all;
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.theme-meta {
  margin-bottom: 10px;
  color: #acd3a4;
  font-size: 13px;
  font-weight: 850;
}

.theme-summary {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
  word-break: keep-all;
}

.guide {
  background: #ece3d7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 210px;
  padding: 24px;
  background: #fff;
}

.steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--brand);
  font-weight: 950;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.visit {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: var(--green);
  color: #fff;
}

.visit .kicker {
  color: #acd3a4;
}

.visit-copy {
  display: grid;
  gap: 16px;
}

.visit-copy p:not(.kicker) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.65;
  word-break: keep-all;
}

.visit-content {
  display: grid;
  gap: 18px;
}

.visit-table {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.visit-table > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.9fr) repeat(2, minmax(90px, 1fr));
  min-height: 82px;
  align-items: center;
  padding: 0 24px;
}

.visit-table-head {
  min-height: 58px;
  background: rgba(0, 0, 0, 0.18);
}

.visit-table > div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.visit-table span {
  color: #acd3a4;
  font-weight: 850;
}

.visit-table strong {
  word-break: keep-all;
}

.visit-table small {
  display: inline-block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

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

.visit-cards article {
  min-height: 188px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.visit-cards span {
  display: block;
  margin-bottom: 18px;
  color: #acd3a4;
  font-size: 12px;
  font-weight: 950;
}

.visit-cards strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
  word-break: keep-all;
}

.visit-cards p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.6;
  word-break: keep-all;
}

.visit-notice {
  background: rgba(255, 79, 29, 0.22);
}

.proof-section {
  background: #fffaf2;
}

.proof-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px;
  background: var(--green);
  color: #fff;
}

.proof-lead strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
  word-break: keep-all;
}

.proof-lead p {
  align-self: end;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
  word-break: keep-all;
}

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

.proof-card {
  --media-height: 210px;
  position: relative;
  display: grid;
  grid-template-rows: var(--media-height) 1fr;
  overflow: hidden;
  min-height: 430px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(36, 24, 14, 0.08);
}

.proof-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand), 0 22px 60px rgba(255, 90, 42, 0.13);
}

.proof-card img {
  width: 100%;
  height: var(--media-height);
  object-fit: cover;
  background: #ece3d7;
}

.proof-card div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.proof-card span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
}

.proof-card strong {
  font-size: 22px;
  line-height: 1.18;
  word-break: keep-all;
}

.proof-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: 84px 18px;
  text-align: center;
  background: var(--purple);
  color: #fff;
}

.final-cta h2 {
  max-width: 720px;
}

.final-cta p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: #171515;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer p {
  margin-bottom: 0;
}

.bottom-nav {
  position: fixed;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 11;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(18, 12, 9, 0.18);
  backdrop-filter: blur(12px);
}

.bottom-nav a {
  display: grid;
  min-height: 58px;
  place-items: center;
  color: #403931;
  font-size: 13px;
  font-weight: 950;
}

.bottom-nav a + a {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 980px) {
  .hero,
  .simple-grid,
  .visit,
  .quote-section,
  .drink-layout,
  .speaker-profile,
  .workshop-panel {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

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

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

  .package-card {
    min-height: 430px;
  }

  .best-grid,
  .theme-grid,
  .steps,
  .education-grid,
  .topic-grid,
  .drink-list,
  .proof-grid,
  .lecture-case-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .education-hero {
    grid-template-columns: 1fr;
  }

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

  .lecture-fit {
    grid-template-columns: 1fr;
  }

  .proof-lead {
    grid-template-columns: 1fr;
  }

  .cookie-option {
    grid-template-columns: 1fr;
  }

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

  .lecture-fit ul {
    grid-template-columns: 1fr;
  }

  .speaker-photo,
  .speaker-stage,
  .speaker-book {
    height: auto;
  }

  .speaker-photo {
    position: relative;
    top: auto;
    height: 320px;
  }

  .speaker-stage {
    height: 220px;
  }

  .workshop-panel ol {
    grid-template-columns: 1fr;
  }

  .visit-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body::after {
    height: 92px;
  }

  .topbar {
    min-height: 62px;
    padding-inline: 18px;
  }

  .logo strong {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 42px 54px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.12;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 32px;
    line-height: 1.14;
  }

  .hero-copy > p:not(.kicker),
  .section-title > p:not(.kicker),
  .simple-grid p,
  .final-cta p {
    font-size: 16px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
  }

  .quick-info {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }

  .quick-info article {
    min-height: 98px;
    padding-inline: 18px;
  }

  .section {
    padding: 64px 18px;
  }

  .package-card {
    min-height: 400px;
    padding: 18px;
  }

  .package-card h3 {
    font-size: 24px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .package-card .price {
    margin-bottom: 16px;
    padding: 11px 12px;
    font-size: 17px;
  }

  .package-fit {
    min-height: 0;
    font-size: 14px;
  }

  .package-card ul {
    gap: 8px;
    padding-left: 16px;
    font-size: 14px;
  }

  .menu-overview {
    gap: 8px;
  }

  .menu-overview article {
    min-height: 116px;
    padding: 14px;
  }

  .menu-overview strong {
    font-size: 16px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .quote-fields {
    grid-template-columns: 1fr;
  }

  .quote-box {
    padding: 18px;
  }

  .quote-actions {
    display: grid;
  }

  .quote-drink-menu > div {
    display: grid;
  }

  .cookie-gallery {
    grid-template-columns: 1fr;
  }

  .cookie-gallery figure,
  .cookie-gallery img {
    min-height: 220px;
    height: 220px;
  }

  .drink-layout,
  .education-grid,
  .topic-grid,
  .drink-list,
  .proof-grid,
  .lecture-case-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    grid-template-rows: 190px 1fr;
    min-height: 0;
  }

  .proof-card img {
    height: 190px;
  }

  .education-grid article {
    min-height: 0;
    padding: 20px;
  }

  .education-hero {
    padding: 22px;
  }

  .education-actions {
    display: grid;
  }

  .education-hero p,
  .workshop-panel > div > p:not(.kicker) {
    font-size: 16px;
  }

  .speaker-profile {
    padding: 14px;
  }

  .speaker-copy {
    padding: 6px 4px 10px;
  }

  .speaker-copy h3 {
    font-size: 34px;
  }

  .speaker-copy > p:not(.kicker) {
    font-size: 15px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .speaker-points {
    font-size: 14px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .speaker-book {
    grid-column: auto;
    grid-template-columns: minmax(120px, 0.44fr) minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
  }

  .speaker-evidence {
    grid-template-columns: 1fr;
  }

  .speaker-stage,
  .speaker-mini-case {
    min-height: 220px;
  }

  .speaker-book img {
    height: auto;
    max-height: 220px;
    min-height: 0;
  }

  .theme-heading {
    display: grid;
    justify-content: start;
  }

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

  .theme-card {
    min-height: 0;
  }

  .theme-card > div {
    min-height: 184px;
    padding: 15px;
  }

  .theme-card strong {
    font-size: 17px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .theme-summary {
    font-size: 13px;
  }

  .visit-table > div {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
    min-height: 76px;
    padding: 18px;
  }

  .visit-table span,
  .visit-table strong {
    font-size: 14px;
  }

  .visit-cards article {
    min-height: 0;
    padding: 18px;
  }

  .footer {
    display: grid;
    padding-bottom: 104px;
  }

  .bottom-nav {
    display: grid;
  }
}

@media print {
  @page {
    size: A4;
    margin: 0;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background: #f6f2ec;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  body::after,
  .bottom-nav {
    display: none !important;
  }

  .topbar {
    position: static;
  }

  .button {
    break-inside: avoid;
  }

  .section,
  .hero,
  .final-cta,
  .package-card,
  .theme-card,
  .case-card,
  .steps li,
  .visit-cards article {
    break-inside: avoid;
  }
}
