:root {
  --cream: #f2f0eb;
  --ceramic: #edebe9;
  --paper: #fffefc;
  --white: #ffffff;
  --neutral: #f9f9f9;
  --espresso: rgba(0, 0, 0, 0.87);
  --primary: #006241;
  --accent-green: #00754a;
  --house-green: #1e3932;
  --uplift-green: #2b5148;
  --green-light: #d4e9e2;
  --reward-gold: #cba258;
  --cardbg: #ffffff;
  --borderbeige: rgba(0, 0, 0, 0.12);
  --muted: rgba(0, 0, 0, 0.58);
  --softbeige: #faf6ee;
  --danger: #c82014;
  --shadow-card: 0 0 0.5px rgba(0, 0, 0, 0.14), 0 1px 1px rgba(0, 0, 0, 0.24);
  --shadow-float: 0 0 6px rgba(0, 0, 0, 0.24), 0 8px 12px rgba(0, 0, 0, 0.14);
  --radius-card: 12px;
  --radius-pill: 50px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--espresso);
  font-family: Pretendard, "Helvetica Neue", Helvetica, Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--borderbeige);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green);
}

.min-screen {
  min-height: 100vh;
}

.slide-section {
  min-height: auto;
  display: flex;
  align-items: center;
}

.slide-section > :not(.dot-pattern) {
  width: 100%;
}

.wide {
  max-width: 1120px;
  margin: 0 auto;
}

.narrow {
  max-width: 700px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.desktop-break {
  display: block;
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(0.95);
}

.btn-primary {
  padding: 13px 24px;
  border-color: var(--accent-green);
  background: var(--accent-green);
  color: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.18), 0 8px 12px rgba(0, 117, 74, 0.14);
  font-size: 16px;
}

.btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2), 0 8px 12px rgba(0, 98, 65, 0.18);
}

.btn-secondary {
  padding: 12px 22px;
  border-color: var(--espresso);
  background: transparent;
  color: var(--espresso);
  font-size: 15px;
}

.btn-secondary:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.btn-accent {
  padding: 13px 24px;
  border-color: var(--white);
  background: var(--white);
  color: var(--accent-green);
  box-shadow: var(--shadow-float);
  font-size: 16px;
}

.full {
  width: 100%;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  padding: 8px 16px;
}

.text-button:hover {
  color: var(--accent-green);
}

.underline {
  text-decoration: underline;
  text-decoration-color: rgba(0, 117, 74, 0.3);
  text-underline-offset: 4px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 0 32px;
  background: var(--paper);
}

.hero-section::before {
  position: absolute;
  top: 8.2%;
  right: 6.667%;
  left: 6.667%;
  z-index: 4;
  height: 1px;
  content: "";
  background: #e5e0da;
}

.hero-section::after {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(1040px, 84vw);
  height: 1px;
  content: "";
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 3;
  width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  min-height: 100svh;
  padding-top: clamp(108px, 11.8vh, 120px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 clamp(76px, 9.6vh, 98px);
  color: var(--primary) !important;
  font-size: clamp(17px, 1.45vw, 20px) !important;
  font-weight: 900;
  line-height: 1.2 !important;
}

.hero-brand span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-green);
  color: var(--paper);
  font-size: 13px;
}

.hero-section h1 {
  width: min(940px, 100%);
  margin: 0 0 clamp(72px, 9.4vh, 96px);
  color: #171717;
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  word-break: keep-all;
  text-wrap: balance;
}

.hero-section h1 span {
  color: inherit;
}

.hero-title-highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.hero-title-highlight::after {
  position: absolute;
  right: -0.08em;
  bottom: 0.03em;
  left: -0.08em;
  z-index: -1;
  height: 0.22em;
  border-radius: 999px;
  background: #d2e5cb;
  content: "";
}

.hero-section p {
  width: min(720px, 100%);
  margin: 0 0 clamp(44px, 6vh, 62px);
  color: #5d5d5d;
  font-size: clamp(17px, 1.85vw, 24px);
  font-weight: 500;
  line-height: 1.58;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.hero-actions .btn-primary {
  min-width: 284px;
  min-height: 66px;
  padding: 0 36px;
  font-size: 17px;
  font-weight: 800;
}

.hero-actions .btn-secondary {
  min-width: 224px;
  min-height: 66px;
  padding: 0 30px;
  background: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-weight: 800;
}

.hero-actions .btn-primary i {
  font-size: 20px;
}

.hero-preview-link {
  display: inline-flex;
  width: 216px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #007a4b;
  font-family: "Noto Sans KR", var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.hero-preview-link i {
  font-size: 16px;
}

.hero-preview-link:hover {
  color: #006241;
  transform: translateY(1px);
}

.hero-art,
.hero-art span {
  position: absolute;
  pointer-events: none;
}

.hero-art {
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-watercolor-field,
.hero-image-fade {
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
}

.hero-watercolor-field {
  top: 54.199%;
  z-index: 0;
  height: 38.086%;
  background: url("./assets/images/hero-watercolor-base.jpg") center / cover no-repeat;
}

.hero-image-fade-top {
  top: 54.199%;
  z-index: 1;
  height: 17.09%;
  background: linear-gradient(180deg, #fffefc 0%, #fffefc 26%, rgba(255, 254, 252, 0) 100%);
}

.hero-image-fade-bottom {
  top: 78.613%;
  z-index: 1;
  height: 13.672%;
  background: linear-gradient(180deg, rgba(255, 254, 252, 0) 0%, rgba(255, 254, 252, 0.86) 100%);
  opacity: 0.8;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.tag-row.left {
  justify-content: flex-start;
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--borderbeige);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.result-heading h2,
.section-heading h2,
.reservation-copy h2,
.form-heading h2 {
  margin: 0 0 24px;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  word-break: keep-all;
  text-wrap: balance;
}

.result-heading p,
.section-heading p,
.service-heading p,
.reservation-copy p,
.form-heading p {
  margin: 0 0 40px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.question-section {
  min-height: 100svh;
  padding: clamp(36px, 7vh, 72px) 24px;
  background: var(--paper);
}

.question-wrap {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.progress-bar {
  width: 100%;
  height: 4px;
  margin-bottom: clamp(34px, 6vh, 56px);
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.08);
}

.progress-bar div {
  height: 100%;
  border-radius: inherit;
  background: var(--accent-green);
  transition: width 0.3s ease;
}

.question-card {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.question-copy {
  max-width: 720px;
  margin: 0 auto clamp(26px, 5vh, 40px);
  text-align: center;
}

.question-card h3 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4.8vw, 48px);
  font-weight: 900;
  line-height: 1.18;
  word-break: keep-all;
  text-wrap: balance;
}

.question-helper {
  max-width: 540px;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.52);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 600;
  line-height: 1.5;
}

.option-stack {
  display: grid;
  max-width: 760px;
  margin: 0 auto;
  gap: 12px;
}

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

.answer-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--espresso);
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.answer-option:hover {
  border-color: var(--accent-green);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.answer-option.selected {
  border-color: var(--accent-green);
  background: rgba(212, 233, 226, 0.72);
  box-shadow: 0 12px 28px rgba(0, 117, 74, 0.12);
}

.answer-option.unknown-option {
  background: rgba(255, 255, 255, 0.36);
}

.answer-option small {
  display: block;
  margin-top: 5px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.45;
}

.question-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  margin-top: clamp(22px, 4vh, 34px);
  text-align: center;
}

.question-nav .btn:disabled {
  cursor: not-allowed;
  transform: none;
  opacity: 0.45;
  box-shadow: none;
}

.recommendation-section {
  padding: 64px 24px 80px;
  border-bottom: 1px solid var(--borderbeige);
  background: var(--cream);
}

.recommendation-wrap {
  max-width: 1040px;
}

.other-taste-screen {
  min-height: 100svh;
  padding: 44px 40px 40px;
  overflow: hidden;
  background: #fafaf8;
}

.other-taste-shell {
  width: min(100%, 1842px);
  margin: 0 auto;
}

.other-taste-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 96px;
  margin-bottom: 30px;
}

.other-taste-header > div {
  width: 760px;
}

.other-taste-header h1 {
  margin: 0 0 8px;
  color: #171717;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.other-taste-header p {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.taste-carousel {
  display: grid;
  grid-template-columns: 56px minmax(0, 1180px) 56px;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.taste-carousel-window {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100vw - 250px));
  height: 760px;
}

.taste-browse-row {
  position: relative;
  width: 100%;
  height: 760px;
}

.taste-browse-card {
  position: absolute;
  top: 0;
  left: 50%;
  overflow: hidden;
  width: 328px;
  height: 760px;
  padding: 22px 22px 20px;
  border: 1.5px solid color-mix(in srgb, var(--taste-accent) 40%, transparent);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.13);
  transform: translateX(var(--taste-card-x, -130px)) scale(var(--taste-card-scale, 1));
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.42s ease;
  will-change: transform, opacity;
}

