:root {
  --dcm-red: #e9090a;
  --dcm-red-dark: #b80607;
  --dcm-black: #07080a;
  --dcm-ink: #15171c;
  --dcm-gray: #6b7280;
  --dcm-line: #e5e7eb;
  --dcm-soft: #f4f5f7;
  --dcm-white: #ffffff;
  --dcm-radius: 18px;
  --dcm-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dcm-white);
  color: var(--dcm-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.section {
  padding: 92px 92px;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.consign h2,
.location h2,
.contact h2 {
  margin: 0;
  color: var(--dcm-ink);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-head p,
.location p,
.contact p {
  margin: 0;
  color: var(--dcm-gray);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0;
  color: #ffb4b4;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.btn--whatsapp,
.contact-list a {
  gap: 8px;
}

.btn--icon {
  width: 50px;
  min-width: 50px;
  padding: 0;
}

.wa-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.btn--primary {
  background: var(--dcm-red);
  color: var(--dcm-white);
  box-shadow: 0 14px 34px rgba(233, 9, 10, 0.28);
}

.btn--primary:hover {
  background: var(--dcm-red-dark);
}

.btn--light {
  background: var(--dcm-white);
  color: var(--dcm-black);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--dcm-white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline {
  border-color: var(--dcm-line);
  background: var(--dcm-white);
  color: var(--dcm-ink);
}

.notice,
.empty-state,
.detail-empty {
  border: 1px solid var(--dcm-line);
  border-radius: var(--dcm-radius);
  background: var(--dcm-white);
  padding: 28px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
}

.notice strong,
.empty-state h3,
.detail-empty h1 {
  margin: 0 0 8px;
}

.notice p,
.empty-state p,
.detail-empty p {
  margin: 0 0 18px;
  color: var(--dcm-gray);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #22b35b;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(34, 179, 91, 0.34);
}

.floating-whatsapp .wa-icon {
  width: 32px;
  height: 32px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .btn {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}
