﻿
:root {
  --bg: #f4ebe0;
  --bg-alt: #e8dcc8;
  --bg-deep: #3a2a1a;
  --bg-mid: #5a4a3a;
  --accent: #8b7355;
  --accent-dark: #6b5644;
  --accent-soft: #d4c5b0;
  --text: #3a2a1a;
  --text-soft: #5a4a3a;
  --white: #ffffff;
  --shadow-lg: 0 22px 48px rgba(58, 42, 26, 0.18);
  --shadow-md: 0 14px 32px rgba(58, 42, 26, 0.14);
  --border-strong: 4px solid var(--accent);
  --border-soft: 2px solid var(--accent);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-display: ui-sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif;
  background: var(--bg);
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05' /%3E%3C/svg%3E");
}

.site-root {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow-x: hidden;
}

.shell {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

.shell--gallery {
  width: min(100% - 2rem, 1120px);
}

.shell--narrow {
  width: min(100% - 2rem, 880px);
}

.shell--narrower {
  width: min(100% - 2rem, 980px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 235, 224, 0.97);
  border-bottom: var(--border-soft);
  backdrop-filter: blur(12px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  width: 64px;
  flex: 0 0 64px;
}

.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav__link {
  position: relative;
  color: var(--text-soft);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--accent);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  padding: 0;
}

.menu-toggle svg,
.site-nav svg,
.icon-badge svg,
.info-card__icon svg,
.cta-card__icon svg,
.faq-icon svg,
.contractor-card svg,
.button svg,
.hero-badge svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle__icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

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

.menu-toggle.is-open .menu-toggle__icon--menu {
  display: none;
}

.menu-toggle.is-open .menu-toggle__icon--close {
  display: block;
}

.site-nav--mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(139, 115, 85, 0.45);
}

.site-nav--mobile.is-open {
  display: flex;
}

.hero-carousel {
  position: relative;
}

.hero-carousel__track {
  position: relative;
}

.hero-slide {
  display: none;
  position: relative;
  min-height: calc(100vh - 98px);
}

.hero-slide.is-active {
  display: block;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.08));
}

.hero-slide__content {
  position: relative;
  min-height: calc(100vh - 98px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.hero-slide__copy {
  max-width: 780px;
  color: var(--white);
}

.hero-slide__copy h1 {
  margin: 0 0 0.85rem;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-transform: uppercase;
}

.hero-slide__copy p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.carousel-arrow--prev {
  left: 1.5rem;
}

.carousel-arrow--next {
  right: 1.5rem;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.carousel-dot.is-active {
  width: 32px;
  background: var(--white);
}

.section,
.hero,
.site-footer {
  position: relative;
}

.section {
  padding: 4.75rem 0;
}

.section--plain {
  padding: 3rem 0;
}

.section--sand {
  background: var(--bg-alt);
}

.section--cream {
  background: var(--bg);
}

#contact {
  margin-bottom: 50px;
}

.section--contact-dark#contact {
  margin-bottom: 0;
}

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

.section--contact-dark,
.hero--service,
.hero--simple,
.hero--accessories {
  background: linear-gradient(to bottom, var(--bg-deep), var(--bg-mid));
  color: var(--white);
}

.hero .shell {
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

.hero--service .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
  max-width: 980px;
}

.hero--wide-banner .shell,
.hero--river-rock .shell {
  width: calc(100% - 100px);
  max-width: 80%;
}

.hero--wide-banner .hero-media,
.hero--river-rock .hero-media {
  width: 100%;
  max-width: none;
}

.hero--wide-banner .hero-copy,
.hero--river-rock .hero-copy {
  width: 100%;
  max-width: none;
}

.hero--accessories .shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.hero--simple .hero--centered {
  text-align: center;
}

.hero--simple h1,
.hero-copy h1 {
  margin: 0 0 0.9rem;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.12;
}

.hero--simple p,
.hero-copy__lead,
.contact-cta p {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: #e8dcc8;
  line-height: 1.7;
}

.hero-badge {
  margin-top: 1.5rem;
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 1.05rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 1.6rem;
  display: grid;
  gap: 0.65rem;
}

.feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  line-height: 1.6;
}

.feature-list li::before {
  content: "\2713";
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.feature-list--light li::before {
  color: #e8dcc8;
}

.feature-list--dark li::before {
  color: var(--accent);
}

.feature-list--arrows li::before {
  content: "\2192";
}

.button-row,
.lead-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button-row--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.7rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(to right, var(--bg-mid), var(--accent));
  color: var(--white);
}

.button--accent {
  background: var(--accent);
  color: var(--white);
}