.taste-browse-card.is-position-neg-2 {
  --taste-card-x: -810px;
  z-index: 1;
}

.taste-browse-card.is-position-neg-1 {
  --taste-card-x: -470px;
  z-index: 2;
}

.taste-browse-card.is-position-0 {
  --taste-card-x: -130px;
  z-index: 3;
}

.taste-browse-card.is-position-pos-1 {
  --taste-card-x: 210px;
  z-index: 2;
}

.taste-browse-card.is-position-pos-2 {
  --taste-card-x: 450px;
  z-index: 1;
}

.taste-browse-card.is-side {
  opacity: 0.82;
}

.taste-browse-card.is-edge {
  opacity: 0.42;
}

.taste-browse-card.is-active {
  opacity: 1;
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.18);
}

.taste-carousel-fade {
  position: absolute;
  top: 0;
  z-index: 4;
  width: 150px;
  height: 760px;
  pointer-events: none;
}

.taste-carousel-fade-left {
  left: 0;
  background: linear-gradient(90deg, #fafaf8 0%, rgba(250, 250, 248, 0) 100%);
}

.taste-carousel-fade-right {
  right: 0;
  background: linear-gradient(270deg, #fafaf8 0%, rgba(250, 250, 248, 0) 100%);
}

.taste-carousel-arrow {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2ded9;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #2f2b28;
  box-shadow: 0 10px 20px -14px rgba(0, 0, 0, 0.27);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.taste-carousel-arrow:hover {
  background: #ffffff;
  box-shadow: 0 12px 24px -14px rgba(0, 0, 0, 0.36);
  transform: translateY(-1px);
}

.taste-carousel.is-moving .taste-carousel-arrow,
.taste-carousel.is-moving .taste-carousel-pagination button {
  pointer-events: none;
}

.taste-carousel-arrow i {
  font-size: 20px;
}

.taste-carousel-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 14px;
  margin-top: 25px;
}

.taste-carousel-pagination button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d9d4cf;
  cursor: pointer;
}

.taste-carousel-pagination button.is-active {
  width: 30px;
  background: #2f2b28;
}

.taste-card-copy {
  position: relative;
  z-index: 2;
}

.taste-card-header {
  display: grid;
  min-height: 47px;
  gap: 6px;
}

.taste-card-header h2 {
  margin: 0;
  color: #171717;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.taste-card-header p {
  margin: 0;
  color: #6f625e;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.taste-card-rule {
  width: 100%;
  height: 1px;
  margin-top: 16px;
  background: #cfc7c2;
}

.taste-card-accent-line {
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--taste-accent);
  opacity: 0.72;
}

.taste-card-table {
  display: grid;
  margin-top: 14px;
}

.taste-card-info-row {
  display: grid;
  gap: 8px;
  padding-bottom: 9px;
}

.taste-card-info-row > div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
}

.taste-card-info-row strong {
  color: #5f5a55;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.taste-card-info-row span {
  color: #171717;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
  word-break: keep-all;
}

.taste-card-info-row::after {
  display: block;
  width: 100%;
  height: 1px;
  background: #d8d2ce;
  content: "";
}

