:root {
  --cream: #f7f6f2;
  --ink: #17181d;
  --muted: #666461;
  --olive: #4f5f35;
  --deep-green: #1f3218;
  --gold: #9c721d;
  --warm-border: #cbc3b2;
  --page-bg: #f2f1ed;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
}

.flyer-page {
  display: grid;
  place-items: center;
  gap: 22px;
  padding: clamp(18px, 3vw, 45px);
}

.flyer {
  position: relative;
  width: min(100%, 1440px);
  aspect-ratio: 1440 / 931;
  background: var(--cream);
  overflow: hidden;
  padding: 3.95% 4.4% 0;
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
}

.outer-border,
.inner-border {
  pointer-events: none;
  position: absolute;
  inset: 2.85% 3.15%;
  border: 4px solid var(--deep-green);
}

.inner-border {
  inset: 3.55% 3.75%;
  border: 2px solid var(--gold);
}

.header-card {
  position: relative;
  z-index: 1;
  height: 25.6%;
  border: 3px solid var(--warm-border);
  border-radius: 24px;
  background: rgba(255,255,255,.52);
  display: grid;
  grid-template-columns: 24.5% 37.2% 32.4%;
  align-items: center;
  column-gap: 3%;
  padding: 1.35% 2.75% 1.3% 5.45%;
}

.logo-wrap {
  display: grid;
  place-items: center;
  text-decoration: none;
  transform: translateX(-4px);
}

.logo {
  width: min(170%, 256px);
  height: auto;
  display: block;
}

.brand-block {
  align-self: center;
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  transform: translateY(-2px);
}

.brand-block h1,
.brand-subtitle,
.tagline,
.hero h2,
.service-card h3,
.owner h2,
.footer-bar {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .075em;
  margin: 0;
}

.brand-block h1 {
  font-size: clamp(32px, 3.85vw, 56px);
  line-height: .88;
  white-space: nowrap;
}

.brand-subtitle {
  color: var(--gold);
  font-size: clamp(21px, 2.45vw, 35px);
  line-height: 1;
  margin-top: .42em;
  white-space: nowrap;
}

.brand-rule {
  width: min(100%, 486px);
  height: 4px;
  background: var(--gold);
  margin: .72em 0 .62em;
}

.tagline {
  font-size: clamp(16px, 1.82vw, 26px);
  letter-spacing: .095em;
  white-space: nowrap;
}

.contact-card {
  font-style: normal;
  border-left: 4px solid var(--gold);
  padding-left: 7.4%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8.8%;
}

.contact-card h2 {
  margin: 0 0 .35em;
  color: var(--olive);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact-card p {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: baseline;
  margin: 0;
  gap: .8rem;
  font-weight: 900;
  font-size: clamp(13px, 1.35vw, 20px);
  line-height: 1.05;
}

.contact-card span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82em;
}

.contact-card a {
  color: var(--ink);
  text-decoration: none;
}

.contact-card a:hover { color: var(--gold); }

.hero {
  position: relative;
  z-index: 1;
  margin: 1.08% 2.1% 0;
  height: 13.2%;
  background: var(--olive);
  border-radius: 17px;
  display: grid;
  place-items: center;
  padding: 0 2%;
}

.hero h2 {
  color: white;
  font-size: clamp(31px, 4.7vw, 56px);
  letter-spacing: .105em;
  white-space: nowrap;
}

.hero span { padding: 0 .35em; }

.intro {
  position: relative;
  z-index: 1;
  margin: 1.65% auto 1.25%;
  width: 90%;
  text-align: center;
  color: var(--muted);
  font-size: clamp(15px, 1.95vw, 25px);
  line-height: 1.2;
}

.services {
  position: relative;
  z-index: 1;
  width: 90.6%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.1%;
}

.service-card {
  height: clamp(132px, 13.1vw, 190px);
  background: rgba(255,255,255,.38);
  border: 3px solid var(--warm-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2.3% 5% 0;
}

.service-line {
  width: 92%;
  height: 5px;
  background: var(--gold);
  margin: 6.5% 0 12.5%;
}

.service-card h3 {
  text-align: center;
  font-size: clamp(17px, 2.45vw, 31px);
  line-height: 1.62;
  letter-spacing: .115em;
}

.owner {
  position: relative;
  z-index: 1;
  margin-top: 1.85%;
  text-align: center;
}

.owner h2 {
  text-transform: none;
  letter-spacing: -.025em;
  font-size: clamp(19px, 2.28vw, 30px);
}

.legal {
  position: relative;
  z-index: 1;
  margin: 2.05% auto 0;
  text-align: center;
  color: var(--muted);
  font-size: clamp(11px, 1.28vw, 17px);
  line-height: 1.45;
  letter-spacing: .035em;
}

.footer-bar {
  position: absolute;
  left: 3.35%;
  right: 3.35%;
  bottom: 3.55%;
  height: 7.46%;
  background: var(--deep-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3%;
  font-size: clamp(17px, 2.22vw, 29px);
  line-height: 1;
  white-space: nowrap;
}

.footer-bar b { font-weight: 500; }


@media (max-width: 880px) {
  .flyer {
    aspect-ratio: auto;
    min-height: 0;
    padding: 26px 20px 0;
  }

  .outer-border,
  .inner-border { display: none; }

  .header-card {
    height: auto;
    grid-template-columns: 120px 1fr;
    grid-template-areas:
      "logo brand"
      "contact contact";
    gap: 18px 20px;
    padding: 22px;
  }

  .logo-wrap { grid-area: logo; }
  .brand-block { grid-area: brand; }
  .contact-card {
    grid-area: contact;
    border-left: 0;
    border-top: 4px solid var(--gold);
    padding: 18px 0 0;
  }
  .contact-card p { grid-template-columns: 64px 1fr; }

  .hero { height: auto; margin: 20px 0 0; padding: 24px 16px; }
  .hero h2 { white-space: normal; text-align: center; line-height: 1.2; }
  .intro { width: 100%; margin: 20px 0; }
  .services { width: 100%; grid-template-columns: repeat(2, 1fr); }
  .service-card { height: auto; min-height: 150px; }
  .owner { margin-top: 22px; }
  .legal { margin: 18px 0 86px; }
  .footer-bar { left: 0; right: 0; bottom: 0; height: 68px; }
}

@media (max-width: 560px) {
  .flyer-page { padding: 12px; }
  .header-card { grid-template-columns: 1fr; grid-template-areas: "logo" "brand" "contact"; text-align: center; }
  .brand-rule { margin-left: auto; margin-right: auto; }
  .services { grid-template-columns: 1fr; }
  .footer-bar { flex-wrap: wrap; gap: 8px 12px; padding: 12px; height: auto; min-height: 78px; }
  .legal { margin-bottom: 100px; }
}

@media print {
  body { background: #fff; }
  .flyer-page { padding: 0; }
  .flyer { width: 100%; box-shadow: none; }
  .download-panel { display: none; }
}