.button--secondary {
  background: var(--white);
  border-color: var(--accent);
  color: var(--text-soft);
}

.button--light {
  margin-top: 2rem;
  background: var(--white);
  color: var(--bg-deep);
}

.button--ghost-light {
  border-color: #e8dcc8;
  color: var(--white);
  background: transparent;
}

.button--ghost-light:hover,
.button--ghost-light:focus-visible {
  background: #e8dcc8;
  color: var(--bg-deep);
}

.button--small {
  min-height: 44px;
  width: 100%;
  font-size: 0.8rem;
}

.button--disabled {
  background: linear-gradient(to right, var(--bg-mid), var(--accent));
  color: var(--white);
  opacity: 0.85;
  cursor: default;
}

.hero-copy {
  max-width: 760px;
}

.hero-media {
  width: 100%;
  max-width: 860px;
}

.media-frame {
  overflow: hidden;
  border: var(--border-strong);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.media-frame--wide {
  aspect-ratio: 16 / 9;
}

.media-frame--standard {
  aspect-ratio: 4 / 3;
}

.media-frame--video {
  aspect-ratio: 16 / 9;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-meta {
  margin-top: 0.8rem;
  color: #e8dcc8;
  text-align: center;
  font-size: 0.92rem;
}

.photo-meta p + p {
  margin-top: 0.35rem;
}

.section-heading {
  margin-bottom: 3rem;
  text-align: center;
}

.section-heading h2 {
  display: inline-block;
  position: relative;
  margin: 0 0 1rem;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text);
}

.section-heading:not(.section-heading--compact) h2::before,
.section-heading:not(.section-heading--compact) h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-heading:not(.section-heading--compact) h2::before {
  left: -2rem;
}

.section-heading:not(.section-heading--compact) h2::after {
  right: -2rem;
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.section-heading__plain {
  margin: 0 0 1.5rem;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.cta-grid,
.icon-step-grid,
.benefit-grid,
.steps-grid,
.gallery-grid,
.product-grid,
.teaser-grid,
.chip-grid,
.swatch-grid,
.contact-grid,
.delivery-layout,
.footer-grid,
.contractor-grid {
  display: grid;
  gap: 1.5rem;
}

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

.cta-card,
.step-card,
.callout-card,
.teaser-card,
.chip-card,
.benefit-card,
.info-card,
.message-card,
.intro-card,
.text-card,
.trusted-panel,
.feature-panel,
.brochure-card,
.contractor-card {
  border-radius: var(--radius-lg);
}

.cta-card {
  position: relative;
  background: linear-gradient(to bottom right, var(--accent-soft), #c4b5a0);
  border: var(--border-strong);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.cta-card__icon {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 64px;
  height: 64px;
  opacity: 0.12;
  color: var(--text-soft);
}

.cta-card h3 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.cta-card__line {
  display: block;
  width: 64px;
  height: 2px;
  margin: 0 auto 1rem;
  background: var(--accent);
}

.cta-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.intro-card,
.callout-card {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  background: rgba(255, 255, 255, 0.65);
  border: var(--border-soft);
  padding: 2rem;
  text-align: center;
}

.intro-card--large {
  max-width: 820px;
  margin: 0 auto 3rem;
  background: rgba(255, 255, 255, 0.45);
  border: var(--border-soft);
  padding: 2rem;
  text-align: center;
}

.intro-card h3 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.07em;
}

.intro-card p,
.intro-card--large p,
.callout-card p,
.text-card p,
.subsection-copy,
.trusted-panel p,
.feature-panel p,
.step-card p,
.product-card p,
.teaser-card p,
.message-card p,
.benefit-card p,
.contractor-card p {
  color: var(--text-soft);
  line-height: 1.7;
}

.warranty-mark {
  margin-bottom: 1rem;
}

.warranty-mark div {
  font-size: 2.5rem;
  color: var(--accent);
}

.warranty-mark span {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}

.subsection-header {
  margin: 0 0 1rem;
}

.subsection-header h3 {
  display: inline-block;
  margin: 0;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(to right, var(--bg-mid), var(--accent));
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 1.15rem;
}

.subsection-copy {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

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

.product-grid--three {
  margin-bottom: 0;
}

.product-card,
.teaser-card {
  background: var(--white);
  border: var(--border-strong);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card__media img,
.image-card img,
.gallery-tile__media img {
  height: 100%;
  object-fit: cover;
}

.product-card__body,
.teaser-card {
  padding: 1.5rem;
}

.product-card h3,
.teaser-card h3,
.step-card h3,
.trusted-panel h3,
.message-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
}

.teaser-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 3rem;
}

.callout-card {
  margin-bottom: 0;
}

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

.shell--narrower .gallery-grid:not(.gallery-grid--single) {
  grid-template-columns: repeat(2, 500px);
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.shell--narrower .gallery-grid:not(.gallery-grid--single) .image-card {
  width: 428px;
  height: 540px;
}

.shell--narrower .gallery-grid .image-card--wide-center {
  grid-column: auto;
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

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

.gallery-grid--home {
  grid-template-columns: repeat(3, minmax(0, 348px));
  justify-content: center;
  gap: 1.5rem;
}

.gallery-grid--tall {
  grid-template-columns: repeat(2, 500px);
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.gallery-grid--tall .image-card {
  width: 428px;
  height: 540px;
  aspect-ratio: auto;
}

.gallery-grid--single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

.image-card,
.gallery-tile {
  overflow: hidden;
}

.image-card {
  position: relative;
  border: var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.image-card--contain {
  background: var(--bg);
}

.image-card--contain img {
  object-fit: contain;
  object-position: center;
  background: var(--bg);
}

.image-card figcaption {
  padding: 0.9rem 1rem;
  background: var(--white);
  color: var(--text);
  text-align: center;
  font-weight: 600;
  line-height: 1.5;
}

.product-card__media::after,
.image-card::after,
.gallery-tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.03));
  pointer-events: none;
  z-index: 1;
}

.product-card__media::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0));
}

.gallery-grid:not(.gallery-grid--single) .image-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: transparent;
  color: var(--white);
  text-align: left;
  z-index: 2;
}

.image-card--wide-center {
  grid-column: 1 / -1;
  max-width: 420px;
  justify-self: center;
}

.idea-card-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.idea-card {
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  padding: 2rem;
  background: linear-gradient(to bottom right, var(--bg-mid), var(--accent));
  border: var(--border-strong);
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.idea-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 3rem;
}

.idea-card__icon img,
.idea-card__icon svg {
  width: 3rem;
  height: 3rem;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 6px 10px rgba(255, 185, 56, 0.22));
  object-fit: contain;
}

