


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #4c0519;
  background: #fffafb;
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
}
a {
  color: #be123c;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}
img, svg {
  display: block;
  max-width: 100%;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}


:root {
  
  --surface-base: #fffafb;
  --surface-raised: #fff1f2;
  --surface-sunken: #ffe4e6;
  --surface-inverse: #4c0519;
  --surface-overlay: rgba(76, 5, 25, 0.55);

  
  --action-primary: #be123c;
  --action-hover: #9f1239;
  --action-quiet: #e11d48;
  --action-disabled: #d9b6bd;

  
  --brand-coral: #ff6b57;
  --brand-coral-deep: #ef4a34;
  --brand-coral-wash: #ffd9d1;
  
  --brand-coral-ink: #cd3f22;
  --brand-coral-ink-deep: #ab3117;

  
  --text-primary: #4c0519;
  --text-secondary: #881337;
  --text-muted: #e11d48;
  --text-inverse: #fff1f2;

  
  --state-success: #15803d;
  --state-danger: #b91c1c;

  
  --edge-hairline: rgba(190, 18, 60, 0.14);
  --edge-strong: rgba(76, 5, 25, 0.28);
  --radius-pill: 999px;
  --radius-card: 20px;
  --radius-soft: 12px;
  --shade-lift: 0 20px 50px rgba(76, 5, 25, 0.14);
  --shade-press: 0 6px 18px rgba(239, 74, 52, 0.28);

  
  --space-1: 0.618rem;
  --space-2: 1rem;
  --space-3: 1.618rem;
  --space-4: 2.618rem;
  --space-5: 4.236rem;

  --motion-quick: 0.2s ease;
  --rail-w: 20.6rem;
}


body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Trebuchet MS', sans-serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
h1 {
  font-size: 3.2rem;
  line-height: 1.12;
}
h2 {
  font-size: 2.1rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
p {
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: var(--text-secondary);
}
small {
  font-size: 0.86rem;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.2s ease;
}
.btn:hover {
  text-decoration: none;
}
.btn-main {
  background: var(--brand-coral-ink);
  color: #ffffff;
  box-shadow: var(--shade-press);
}
.btn-main:hover {
  background: var(--brand-coral-ink-deep);
  filter: brightness(0.96);
}
.btn-deep {
  background: var(--action-primary);
  color: #ffffff;
}
.btn-deep:hover {
  background: var(--action-hover);
}
.btn-ghost {
  background: transparent;
  color: var(--action-primary);
  border: 2px solid var(--edge-hairline);
}
.btn-ghost:hover {
  border-color: var(--brand-coral);
  color: var(--brand-coral-deep);
}
.btn-wide {
  width: 100%;
  padding: 1.05rem 1.9rem;
  font-size: 1.05rem;
}
button {
  transition: all 0.2s ease;
}
button:active,
.btn:active {
  transform: scale(0.95);
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 87, 0.45);
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-coral);
  outline-offset: 2px;
}


.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-none { display: none; }
.fd-col { flex-direction: column; }
.fw-wrap { flex-wrap: wrap; }
.ai-c { align-items: center; }
.ai-start { align-items: flex-start; }
.jc-between { justify-content: space-between; }
.jc-c { justify-content: center; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-auto { margin-left: auto; }
.p-3 { padding: var(--space-3); }
.pt-0 { padding-top: 0; }
.ta-c { text-align: center; }
.ta-r { text-align: right; }
.fw-b { font-weight: 700; }
.fw-m { font-weight: 500; }
.fs-sm { font-size: 0.86rem; }
.fs-lg { font-size: 1.15rem; }
.fs-xl { font-size: clamp(1.3rem, 2.4vw, 1.75rem); }
.tt-up { text-transform: uppercase; }
.ls-wide { letter-spacing: 0.14em; }
.c-coral { color: var(--brand-coral-deep); }
.c-muted { color: var(--text-secondary); }
.c-quiet { color: var(--text-muted); }
.bg-raised { background: var(--surface-raised); }
.bg-sunken { background: var(--surface-sunken); }
.w-full { width: 100%; }
.max-w-4xl { max-width: 46rem; }
.lh-tight { line-height: 1.3; }
.strike { text-decoration: line-through; }
