:root {
  --plum-900: #2a0f44;
  --plum-800: #3d1a5b;
  --plum-700: #4e2272;
  --plum-600: #6a2e95;
  --plum-500: #8a4ec0;
  --lilac-300: #c9a8e3;
  --lilac-200: #e3cdf2;
  --cream: #faf5ef;
  --cream-2: #f3ead9;
  --ink: #2a0f44;
  --shadow: 0 12px 30px -12px rgba(42, 15, 68, 0.45);
  --shadow-soft: 0 6px 18px -10px rgba(42, 15, 68, 0.35);
  --radius: 999px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7eef9 0%, #efe1f5 40%, #e6d2f0 100%);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.bg-decor {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 40% at 80% 0%, rgba(138,78,192,0.25), transparent 60%),
    radial-gradient(50% 35% at 0% 20%, rgba(201,168,227,0.35), transparent 60%),
    radial-gradient(70% 50% at 50% 100%, rgba(106,46,149,0.22), transparent 60%);
}

.container {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 28px 20px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.logo-wrap { margin-top: 8px; }
.logo-ring {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  box-shadow: var(--shadow), 0 0 0 6px rgba(255,255,255,0.6) inset;
  border: 2px solid rgba(106,46,149,0.25);
}
.logo {
  width: 92%; height: 92%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

/* Headings */
.title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 2.6rem);
  letter-spacing: 0.04em;
  color: var(--plum-800);
  margin: 22px 0 4px;
  text-align: center;
  line-height: 1.05;
  text-transform: uppercase;
}
.subtitle {
  margin: 0 0 22px;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--plum-700);
  font-weight: 600;
}

/* Buttons */
.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: var(--shadow-soft);
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px) scale(0.995); }
.btn:hover { filter: brightness(1.04); box-shadow: var(--shadow); }
.btn:focus-visible { outline: 3px solid var(--plum-500); outline-offset: 2px; }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--plum-600) 0%, var(--plum-800) 60%, var(--plum-900) 100%);
}
.btn-secondary {
  color: var(--plum-800);
  background: linear-gradient(135deg, #ffffff 0%, var(--lilac-200) 100%);
  border: 1px solid rgba(106,46,149,0.25);
}

.btn-ico {
  width: 22px; height: 22px;
  display: inline-grid; place-items: center;
  flex: 0 0 22px;
}
.btn-ico svg { width: 100%; height: 100%; }

/* Order form card */
.order-card {
  margin-top: 32px;
  width: 100%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(106,46,149,0.18);
  border-radius: 24px;
  padding: 22px 18px;
  box-shadow: var(--shadow);
}
.order-card h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  margin: 0 0 4px;
  color: var(--plum-800);
  text-align: center;
}
.order-sub {
  margin: 0 0 16px;
  text-align: center;
  color: var(--plum-700);
  font-size: 0.92rem;
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.field span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--plum-800);
  letter-spacing: 0.04em;
}
.field input, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(106,46,149,0.25);
  border-radius: 14px;
  padding: 12px 14px;
  resize: vertical;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--plum-600);
  box-shadow: 0 0 0 4px rgba(138,78,192,0.18);
}
.field input::placeholder, .field textarea::placeholder { color: #9b8aab; }

.btn-cta {
  margin-top: 6px;
  color: #fff;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* Footer */
.footer {
  margin-top: 28px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--plum-700);
  opacity: 0.85;
}
.footer p { margin: 0; }

/* Responsive tweaks */
@media (min-width: 520px) {
  .container { padding-top: 40px; }
  .logo-ring { width: 200px; height: 200px; }
}
@media (max-width: 360px) {
  .logo-ring { width: 156px; height: 156px; }
  .btn { font-size: 0.95rem; min-height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