.text-card {
  background: var(--bg);
  border: var(--border-soft);
  padding: 2rem;
}

.spec-table {
  overflow: hidden;
  border: var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 1fr);
}

.spec-row + .spec-row {
  border-top: 2px solid var(--bg-alt);
}

.spec-label,
.spec-value {
  padding: 1rem 1.25rem;
}

.spec-label {
  font-weight: 700;
  text-transform: capitalize;
}

.centered-action {
  margin-top: 2rem;
  text-align: center;
}

.centered-action__copy,
.note {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-style: italic;
}

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

.swatch-card {
  aspect-ratio: 1;
  overflow: hidden;
  border: var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--white);
}

.delivery-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: center;
}

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

.step-card {
  background: var(--bg);
  border: var(--border-soft);
  padding: 2rem;
  text-align: center;
}

.step-card__number {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 3rem;
  font-weight: 700;
}

.icon-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 3rem;
}

.icon-step-card {
  text-align: center;
}

.icon-step-card .icon-badge svg {
  width: 34px;
  height: 34px;
}

.icon-badge,
.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: linear-gradient(to bottom right, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.icon-step-card h3,
.info-card h4 {
  margin: 1rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.feature-panel,
.contact-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-panel {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(to bottom right, var(--accent-soft), #c4b5a0);
  border: var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.feature-panel h3,
.contact-cta h2 {
  margin: 0 0 1rem;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.trusted-panel {
  padding: 2rem;
  background: var(--white);
  border: var(--border-strong);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  border: var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-size: 1.05rem;
  font-weight: 600;
}

.faq-icon {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-cta {
  margin-bottom: 2rem;
  text-align: center;
}

.lead-form {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
}

.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.lead-form__captcha {
  display: grid;
  justify-content: start;
}

.form-field--full {
  grid-column: auto;
}

.form-field span {
  font-size: 0.92rem;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lead-form select option {
  color: var(--text);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.lead-form__actions {
  margin-top: 1.5rem;
}

.section--contact-dark .lead-form {
  max-width: 832px;
  margin-inline: auto;
  padding: 2.25rem;
}

.section--contact-dark .lead-form__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 1.65rem;
}

.section--contact-dark .form-field--full {
  grid-column: 1 / -1;
}

.section--contact-dark .form-field span {
  text-align: center;
  font-weight: 700;
}

.section--contact-dark .lead-form__actions {
  justify-content: center;
  margin-top: 2rem;
}

.section--contact-dark .lead-form__actions .button {
  min-width: 280px;
  min-height: 60px;
}

.lead-form__feedback {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.lead-form__feedback[data-state="error"] {
  color: #a33131;
}

.lead-form__feedback[data-state="success"] {
  color: #2f6b3d;
}

.gallery-tile {
  margin: 0;
  background: var(--white);
  padding: 0.75rem;
  border: var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.gallery-tile__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.gallery-tile figcaption {
  margin-top: 0.85rem;
  text-align: center;
  color: var(--text);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  white-space: normal;
}

.contact-grid {
  align-items: start;
}

.message-card {
  background: var(--white);
  border: var(--border-strong);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.message-card .lead-form {
  background: transparent;
  border: 0;
  padding: 0;
}

.message-card .lead-form input,
.message-card .lead-form textarea,
.message-card .lead-form select {
  background: var(--white);
  color: var(--text);
}

.message-card .lead-form input::placeholder,
.message-card .lead-form textarea::placeholder {
  color: rgba(58, 42, 26, 0.55);
}

.message-card .form-field span {
  color: var(--text-soft);
}

.info-stack {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 1.5rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.info-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex: 0 0 52px;
}

.info-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

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

.contractor-card {
  background: var(--bg);
  border: var(--border-strong);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.contractor-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(to bottom right, var(--accent), #a08060, var(--accent));
  border-color: var(--bg-deep);
  color: var(--white);
}

.contractor-card--featured p,
.contractor-card--featured a,
.contractor-card--featured .contractor-card__specialty p {
  color: rgba(255, 255, 255, 0.94);
}

.contractor-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contractor-card__top h3 {
  margin: 0;
  font-size: 2rem;
}

.contractor-card__badge {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.contractor-card__experience {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
  font-weight: 600;
}

.contractor-card__line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contractor-card__specialty {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(139, 115, 85, 0.3);
}

.contractor-card--featured .contractor-card__specialty {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.contractor-card__specialty span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  font-weight: 700;
}

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

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

.benefit-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: var(--border-soft);
}

.benefit-card span {
  font-size: 1.75rem;
  color: var(--accent);
}

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

.chip-card {
  padding: 1rem;
  background: var(--bg);
  border: var(--border-soft);
  text-align: center;
  color: var(--text);
  font-weight: 600;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  background: linear-gradient(to bottom right, var(--bg-mid), var(--bg-deep));
  color: var(--white);
  border-top: var(--border-strong);
}

.brochure-card {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: linear-gradient(to bottom right, var(--bg), var(--bg-alt));
  border: var(--border-strong);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.brochure-card h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  letter-spacing: 0.08em;
}

.brochure-card p {
  margin: 0 auto 1.25rem;
  max-width: 760px;
  color: var(--text-soft);
  line-height: 1.7;
}

.brochure-card__meta {
  margin-top: 1rem;
  font-size: 0.92rem;
  font-style: italic;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-brand h4 {
  margin: 0;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
}

.footer-brand p {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.footer-links,
.footer-badges {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-badges li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-badges span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .product-grid,
  .teaser-grid,
  .gallery-grid--home,
  .gallery-grid--page,
  .swatch-grid,
  .chip-grid,
  .benefit-grid,
  .benefit-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero--service .shell,
  .hero--accessories .shell,
  .delivery-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .site-nav--desktop,
  .carousel-arrow {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-slide,
  .hero-slide__content {
    min-height: 82vh;
  }

  .hero-slide__copy h1 {
    white-space: normal;
  }

  .cta-grid,
  .icon-step-grid,
  .steps-grid,
  .gallery-grid,
  .gallery-grid--tall,
  .feature-panel,
  .product-grid,
  .teaser-grid,
  .gallery-grid--home,
  .gallery-grid--page,
  .chip-grid,
  .swatch-grid,
  .benefit-grid,
  .benefit-grid--two,
  .footer-grid,
  .lead-form__grid {
    grid-template-columns: 1fr;
  }

  .spec-row {
    grid-template-columns: 1fr;
  }

  .button-row,
  .lead-form__actions {
    flex-direction: column;
  }

  .contact-grid {
    gap: 1.5rem;
  }

  .section--contact-dark .lead-form {
    padding: 1.5rem;
  }

  .section--contact-dark .lead-form__grid {
    grid-template-columns: 1fr;
  }

  .section--contact-dark .lead-form__actions .button {
    min-width: 0;
    width: 100%;
  }

  .message-card,
  .info-stack,
  .info-card {
    width: 100%;
  }

  .contractor-card__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .shell--narrower .gallery-grid:not(.gallery-grid--single) .image-card,
  .gallery-grid--tall .image-card {
    width: 100%;
    height: auto;
  }

  .hero--wide-banner .shell,
  .hero--river-rock .shell {
    width: min(100% - 2rem, 100%);
  }
}

