:root {
  --hal-blue: #022658;
  --hal-orange: #e46c24;
  --hal-creme: #f8eddc;
  --hal-sea-froth: #e9efe9;
  --hal-white: #ffffff;
  --hal-charcoal: #606060;
  --hal-black: #333333;
  --hal-dusk-fog: #a3b3bb;
  --hal-medium-blue: #507799;
  --hal-border: rgba(2, 38, 88, 0.12);
  --hal-shadow: 0 20px 60px rgba(2, 38, 88, 0.12);
  --hal-radius-lg: 28px;
  --hal-max-width: 1280px;
  --hal-brand-font: "HAL Brand Medium", "NeutralFace", Georgia, serif;
  --hal-display-font: "HAL Headline Display Regular", "HAL Headline", Georgia, serif;
  --hal-headline-font: "HAL Headline", Georgia, serif;
  --hal-body-font: "HAL Body", Aptos, "Aptos Narrow", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: linear-gradient(180deg, #f8f4ee 0%, #ffffff 100%);
  color: var(--hal-black);
  font-family: var(--hal-body-font);
}

.page-shell {
  width: min(var(--hal-max-width), calc(100vw - 40px));
  margin: 24px auto 48px;
  background: var(--hal-white);
  border: 1px solid var(--hal-border);
  border-radius: 32px;
  box-shadow: var(--hal-shadow);
  overflow: hidden;
}

.brand-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--hal-border);
  background: rgba(248, 237, 220, 0.48);
}

.brand-mark {
  width: 12px;
  height: 68px;
  border-radius: 999px;
  background: var(--hal-orange);
  flex: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo-slot {
  margin-left: auto;
  min-width: 170px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px dashed rgba(2, 38, 88, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: var(--hal-blue);
  text-align: center;
}

.logo-slot-label {
  font-family: var(--hal-brand-font);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hal-charcoal);
}

.logo-slot-note {
  margin-top: 6px;
  font-family: var(--hal-headline-font);
  font-size: 0.92rem;
  line-height: 1.35;
}

.brand-label {
  font-family: var(--hal-brand-font);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hal-blue);
}

.brand-title {
  font-family: var(--hal-display-font);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  color: var(--hal-blue);
  line-height: 1.05;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hal-blue);
  font-family: var(--hal-brand-font);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  width: 8px;
  height: 28px;
  border-radius: 999px;
  background: var(--hal-orange);
}

.headline {
  font-family: var(--hal-display-font);
  font-size: clamp(2.75rem, 5vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--hal-blue);
  margin: 0;
}

.subheadline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--hal-charcoal);
  max-width: 62ch;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--hal-brand-font);
}

.pill-blue {
  background: var(--hal-blue);
  color: var(--hal-white);
}

.pill-orange {
  background: var(--hal-orange);
  color: var(--hal-white);
}

.offer-card {
  border: 1px solid var(--hal-border);
  border-radius: var(--hal-radius-lg);
  background: linear-gradient(180deg, rgba(233, 239, 233, 0.42), rgba(248, 237, 220, 0.18));
  padding: 22px;
}

.offer-card h3,
.offer-card h4 {
  margin: 0 0 12px;
  font-family: var(--hal-headline-font);
  color: var(--hal-blue);
}

.kicker {
  font-family: var(--hal-brand-font);
  color: var(--hal-orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.price {
  font-family: var(--hal-display-font);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  color: var(--hal-blue);
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.list-clean li {
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--hal-orange);
}

.cta-card {
  background: var(--hal-blue);
  color: var(--hal-white);
  border-radius: var(--hal-radius-lg);
  padding: 24px;
  display: grid;
  gap: 14px;
}

.cta-label {
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--hal-brand-font);
  font-size: 0.8rem;
}

.cta-text {
  font-family: var(--hal-display-font);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1;
}

.cta-contact {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.terms {
  border-top: 1px solid var(--hal-border);
  background: linear-gradient(180deg, rgba(248, 237, 220, 0.48), rgba(233, 239, 233, 0.48));
  padding: 24px 28px 30px;
}

.terms h4 {
  margin: 0 0 12px;
  color: var(--hal-blue);
  font-family: var(--hal-headline-font);
}

.terms p,
.terms li {
  color: var(--hal-charcoal);
  font-size: 0.9rem;
  line-height: 1.65;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--hal-radius-lg);
  min-height: 340px;
  background-size: cover;
  background-position: center;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay, linear-gradient(180deg, rgba(2, 38, 88, 0.15), rgba(2, 38, 88, 0.58)));
}

.image-content {
  position: relative;
  z-index: 1;
  color: var(--hal-white);
  padding: 30px;
  display: grid;
  gap: 16px;
  align-content: end;
  min-height: 100%;
}

.image-title {
  font-family: var(--hal-display-font);
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  line-height: 0.95;
}

.image-body {
  max-width: 48ch;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.meta-item {
  border: 1px solid var(--hal-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
}

.meta-label {
  color: var(--hal-charcoal);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: var(--hal-brand-font);
}

.meta-value {
  margin-top: 8px;
  color: var(--hal-blue);
  font-family: var(--hal-headline-font);
  font-size: 1.05rem;
  line-height: 1.4;
}

.footer-note {
  color: var(--hal-charcoal);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .page-shell {
    width: min(calc(100vw - 20px), var(--hal-max-width));
    margin: 10px auto 24px;
    border-radius: 22px;
  }

  .brand-bar {
    padding: 16px 18px;
  }

  .brand-mark {
    height: 56px;
  }

  .logo-slot {
    min-width: 0;
    width: 100%;
    margin-left: 0;
  }

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