:root {
  --bg: #f8efe3;
  --bg-soft: rgba(255, 248, 240, 0.72);
  --surface: rgba(104, 46, 22, 0.08);
  --surface-strong: rgba(107, 50, 28, 0.12);
  --text: #2e1a12;
  --muted: #6a4a3b;
  --accent: #b95f2f;
  --accent-dark: #8f421a;
  --line: rgba(68, 29, 13, 0.14);
  --shadow: 0 22px 60px rgba(79, 37, 17, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 220, 181, 0.85), transparent 28%),
    radial-gradient(circle at right 20%, rgba(196, 104, 57, 0.14), transparent 30%),
    linear-gradient(180deg, #fff9f2 0%, var(--bg) 55%, #f2e1cf 100%);
}

body.modal-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  z-index: -1;
  filter: blur(10px);
}

body::before {
  top: -8rem;
  right: -6rem;
  background: rgba(188, 96, 52, 0.12);
}

body::after {
  bottom: -10rem;
  left: -8rem;
  background: rgba(240, 194, 136, 0.22);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.hero,
.section,
.contact-card {
  backdrop-filter: blur(10px);
}

.hero {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.eyebrow,
.section-kicker,
.kicker,
.card-badge {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

.eyebrow,
.section-kicker,
.kicker {
  color: var(--accent-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
}

.hero-copy {
  padding: 18px 8px 10px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: "Prata", serif;
  font-weight: 400;
}

h1 {
  margin-top: 10px;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.55rem;
}

.lead,
.hero-card p,
.info-card p,
.point p,
.contact-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
  font-size: 1rem;
}

.lead {
  max-width: 62ch;
  margin-top: 18px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff8f0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 14px 30px rgba(149, 68, 28, 0.25);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(109, 53, 27, 0.2);
  background: rgba(255, 252, 248, 0.75);
}

.hero-card,
.info-card,
.point,
.contact-card,
.contact-info-card,
.modal-dialog {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 244, 0.8);
}

.hero-card {
  padding: 24px;
}

.card-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(185, 95, 47, 0.14);
  color: var(--accent-dark);
}

.hero-card p {
  margin-top: 18px;
}

.feature-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  margin-top: 12px;
  line-height: 1.6;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  margin-top: 22px;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 250, 244, 0.58);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cards-grid,
.points-grid,
.contacts-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.points-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contacts-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.point,
.contact-info-card {
  padding: 22px;
}

.info-card p,
.point p {
  margin-top: 14px;
}

.accent-section {
  background:
    linear-gradient(135deg, rgba(255, 241, 225, 0.88), rgba(248, 230, 210, 0.76)),
    rgba(255, 249, 243, 0.7);
}

.point-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 1.8rem;
  font-family: "Prata", serif;
}

.contact-section {
  background: transparent;
  border: 0;
  padding: 0;
}

.contact-card {
  padding: 30px 28px;
  background:
    radial-gradient(circle at top right, rgba(241, 195, 145, 0.42), transparent 36%),
    linear-gradient(135deg, rgba(110, 51, 27, 0.94), rgba(66, 29, 14, 0.96));
  color: #fff6ec;
  box-shadow: var(--shadow);
}

.contact-card .section-kicker,
.contact-card h2,
.contact-card p {
  color: inherit;
}

.contact-card h2 {
  margin-top: 8px;
  max-width: 10ch;
}

.contact-card p {
  max-width: 54ch;
  margin-top: 14px;
  color: rgba(255, 246, 236, 0.82);
}

.contact-card .button-primary {
  margin-top: 22px;
  background: #fff3e5;
  color: var(--accent-dark);
  box-shadow: none;
}

.contact-button-light {
  color: #fff6ec;
  border-color: rgba(255, 246, 236, 0.28);
  background: rgba(255, 246, 236, 0.08);
}

.contact-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li + li {
  margin-top: 16px;
}

.contact-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list a,
.contact-address {
  color: var(--text);
  font-size: 1.1rem;
  text-decoration: none;
}

.contact-address {
  margin-top: 18px;
  font-weight: 700;
}

.contact-info-card p {
  margin-top: 14px;
}

.status-banner {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  font-weight: 700;
}

.status-success {
  background: rgba(95, 146, 97, 0.14);
  color: #2a5f2f;
}

.status-error {
  background: rgba(179, 78, 52, 0.12);
  color: #8e2f19;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 20;
}

.modal:target,
.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(42, 19, 10, 0.58);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  width: min(100%, 620px);
  padding: 28px;
  background: #fff8f0;
  box-shadow: 0 28px 80px rgba(44, 20, 11, 0.28);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.modal-copy {
  margin-top: 14px;
}

.feedback-form {
  margin-top: 22px;
}

.form-field {
  display: block;
}

.form-field + .form-field {
  margin-top: 16px;
}

.form-field span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(109, 53, 27, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 253, 249, 0.96);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(185, 95, 47, 0.22);
  border-color: rgba(185, 95, 47, 0.42);
}

.submit-button {
  margin-top: 20px;
  border: 0;
  cursor: pointer;
}

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

  h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 12px;
    padding-bottom: 28px;
  }

  .hero,
  .section,
  .contact-card {
    border-radius: 24px;
  }

  .hero,
  .section {
    padding: 22px 18px;
  }

  .contact-card {
    padding: 24px 18px;
  }

  .modal-dialog {
    padding: 22px 18px;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.6rem, 17vw, 4rem);
  }

  .button {
    width: 100%;
  }
}
