:root {
  --prairie-cream: #e7e1d3;
  --prairie-ink: #0f252d;
  --prairie-mist: #f3eee2;
  --prairie-gold: #9a825b;
  --prairie-shadow: rgba(19, 31, 38, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Public Sans", "Segoe UI", sans-serif;
  color: var(--prairie-ink);
  background: radial-gradient(circle at 10% 15%, #efe7d6 0%, transparent 35%),
    radial-gradient(circle at 85% 80%, #e0d6c3 0%, transparent 42%),
    linear-gradient(180deg, #e8e1d2 0%, #e4ddcf 100%);
  min-height: 100vh;
  line-height: 1.6;
}

.wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.top-bar {
  padding: 1.5rem 0 0;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(243, 238, 226, 0.62);
  border: 1px solid rgba(15, 37, 45, 0.09);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  backdrop-filter: blur(8px);
}

.brand-row img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(15, 37, 45, 0.08);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.brand-copy span {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
  margin: 0;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--prairie-gold);
}

.section {
  margin-top: 2rem;
  animation: rise 700ms ease-out both;
}

.section-title-large {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0.5rem 0 1rem;
}

.section-title-medium {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin: 0.4rem 0 0.6rem;
}

.btn {
  border: none;
  text-decoration: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn-primary {
  background: var(--prairie-ink);
  color: var(--prairie-mist);
  box-shadow: 0 8px 18px rgba(15, 37, 45, 0.22);
}

.btn-secondary {
  background: transparent;
  color: var(--prairie-ink);
  border: 1px solid rgba(15, 37, 45, 0.35);
}

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

.hero {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-card {
  background: rgba(243, 238, 226, 0.72);
  border: 1px solid rgba(15, 37, 45, 0.09);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 20px 40px var(--prairie-shadow);
  animation: rise 700ms ease-out both;
}

.hero h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.1rem, 5.4vw, 4.1rem);
  letter-spacing: 0.01em;
}

.lead {
  margin: 1rem 0 1.5rem;
  font-size: 1.05rem;
  max-width: 55ch;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.logo-panel {
  background: var(--prairie-cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 37, 45, 0.1);
  padding: 1.5rem;
  box-shadow: 0 15px 28px var(--prairie-shadow);
  animation: rise 820ms 120ms ease-out both;
}

.logo-panel img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(250, 246, 238, 0.7);
  border: 1px solid rgba(15, 37, 45, 0.08);
  box-shadow: 0 6px 16px rgba(15, 37, 45, 0.08);
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
}

.contact {
  margin-top: 2rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(246, 240, 229, 0.78);
  border: 1px solid rgba(15, 37, 45, 0.11);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1rem;
}

.contact-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(250, 246, 238, 0.72);
  border: 1px solid rgba(15, 37, 45, 0.08);
}

.contact-intro {
  margin: 0;
  max-width: 40ch;
}

.contact-list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 0.55rem;
}

.contact-list a {
  color: var(--prairie-ink);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 37, 45, 0.2);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  padding: 0.68rem 0.75rem;
  font: inherit;
  color: var(--prairie-ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.form-status {
  min-height: 1.35rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status.is-loading {
  color: #5e513b;
}

.form-status.is-success {
  color: #1f5a2f;
}

.form-status.is-error {
  color: #7a2a2a;
}

.faq {
  margin: 3rem 0;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(246, 240, 229, 0.75);
  border: 1px solid rgba(15, 37, 45, 0.11);
}

details {
  border-bottom: 1px solid rgba(15, 37, 45, 0.12);
}

details:last-of-type {
  border-bottom: none;
}

summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding: 0.95rem 0;
  position: relative;
  padding-right: 2rem;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

details p {
  margin: 0 0 1rem;
  max-width: 70ch;
  color: rgba(15, 37, 45, 0.9);
}

footer {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
  padding-bottom: 2rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .brand-row {
    border-radius: 20px;
  }

  .brand-copy {
    align-items: flex-start;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