.taste-card-wash {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  width: 292px;
  height: 92px;
  border-radius: 14px;
  background: radial-gradient(circle at 18% 8%, var(--taste-soft-wash) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.58;
  pointer-events: none;
}

.taste-card-art {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 0;
  height: 320px;
  background-image: var(--taste-art);
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.taste-card-view {
  position: absolute;
  right: 22px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  width: 96px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  background: var(--taste-accent);
  color: #ffffff;
  box-shadow: 0 8px 16px -10px color-mix(in srgb, var(--taste-accent) 50%, transparent);
  font-size: 14px;
  font-weight: 700;
}

.taste-card-view i {
  font-size: 13px;
}

.taste-card-view:hover {
  transform: translateY(-1px);
}

.result-experience {
  --result-accent: var(--accent-green);
  --result-bean-accent: var(--accent-green);
  --result-context: var(--accent-green);
  --result-card-mesh-left: #f2f8f1;
  --result-card-mesh-center: #f3faf6;
  --result-card-mesh-right: #eef6ff;
  --result-ground-1: #d2e5cb55;
  --result-ground-2: #e2eef855;
  --result-ground-3: #f7ebe844;
  --result-ground-4: #e8c5c833;
  --result-ground-6: #d2e5cb33;
  --result-ground-7: #e2eef833;
  --result-ground-9: #e8c5c822;
  --result-ground-11: #f7ebe822;
  --result-watercolor-image: url("./assets/images/result-watercolor-funky.jpg");
  background: var(--paper);
}

.result-clean_floral {
  --result-accent: #007a4d;
  --result-bean-accent: #007a4b;
  --result-context: #007a4b;
  --result-card-mesh-left: #f2f8f1;
  --result-card-mesh-center: #f3faf6;
  --result-card-mesh-right: #eef6ff;
  --result-ground-1: #d2e5cb55;
  --result-ground-2: #e2eef855;
  --result-ground-3: #f7ebe844;
  --result-ground-4: #e8c5c833;
  --result-ground-6: #d2e5cb33;
  --result-ground-7: #e2eef833;
  --result-ground-9: #e8c5c822;
  --result-ground-11: #f7ebe822;
  --result-watercolor-image: url("./assets/images/result-watercolor-clean.jpg");
}

.result-honey_balance {
  --result-accent: #b57c2e;
  --result-bean-accent: #d99b52;
  --result-context: #b57c2e;
  --result-card-mesh-left: #f8efe2;
  --result-card-mesh-center: #fff7e4;
  --result-card-mesh-right: #f3e8da;
  --result-ground-1: #f2c94c55;
  --result-ground-2: #fdf8e244;
  --result-ground-3: #d99b5244;
  --result-ground-4: #e5d4c033;
  --result-ground-6: #f2c94c33;
  --result-ground-7: #d99b5233;
  --result-ground-9: #e5d4c022;
  --result-ground-11: #fdf8e222;
  --result-watercolor-image: url("./assets/images/result-watercolor-honey.jpg");
}

.result-nutty_daily {
  --result-accent: #8b5e3c;
  --result-bean-accent: #8b5e3c;
  --result-context: #8b5e3c;
  --result-card-mesh-left: #f1ece6;
  --result-card-mesh-center: #f4eadd;
  --result-card-mesh-right: #ede8e2;
  --result-ground-1: #c49a6c55;
  --result-ground-2: #8b5e3c44;
  --result-ground-3: #a89f913b;
  --result-ground-4: #f2ece433;
  --result-ground-6: #c49a6c33;
  --result-ground-7: #8b5e3c33;
  --result-ground-9: #a89f9122;
  --result-ground-11: #f2ece422;
  --result-watercolor-image: url("./assets/images/result-watercolor-nutty.jpg");
}

.result-fruity_natural {
  --result-accent: #d94f6b;
  --result-bean-accent: #d94f6b;
  --result-context: #8c4374;
  --result-card-mesh-left: #fbe8ee;
  --result-card-mesh-center: #fff1de;
  --result-card-mesh-right: #f7e9f1;
  --result-ground-1: #d94f6b55;
  --result-ground-2: #ff8c4244;
  --result-ground-3: #ffd15c33;
  --result-ground-4: #8c437422;
  --result-ground-6: #d94f6b33;
  --result-ground-7: #ff8c4233;
  --result-ground-9: #8c437422;
  --result-ground-11: #ffd15c22;
  --result-watercolor-image: url("./assets/images/result-watercolor-fruity.jpg");
}

.result-funky_experiment {
  --result-accent: #7f456d;
  --result-bean-accent: #591e4a;
  --result-context: #7f456d;
  --result-card-mesh-left: #f1e8ef;
  --result-card-mesh-center: #ffede8;
  --result-card-mesh-right: #f6eaf1;
  --result-ground-1: #591e4a55;
  --result-ground-2: #8f398544;
  --result-ground-3: #ff523344;
  --result-ground-4: #e8b92333;
  --result-ground-6: #8f398533;
  --result-ground-7: #ff523333;
  --result-ground-9: #591e4a22;
  --result-ground-11: #e8b92322;
  --result-watercolor-image: url("./assets/images/result-watercolor-funky.jpg");
}

.result-panel {
  position: relative;
  overflow: hidden;
  min-height: 1180px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: #fffefc;
  display: flex;
  align-items: flex-start;
}

.result-panel-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 240px));
  margin: 0 auto;
  padding: 82px 0 260px;
}

.result-top-line {
  width: 100%;
  height: 1px;
  margin-bottom: 27px;
  background: #e5e0da;
}

.result-watercolor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 1440px;
  max-width: 100%;
  height: 520px;
  background: var(--result-watercolor-image) center / cover no-repeat;
  opacity: 1;
}

.result-watercolor::before,
.result-watercolor::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.result-watercolor::before {
  top: -1px;
  right: 0;
  left: 0;
  height: 260px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 38%, rgba(255, 255, 255, 0) 100%);
}

