:root {
  --background: #f7f7f8;
  --foreground: #24262b;
  --card: #ffffff;
  --muted: #f0f1f3;
  --muted-strong: #e3e5e8;
  --text-muted: #656b75;
  --charcoal: #24262b;
  --charcoal-2: #191a1d;
  --primary: #f97316;
  --primary-dark: #d85d08;
  --primary-ink: #ffffff;
  --border: #dce0e5;
  --steel: #707883;
  --shadow-card: 0 14px 34px rgba(25, 26, 29, 0.09);
  --shadow-heavy: 0 22px 52px rgba(25, 26, 29, 0.34);
  --font-display: "Archivo Black", "Inter", Arial, sans-serif;
  --font-sans: "Inter", Arial, sans-serif;
  --radius: 8px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  color: #ffffff;
  font-size: 2.55rem;
}

h1 strong,
h2 strong {
  color: var(--primary);
  font: inherit;
}

h2 {
  color: var(--charcoal);
  font-size: 2.2rem;
}

h3 {
  color: var(--charcoal);
  font-size: 1rem;
}

p {
  color: var(--text-muted);
}

svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.section {
  padding-block: 80px;
}

.section-muted {
  background: var(--muted);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 0.76rem 1rem;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.28);
}

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

.btn-dark {
  background: var(--charcoal);
  color: #ffffff;
}

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

.btn-ghost {
  border: 2px solid rgba(36, 38, 43, 0.1);
  background: transparent;
  color: var(--charcoal);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-glass {
  border: 2px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-large {
  min-height: 54px;
  padding-inline: 1.2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding-inline: 0.4rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.text-link:hover {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 224, 229, 0.82);
  background: rgba(247, 247, 248, 0.88);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(25, 26, 29, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.brand img {
  width: 126px;
  height: 52px;
  border-radius: 6px;
  object-fit: contain;
}

.brand span {
  display: none;
  white-space: nowrap;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: rgba(36, 38, 43, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone,
.quote-link {
  display: none;
}

.menu-toggle {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--charcoal);
}

.menu-toggle:hover {
  background: var(--muted);
}

.menu-toggle svg {
  grid-area: 1 / 1;
  width: 24px;
  height: 24px;
}

.menu-toggle .menu-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close {
  display: block;
}

.mobile-nav {
  border-top: 1px solid var(--border);
  background: var(--background);
}

.mobile-nav-inner {
  display: grid;
  gap: 4px;
  padding-block: 16px;
}

.mobile-nav a:not(.btn) {
  border-radius: 6px;
  padding: 0.86rem 0.9rem;
  color: var(--charcoal);
  font-weight: 800;
}

.mobile-nav a:not(.btn):hover {
  background: var(--muted);
}

.mobile-call {
  margin-top: 8px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(18, 19, 22, 0.94) 0%, rgba(36, 38, 43, 0.78) 50%, rgba(18, 19, 22, 0.88) 100%),
    linear-gradient(0deg, rgba(249, 115, 22, 0.12), transparent 48%);
}

.hero-content {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  padding-block: 48px 58px;
}

.hero-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.46rem 0.78rem;
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.hero-eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.hero-copy {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.trust-bar {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--charcoal);
  color: #ffffff;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  padding-block: 18px;
}

.trust-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.trust-grid svg {
  color: var(--primary);
}

.split-grid {
  display: grid;
  align-items: center;
  gap: 38px;
}

.split-grid p + p {
  margin-top: 16px;
}

.about-section p:not(.eyebrow),
.section-heading > p,
.faq-grid > div > p,
.contact-section p {
  font-size: 1rem;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.mini-card {
  min-height: 106px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.mini-card svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.mini-card h3 {
  margin-top: 10px;
  font-size: 0.78rem;
}

.image-callout {
  position: relative;
}

.image-callout img,
.propane-image img,
.wide-image {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-heavy);
}

.image-callout img {
  aspect-ratio: 4 / 3;
}

.experience-badge {
  display: none;
  position: absolute;
  left: -22px;
  bottom: -22px;
  max-width: 205px;
  border-radius: var(--radius);
  background: var(--primary);
  padding: 22px;
  color: #ffffff;
  box-shadow: var(--shadow-heavy);
}

.experience-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.experience-badge span {
  display: block;
  margin-top: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 42px;
}

.heading-row {
  display: grid;
  align-items: end;
  gap: 20px;
}

.heading-row p {
  max-width: 560px;
}

.heading-action {
  display: none;
}

.center-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.product-grid {
  display: grid;
  gap: 22px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--muted-strong);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.product-card:hover .card-media img {
  transform: scale(1.05);
}

.card-media span {
  position: absolute;
  top: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  padding: 0.34rem 0.58rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.15rem;
}

.card-body ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.card-body li {
  position: relative;
  padding-left: 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card-body li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.card-body p {
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  color: rgba(36, 38, 43, 0.72);
  font-size: 0.82rem;
  font-style: italic;
}

.propane-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--charcoal);
  color: #ffffff;
}

.propane-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.propane-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(25, 26, 29, 1) 0%, rgba(25, 26, 29, 0.88) 58%, rgba(25, 26, 29, 0.56) 100%);
  content: "";
}

.propane-section h2 {
  color: #ffffff;
}

.propane-section p {
  color: rgba(255, 255, 255, 0.76);
}

.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.14);
  padding: 0.46rem 0.76rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.tag-grid span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 0.58rem 0.5rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.propane-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 26px;
  border-radius: 999px;
  background: var(--primary);
  padding: 0.6rem 0.9rem;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.propane-badge span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
}

