:root {
  --red: #f12f2f;
  --red-dark: #c71919;
  --ink: #151515;
  --muted: #626772;
  --line: #ececec;
  --soft-red: #fff1f1;
  --cream: #fff8f4;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 23, 23, 0.11);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 76px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 156px;
}

.brand img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.nav-links,
.header-cta {
  display: none;
}

.nav-links {
  align-items: center;
  gap: 22px;
  color: #303030;
  font-size: 14px;
  font-weight: 800;
}

.header-cta {
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(241, 47, 47, 0.18);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
}

.compact-section {
  padding-top: 24px;
}

.hero {
  display: block;
  max-width: 860px;
  padding-top: 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.16;
}

.hero-lead,
.section-heading p,
.quotation-copy p {
  color: var(--muted);
  font-size: 18px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-badges span,
.package-tag,
.menu-type {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--red-dark);
  background: var(--soft-red);
  font-size: 12px;
  font-weight: 900;
}

.minimum-box {
  display: grid;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 14px 16px;
  background: var(--soft-red);
  border: 1px solid rgba(241, 47, 47, 0.18);
  border-radius: 8px;
}

.minimum-box strong {
  color: var(--red-dark);
  font-size: 18px;
}

.minimum-box span {
  color: #563434;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(241, 47, 47, 0.22);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  color: var(--red);
  background: var(--white);
  border-color: rgba(241, 47, 47, 0.28);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.package-grid,
.why-grid {
  display: grid;
  gap: 14px;
}

.package-card,
.order-form,
.summary-card,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.package-card {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.package-card p,
details p,
.form-note {
  color: var(--muted);
}

.package-card strong {
  color: var(--red-dark);
  font-size: 18px;
}

.package-card.is-featured {
  border-color: rgba(241, 47, 47, 0.35);
  box-shadow: 0 18px 34px rgba(241, 47, 47, 0.12);
}

.quotation-section {
  display: block;
  max-width: 760px;
}

.quotation-copy {
  position: static;
  margin-bottom: 18px;
}

.summary-card {
  display: grid;
  gap: 0;
  margin-top: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.summary-row,
.summary-total {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.summary-row span,
.summary-total span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.summary-row strong {
  font-size: 16px;
}

.summary-total {
  border-bottom: 0;
  background: var(--red);
  color: var(--white);
}

.summary-total span {
  color: #ffe1e1;
}

.summary-total strong {
  font-size: 22px;
}

.order-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #292929;
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 13px 12px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(241, 47, 47, 0.1);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: -4px 0 0;
  font-size: 13px;
  text-align: center;
}

.why-grid div {
  padding: 16px;
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 10px;
}

summary {
  cursor: pointer;
  padding: 17px 18px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.site-footer {
  display: grid;
  gap: 18px;
  width: min(var(--max), calc(100% - 32px));
  margin: 40px auto 92px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  width: 220px;
  margin-bottom: 12px;
  border-radius: 6px;
}

.site-footer p,
.site-footer span,
.site-footer strong {
  display: block;
  margin: 0 0 5px;
}

.mobile-sticky {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 40;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(23, 23, 23, 0.18);
  text-align: center;
}

.mobile-sticky span {
  font-size: 12px;
  font-weight: 700;
}

.mobile-sticky strong {
  font-size: 16px;
}

@media (min-width: 640px) {
  .form-row,
  .package-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  .site-header {
    padding: 12px 28px;
  }

  .brand {
    width: 214px;
  }

  .nav-links,
  .header-cta {
    display: flex;
  }

  .hero {
    padding-top: 54px;
  }

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

  .mobile-sticky {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 48px;
  }
}

@media (max-width: 819px) {
  h1 {
    font-size: 44px;
  }

  .section {
    padding: 42px 0;
  }

  .quotation-copy {
    position: static;
  }
}
