:root {
  color-scheme: light;
  --page: #efefef;
  --paper: #ffffff;
  --panel: #ffffff;
  --ink: #333333;
  --muted: #656565;
  --line: #d8d8d8;
  --accent: #de552b;
  --accent-strong: #c5401f;
  --green: #357f60;
  --green-strong: #2f7b5a;
  --charcoal: #4c4c4c;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

.shell {
  width: min(2040px, 100%);
  margin: 0 auto;
}

.accent-strip {
  height: 20px;
  background: #d96a17;
}

.site-header {
  background: #ffffff;
}

.header-grid {
  display: grid;
  grid-template-columns: 360px 1fr 210px 430px;
  align-items: center;
  gap: 24px;
  min-height: 260px;
  padding: 12px 38px 18px;
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.flame-mark {
  position: relative;
  width: 118px;
  height: 142px;
}

.flame-outer,
.flame-inner {
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 68% 18%, 78% 42%, 73% 70%, 58% 100%, 42% 100%, 28% 70%, 22% 42%, 32% 18%);
}

.flame-outer {
  inset: 0;
  background: linear-gradient(180deg, #cf2f28 0%, #e5752d 100%);
}

.flame-inner {
  top: 42px;
  width: 56px;
  height: 72px;
  background: #ffffff;
}

.logo-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.92;
}

.logo-alpine {
  font-size: 3.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1c8a64;
}

.logo-fireplaces {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #111111;
}

.tagline-block {
  text-align: center;
}

.tagline-block h1 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 3vw, 3.8rem);
  line-height: 1.05;
  font-weight: 700;
  color: #333333;
}

.award-block {
  display: flex;
  justify-content: center;
}

.award-badge {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #ff6f22 0 58%, #111111 59% 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.award-year {
  font-size: 0.95rem;
}

.award-title {
  font-size: 1.35rem;
  line-height: 1;
}

.award-place {
  font-size: 1rem;
}

.quote-block {
  text-align: center;
}

.quote-label,
.quote-number {
  margin: 0;
}

.quote-label {
  font-size: 1.05rem;
  color: #333333;
}

.quote-number {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 4.1rem);
  line-height: 1;
  color: #d9412b;
  font-weight: 400;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.socials span {
  width: 44px;
  height: 44px;
  background: #3f7d5d;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.main-nav {
  background: var(--charcoal);
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}

.nav-row {
  display: flex;
  justify-content: center;
  background: var(--charcoal);
  padding: 0 28px;
}

.nav-row a {
  min-height: 82px;
  padding: 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #8b8b8b;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.nav-row a:first-child {
  border-left: 1px solid #8b8b8b;
}

.nav-row a.is-active {
  background: var(--green);
}

.hero-banner {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0 17%, rgba(0, 0, 0, 0.18) 17% 18%, transparent 18% 100%),
    linear-gradient(90deg, rgba(15, 15, 15, 0.74) 20% 40%, transparent 40% 100%),
    radial-gradient(circle at 8% 42%, rgba(255, 255, 255, 0.9) 0 3%, transparent 4% 100%),
    linear-gradient(90deg, #809165 0 18%, #f1f1f1 18% 22%, #2b2b2b 22% 40%, #c9bca9 40% 100%),
    repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.22) 0 2px, rgba(0, 0, 0, 0) 2px 26px),
    repeating-linear-gradient(-60deg, rgba(255, 255, 255, 0.18) 0 2px, rgba(0, 0, 0, 0) 2px 26px);
  background-size: auto, auto, auto, auto, 180px 180px, 180px 180px;
  background-position: center, center, left center, center, right center, right center;
  min-height: 540px;
  border-top: 20px solid #f4f4f4;
}

.hero-shell {
  position: relative;
  min-height: 540px;
}

.hero-overlay {
  position: absolute;
  top: 28px;
  left: 22%;
  width: min(370px, calc(100% - 32px));
  min-height: 420px;
  padding: 34px 34px 30px;
  background: rgba(0, 0, 0, 0.62);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow,
.section-kicker {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.08;
  font-weight: 700;
}

.hero-eyebrow {
  font-size: clamp(2rem, 2.6vw, 3.2rem);
  max-width: 8ch;
}

.hero-subcopy {
  margin: 28px 0 0;
  max-width: 9ch;
  color: #e7882b;
  font-size: 1.18rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.cta-button {
  margin-top: 34px;
  min-height: 66px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d8402a;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.main-content {
  padding: 42px 18px 56px;
}

.section-heading {
  text-align: center;
  margin-bottom: 24px;
}

.section-kicker {
  color: var(--green-strong);
  font-size: 0.95rem;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.6vw, 3rem);
  color: #2f2f2f;
}

.panel {
  padding: 26px;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.frame-wrap {
  min-height: 1480px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 10px;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

@media (max-width: 1400px) {
  .header-grid {
    grid-template-columns: 1fr 1.2fr 220px;
  }

  .award-block {
    display: none;
  }

  .quote-block {
    grid-column: span 3;
  }
}

@media (max-width: 1100px) {
  .header-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .quote-block {
    grid-column: auto;
  }

  .nav-row {
    flex-wrap: wrap;
    padding: 0;
  }

  .nav-row a {
    min-height: 64px;
    flex: 1 1 33%;
    padding: 0 20px;
  }

  .hero-overlay {
    left: 50%;
    transform: translateX(-50%);
    width: min(370px, calc(100% - 24px));
  }
}

@media (max-width: 720px) {
  .logo-alpine {
    font-size: 2.8rem;
  }

  .logo-fireplaces {
    font-size: 1.25rem;
  }

  .quote-number {
    font-size: 2.5rem;
  }

  .nav-row a {
    flex-basis: 50%;
    font-size: 0.92rem;
  }

  .hero-banner,
  .hero-shell {
    min-height: 500px;
  }

  .hero-overlay {
    top: 18px;
    min-height: 360px;
    padding: 24px 20px;
  }

  .frame-wrap {
    min-height: 1100px;
    padding: 6px;
  }
}
