﻿:root {
  --primary: #824f4e;
  --bg: #f3efec;
  --surface: rgba(255, 255, 255, 0.45);
  --text: var(--primary);
  --border: rgba(130, 79, 78, 0.22);
  --muted: rgba(130, 79, 78, 0.72);
  --focus-ring: rgba(130, 79, 78, 0.45);
  --shadow: 0 10px 24px rgba(130, 79, 78, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Spoqa Han Sans Neo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.68;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 132px;
  object-fit: contain;
}

.nav-area { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
  line-height: 1;
  cursor: pointer;
}

.nav-toggle { display: none; }

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-block;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--primary);
  border: 1px solid transparent;
}

.nav-link:hover {
  text-decoration: none;
  border-color: var(--border);
  background: color-mix(in srgb, var(--primary) 8%, transparent);
}

.nav-link.active {
  color: var(--primary);
  border-color: var(--border);
  background: color-mix(in srgb, var(--primary) 14%, transparent);
}

.section {
  padding: 76px 0;
  border-bottom: 1px solid var(--border);
}

h1, h2, h3 { margin: 0 0 16px; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.8vw, 3.35rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 12px; }
.lead { font-size: 1.08rem; }
.muted { color: var(--muted); }
.eyebrow {
  justify-self: start;
  margin-bottom: 0;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 10%, white);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--primary);
  font-size: clamp(1.8rem, 4vw, 2.85rem);
}

.hero-title-logo {
  display: inline-block;
  width: auto;
  height: 0.82em;
  max-width: min(180px, 42vw);
  object-fit: contain;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.card ul { margin: 0; padding-left: 18px; }

.cta-card {
  text-align: center;
}

.cta-card .actions {
  justify-content: center;
}

.center-text {
  text-align: center;
}

.reference-grid,
.record-grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

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

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

.reference-card,
.record-card {
  padding: 12px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(130, 79, 78, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.reference-card {
  padding: 10px;
}

.reference-card:hover,
.record-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(130, 79, 78, 0.1);
  border-color: color-mix(in srgb, var(--primary) 28%, transparent);
}

.reference-media {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in srgb, var(--primary) 6%, var(--bg));
}

.record-card .reference-media {
  aspect-ratio: 4 / 3;
}

.reference-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.reference-copy {
  padding: 16px 6px 6px;
}

.reference-actions {
  justify-content: center;
  margin-top: 24px;
}

.reference-copy h3,
.reference-copy p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reference-copy h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  -webkit-line-clamp: 2;
}

.reference-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  -webkit-line-clamp: 2;
}

.trust-grid {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
}

.trust-card {
  display: flex;
  height: 100%;
}

.trust-copy-card {
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 32px 28px;
}

.trust-copy-card h3 {
  margin-bottom: 12px;
}

.trust-image-card {
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.trust-media {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in srgb, var(--primary) 4%, var(--bg));
}

.trust-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.review-block {
  margin-top: 36px;
}

.review-title {
  margin-bottom: 8px;
  text-align: center;
}

.review-caption {
  margin-bottom: 0;
  text-align: center;
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.review-card {
  padding: 10px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(130, 79, 78, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(130, 79, 78, 0.1);
  border-color: color-mix(in srgb, var(--primary) 28%, transparent);
}

.review-media {
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  padding: 8px;
  background: color-mix(in srgb, var(--primary) 6%, var(--bg));
}

.review-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.pricing-card {
  text-align: center;
}

.discount-section {
  max-width: 760px;
  margin: 80px auto 0;
  text-align: center;
}

.section-heading-rule {
  height: 1px;
  width: min(100%, 520px);
  margin: 0 auto 16px;
  background: var(--border);
}

.section-heading-rule + h2 {
  margin-bottom: 16px;
  text-align: center;
}

.discount-list {
  display: grid;
  gap: 44px;
  margin-top: 72px;
}

.discount-item h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 16px;
  padding: 0 18px;
  background: var(--primary);
  color: var(--bg);
  font-size: 1.12rem;
  font-weight: 700;
}

.discount-item p {
  margin-bottom: 4px;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.75;
}

.discount-item .discount-alert {
  width: min(100%, 560px);
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--primary) 42%, transparent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--primary) 12%, white);
  color: var(--primary);
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  font-weight: 800;
  line-height: 1.6;
}