.result-watercolor::after {
  top: 0;
  bottom: 0;
  left: -1px;
  width: 520px;
  opacity: 0.72;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.result-watercolor-bottom {
  left: 50%;
  right: 0;
  bottom: 40px;
  transform: translateX(-50%);
}

.result-watercolor-top {
  top: 0;
  left: 50%;
  height: 420px;
  opacity: 0.62;
  transform: translateX(-50%);
}

.result-watercolor-top::before {
  top: 180px;
  height: 270px;
  background: linear-gradient(180deg, rgba(244, 241, 236, 0) 0%, #f4f1ec 76%, #f4f1ec 100%);
}

.result-watercolor-top::after {
  display: none;
}

.result-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 360px;
  min-height: 30px;
  margin-bottom: 20px;
  color: var(--result-accent);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.result-eyebrow::after {
  order: 2;
  height: 1px;
  content: "";
  background: #d8d2ce;
  flex: 0 0 68px;
}

.result-eyebrow span:last-child {
  order: 3;
  color: #9ca3af;
}

.result-profile-screen h2 {
  margin: 0;
  max-width: 900px;
  color: #171717;
  font-size: 78px;
  font-weight: 900;
  line-height: 1.05;
  word-break: keep-all;
  text-wrap: balance;
}

.result-lead {
  max-width: 760px;
  margin: 34px 0 0 4px;
  color: #4b5563;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
  word-break: keep-all;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.result-profile-screen .result-actions {
  margin-top: 54px;
}

.result-profile-screen .btn-primary {
  width: 196px;
  height: 52px;
  padding: 0;
  border-color: var(--result-accent);
  background: var(--result-accent);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--result-accent) 20%, transparent);
  font-size: 15px;
  font-weight: 900;
}

.result-profile-screen .btn-secondary {
  width: 180px;
  height: 52px;
  padding: 0;
  border-color: #e5e0da;
  background: #ffffff;
  color: #4b5563;
  font-size: 15px;
  font-weight: 900;
}

.result-panel .btn-primary {
  border-color: var(--result-accent);
  background: var(--result-accent);
}

.result-panel .btn-secondary {
  border-color: #e5e0da;
  background: #ffffff;
  color: #4b5563;
}

.profile-label-table {
  overflow: hidden;
  max-width: 900px;
  margin-top: 46px;
  border: 1px solid #e5e0da;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.profile-label-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 55px;
  padding: 16px 20px;
  color: #171717;
  font-size: 16px;
  font-weight: 900;
}

.profile-label-header span {
  color: var(--result-accent);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.profile-label-row {
  display: grid;
  grid-template-columns: 164px 1fr;
  min-height: 54px;
  border-top: 1px solid #e7e1dc;
}

.profile-label-row:first-child {
  border-top: 0;
}

.profile-label-row strong,
.profile-label-row span {
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.25;
  word-break: keep-all;
}

.profile-label-row strong {
  color: var(--result-accent);
  font-weight: 900;
}

.profile-label-row span {
  color: #171717;
  font-weight: 800;
}

.profile-note {
  max-width: 900px;
  margin-top: 46px;
  padding: 16px 20px;
  border: 1px solid #e5e0da;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.profile-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--result-accent);
  font-size: 15px;
  font-weight: 900;
}

.profile-note-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.profile-cup-note {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--result-accent) 8%, #ffffff);
  color: var(--result-accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.profile-note p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  word-break: keep-all;
}

.result-screen-bar p {
  margin: 0;
  color: var(--result-bean-accent);
  font-size: 20px;
  font-weight: 800;
}

.result-bean-screen {
  background: #f4f1ec;
}

.result-bean-screen::after {
  position: absolute;
  right: 130px;
  bottom: 160px;
  z-index: 0;
  width: 460px;
  height: 300px;
  border-radius: 180px 120px 220px 90px;
  background:
    radial-gradient(ellipse at 0% 18%, var(--result-ground-1) 0%, transparent 38%),
    radial-gradient(ellipse at 26% 3%, var(--result-ground-2) 0%, transparent 36%),
    radial-gradient(ellipse at 70% 12%, var(--result-ground-3) 0%, transparent 38%),
    radial-gradient(ellipse at 100% 8%, var(--result-ground-4) 0%, transparent 34%),
    radial-gradient(ellipse at 42% 34%, var(--result-ground-6) 0%, transparent 36%),
    radial-gradient(ellipse at 78% 56%, var(--result-ground-7) 0%, transparent 38%),
    radial-gradient(ellipse at 2% 90%, var(--result-ground-9) 0%, transparent 42%),
    radial-gradient(ellipse at 76% 84%, var(--result-ground-11) 0%, transparent 40%);
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.result-bean-screen .result-panel-inner {
  padding: 80px 0 252px;
}

.result-screen-bar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  height: 54px;
  margin-bottom: 34px;
  padding-top: 34px;
  border-top: 1px solid #dcd8d1;
}

.result-screen-bar h2 {
  margin: 0;
  color: var(--espresso);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
}

.result-screen-bar > span {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  color: var(--result-context);
  font-size: 15px;
  font-weight: 800;
}

.result-screen-bar > span::before {
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: var(--result-bean-accent);
  content: "";
}

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

.result-bean-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-width: 0;
  min-height: 630px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 28px 82px;
  border: 1.4px solid #ddd9d2;
  border-bottom-color: transparent;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 76%, rgba(255, 255, 255, 0.76) 88%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(62% 14% at 58% 92%, var(--result-card-mesh-center) 0%, rgba(255, 255, 255, 0) 74%),
    linear-gradient(100deg, var(--result-card-mesh-left) 0%, var(--result-card-mesh-center) 58%, var(--result-card-mesh-right) 100%),
    #ffffff;
  box-shadow: 0 4px 14px rgba(42, 33, 22, 0.05);
}

.result-bean-card::before {
  position: absolute;
  bottom: -128px;
  left: 50%;
  z-index: 2;
  width: 142%;
  height: 184px;
  border-top: 1.4px solid #ddd9d2;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translateX(-46%) rotate(-2.5deg);
}

.result-bean-card::after {
  position: absolute;
  bottom: -128px;
  left: 50%;
  z-index: 1;
  width: 142%;
  height: 184px;
  border-radius: 50%;
  background: #f4f1ec;
  content: "";
  pointer-events: none;
  transform: translateX(-46%) rotate(-2.5deg);
}

.result-bean-card > * {
  position: relative;
  z-index: 3;
}

.bean-card-header {
  display: flex;
  justify-content: space-between;
  min-height: 23px;
}

.bean-card-index {
  display: block;
  color: var(--result-bean-accent);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 18px;
  font-weight: 800;
}

.result-bean-card h3 {
  margin: 0;
  color: #242424;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
  word-break: keep-all;
}

.bean-card-subtitle {
  margin: 0;
  color: var(--result-bean-accent);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  word-break: keep-all;
}

.bean-card-description {
  min-height: 54px;
  margin: 0;
  color: #66615b;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  word-break: keep-all;
}

.bean-card-specs {
  display: grid;
  overflow: hidden;
  border: 1px solid #e5e1da;
  border-radius: 14px;
}

.bean-card-spec-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 16px;
  padding: 11px 14px;
  border-bottom: 1px solid #eae6df;
  background: #ffffff;
  color: #33302d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.bean-card-spec-row:last-child {
  border-bottom: 0;
}

.bean-card-spec-row strong {
  color: var(--result-bean-accent);
  font-size: 14px;
  font-weight: 800;
}

.bean-card-spec-row span {
  min-width: 0;
  color: #33302d;
}

.bean-card-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 35px;
}

.bean-note-tag {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  background: #f4f1ec;
  color: #5f5b55;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
}

.roast-meter {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 12px;
}

.roast-meter i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e7e2db;
}

.roast-meter i.active {
  background: var(--result-bean-accent);
}

.result-bean-screen .result-actions {
  justify-content: center;
  margin-top: 34px;
}

.result-bean-screen .btn-primary {
  width: 190px;
  height: 56px;
  padding: 0;
  border-radius: 14px;
  border-color: var(--result-bean-accent);
  background: var(--result-bean-accent);
  box-shadow: 0 7px 14px color-mix(in srgb, var(--result-bean-accent) 16%, transparent);
  font-size: 17px;
  font-weight: 800;
}


.recommendation-grid {
  display: grid;
  gap: 32px;
}

.recommendation-grid {
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recommendation-tabs {
  width: fit-content;
  display: flex;
  gap: 6px;
  margin: -10px auto 26px;
  padding: 6px;
  border: 1px solid var(--borderbeige);
  border-radius: var(--radius-pill);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.recommendation-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 18px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.recommendation-tabs button.active {
  background: var(--accent-green);
  color: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.18), 0 8px 12px rgba(0, 117, 74, 0.12);
}

.recommendation-list {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  gap: 18px;
}

.recommendation-card {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--borderbeige);
  border-radius: var(--radius-card);
  background: var(--cardbg);
  box-shadow: var(--shadow-card);
}

.recommendation-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--accent-green);
  font-size: 14px;
  font-weight: 900;
}

