:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --border: #d6ddea;
  --text: #13223c;
  --text-muted: #4c5f7d;
  --primary: #dc143c;
  --primary-dark: #b01030;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.background-glow {
  display: none;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem;
}

body > .site-header {
  max-width: none;
  background: #dc143c;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
}

main {
  max-width: 1120px;
  margin: 1.25rem auto 0;
  padding: 0 1.25rem 2.5rem;
}

.eyebrow {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.eyebrow span {
  font-size: 0.62em;
  font-weight: 600;
  opacity: 0.92;
}

.brand-link {
  color: inherit;
  text-decoration: none;
}

.suggest-button {
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.6rem 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  transition: background-color 0.16s ease, border-color 0.16s ease;
}

.suggest-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.services-section,
.feedback-section {
  background: #e6ebf3;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: clamp(1rem, 2.5vw, 1.45rem);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

h2,
h3 {
  margin: 0;
  color: var(--text);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--surface);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-live {
  border-top: 4px solid var(--primary);
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-card a,
.service-card button,
.feedback-form button {
  margin-top: auto;
  border-radius: 0.65rem;
  padding: 0.62rem 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-card a,
.feedback-form button {
  color: #ffffff;
  border: 1px solid var(--primary);
  background: var(--primary);
  cursor: pointer;
}

.service-card a:hover,
.feedback-form button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.service-card button {
  border: 1px solid #c7cfdd;
  background: #edf1f7;
  color: #6b7892;
}

.feedback-layout {
  max-width: 760px;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feedback-form label {
  font-weight: 600;
}

.feedback-form textarea {
  width: 100%;
  resize: vertical;
  min-height: 220px;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 0.8rem;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

.feedback-form textarea:focus {
  outline: 2px solid rgba(220, 20, 60, 0.45);
  outline-offset: 1px;
}

.feedback-thank-you {
  margin: 0;
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  body > .site-header {
    padding-bottom: 1rem;
  }
}