.discount-note {
  margin-top: 76px;
  color: var(--muted);
}

.fee-section {
  max-width: 760px;
  text-align: center;
}

.fee-list {
  display: grid;
  gap: 44px;
  margin-top: 36px;
}

.fee-item h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 16px;
  padding: 0 22px;
  background: var(--primary);
  color: var(--bg);
  font-size: 1.12rem;
  font-weight: 700;
}

.fee-item h3 a {
  color: inherit;
  text-decoration: none;
}

.fee-item h3 a:hover {
  text-decoration: none;
}

.fee-item p {
  margin-bottom: 3px;
  font-size: clamp(0.98rem, 2.2vw, 1.08rem);
  line-height: 1.55;
}

.fee-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: clamp(0.78rem, 1.8vw, 0.9rem) !important;
}

.option-block {
  margin-top: 64px;
}

.option-block .fee-item {
  margin-top: 20px;
}

.option-block .image-slot {
  max-width: 360px;
  min-height: 0;
  margin: 0 auto 16px;
}

.option-block .image-slot img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: color-mix(in srgb, var(--primary) 4%, var(--bg));
}

.sealing-grid {
  margin-top: 22px;
}

.sealing-section {
  text-align: center;
}

.sealing-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.sealing-card h4 {
  margin: 0 0 10px;
}

.sealing-card .image-slot {
  min-height: 150px;
  margin-bottom: 18px;
}

.sealing-card .summary {
  margin: auto 0 0;
  padding-top: 16px;
  font-weight: 700;
  color: var(--primary);
}

.text-separator {
  width: 100%;
  height: 1px;
  margin: 14px 0;
  border: 0;
  background: var(--border);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
}

.btn-primary:hover { text-decoration: none; filter: brightness(1.03); }

.btn-secondary {
  border-color: var(--border);
  color: var(--primary);
  background: transparent;
}

.btn-secondary:hover {
  text-decoration: none;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.image-slot {
  margin-top: 16px;
  border: 1px dashed var(--border);
  border-radius: 16px;
  min-height: 170px;
  background: color-mix(in srgb, var(--primary) 8%, var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  padding: 18px;
}

.image-slot.has-image {
  padding: 8px;
  border-style: solid;
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.booking-prep-slot {
  min-height: 220px;
  margin-top: 8px;
}

.booking-prep-slot img {
  width: 100%;
  max-height: 300px;
  margin: auto;
  object-fit: contain;
  background: #f8f2ec;
}

.booking-prep-caption {
  margin-top: 10px;
  margin-bottom: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
}

.hero-logo-slot {
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  min-height: 0;
  padding: 24px;
  background: color-mix(in srgb, var(--primary) 6%, #fff);
}

.hero-logo-slot img {
  width: 68%;
  height: 68%;
  margin: auto;
  object-fit: contain;
  background: transparent;
}

.bullet-list { margin: 0; padding-left: 18px; }
.bullet-list li { margin-bottom: 8px; }

.timeline { display: grid; gap: 12px; }

.timeline-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 700;
}

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.checklist li:last-child { border-bottom: 0; }

.handoff-section {
  display: grid;
  gap: 22px;
}

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

.handoff-card h3 {
  margin-bottom: 18px;
}

.handoff-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: handoff-step;
}

.handoff-steps li {
  counter-increment: handoff-step;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.handoff-steps li::before {
  content: counter(handoff-step);
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.handoff-steps li:last-child {
  border-bottom: 0;
}

.accordion { display: grid; gap: 10px; }

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  padding: 16px;
  cursor: pointer;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.accordion-panel .inner {
  padding: 0 16px 16px;
  color: var(--muted);
}

.site-footer { padding: 34px 0; }

.floating-contact {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
  border-radius: 999px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(130, 79, 78, 0.24);
}

.floating-contact:hover {
  text-decoration: none;
  filter: brightness(1.04);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

body.modal-open {
  overflow: hidden;
}

.btn-emphasis {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.inquiry-modal[hidden] {
  display: none;
}

.inquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(66, 43, 43, 0.34);
  backdrop-filter: blur(6px);
}

.inquiry-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100vh - 36px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: color-mix(in srgb, var(--bg) 92%, white);
  box-shadow: 0 26px 60px rgba(52, 31, 31, 0.18);
}

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

.inquiry-modal__eyebrow {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.inquiry-icon-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.inquiry-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 18px 24px 24px;
}

.inquiry-modal__intro {
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: color-mix(in srgb, white 74%, var(--bg));
}

.inquiry-modal__intro-title,
.inquiry-modal__intro-copy {
  margin: 0;
  text-align: left;
}

.inquiry-modal__intro-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.inquiry-modal__intro-copy {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.inquiry-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  text-align: left;
}

.inquiry-step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 12%, white);
  border: 1px solid var(--border);
  font-weight: 700;
}

.inquiry-form,
.inquiry-result {
  display: grid;
  gap: 18px;
}

.inquiry-screen[hidden] {
  display: none;
}

.inquiry-result {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: color-mix(in srgb, white 78%, var(--bg));
}

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

.inquiry-field,
.inquiry-choice-group {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, white 72%, var(--bg));
}

.inquiry-field--full {
  grid-column: 1 / -1;
}

.inquiry-field span,
.inquiry-choice-group legend {
  font-weight: 700;
}

.inquiry-choice-group legend {
  margin-bottom: 12px;
  padding: 0 4px;
}

.inquiry-field input,
.inquiry-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
}