.recommendation-card h3 {
  margin: 0 0 12px;
  color: var(--espresso);
  font-size: clamp(23px, 2.7vw, 29px);
  font-weight: 800;
  line-height: 1.25;
  word-break: keep-all;
  text-wrap: balance;
}

.recommendation-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.recommendation-location {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--espresso) !important;
  font-size: 16px !important;
  font-weight: 800;
}

.recommendation-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.recommendation-meta span {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--borderbeige);
  border-radius: var(--radius-card);
  background: var(--cream);
  color: var(--espresso);
  font-size: 15px;
  line-height: 1.4;
}

.recommendation-meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.bean-meta {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tasting-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-green) !important;
  font-size: 16px !important;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--accent-green);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.recommendation-state {
  max-width: 720px;
  margin: 0 auto;
  padding: 44px 24px;
  border: 1px solid var(--borderbeige);
  border-radius: var(--radius-card);
  background: var(--cardbg);
  color: var(--muted);
  text-align: center;
  font-size: 18px;
  font-weight: 800;
}

.recommendation-state.error {
  color: var(--danger);
}

.info-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  border: 1px solid var(--borderbeige);
  border-radius: var(--radius-card);
  background: var(--cardbg);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--green-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.info-card h3 {
  margin: 8px 0 12px;
  font-size: 20px;
}

