/* Fire & Dine homepage presentation.
   This file is loaded only when meta.page_type is "home". */

.home-page {
  --home-ink: #101110;
  --home-ink-soft: #191a18;
  --home-paper: #fffdf9;
  --home-paper-soft: #f7f4ee;
  --home-gold: var(--fds-color-gold, #fcbc4d);
  --home-gold-ink: var(--fds-color-gold-ink, #8d6418);
  --home-line: rgba(16, 17, 16, 0.12);
  --home-dark-line: rgba(252, 188, 77, 0.22);
  --home-section-space: clamp(72px, 6vw, 96px);
  --home-copy-width: 680px;
}

.home-page .home-utility-bar {
  height: 42px;
  color: rgba(255, 255, 255, 0.7);
  background: #090a09;
  border-bottom: 1px solid rgba(252, 188, 77, 0.24);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.home-page .home-utility-bar .shell {
  width: calc(100% - 64px) !important;
  max-width: 1480px !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.home-page .home-utility-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.home-page .home-utility-bar a,
.home-page .home-utility-bar span {
  color: inherit;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.home-page .home-utility-bar i {
  margin-right: 7px;
  color: var(--home-gold);
  font-size: 11px;
}

.home-page .home-utility-bar b {
  margin-inline: 8px;
  color: var(--home-gold);
}

.home-page .home-utility-message {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .header {
  background: #0d0e0d;
  border-bottom-color: rgba(252, 188, 77, 0.18);
}

.home-page .header > .shell {
  height: 82px;
}

.home-page .nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.035em;
}

@media (min-width: 1181px) {
  .home-page .header > .shell {
    width: calc(100% - 72px) !important;
    max-width: 1500px !important;
    height: 108px !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
  }

  .home-page .header .logo img {
    width: 130px !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain;
  }

  .home-page .header .nav {
    justify-self: center;
    gap: 32px;
    margin-left: 0;
  }

  .home-page .header .nav a {
    font-size: 17px !important;
    font-weight: 600 !important;
  }

  .home-page .header .header-actions {
    justify-self: end;
    gap: 18px;
  }

  .home-page .header .header-search-btn i {
    font-size: 21px;
  }
}

.home-page main .section {
  padding-block: var(--home-section-space) !important;
}

.home-page main .section-head {
  max-width: var(--home-copy-width);
  margin: 0 auto clamp(38px, 4vw, 56px) !important;
  text-align: center;
}

.home-page main .section-head .eyebrow,
.home-page main .home-story-copy .eyebrow,
.home-page main .home-material-copy .eyebrow,
.home-page main .service-kicker,
.home-page main .site-final-cta .eyebrow {
  color: var(--home-gold) !important;
  -webkit-text-fill-color: var(--home-gold) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
}

.home-page main .section-head h2 {
  margin-bottom: 14px !important;
  font-size: clamp(2rem, 3.25vw, 3.15rem) !important;
  line-height: 1.08 !important;
}

.home-page main .section-head p {
  max-width: 62ch;
  margin-inline: auto;
  color: #66635d;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.home-page main .btn,
.home-page main a.btn {
  min-height: 46px !important;
  border-radius: 3px !important;
  padding-inline: 25px !important;
  font-size: 11px !important;
  letter-spacing: 0.11em !important;
}

/* Hero */
html body.home-page main .home-hero.hero-image-selected {
  position: relative !important;
  min-height: calc(100vh - 150px) !important;
  min-height: calc(100svh - 150px) !important;
  display: grid !important;
  place-items: center;
  padding: 0 !important;
}

html body.home-page main .home-hero.hero-image-selected::before {
  background:
    linear-gradient(180deg, rgba(7, 8, 8, 0.3), rgba(7, 8, 8, 0.18) 48%, rgba(7, 8, 8, 0.43)),
    url('/assets/images/home/home-outdoor-pizza-lifestyle-cta.webp') center center / cover no-repeat !important;
}

html body.home-page main .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 32% 68%, rgba(0, 0, 0, 0.22));
}

html body.home-page main .home-hero > .shell {
  display: grid;
  place-items: center;
  min-height: inherit;
}

html body.home-page main .home-hero .hero-copy {
  width: min(100%, 1120px) !important;
  max-width: 1120px !important;
  margin-inline: auto !important;
  padding-block: 48px;
  text-align: center;
}

html body.home-page main .home-hero .hero-copy > .eyebrow {
  margin-bottom: 22px !important;
  color: var(--home-gold) !important;
  -webkit-text-fill-color: var(--home-gold) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.09em !important;
}

html body.home-page main .home-hero .hero-copy h1 {
  max-width: 1120px !important;
  margin: 0 auto !important;
  font-size: clamp(60px, 5vw, 78px) !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.35);
}

html body.home-page main .home-hero .hero-copy > p {
  max-width: 760px !important;
  margin: 26px auto 0 !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
}

html body.home-page main .home-hero .hero-copy .actions {
  justify-content: center;
  gap: 12px !important;
  margin-top: 28px !important;
}

html body.home-page main .home-hero .hero-copy .actions .btn {
  min-height: 48px !important;
  padding-inline: 30px !important;
}

html body.home-page main .home-hero .hero-copy .actions .btn-outline {
  border-color: var(--home-gold) !important;
}

/* Categories */
.home-page main .category-section {
  position: relative;
  z-index: 2;
  background: var(--home-paper);
  padding: 80px 0 clamp(82px, 5vw, 96px) !important;
}

.home-page main .category-section .section-head {
  margin-bottom: 50px !important;
}

.home-page main .category-section .section-head .eyebrow {
  display: block;
  margin-bottom: 16px !important;
  color: var(--home-gold) !important;
  -webkit-text-fill-color: var(--home-gold) !important;
  font-size: 14px !important;
  font-weight: 600;
  letter-spacing: 0.16em !important;
  text-align: center;
}

.home-page main .category-section .section-head h2 {
  margin-bottom: 20px !important;
  color: #111 !important;
  font-size: clamp(38px, 3vw, 48px) !important;
}

.home-page main .category-section .section-head p {
  max-width: 720px;
  color: #4f4f4f !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

.home-page main .category-section > .shell {
  width: min(calc(100% - 64px), 1240px) !important;
  max-width: 1240px !important;
}

.home-page .category-section .cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px !important;
  align-items: stretch;
}

.home-page .category-section .card {
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(16, 17, 16, 0.1);
  border-radius: 5px;
  box-shadow: 0 10px 28px rgba(20, 18, 14, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-page .category-section .card:hover,
.home-page .category-section .card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(141, 100, 24, 0.48);
  box-shadow: 0 18px 38px rgba(20, 18, 14, 0.13);
}

.home-page .category-section .card > img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  object-position: center center;
  transition: transform 260ms ease;
}

.home-page .category-section .card[href$="/accessories"] > img {
  object-position: center 42%;
}

.home-page .category-section .card[href$="/braai"] > img {
  object-position: center top;
}

.home-page .category-section .card:hover > img {
  transform: scale(1.025);
}

.home-page .category-section .card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 190px;
  padding: 26px 30px 28px !important;
  text-align: center;
  background: #fff;
}

.home-page .category-section .card-body::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--home-gold), transparent);
  transform: scaleX(0.25);
  transition: transform 180ms ease;
}

