:root {
  --color-wine-950: #32040d;
  --color-wine-900: #4a0713;
  --color-wine-800: #5b0c1a;
  --color-wine-700: #6b1020;
  --color-wine-600: #7b1729;
  --color-cream-50: #fffdf9;
  --color-cream-100: #fbf6ef;
  --color-cream-200: #f3e9de;
  --color-card: #ffffff;
  --color-text: #24191b;
  --color-muted: #6d6264;
  --color-border: #eadfd9;
  --color-success: #1d7f55;
  --color-error: #a12836;
  --shadow-soft: 0 28px 80px rgba(74, 7, 19, 0.11);
  --shadow-card: 0 18px 46px rgba(74, 7, 19, 0.08);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1220px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: var(--color-cream-50);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(107, 16, 32, 0.35);
  outline-offset: 3px;
}

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

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  width: 145px;
  height: auto;
}

.section-title {
  margin: 0;
  color: var(--color-wine-800);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.1rem, 4.4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.section-text {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--color-wine-800), var(--color-wine-600));
  color: #fff;
  box-shadow: 0 16px 32px rgba(107, 16, 32, 0.23);
}

.btn-secondary {
  color: var(--color-wine-800);
  background: rgba(255,255,255,0.82);
  border-color: rgba(107, 16, 32, 0.32);
}

.input-field {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0 1rem;
  background: #fff;
  color: var(--color-text);
}

.input-field::placeholder {
  color: #a89fa1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .brand-logo img {
    width: 126px;
  }
}