.info-card p {
  flex: 1;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.tip-icon {
  margin: 8px 0 12px;
  color: var(--accent-green);
  font-size: 24px;
}

.roastery-bridge-section {
  position: relative;
  overflow: hidden;
  min-height: 1234px;
  padding: 78px 120px 80px;
  background: #f4f1ec;
}

.bridge-entry-wash {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 220px;
  opacity: 0.72;
  background:
    radial-gradient(circle at 56% 2%, rgba(251, 232, 238, 0.47) 0%, rgba(251, 232, 238, 0) 32%),
    radial-gradient(circle at 100% 0%, rgba(255, 241, 222, 0.4) 0%, rgba(255, 241, 222, 0) 34%),
    linear-gradient(180deg, rgba(244, 241, 236, 0) 0%, #f4f1ec 100%);
  pointer-events: none;
}

.roastery-bridge-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.bridge-top-rule {
  width: 100%;
  height: 1px;
  background: #dcd8d1;
}

.roastery-map-bridge,
.cupping-note-value-section {
  display: grid;
  align-items: center;
}

.roastery-map-bridge {
  min-height: 470px;
  grid-template-columns: 560px minmax(0, 1fr);
  gap: 48px;
}

.bridge-copy {
  display: grid;
  gap: 20px;
  width: 560px;
}

.bridge-eyebrow {
  margin: 0;
  color: #007a4b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.bridge-copy h2,
.cupping-loop-copy h2 {
  margin: 0;
  color: #242424;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
  word-break: keep-all;
  text-wrap: balance;
}

.bridge-copy > p:not(.bridge-eyebrow),
.cupping-loop-copy p {
  margin: 0;
  color: #65605a;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.48;
  word-break: keep-all;
}

.bridge-alert-button {
  display: inline-flex;
  width: 240px;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: #007a4b;
  color: #ffffff;
  box-shadow: 0 7px 14px rgba(0, 122, 75, 0.14);
  font-size: 16px;
  font-weight: 800;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.bridge-alert-button:hover {
  background: #006241;
  box-shadow: 0 9px 18px rgba(0, 98, 65, 0.18);
  transform: translateY(-1px);
}

.map-preview-panel {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  height: 410px;
  padding: 14px clamp(22px, 7.5%, 72px);
  border: 1.2px solid #d9d5ce;
  border-radius: 28px;
  background: #f8f5ef;
  box-shadow: 0 8px 24px rgba(42, 33, 22, 0.05);
}

.map-preview-map {
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  background: url("./assets/images/roastery-map-preview.jpg") center / cover no-repeat;
}

.map-pin {
  position: absolute;
  width: var(--map-pin-size, 32px);
  height: var(--map-pin-size, 32px);
  border: 2px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 4px 10px rgba(42, 33, 22, 0.13);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin::after {
  position: absolute;
  right: 1px;
  bottom: -10px;
  width: 20px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  content: "";
  filter: blur(4px);
  transform: rotate(45deg);
}

.map-pin i {
  position: absolute;
  top: 9px;
  left: 9px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
}

.map-pin-acidity {
  top: 34%;
  left: 34%;
  background: #d94f6b;
}

.map-pin-fruity {
  top: 27%;
  left: 84%;
  background: #ff8c42;
}

.map-pin-roast {
  top: 73%;
  left: 84%;
  background: #007a4b;
}

.cupping-note-value-section {
  min-height: 520px;
  margin-top: 44px;
  grid-template-columns: 520px minmax(0, 1fr);
  gap: 34px;
}

.coffee-note-preview-card {
  min-height: 520px;
  padding: 20px 24px 28px;
  border: 1.2px solid #d6d1c9;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(42, 33, 22, 0.05);
}

.coffee-note-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.coffee-note-header h3 {
  margin: 0;
  color: #242424;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.coffee-note-header time {
  color: #8a837b;
  font-size: 12px;
  font-weight: 800;
}

.coffee-note-meta {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.coffee-note-meta-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
  align-items: end;
}

.coffee-note-meta-row strong,
.coffee-note-meta-row em {
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}

.coffee-note-meta-row strong {
  color: #007a4b;
}

.coffee-note-meta-row em {
  color: #3b3631;
}

.coffee-note-meta-row span {
  height: 1px;
  background: #dcd8d1;
}

.coffee-note-notes,
.coffee-note-block {
  overflow: hidden;
  border: 1px solid #d6d1c9;
  border-radius: 8px;
  background: #faf8f4;
}

.coffee-note-notes {
  display: grid;
  gap: 21px;
  min-height: 134px;
  margin-top: 22px;
  padding: 0 14px 16px;
}

.coffee-note-notes strong,
.coffee-note-block > strong {
  display: block;
  margin: 0 -14px;
  padding: 7px 12px;
  border-bottom: 1px solid #d6d1c9;
  background: #f1ede7;
  color: #4f4943;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.coffee-note-notes span {
  display: block;
  height: 1px;
  background: #d8d2ca;
}

.coffee-note-lower {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  margin-top: 20px;
}

.coffee-note-side {
  display: grid;
  gap: 12px;
}

.coffee-note-block {
  padding: 0 12px 12px;
}

.coffee-note-block > strong {
  margin: 0 -12px 10px;
  font-size: 11px;
}

.rating-block {
  min-height: 66px;
}

.coffee-note-stars {
  display: flex;
  gap: 6px;
  padding-top: 2px;
  color: #d99b52;
  font-size: 16px;
}

.coffee-note-stars .empty {
  color: #d8d1c8;
}

.brew-block {
  min-height: 112px;
}

.brew-check {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 18px;
  color: #4d4741;
  font-size: 11px;
  font-weight: 700;
}

.brew-check span {
  width: 12px;
  height: 12px;
  border: 1px solid #beb7ae;
  border-radius: 2px;
  background: #ffffff;
}

.brew-check.checked span {
  border-color: #007a4b;
  background: #007a4b;
}

.brew-check em {
  font-style: normal;
}

.tasting-wheel-block {
  min-height: 190px;
}

.tasting-wheel {
  position: relative;
  height: 158px;
}

.tasting-wheel svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tasting-wheel circle,
.tasting-wheel line {
  fill: none;
  stroke: #d8d2ca;
  stroke-width: 1;
}

.tasting-wheel polygon {
  fill: rgba(0, 122, 75, 0.19);
  stroke: #007a4b;
  stroke-width: 1.4;
}

.tasting-wheel .wheel-center {
  fill: #007a4b;
  stroke: none;
}

.tasting-wheel .wheel-svg-label {
  dominant-baseline: middle;
  fill: #6b645c;
  stroke: none;
  font-size: 10px;
  font-weight: 800;
}

.cupping-loop-copy {
  display: grid;
  gap: 22px;
}

.cupping-loop-copy p {
  font-size: 18px;
}

.recommendation-loop-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.recommendation-loop-flow > i {
  color: #9a938b;
  font-size: 14px;
}

.loop-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid #dcd8d1;
  border-radius: 10px;
  background: #ffffff;
  color: #5f5a53;
  font-size: 14px;
  font-weight: 800;
}

.loop-step.active {
  border-color: #007a4b;
  background: #007a4b;
  color: #ffffff;
}

.reservation-cta {
  position: relative;
  overflow: hidden;
  padding: 72px 24px;
  background: var(--house-green);
  color: var(--cardbg);
  text-align: center;
  border-bottom: 0;
}

.dot-pattern {
  display: none;
}

.reservation-copy {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.reservation-copy h2 {
  color: white;
  font-size: clamp(30px, 4vw, 42px);
}

.reservation-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 400;
}

.form-section {
  padding: 64px 24px 84px;
  background: var(--cream);
  border-top: 0;
  border-bottom: 1px solid var(--borderbeige);
}

.reservation-form-page {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 0;
  border-bottom: 1px solid #e1e6e2;
  background: #ffffff;
}

.reservation-page-wash {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 360px;
  background:
    radial-gradient(circle at 12% 4%, rgba(247, 225, 225, 0.36) 0%, rgba(247, 225, 225, 0) 30%),
    radial-gradient(circle at 84% 3%, rgba(239, 231, 203, 0.38) 0%, rgba(239, 231, 203, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.reservation-page-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 440px minmax(0, 760px);
  gap: 56px;
  align-items: start;
  width: calc(100% - 184px);
  max-width: 1256px;
  margin: 0 auto;
  padding: 96px 0 118px;
}

.reservation-hairline {
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  background: #e2e8e4;
}

.reservation-intro-panel {
  display: grid;
  gap: 22px;
  padding-top: 32px;
}

.reservation-eyebrow {
  margin: 0;
  color: #007a4b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.reservation-intro-panel h2 {
  margin: 0;
  color: #252323;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
  word-break: keep-all;
}

.reservation-intro-panel > p:not(.reservation-eyebrow) {
  margin: 0;
  color: #6d6661;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
  word-break: keep-all;
}

.reservation-result-summary {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid #cfe6da;
  border-radius: 14px;
  background: #ffffff;
}

.reservation-result-summary strong {
  color: #007a4b;
  font-size: 15px;
  font-weight: 800;
}

.reservation-result-summary span {
  color: #4f4945;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.reservation-form-card {
  display: grid;
  gap: 24px;
  width: 100%;
  min-height: 0;
  padding: 34px;
  border: 1px solid #e1e6e2;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 48px -28px rgba(0, 0, 0, 0.19);
}

.reservation-form-card h2 {
  margin: 0;
  color: #252323;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
}

.reservation-field label {
  margin-bottom: 10px;
  color: #383330;
  font-size: 15px;
  font-weight: 800;
}

.reservation-form-card input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]) {
  min-height: 56px;
  padding: 0 18px;
  border-color: #ddd4ce;
  border-radius: 10px;
  background: #faf8f6;
  color: #383330;
  font-size: 16px;
}

.reservation-form-card input::placeholder {
  color: #a19a94;
}

.reservation-form-card .reservation-interest-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reservation-form-card .reservation-stack-grid {
  grid-template-columns: 1fr;
  gap: 8px;
}

.reservation-form-card .choice-grid.two.reservation-beta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.reservation-form-card .choice-chip {
  position: relative;
  justify-content: center;
  min-height: 46px;
  padding: 12px 14px;
  border-color: #cfe6da;
  border-radius: 8px;
  background: #f1f8f4;
  color: #007a4b;
  text-align: center;
}

.reservation-form-card .reservation-interest-grid .choice-chip span {
  font-size: 15px;
  font-weight: 800;
}

.reservation-form-card .reservation-stack-grid .choice-chip,
.reservation-form-card .reservation-beta-grid .choice-chip {
  min-height: 42px;
  border-color: #dde7e1;
  background: #ffffff;
  color: #4f5a53;
  text-align: left;
}

.reservation-form-card .reservation-stack-grid .choice-chip {
  justify-content: flex-start;
}

.reservation-form-card .reservation-beta-grid .choice-chip {
  justify-content: center;
  min-height: 44px;
  text-align: center;
}

.reservation-form-card .reservation-stack-grid .choice-chip span {
  font-size: 14px;
  font-weight: 700;
}

.reservation-form-card .reservation-beta-grid .choice-chip span {
  font-size: 14px;
  font-weight: 800;
}

.reservation-form-card .choice-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reservation-form-card .choice-chip span {
  color: inherit;
  font-size: 14px;
  font-weight: 800;
}

.reservation-form-card .choice-chip:has(input:checked) {
  border-color: #007a4b;
  background: #007a4b;
  color: #ffffff;
}

.reservation-optional-section {
  display: grid;
  gap: 18px;
  padding-top: 22px;
}

.reservation-divider {
  width: 100%;
  height: 1px;
  background: #e9e1dc;
}

.reservation-optional-section h3 {
  margin: 0;
  color: #252323;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.reservation-agreement {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 22px;
  color: #6d6661;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  cursor: pointer;
}

.reservation-agreement input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: #007a4b;
}

.reservation-agreement.field-error {
  color: var(--danger);
}

.reservation-submit-button {
  display: inline-flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  background: #007a4b;
  color: #ffffff;
  box-shadow: 0 12px 24px -14px rgba(0, 122, 75, 0.4);
  font-size: 17px;
  font-weight: 900;
}

.reservation-submit-button:hover {
  background: #006241;
  transform: translateY(-1px);
}

.reservation-fine-print {
  margin: -8px 0 0;
  color: #8d8580;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.reservation-form-card.submitted {
  align-content: center;
  min-height: 420px;
  text-align: center;
}

.reservation-form-card.submitted .check-icon {
  margin: 0 auto;
}

.reservation-form-card.submitted p {
  margin: 0;
  color: #6d6661;
  font-size: 17px;
  line-height: 1.6;
}

.reservation-form-card.submitted small {
  color: #8d8580;
  font-size: 13px;
  line-height: 1.5;
}

.form-card {
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 48px);
  border: 1px solid var(--borderbeige);
  border-radius: var(--radius-card);
  background: var(--cardbg);
  box-shadow: var(--shadow-card);
}

.form-card form {
  display: grid;
  gap: 24px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--espresso);
  font-size: 14px;
  font-weight: 800;
}

.field label span {
  color: var(--accent-green);
}

.field input:not([type="checkbox"]):not([type="radio"]),
.field select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--borderbeige);
  border-radius: var(--radius-card);
  background: var(--white);
  color: var(--espresso);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field input:not([type="checkbox"]):not([type="radio"]):focus,