.home-page .category-section .card:hover .card-body::after {
  transform: scaleX(1);
}

.home-page .category-section .card h3 {
  margin-bottom: 9px !important;
  font-size: 22px !important;
}

.home-page .category-section .card p {
  color: #716d65;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.home-page .category-section .card .text-link {
  margin-top: auto;
  color: var(--home-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

/* Reusable homepage category-product sections */
.home-page .featured-section,
.home-page .home-product-section {
  background: var(--home-ink);
  color: #fff;
}

.home-page .home-product-section {
  padding-block: var(--home-section-space) !important;
}

.home-page .featured-section .section-head .eyebrow,
.home-page .home-faq-section .section-head .eyebrow,
.home-page .home-process-section .section-head .eyebrow {
  color: var(--home-gold) !important;
  -webkit-text-fill-color: var(--home-gold) !important;
}

.home-page .featured-section .section-head h2,
.home-page .featured-section .section-head p,
.home-page .home-faq-section .section-head h2,
.home-page .home-process-section .section-head h2 {
  color: #fff !important;
}

.home-page .featured-section .section-head p,
.home-page .home-faq-section .section-head p,
.home-page .home-process-section .section-head p {
  color: rgba(255, 255, 255, 0.64) !important;
}

.home-page .featured-section .products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home-page .featured-section > .shell {
  width: min(calc(100% - 48px), 1360px) !important;
}

.home-page .featured-section .product {
  height: 100%;
  background: #181917 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 4px;
  box-shadow: none;
}

.home-page .featured-section .product-media {
  overflow: hidden;
  background: #21221f;
}

.home-page .featured-section .product-media img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  object-position: center;
  transition: transform 240ms ease;
}

.home-page .featured-section .product:hover .product-media img {
  transform: scale(1.025);
}

.home-page .featured-section .product-info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 7px;
  padding: 20px 22px 22px !important;
  background: #181917 !important;
}