.inline-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
}

.inline-contact svg {
  color: var(--primary);
}

.inline-contact:hover {
  color: var(--primary);
}

.propane-image img {
  aspect-ratio: 4 / 3;
}

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

.audience-card {
  min-height: 176px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 22px 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, border-color 180ms ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.audience-card svg {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary);
  padding: 13px;
  transition: background 180ms ease, color 180ms ease;
}

.audience-card:hover svg {
  background: var(--primary);
  color: #ffffff;
}

.audience-card h3 {
  margin-top: 14px;
  font-size: 0.92rem;
}

.audience-card p {
  margin-top: 8px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.reason-grid {
  display: grid;
  gap: 14px;
}

.reason-card {
  min-height: 138px;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  background: var(--card);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.reason-card strong {
  display: block;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.reason-card span {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.wide-image {
  aspect-ratio: 21 / 9;
  margin-top: 42px;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 170px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--muted);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.08);
}

.gallery-tall {
  grid-row: span 2;
}

.testimonials-section {
  background: var(--charcoal);
  color: #ffffff;
}

.testimonials-section h2 {
  color: #ffffff;
}

.testimonial-grid {
  display: grid;
  gap: 18px;
}

.testimonial-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--primary);
}

.stars svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

.testimonial-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.testimonial-card footer {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-card footer span {
  color: var(--primary);
}

.faq-grid {
  display: grid;
  gap: 34px;
}

.faq-grid a {
  color: var(--primary);
  font-weight: 800;
}

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

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.faq-list details[open] {
  border-color: var(--primary);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--charcoal);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  flex: 0 0 auto;
  color: var(--primary);
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(90deg);
}

.faq-list details p {
  margin-top: 12px;
  font-size: 0.93rem;
}

.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.cta-section > img,
.cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-section > img {
  z-index: -2;
  object-fit: cover;
}

.cta-overlay {
  z-index: -1;
  background: linear-gradient(100deg, rgba(25, 26, 29, 0.96) 0%, rgba(25, 26, 29, 0.9) 55%, rgba(25, 26, 29, 0.62) 100%);
}

.cta-content {
  max-width: 1280px;
  padding-block: 86px;
  color: #ffffff;
}

.cta-content h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: 2.45rem;
}

.cta-content p {
  max-width: 660px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-grid {
  display: grid;
  gap: 38px;
}

.quote-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

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

.quote-form label {
  display: grid;
  gap: 7px;
}

.quote-form label span {
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card);
  color: var(--charcoal);
  padding: 0.88rem 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.16);
}

.btn-submit {
  width: 100%;
  margin-top: 2px;
}

.contact-side {
  display: grid;
  gap: 20px;
}

.visit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.visit-card h3 {
  font-size: 1.2rem;
}

.contact-list {
  display: grid;
  gap: 17px;
  margin-top: 20px;
}

.contact-list a,
.contact-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--charcoal);
  font-size: 0.94rem;
}

.contact-list a:hover {
  color: var(--primary);
}

.contact-list svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--primary);
}

.contact-list strong {
  color: inherit;
}

.contact-list a span:last-child {
  color: var(--text-muted);
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--muted);
  box-shadow: var(--shadow-card);
}

.map-frame iframe {
  display: block;
  border: 0;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: var(--shadow-heavy);
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-grid {
  display: grid;
  gap: 28px;
  padding-block: 44px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 126px;
  height: 76px;
  border-radius: 6px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-brand span {
  display: block;
  margin-top: 5px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 0.92rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer p + p {
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 20px 88px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

@media (min-width: 560px) {
  .brand span {
    display: inline;
  }

  .mini-card-grid,
  .tag-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .btn-submit {
    width: fit-content;
  }
}

@media (min-width: 720px) {
  :root {
    --header-height: 78px;
  }

  .section {
    padding-block: 96px;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .hero,
  .hero-content {
    min-height: 560px;
  }

  .hero-copy,
  .cta-content p,
  .about-section p:not(.eyebrow),
  .section-heading > p,
  .faq-grid > div > p,
  .contact-section p {
    font-size: 1.08rem;
  }

  .header-phone {
    display: inline-flex;
  }

  .quote-link {
    display: inline-flex;
  }

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

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

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

  .gallery-grid {
    grid-auto-rows: 210px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .cta-content {
    padding-block: 112px;
  }

  .cta-content h2 {
    font-size: 4rem;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-bottom {
    padding-bottom: 24px;
  }

  .floating-call {
    display: none;
  }
}

@media (min-width: 960px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .split-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: 70px;
  }

  .propane-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  }

  .experience-badge {
    display: block;
  }

  .heading-row {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  }

  .heading-action {
    display: inline-flex;
    width: fit-content;
    justify-self: end;
  }

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

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

  .faq-grid {
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 60px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: 60px;
  }
}

@media (min-width: 1160px) {
  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3.65rem;
  }

  .hero,
  .hero-content {
    min-height: 590px;
  }
}

@media (max-width: 719px) {
  body {
    padding-bottom: 72px;
  }

  h1 {
    font-size: 2.3rem;
  }

  .hero,
  .hero-content {
    min-height: 0;
  }

  .hero-content {
    padding-block: 42px 46px;
  }

  .hero-copy {
    margin-top: 18px;
  }

  .hero-actions .btn,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-actions .btn-glass {
    display: none;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .wide-image {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.92rem;
  }

  .brand img {
    width: 108px;
    height: 44px;
  }

  .card-body,
  .visit-card,
  .testimonial-card {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