.field select:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 1px var(--accent-green);
}

.field input.field-error,
.consent-card.field-error {
  border-color: var(--danger);
  background: rgba(200, 32, 20, 0.05);
}

.error-text {
  margin: 4px 0 0;
  color: var(--danger);
  font-size: 14px;
}

.region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.region-grid button {
  padding: 8px 16px;
  border: 1px solid var(--borderbeige);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.region-grid button:hover,
.region-grid button.selected {
  border-color: var(--accent-green);
}

.region-grid button.selected {
  background: var(--accent-green);
  color: white;
}

.consent-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--borderbeige);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.74);
}

.consent-card.optional {
  background: rgba(245, 238, 225, 0.54);
}

.consent-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--espresso);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  cursor: pointer;
}

.consent-line input,
.choice-chip input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent-green);
}

.consent-card p {
  margin: 0;
  padding-left: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-error {
  margin-top: -8px;
}

.reservation-complete {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--borderbeige);
  text-align: center;
}

.reservation-complete .check-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  font-size: 32px;
}

.reservation-complete h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 34px);
}

.reservation-complete p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.reservation-complete small {
  display: block;
  margin-top: 8px;
  color: var(--muted-light);
  font-size: 13px;
}

.survey-form {
  display: grid;
  gap: 24px;
}

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

.choice-grid.two {
  grid-template-columns: 1fr;
}

.choice-chip {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--borderbeige);
  border-radius: var(--radius-card);
  background: var(--white);
  color: var(--espresso);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.choice-chip:hover,
.choice-chip:has(input:checked) {
  border-color: var(--accent-green);
}

.choice-chip:has(input:checked) {
  background: var(--green-light);
  box-shadow: 0 0 0 1px rgba(0, 112, 74, 0.12);
}

.submitted {
  padding-top: 80px;
  padding-bottom: 80px;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--accent-green);
  font-size: 40px;
  box-shadow: var(--shadow-card);
}

.submitted h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.submitted p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.footer {
  padding: 48px 24px;
  background: var(--house-green);
  color: var(--cream);
  text-align: center;
}

.footer div {
  max-width: 1120px;
  margin: 0 auto;
  opacity: 0.8;
}

.footer h4 {
  margin: 0 0 8px;
  font-size: 20px;
}

.footer p {
  margin: 0 0 24px;
  font-size: 14px;
}

.footer small {
  opacity: 0.6;
}

.error-state {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 24px;
}