.home-page .featured-section .product-info .eyebrow {
  color: var(--home-gold) !important;
  -webkit-text-fill-color: var(--home-gold) !important;
  font-size: 10px !important;
}

.home-page .featured-section .product-info h3 {
  display: -webkit-box;
  min-height: 45px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 17px !important;
  line-height: 1.32 !important;
}

.home-page .featured-section .product-info .spec {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.home-page .featured-section .product-info .price {
  padding-top: 10px;
  color: var(--home-gold) !important;
  font-size: 16px !important;
}

.home-page .featured-section .fd-product-actions {
  grid-template-columns: 1fr !important;
  padding-top: 12px;
}

.home-page .featured-section .fd-product-actions .btn {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  background: var(--home-gold) !important;
  border-color: var(--home-gold) !important;
}

.home-page .featured-section .fd-product-actions .btn:hover,
.home-page .featured-section .fd-product-actions .btn:focus-visible {
  color: var(--home-gold) !important;
  -webkit-text-fill-color: var(--home-gold) !important;
  background: #111 !important;
  border-color: var(--home-gold) !important;
}

.home-page .featured-section .section-actions {
  justify-content: center;
  margin-top: 38px !important;
}

/* Keep underfilled live-category rows centred without stretching their cards. */
@media (min-width: 1181px) {
  .home-page .home-product-section[data-product-count="1"] .products {
    grid-template-columns: minmax(0, 320px);
    justify-content: center;
  }

  .home-page .home-product-section[data-product-count="2"] .products {
    grid-template-columns: repeat(2, minmax(0, 320px));
    justify-content: center;
  }

  .home-page .home-product-section[data-product-count="3"] .products {
    grid-template-columns: repeat(3, minmax(0, 320px));
    justify-content: center;
  }
}

.home-page .home-product-state {
  grid-column: 1 / -1;
  min-height: 320px;
  margin: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.home-page .home-product-section-dark {
  background: #0d0e0c;
}

.home-page .home-product-section-dark + .home-faq-section {
  border-top: 1px solid rgba(252, 188, 77, 0.22);
}

.home-page .home-product-section-light {
  background: var(--home-paper-soft);
  color: var(--home-ink);
}

.home-page .featured-section.home-product-section-light .section-head h2 {
  color: #111 !important;
}

.home-page .featured-section.home-product-section-light .section-head p {
  color: #5f5b54 !important;
}

.home-page .featured-section.home-product-section-light .product {
  background: #fff !important;
  border-color: rgba(28, 26, 21, 0.12) !important;
  box-shadow: 0 12px 30px rgba(20, 18, 14, 0.07);
}

.home-page .featured-section.home-product-section-light .product:hover,
.home-page .featured-section.home-product-section-light .product:focus-within {
  border-color: var(--home-gold) !important;
  box-shadow: 0 17px 38px rgba(20, 18, 14, 0.12);
}

.home-page .featured-section.home-product-section-light .product-media {
  background: #eeeae2;
}

.home-page .featured-section.home-product-section-light .product-info {
  background: #fff !important;
}

.home-page .featured-section.home-product-section-light .product-info h3,
.home-page .featured-section.home-product-section-light .product-info h3 a {
  color: #171714 !important;
}

.home-page .featured-section.home-product-section-light .product-info .spec {
  color: #69655f !important;
}

.home-page .featured-section.home-product-section-light .product-info .price,
.home-page .featured-section.home-product-section-light .product-info .eyebrow {
  color: var(--home-gold) !important;
  -webkit-text-fill-color: var(--home-gold) !important;
}

.home-page .featured-section.home-product-section-light .fd-product-actions .btn {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  background: var(--home-gold) !important;
  border-color: var(--home-gold) !important;
}

.home-page .featured-section.home-product-section-light .fd-product-actions .btn:hover,
.home-page .featured-section.home-product-section-light .fd-product-actions .btn:focus-visible {
  color: var(--home-gold) !important;
  -webkit-text-fill-color: var(--home-gold) !important;
  background: #111 !important;
  border-color: #111 !important;
}

.home-page .home-product-section-light .section-actions .btn-outline {
  color: #171714 !important;
  -webkit-text-fill-color: #171714 !important;
  border-color: rgba(23, 23, 20, 0.42) !important;
}

.home-page .home-product-section-light .section-actions .btn-outline:hover,
.home-page .home-product-section-light .section-actions .btn-outline:focus-visible {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  background: var(--home-gold) !important;
  border-color: var(--home-gold) !important;
}

.home-page .home-product-section-light .home-product-state {
  color: #69655f;
}

/* Full-width service splits */
.home-page .service-showcase {
  min-height: 620px;
}

.home-page .installation-showcase {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.home-page .maintenance-showcase {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.home-page .service-visual {
  min-height: 620px;
}

.home-page .installation-visual {
  background-image: url('/assets/images/home/fire-and-dine-brick-braai-oven-pizza-party-serving.webp');
  background-position: center center;
}

.home-page .maintenance-visual {
  background-image: url('/assets/images/home/home-fireplaces-lifestyle-family-section.webp');
  background-position: 66% center;
}

.home-page .service-panel-light {
  background: var(--home-paper);
}

.home-page .service-panel-dark {
  background: var(--home-ink);
}

.home-page .service-panel-inner {
  max-width: 820px;
  padding: clamp(58px, 6vw, 86px) clamp(48px, 4vw, 72px);
}

.home-page .service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--home-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-page .service-panel-dark .service-kicker {
  color: var(--home-gold);
}

.home-page .service-panel h2 {
  margin-bottom: 22px !important;
  font-size: clamp(46px, 3.1vw, 54px) !important;
  line-height: 1.06 !important;
}

.home-page .service-rule {
  width: 50px;
  height: 2px;
  margin: 0 0 25px;
}

.home-page .service-intro {
  margin-bottom: 34px;
  font-size: 17px !important;
  line-height: 1.65 !important;
}

.home-page .service-showcase .service-features {
  margin-bottom: 34px;
}

.home-page .service-showcase .service-features article {
  padding: 6px 14px 12px;
}

.home-page .service-showcase .service-features i {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  font-size: 18px;
}

.home-page .service-showcase .service-features h3 {
  min-height: 2.4em;
  margin-bottom: 6px !important;
  font-size: 16px !important;
}

.home-page .service-showcase .service-features p {
  color: #6f6a63;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.home-page .service-showcase .service-features-dark p {
  color: rgba(255, 255, 255, 0.6);
}

.home-page .service-wide-button {
  min-height: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (min-width: 1051px) {
  .home-page .installation-showcase .service-panel-inner {
    width: 100%;
    max-width: none;
    padding-inline: clamp(56px, 3.35vw, 64px);
  }

  .home-page .installation-showcase .service-kicker {
    margin-bottom: 20px;
  }

  .home-page .installation-showcase .service-panel h2 {
    margin-bottom: 26px !important;
  }

  .home-page .installation-showcase .service-rule {
    margin-bottom: 26px;
  }

  .home-page .installation-showcase .service-intro {
    width: 100%;
    max-width: 780px;
    margin-bottom: 40px;
  }

  .home-page .installation-showcase .service-features {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 42px;
  }

  .home-page .installation-showcase .service-features article {
    min-width: 0;
    padding-inline: 18px;
  }

  .home-page .installation-showcase .service-features i {
    font-size: 20px;
  }

  .home-page .installation-showcase .service-features p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .home-page .installation-showcase .service-wide-button {
    width: 100%;
  }

  .home-page .maintenance-showcase .service-panel-inner {
    width: 100%;
    max-width: none;
    padding-inline: clamp(56px, 3.35vw, 64px);
  }

  .home-page .maintenance-showcase .service-kicker {
    margin-bottom: 20px;
  }

  .home-page .maintenance-showcase .service-panel h2 {
    margin-bottom: 26px !important;
  }

  .home-page .maintenance-showcase .service-rule {
    margin-bottom: 26px;
  }

  .home-page .maintenance-showcase .service-intro {
    width: 100%;
    max-width: 780px;
    margin-bottom: 40px;
  }

  .home-page .maintenance-showcase .service-features {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 42px;
  }

  .home-page .maintenance-showcase .service-features article {
    min-width: 0;
    padding-inline: 18px;
  }

  .home-page .maintenance-showcase .service-features i {
    font-size: 20px;
  }

  .home-page .maintenance-showcase .service-features p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .home-page .maintenance-showcase .service-wide-button {
    width: 100%;
  }
}

/* Audience cards */
.home-page .audience-section {
  background: var(--home-paper-soft);
}

.home-page .audience-section .section-head .eyebrow {
  color: var(--home-gold) !important;
  -webkit-text-fill-color: var(--home-gold) !important;
}

.home-page .audience-section .section-head h2,
.home-page .audience-section .floating-grid h3 {
  color: #111 !important;
}

.home-page .audience-section .section-head p,
.home-page .audience-section .floating-grid p {
  color: #4f4f4f !important;
}

.home-page .audience-section .floating-grid .text-link {
  color: var(--home-gold) !important;
}

.home-page .audience-section .floating-grid {
  gap: 20px;
}

.home-page .audience-section .floating-grid article {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 4px;
  box-shadow: 0 9px 26px rgba(20, 18, 14, 0.07);
}

.home-page .audience-section .floating-grid h3 {
  font-size: 18px !important;
}

.home-page .audience-section .floating-grid p {
  color: #69655f;
  font-size: 13px !important;
  line-height: 1.65 !important;
}

.home-page .audience-section .floating-grid .text-link {
  margin-top: auto;
  color: var(--home-gold-ink);
  font-size: 10px;
}

/* FAQ */
.home-page .home-faq-section {
  background: var(--home-ink);
  color: #fff;
}

.home-page .home-narrow-shell {
  max-width: 860px;
}

.home-page .home-faq-section .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-inline: auto !important;
  text-align: center;
}

.home-page .home-faq-section .section-head > * {
  margin-inline: auto !important;
}

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

.home-page .home-faq-list details {
  background: #151614;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 3px;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.home-page .home-faq-list details[open] {
  background: #191a18;
  border-color: var(--home-dark-line);
}

.home-page .home-faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 17px 55px 17px 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

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

.home-page .home-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--home-gold);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.home-page .home-faq-list details[open] summary::after {
  content: "−";
}

.home-page .home-faq-list details p {
  max-width: 72ch;
  margin: 0;
  padding: 0 55px 21px 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px !important;
  line-height: 1.7 !important;
}

.home-page .home-faq-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  min-height: 44px;
  margin: 28px auto 0;
  padding: 0 20px;
  border: 1px solid rgba(252, 188, 77, 0.7);
  border-radius: 3px;
  color: var(--home-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

/* Story */
.home-page .home-story-section {
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  min-height: 640px;
  background: var(--home-paper);
}

.home-page .home-story-media {
  min-height: 640px;
  overflow: hidden;
}

.home-page .home-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-page .home-story-copy {
  display: flex;
  align-items: center;
}

.home-page .home-story-inner {
  width: min(100%, 900px);
  padding: clamp(56px, 6vw, 84px) clamp(48px, 4vw, 72px);
}

.home-page .home-story-copy h2 {
  margin-bottom: 21px !important;
  font-size: clamp(48px, 3.35vw, 56px) !important;
  line-height: 1.08 !important;
}

.home-page .home-story-copy > div > p {
  color: #4f4f4f;
  font-size: 17px !important;
  line-height: 1.6 !important;
}

.home-page .home-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.home-page .home-fact-grid article {
  min-height: 132px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 3px;
  box-shadow: 0 6px 18px rgba(20, 18, 14, 0.05);
}

.home-page .home-fact-grid strong,
.home-page .home-fact-grid span {
  display: block;
}

.home-page .home-fact-grid strong {
  margin-bottom: 7px;
  font-family: var(--fds-font-heading);
  font-size: 20px;
  line-height: 1.25;
}

.home-page .home-fact-grid span {
  color: #4f4f4f;
  font-size: 14px;
  line-height: 1.6;
}

.home-page .home-story-copy .text-link {
  color: var(--home-gold-ink);
  font-size: 10px;
}

@media (min-width: 901px) {
  .home-page .home-story-inner {
    width: 100%;
    max-width: none;
    padding-inline: clamp(56px, 3.35vw, 64px);
  }

  .home-page .home-story-copy .eyebrow {
    color: var(--home-gold) !important;
    -webkit-text-fill-color: var(--home-gold) !important;
  }

  .home-page .home-story-copy h2 {
    width: 100%;
    max-width: 900px;
    color: #111 !important;
  }

  .home-page .home-story-copy > div > p {
    width: 100%;
    max-width: 900px;
    color: #4f4f4f !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .home-page .home-fact-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
  }

  .home-page .home-fact-grid article {
    min-height: 130px;
    padding: 24px 26px;
  }

  .home-page .home-fact-grid strong {
    color: #111;
    font-size: 18px;
    line-height: 1.25;
  }

  .home-page .home-fact-grid span {
    color: #4f4f4f;
    font-size: 14px;
    line-height: 1.55;
  }

  .home-page .home-story-copy .text-link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--home-gold) !important;
    font-size: 11px;
  }
}

/* Process */
.home-page .home-process-section {
  background: var(--home-ink);
  color: #fff;
}

.home-page .home-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-page .home-process-section .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: auto !important;
  text-align: center;
}

.home-page .home-process-section .section-head > * {
  margin-inline: auto !important;
}

.home-page .home-process-grid article {
  position: relative;
  min-height: 245px;
  padding: 30px 28px;
  overflow: hidden;
  background: #191a18;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.home-page .home-process-grid article::after {
  content: "";
  position: absolute;
  left: 25px;
  bottom: 0;
  width: 38px;
  height: 2px;
  background: var(--home-gold);
}

.home-page .home-step {
  display: block;
  margin-bottom: 34px;
  color: var(--home-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.home-page .home-process-grid h3 {
  margin-bottom: 11px !important;
  color: #fff;
  font-size: 17px !important;
}

.home-page .home-process-grid p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px !important;
  line-height: 1.7 !important;
}

/* StoneSkin material feature */
.home-page .home-material-section {
  background: var(--home-paper);
  padding-block: clamp(90px, 7vw, 110px) !important;
}

.home-page .home-material-layout {
  display: grid;
  width: min(calc(100% - 48px), 1400px) !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(460px, 0.9fr);
  gap: clamp(72px, 5vw, 96px);
  align-items: center;
}

.home-page .home-material-copy {
  max-width: 720px;
}

.home-page .home-material-copy h2 {
  margin-bottom: 21px !important;
  font-size: clamp(48px, 3.3vw, 54px) !important;
  line-height: 1.08 !important;
}

.home-page .home-material-copy p {
  color: #68635c;
  font-size: 17px !important;
  line-height: 1.65 !important;
}

.home-page .home-check-list {
  display: grid;
  gap: 8px;
  margin: 26px 0 32px !important;
  padding: 0 !important;
  list-style: none;
}

.home-page .home-check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: #4d4943;
  font-size: 16px !important;
}

.home-page .home-check-list i {
  color: var(--home-gold-ink);
  font-size: 11px;
}

.home-page .home-material-card {
  display: block;
  overflow: hidden;
  color: var(--home-ink);
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 4px;
  box-shadow: 0 13px 34px rgba(20, 18, 14, 0.09);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
  align-self: center;
  width: min(100%, 560px);
  justify-self: end;
}

.home-page .home-material-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(20, 18, 14, 0.14);
}