.inquiry-field textarea,
[data-inquiry-output] {
  resize: vertical;
  line-height: 1.7;
}

.inquiry-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inquiry-chip {
  position: relative;
  display: inline-flex;
}

.inquiry-chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.inquiry-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.inquiry-chip input:checked + span {
  background: color-mix(in srgb, var(--primary) 15%, white);
  border-color: color-mix(in srgb, var(--primary) 44%, transparent);
  transform: translateY(-1px);
}

.inquiry-help {
  margin: 2px 4px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.inquiry-actions--form {
  justify-content: flex-end;
  margin-top: 4px;
}

.inquiry-result > .inquiry-actions {
  justify-content: flex-end;
  align-items: center;
  margin-top: 4px;
}

.inquiry-actions--result-top {
  justify-content: flex-end;
}

.inquiry-actions--result-bottom {
  justify-content: flex-end;
  margin-top: -4px;
}

.inquiry-actions--guard {
  justify-content: flex-end;
}

.inquiry-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.inquiry-status[data-status-type='success'] {
  color: color-mix(in srgb, var(--primary) 88%, #325f37);
}

.inquiry-status[data-status-type='warning'] {
  color: color-mix(in srgb, var(--primary) 72%, #8a5a00);
}

.inquiry-kakao-guard {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--primary) 8%, white);
}

.inquiry-kakao-guard p {
  margin-bottom: 12px;
}

@media (max-width: 980px) {
  .hero, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reference-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .record-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: 1fr; }
  .review-media { height: 220px; }
  .inquiry-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }

  .nav-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    box-shadow: var(--shadow);
  }

  .nav-list.open { display: flex; }
  .grid-2, .grid-4, .handoff-grid { grid-template-columns: 1fr; }
  .reference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: 1fr; }

  .trust-copy-card {
    padding: 28px 24px;
  }

  .booking-prep-slot {
    min-height: 200px;
  }

  .review-media {
    height: 240px;
  }

  .floating-contact {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    min-width: 70px;
    min-height: 44px;
    padding: 0 16px;
  }

  .discount-section {
    margin-top: 60px;
  }

  .discount-list {
    gap: 38px;
    margin-top: 52px;
  }

  .fee-list {
    gap: 38px;
  }

  .option-block {
    margin-top: 52px;
  }

  .inquiry-modal {
    padding: 12px;
  }

  .inquiry-modal__dialog {
    max-height: calc(100vh - 24px);
  }

  .inquiry-modal__header {
    padding: 20px 20px 0;
  }

  .inquiry-modal__body {
    padding: 16px 20px 20px;
  }
}

@media (max-width: 560px) {
  .reference-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-chip-grid {
    gap: 8px;
  }

  .inquiry-chip {
    width: 100%;
  }

  .inquiry-chip span {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px;
  }

  .inquiry-actions .btn,
  .inquiry-actions a.btn {
    width: 100%;
  }

  .inquiry-result > .inquiry-actions,
  .inquiry-actions--guard {
    justify-content: stretch;
  }
}