@media (max-width: 860px) {
  .desktop-break {
    display: none;
  }

  .hero-section {
    min-height: 100svh;
    padding: 0 24px;
  }

  .hero-section::before {
    top: 40px;
    right: 24px;
    left: 24px;
  }

  .hero-grid {
    min-height: 100svh;
    padding-top: 92px;
  }

  .hero-section h1 {
    margin-bottom: 28px;
    font-size: clamp(34px, 10.5vw, 54px);
  }

  .hero-brand {
    margin-bottom: 44px;
    font-size: 16px !important;
  }

  .hero-brand span {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .hero-section p {
    max-width: 560px;
    margin-bottom: 36px;
    font-size: 16px;
  }

  .hero-actions {
    gap: 14px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    min-width: min(284px, 100%);
    min-height: 58px;
    padding: 0 28px;
    font-size: 16px;
  }

  .hero-preview-link {
    width: min(216px, 100%);
    height: 32px;
    font-size: 14px;
  }

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

  .result-panel {
    min-height: auto;
  }

  .result-panel-inner {
    width: min(100% - 32px, 720px);
    padding: 56px 0 72px;
  }

  .result-profile-screen .result-actions {
    margin-top: 32px;
  }

  .result-profile-screen .btn-primary,
  .result-profile-screen .btn-secondary {
    width: auto;
    min-width: 160px;
    padding: 0 20px;
  }

  .result-profile-screen h2 {
    font-size: clamp(40px, 11vw, 60px);
  }

  .result-eyebrow {
    width: min(100%, 360px);
  }

  .profile-label-table {
    margin-top: 40px;
  }

  .profile-note {
    margin-top: 24px;
  }

  .profile-label-row,
  .result-bean-cards {
    grid-template-columns: 1fr;
  }

  .result-screen-bar {
    display: grid;
    height: auto;
    padding-top: 28px;
  }

  .result-bean-screen::after {
    right: -120px;
    bottom: 120px;
  }

  .result-bean-screen .result-panel-inner {
    padding: 56px 0 72px;
  }

  .result-bean-card {
    min-height: auto;
  }

  .bean-card-notes {
    flex-wrap: wrap;
  }

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

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

  .recommendation-tabs {
    width: 100%;
  }

  .recommendation-tabs button {
    flex: 1;
    justify-content: center;
  }

  .reservation-form-page {
    padding-inline: 24px;
  }

  .reservation-page-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    max-width: 760px;
    padding: 64px 0 76px;
  }

  .reservation-intro-panel {
    padding-top: 12px;
  }

  .reservation-intro-panel h2 {
    font-size: clamp(34px, 8.6vw, 44px);
  }

  .reservation-intro-panel > p:not(.reservation-eyebrow) {
    font-size: 16px;
  }

  .reservation-form-card {
    padding: 28px 22px;
  }

  .reservation-form-card .reservation-interest-grid,
  .reservation-form-card .choice-grid.two.reservation-beta-grid {
    grid-template-columns: 1fr;
  }

  .question-section {
    min-height: 100svh;
    padding: 32px 16px;
  }

  .question-card {
    padding: 0;
  }

  .progress-bar {
    margin-bottom: 32px;
  }

  .question-card h3 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .question-helper {
    font-size: 15px;
  }

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

  .answer-option {
    min-height: 68px;
    padding: 12px 14px;
    font-size: 15px;
  }

  .answer-option small {
    font-size: 12px;
  }

  .recommendation-meta,
  .bean-meta {
    grid-template-columns: 1fr;
  }

  .roastery-bridge-section {
    min-height: auto;
    padding: 56px 20px 64px;
  }

  .roastery-map-bridge,
  .cupping-note-value-section {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .roastery-map-bridge {
    padding-top: 34px;
  }

  .bridge-copy {
    width: 100%;
  }

  .bridge-copy h2,
  .cupping-loop-copy h2 {
    font-size: clamp(30px, 7.2vw, 38px);
  }

  .bridge-copy > p:not(.bridge-eyebrow),
  .cupping-loop-copy p {
    font-size: 16px;
  }

  .map-preview-panel {
    height: 300px;
    border-radius: 22px;
  }

  .cupping-note-value-section {
    margin-top: 54px;
  }

  .coffee-note-preview-card {
    width: 100%;
    min-height: auto;
  }

  .coffee-note-lower {
    grid-template-columns: 1fr;
  }

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

  .tasting-wheel {
    height: 190px;
  }

  .recommendation-loop-flow {
    align-items: stretch;
  }

  .other-taste-screen {
    padding: 34px 16px 38px;
  }

  .other-taste-header {
    min-height: auto;
    margin-bottom: 24px;
  }

  .other-taste-header > div {
    width: 100%;
  }

  .other-taste-header h1 {
    font-size: 30px;
  }

  .taste-carousel {
    grid-template-columns: 46px minmax(0, 328px) 46px;
    gap: 10px;
  }

  .taste-carousel-window {
    width: 328px;
  }

  .taste-browse-card.is-position-neg-2,
  .taste-browse-card.is-position-neg-1,
  .taste-browse-card.is-position-pos-1,
  .taste-browse-card.is-position-pos-2,
  .taste-carousel-fade {
    display: none;
  }

  .taste-browse-card.is-position-0 {
    --taste-card-x: -50%;
  }

  .taste-carousel-arrow {
    width: 46px;
    height: 46px;
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .reservation-page-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    width: calc(100% - 88px);
    max-width: 760px;
    padding: 78px 0 96px;
  }

  .reservation-intro-panel {
    padding-top: 18px;
  }

  .reservation-intro-panel h2 {
    font-size: 42px;
  }

  .result-bean-screen .result-panel-inner {
    width: min(1000px, calc(100% - 112px));
  }

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

  .result-bean-card {
    min-height: 560px;
  }

  .roastery-bridge-section {
    padding-right: clamp(44px, 6vw, 72px);
    padding-left: clamp(44px, 6vw, 72px);
  }

  .roastery-map-bridge {
    grid-template-columns: minmax(430px, 1fr) minmax(360px, 420px);
    gap: 40px;
  }

  .bridge-copy {
    width: auto;
    max-width: 560px;
  }

  .map-preview-panel {
    width: min(100%, 420px);
    justify-self: end;
  }

  .cupping-note-value-section {
    grid-template-columns: minmax(520px, 1fr) minmax(380px, 0.8fr);
    gap: 40px;
  }

  .coffee-note-preview-card,
  .cupping-loop-copy {
    min-width: 0;
  }

  .cupping-loop-copy h2 {
    font-size: clamp(34px, 4vw, 40px);
  }
}

@media (min-width: 861px) and (max-width: 980px) {
  .result-bean-screen .result-panel-inner {
    width: min(720px, calc(100% - 88px));
  }

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

  .result-bean-card {
    min-height: auto;
  }

  .roastery-map-bridge,
  .cupping-note-value-section {
    grid-template-columns: 1fr;
  }

  .map-preview-panel {
    width: min(100%, 720px);
    height: 410px;
    justify-self: start;
  }

  .coffee-note-preview-card {
    width: min(100%, 720px);
    max-width: 720px;
  }

  .cupping-loop-copy {
    max-width: 600px;
  }
}

@media (max-width: 480px) {
  .result-panel-inner {
    width: calc(100% - 28px);
    padding: 44px 0;
  }

  .result-profile-screen h2 {
    font-size: 38px;
  }

  .result-lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .result-actions {
    margin-top: 26px;
  }

  .result-profile-screen .btn-primary,
  .result-profile-screen .btn-secondary,
  .result-bean-screen .btn-primary {
    width: 100%;
  }

  .profile-label-row strong,
  .profile-label-row span {
    padding: 12px 14px;
    font-size: 14px;
  }

  .result-bean-card {
    padding: 22px 18px 76px;
  }

  .reservation-form-page {
    padding-inline: clamp(18px, 5.6vw, 22px);
  }

  .reservation-page-inner {
    width: 100%;
    padding: 44px 0 58px;
  }

  .reservation-form-card {
    gap: 20px;
    padding: 22px 16px;
  }

  .reservation-form-card h2 {
    font-size: 23px;
  }

  .reservation-result-summary {
    padding: 16px;
  }

  .question-section {
    padding: 28px 14px;
  }

  .progress-bar {
    margin-bottom: 28px;
  }

  .question-card {
    padding: 0;
  }

  .question-card h3 {
    font-size: 30px;
  }

  .question-helper {
    margin-bottom: 0;
    font-size: 13px;
  }

  .option-stack {
    gap: 8px;
  }

  .answer-option {
    min-height: 50px;
    padding: 10px 12px;
  }

  .answer-option small {
    display: none;
  }

  .roastery-bridge-section {
    padding: 42px 14px 52px;
  }

  .bridge-alert-button {
    width: 100%;
  }

  .map-preview-panel {
    height: 230px;
  }

  .map-pin {
    width: 26px;
    height: 26px;
  }

  .map-pin i {
    top: 7px;
    left: 7px;
    width: 8px;
    height: 8px;
  }

  .coffee-note-preview-card {
    padding: 18px 16px 22px;
  }

  .coffee-note-meta-row {
    grid-template-columns: 46px 1fr auto;
    gap: 8px;
  }

  .coffee-note-meta-row em {
    max-width: 150px;
    text-align: right;
    word-break: keep-all;
  }

  .coffee-note-side {
    grid-template-columns: 1fr;
  }

  .recommendation-loop-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommendation-loop-flow > i {
    display: none;
  }

  .loop-step {
    min-width: 0;
  }

  .taste-carousel {
    grid-template-columns: 40px minmax(0, 279px) 40px;
    gap: 6px;
  }

  .taste-carousel-window,
  .taste-browse-row {
    width: 279px;
    height: 646px;
  }

  .taste-browse-card.is-position-0 {
    --taste-card-scale: 0.85;
    transform-origin: top center;
  }

  .taste-carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .taste-carousel-arrow i {
    font-size: 16px;
  }
}