.home-page .home-material-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-page .home-material-card-copy {
  display: block;
  padding: 24px 25px 27px;
}

.home-page .home-material-card-copy small,
.home-page .home-material-card-copy strong,
.home-page .home-material-card-copy span {
  display: block;
}

.home-page .home-material-card-copy small {
  margin-bottom: 8px;
  color: var(--home-gold-ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-page .home-material-card-copy strong {
  margin-bottom: 7px;
  font-family: var(--fds-font-heading);
  font-size: 23px;
  line-height: 1.15;
}

.home-page .home-material-card-copy span {
  color: #716d65;
  font-size: 15px;
  line-height: 1.55;
}

/* Dynamic brochures retained from the existing homepage. */
.home-page .about-brochure-section {
  background: var(--home-paper-soft) !important;
}

.home-page .about-brochure-grid {
  gap: 20px;
}

.home-page .about-brochure-card {
  min-height: 340px;
  border-radius: 4px;
}

/* Closing image CTA */
.home-page .site-final-cta {
  position: relative;
  isolation: isolate;
  min-height: 400px;
  display: grid;
  place-items: center;
  padding-block: 72px !important;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.82), rgba(8, 9, 9, 0.45), rgba(8, 9, 9, 0.62)),
    url('/assets/images/home/home-fireplace-cta-lifestyle.webp') center center / cover no-repeat !important;
}

.home-page .site-final-cta > .shell {
  max-width: 900px;
  text-align: center;
}

.home-page .site-final-cta .eyebrow {
  color: var(--home-gold) !important;
  -webkit-text-fill-color: var(--home-gold) !important;
}

.home-page .site-final-cta h2 {
  margin-bottom: 14px !important;
  color: #fff !important;
  font-size: clamp(2rem, 3.5vw, 3.25rem) !important;
}

.home-page .site-final-cta p {
  max-width: 670px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 14px !important;
}

.home-page .site-final-cta .actions {
  justify-content: center;
  margin-top: 27px !important;
}

.home-page .site-final-cta .btn-outline {
  border-color: var(--home-gold) !important;
}

@media (max-width: 1180px) {
  .home-page .home-utility-location {
    display: none;
  }

  .home-page .header > .shell {
    height: 76px;
  }

  html body.home-page main .home-hero.hero-image-selected {
    min-height: calc(100vh - 118px) !important;
    min-height: calc(100svh - 118px) !important;
  }

  html body.home-page main .home-hero .hero-copy h1 {
    font-size: clamp(54px, 6vw, 68px) !important;
  }

  .home-page .maintenance-visual {
    background-image: url('/assets/images/home/home-fireplaces-lifestyle-family-section.webp');
  }

  .home-page .service-panel-inner {
    padding-inline: 34px;
  }

  .home-page .featured-section .products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: min(100%, 760px);
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  html body.home-page main .home-hero.hero-image-selected {
    min-height: calc(100vh - 110px) !important;
    min-height: calc(100svh - 110px) !important;
  }

  html body.home-page main .home-hero .hero-copy h1 {
    font-size: 54px !important;
  }
}

@media (max-width: 1050px) {
  .home-page .installation-showcase,
  .home-page .maintenance-showcase {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .maintenance-showcase .service-visual {
    order: 0;
  }

  .home-page .maintenance-showcase .service-panel {
    order: 1;
  }

  .home-page .service-visual {
    min-height: clamp(400px, 52vw, 520px);
  }
}

@media (max-width: 900px) {
  .home-page {
    --home-section-space: clamp(60px, 8vw, 78px);
  }

  .home-page main .category-section {
    padding-top: 64px !important;
  }

  .home-page .category-section .cards,
  .home-page .audience-section .floating-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-page .category-section .cards > :last-child:nth-child(odd),
  .home-page .audience-section .floating-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }

  .home-page .service-showcase {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .home-page .service-visual {
    min-height: clamp(360px, 58vw, 520px);
  }

  .home-page .service-panel-inner {
    max-width: none;
    padding: 64px max(24px, calc((100vw - 720px) / 2));
  }

  .home-page .maintenance-showcase .service-visual {
    order: 0;
  }

  .home-page .maintenance-showcase .service-panel {
    order: 1;
  }

  .home-page .home-story-section {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .home-page .home-story-media {
    min-height: clamp(380px, 66vw, 560px);
  }

  .home-page .home-story-inner {
    width: min(100%, 768px);
    margin-inline: auto;
    padding: 70px 24px;
  }

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

  .home-page .home-material-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .home-material-copy {
    max-width: 720px;
  }

  .home-page .home-material-card {
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .home-page .category-section .cards {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .home-page .category-section .cards > :last-child:nth-child(odd) {
    grid-column: auto;
    width: auto;
  }
}

@media (max-width: 620px) {
  .home-page main .category-section {
    padding-top: 52px !important;
  }

  .home-page main .category-section .section-head {
    margin-bottom: 46px !important;
  }

  .home-page main .category-section .section-head .eyebrow {
    margin-bottom: 14px !important;
    font-size: 13px !important;
  }

  .home-page .home-utility-bar {
    height: 32px;
    font-size: 10px;
  }

  .home-page .home-utility-bar .shell {
    width: calc(100% - 24px) !important;
    gap: 10px;
  }

  .home-page .home-utility-message {
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  .home-page .home-utility-email,
  .home-page .home-utility-location {
    display: none;
  }

  .home-page .home-utility-bar b {
    margin-inline: 5px;
  }

  .home-page .fd-search-dialog {
    padding: 84px 12px 20px;
  }

  .home-page .fd-search-dialog-panel {
    padding: 15px;
  }

  .home-page .fd-search-dialog form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 9px;
  }

  .home-page .fd-search-dialog input[type="search"] {
    grid-column: 1 / -1;
    width: 100%;
  }

  .home-page .fd-search-dialog form .btn {
    width: 100%;
  }

  .home-page .fd-search-close {
    width: 44px;
    height: 48px;
    padding: 0;
  }

  .home-page main .section-head h2 br,
  .home-page main .service-panel h2 br,
  .home-page main .home-story-copy h2 br,
  .home-page main .home-material-copy h2 br {
    display: none;
  }

  html body.home-page main .home-hero.hero-image-selected {
    min-height: max(580px, calc(100svh - 100px)) !important;
  }

  .home-page .maintenance-visual {
    background-image: url('/assets/images/home/home-fireplaces-lifestyle-family-section.webp');
  }

  html body.home-page main .home-hero.hero-image-selected::before {
    background:
      linear-gradient(rgba(7, 8, 8, 0.35), rgba(7, 8, 8, 0.55)),
      url('/assets/images/home/home-outdoor-pizza-lifestyle-cta.webp') 62% center / cover no-repeat !important;
  }

  html body.home-page main .home-hero .hero-copy {
    padding-block: 42px;
  }

  html body.home-page main .home-hero .hero-copy h1 {
    font-size: clamp(40px, 11vw, 52px) !important;
  }

  html body.home-page main .home-hero .hero-copy > .eyebrow {
    font-size: 11px !important;
  }

  .home-page .category-section .cards,
  .home-page .audience-section .floating-grid,
  .home-page .featured-section .products,
  .home-page .home-process-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .home-page .category-section .cards > :last-child:nth-child(odd),
  .home-page .audience-section .floating-grid > :last-child:nth-child(odd) {
    grid-column: auto;
    width: auto;
  }

  .home-page .category-section .card-body {
    min-height: 180px;
  }

  .home-page .featured-section .products {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .home-page .service-visual {
    min-height: 340px;
  }

  .home-page .service-panel-inner {
    padding: 58px 22px;
  }

  .home-page .service-showcase .service-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .home-page .service-showcase .service-features article,
  .home-page .service-showcase .service-features article:nth-child(2) {
    margin: 0;
    padding: 7px 12px 18px;
  }

  .home-page .service-showcase .service-features article:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
  }

  .home-page .service-showcase .service-features-dark article:nth-child(odd) {
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .home-page .home-faq-list summary {
    min-height: 60px;
    padding: 16px 48px 16px 17px;
  }

  .home-page .home-faq-list summary::after {
    right: 17px;
  }

  .home-page .home-faq-list details p {
    padding: 0 17px 19px;
  }

  .home-page .home-story-media {
    min-height: 340px;
  }

  .home-page .home-story-inner {
    padding: 60px 20px;
  }

  .home-page .home-fact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .home-fact-grid article {
    min-height: 105px;
  }

  .home-page .home-process-grid article {
    min-height: 215px;
  }

  .home-page .home-material-card-copy {
    padding: 21px;
  }

  .home-page .site-final-cta {
    min-height: 400px;
    background:
      linear-gradient(rgba(8, 9, 9, 0.72), rgba(8, 9, 9, 0.78)),
      url('/assets/images/home/home-fireplace-cta-lifestyle.webp') 66% center / cover no-repeat !important;
  }
}

@media (max-width: 390px) {
  .home-page main .home-hero .hero-copy h1 {
    font-size: 38px !important;
  }

  .home-page main .home-hero .hero-copy > p {
    font-size: 14px !important;
  }

  .home-page .service-showcase .service-features {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .service-showcase .service-features article,
  .home-page .service-showcase .service-features article:nth-child(odd),
  .home-page .service-showcase .service-features article:nth-child(2) {
    padding-inline: 0;
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .category-section .card,
  .home-page .category-section .card > img,
  .home-page .featured-section .product-media img,
  .home-page .home-material-card {
    transition: none;
  }

  .home-page .category-section .card:hover,
  .home-page .home-material-card:hover {
    transform: none;
  }
}
