/* ==========================================================================
   Sauna Specialist — custom sauna landing page
   Shared base + landing page styles
   ========================================================================== */

:root {
  --cream: #f2ece2;
  --cream-soft: #f5f0e8;
  --panel: #f7f2ea;
  --ink: #1c1c1b;
  --ink-quote: #191512;
  --dark: #20201e;
  --darker: #161615;
  --olive: #454f37;
  --brown: #7a5c3c;
  --brown-mid: #8a6c4c;
  --tan: #d8c19c;
  --sand: #f0e4d1;
  --muted: #5c554e;
  --grey: #8a8079;
  --grey-light: #a89e92;
  --gold: #e0a728;

  --warm-gradient: linear-gradient(135deg, #f7ece0 0%, #f1ddc3 55%, #e8c79f 100%);
  --cool-gradient: linear-gradient(135deg, #f2ece2 0%, #ece3d6 40%, #e4deda 70%, #d8cfc4 100%);

  --pad-x: clamp(20px, 5vw, 72px);
  --maxw: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -.01em;
}

a { color: var(--brown); text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { color: var(--ink); }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }
::selection { background: var(--brown-mid); color: var(--cream); }

@keyframes floatUp   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slowZoom  { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes galleryScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes stepIn    { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* Shared bits ------------------------------------------------------------ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(138, 108, 76, .12);
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
  width: fit-content;
}

.eyebrow--dark  { background: rgba(25, 21, 18, .08); }
.eyebrow--faint { background: rgba(25, 21, 18, .06); }
.eyebrow--light { background: rgba(245, 240, 232, .1); color: var(--sand); }

.display {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0;
}

.section-shell { max-width: var(--maxw); margin: 0 auto; width: 100%; }

.full-section {
  min-height: calc(100dvh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vh, 72px) var(--pad-x);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

/* Buttons: cream pill on dark backgrounds */
.btn--cream {
  padding: 16px 28px;
  background: var(--cream);
  color: var(--ink);
  font-size: 15.5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
.btn--cream:hover {
  background: var(--tan);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
}

.btn--outline {
  padding: 16px 28px;
  border: 1px solid rgba(245, 240, 232, .4);
  color: var(--cream-soft);
  font-size: 15.5px;
  font-weight: 600;
}
.btn--outline:hover {
  border-color: var(--cream-soft);
  background: rgba(245, 240, 232, .08);
  color: var(--cream-soft);
}

/* ==========================================================================
   ABOVE THE FOLD
   ========================================================================== */

.page { position: relative; overflow-x: hidden; }

.above-fold {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Announcement bar ------------------------------------------------------- */

.announce { background: var(--olive); color: var(--cream); flex: none; }

.announce-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 9px var(--pad-x);
  font-size: 13.5px;
  font-weight: 600;
}

.announce-item { display: flex; align-items: center; gap: 7px; }
.announce-item svg { flex: none; }
.announce-sep { opacity: .35; }
.announce-hash { font-weight: 800; font-size: 12.5px; }

/* Nav -------------------------------------------------------------------- */

.nav-bar {
  position: relative;
  z-index: 40;
  flex: none;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px var(--pad-x);
  color: var(--ink);
  background: #fdfcfa;
  border-bottom: 1px solid rgba(25, 21, 18, .08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14.5px;
  font-weight: 500;
  justify-self: start;
}
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--ink); }

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  justify-self: start;
  flex-direction: column;
  gap: 5px;
}
.hamburger-btn span { display: block; width: 22px; height: 2px; background: var(--ink); }

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fdfcfa;
  border-bottom: 1px solid rgba(25, 21, 18, .08);
  display: flex;
  flex-direction: column;
  padding: 8px var(--pad-x) 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  color: var(--ink);
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(25, 21, 18, .08);
}
.mobile-nav a:last-child { border-bottom: none; }

.nav-logo { display: flex; align-items: center; justify-self: center; }
.nav-logo img { height: 34px; width: auto; }

.nav-actions { display: flex; align-items: center; gap: 22px; justify-self: end; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 600;
}
.nav-phone:hover { color: var(--brown); }
.nav-phone svg { flex: none; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--cream);
  font-weight: 600;
  font-size: 14px;
}
.nav-cta:hover { background: #333331; color: var(--cream); }

/* Hero ------------------------------------------------------------------- */

.hero-section {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 14s ease-out both;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 19, .5) 0%, rgba(20, 20, 19, .35) 50%, rgba(20, 20, 19, .6) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 3vh, 48px) var(--pad-x);
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatUp 1s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(245, 240, 232, .12);
  border: 1px solid rgba(245, 240, 232, .22);
  font-size: 13px;
  font-weight: 600;
  color: var(--sand);
  margin-bottom: clamp(14px, 2.4vh, 28px);
}
.hero-badge svg { flex: none; }

.hero-title {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 6.4vw, 104px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--cream-soft);
  margin: 0 0 clamp(14px, 2.4vh, 26px);
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(245, 240, 232, .85);
  max-width: 680px;
  margin: 0 0 clamp(22px, 3.4vh, 40px);
  font-weight: 400;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Trust strip ------------------------------------------------------------ */

.trust-strip { background: #fdfbf8; border-bottom: 1px solid rgba(25, 21, 18, .08); flex: none; }

.trust-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(14px, 2.2vh, 26px) clamp(18px, 2.4vw, 32px);
  border-left: 1px solid rgba(25, 21, 18, .08);
}
.trust-item:first-child { border-left: none; }

.trust-item-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.trust-item-row svg { flex: none; }
.trust-item-row span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
}
.trust-sub { font-size: 14px; color: var(--grey); }

/* ==========================================================================
   INTRO / WHY CUSTOM
   ========================================================================== */

.intro-section {
  min-height: calc(100dvh - 80px);
  display: flex;
  align-items: center;
  padding: clamp(28px, 4.5vh, 64px) var(--pad-x);
  background: var(--cool-gradient);
}

.intro-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: stretch;
}

.intro-copy { display: flex; flex-direction: column; justify-content: center; }
.intro-copy .eyebrow { margin-bottom: clamp(16px, 2.4vh, 26px); }

.intro-title {
  font-size: clamp(28px, 4.2vw, 54px);
  margin: 0 0 clamp(16px, 2.4vh, 24px);
  max-width: 23ch;
}

.intro-body {
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 clamp(20px, 3vh, 32px);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.intro-stats { display: grid; gap: 0; border-top: 1px solid rgba(25, 21, 18, .16); }

.intro-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: clamp(10px, 1.8vh, 16px) 0;
  border-bottom: 1px solid rgba(25, 21, 18, .12);
}
.intro-stat:last-child { border-bottom: none; }
.intro-stat b {
  font-family: 'Jost', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1;
}
.intro-stat span { font-size: 13px; font-weight: 600; color: var(--muted); }

.intro-media {
  position: relative;
  min-height: min(440px, 52vh);
  overflow: hidden;
  border-radius: 24px;
}
.intro-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   MATERIALS
   ========================================================================== */

.materials-section {
  min-height: calc(100dvh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vh, 56px) var(--pad-x);
}

.materials-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(18px, 2.6vh, 32px);
  width: 100%;
  text-align: center;
}
.materials-head .eyebrow { margin-bottom: 14px; }
.materials-head h2 {
  font-size: clamp(24px, 3.2vw, 42px);
  margin: 0 auto;
  max-width: 20ch;
}

.materials-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.material-card { background: var(--panel); border-radius: 18px; overflow: hidden; }

.material-photo { position: relative; height: clamp(80px, 11vh, 130px); }
.material-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.material-body { padding: clamp(12px, 1.6vh, 18px) 18px clamp(14px, 1.8vh, 20px); }
.material-body h3 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  margin: 0 0 4px;
}
.material-body p {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

.materials-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #2b2b28 0%, #20201e 100%);
  border-radius: 18px;
  padding: 18px;
  text-decoration: none;
}
.materials-cta:hover { background: linear-gradient(135deg, #343430 0%, #282826 100%); }
.materials-cta b {
  font-family: 'Jost', sans-serif;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 400;
  color: var(--cream-soft);
  line-height: 1.25;
  margin-bottom: 6px;
}
.materials-cta span {
  color: rgba(242, 236, 226, .68);
  font-size: 12.5px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.materials-cta em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tan);
  font-size: 13.5px;
  font-weight: 700;
  font-style: normal;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */

.process-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--warm-gradient);
  color: var(--ink);
  padding: clamp(48px, 7vh, 90px) var(--pad-x);
}

.process-head { text-align: center; margin-bottom: clamp(28px, 4vh, 60px); }
.process-head .eyebrow { margin-bottom: 18px; }

.process-title {
  font-size: clamp(24px, 3.4vw, 44px);
  margin: 0 auto;
  max-width: 34ch;
  color: var(--ink);
  white-space: nowrap;
}

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.process-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  max-height: 26vh;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: clamp(14px, 2vh, 24px);
}
.process-photo img { width: 100%; height: 100%; object-fit: cover; }

.process-heading { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.process-heading b {
  font-family: 'Jost', sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: #a5713c;
}
.process-heading h3 { font-size: 17px; font-weight: 700; margin: 0; color: var(--ink); }
.process-step p {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */

.gallery-section {
  min-height: calc(100dvh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
  color: var(--cream);
  padding: clamp(32px, 5vh, 72px) 0;
}

.gallery-head {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--pad-x);
  text-align: center;
  margin-bottom: clamp(20px, 3vh, 44px);
}
.gallery-head .eyebrow { margin-bottom: 16px; }
.gallery-head h2 {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--cream-soft);
}

.gallery-viewport { position: relative; overflow: hidden; width: 100%; }

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: galleryScroll 32s linear infinite;
}

.gallery-item {
  flex: none;
  width: clamp(240px, 26vw, 380px);
  aspect-ratio: 4 / 5;
  max-height: 52vh;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream-soft);
  background: linear-gradient(180deg, transparent, rgba(20, 20, 19, .8));
}

/* ==========================================================================
   WHY US
   ========================================================================== */

.whyus-section {
  min-height: calc(100dvh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cool-gradient);
  border-top: 1px solid rgba(25, 21, 18, .08);
  padding: clamp(32px, 5vh, 72px) var(--pad-x);
}

.whyus-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.whyus-title { font-size: clamp(28px, 3.4vw, 46px); margin: 0 0 14px; }
.whyus-lead { color: var(--muted); font-size: 15px; margin: 0 0 clamp(24px, 3.5vh, 36px); }

.whyus-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vh, 26px) 24px;
}

.reason { display: flex; align-items: flex-start; gap: 16px; }
.reason-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--warm-gradient);
}
.reason h3 { font-size: 15.5px; font-weight: 700; margin: 0 0 4px; line-height: 1.3; color: var(--ink); }
.reason p { color: var(--muted); font-size: 13.5px; font-weight: 400; margin: 0; line-height: 1.45; }

.whyus-slider {
  position: relative;
  min-height: min(560px, 60vh);
  border-radius: 24px;
  overflow: hidden;
}
.whyus-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
}
.whyus-slider img.is-active { opacity: 1; }

.whyus-dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.whyus-dots button {
  width: 8px;
  height: 7px;
  border-radius: 999px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(242, 236, 226, .4);
  transition: width .3s ease, background .3s ease;
}
.whyus-dots button.is-active { width: 22px; background: var(--cream); }

/* ==========================================================================
   SIZING
   ========================================================================== */

.sizing-section {
  min-height: calc(100dvh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cool-gradient);
  padding: clamp(32px, 5vh, 72px) var(--pad-x);
}

.sizing-head { max-width: 680px; margin-bottom: clamp(24px, 3.5vh, 48px); }
.sizing-head .eyebrow { margin-bottom: 18px; }
.sizing-head h2 { font-size: clamp(28px, 4vw, 52px); margin: 0 0 14px; }
.sizing-head p { color: var(--muted); font-weight: 400; font-size: 16.5px; margin: 0; }

.sizing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.size-card {
  padding: clamp(22px, 3vh, 32px) clamp(22px, 2.4vw, 30px) clamp(24px, 3.2vh, 34px);
  border-radius: 20px;
  background: var(--panel);
  transition: filter .2s;
}
.size-card:hover { filter: brightness(.98); }
.size-card--feature { background: var(--warm-gradient); }

.size-people { display: flex; align-items: center; gap: 10px; margin-bottom: clamp(14px, 2vh, 22px); }
.size-people span { font-size: 13.5px; font-weight: 700; color: var(--brown-mid); }
.size-people .people-icons { display: flex; gap: 2px; }

.size-footprint {
  font-family: 'Jost', sans-serif;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 6px;
  white-space: nowrap;
}
.size-unit { font-size: 12.5px; font-weight: 600; color: var(--grey); margin-bottom: clamp(14px, 2vh, 20px); }
.size-note {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 400;
  margin: 0 0 clamp(14px, 2vh, 18px);
  max-width: 30ch;
  line-height: 1.45;
}

.size-fits { display: flex; flex-direction: column; gap: 8px; }
.size-fit { display: flex; align-items: flex-start; gap: 10px; }
.size-fit i {
  flex: none;
  width: 17px;
  height: 17px;
  border-radius: 6px;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.size-fit span { font-size: 13.5px; color: var(--muted); font-weight: 400; line-height: 1.4; }

/* ==========================================================================
   REVIEWS
   ========================================================================== */

.reviews-section {
  min-height: calc(100dvh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(32px, 5vh, 72px) var(--pad-x);
}

.reviews-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: clamp(24px, 3.5vh, 44px);
}
.reviews-head h2 { font-size: clamp(26px, 3vw, 40px); letter-spacing: -.02em; margin: 0 0 8px; }
.reviews-head p { color: var(--muted); font-size: 15px; margin: 0; }

.reviews-score { text-align: right; }
.reviews-score b { font-family: 'Jost', sans-serif; font-size: 32px; font-weight: 500; line-height: 1; display: block; }
.reviews-score span { color: var(--gold); letter-spacing: 1px; font-size: 13px; }

.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.review-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(25, 21, 18, .06);
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.review-stars { color: var(--gold); letter-spacing: 1.5px; font-size: 14px; }
.review-date { font-size: 12px; color: var(--grey-light); font-weight: 600; }

.review-text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #3a352f;
  font-weight: 400;
  flex: 1;
}
.review-more {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  font-family: inherit;
}

.review-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(25, 21, 18, .08);
}
.review-who { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.review-g {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid rgba(25, 21, 18, .12);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

/* ==========================================================================
   QUOTE CTA
   ========================================================================== */

.quote-cta-section {
  position: relative;
  min-height: calc(100dvh - 80px);
  display: flex;
  align-items: center;
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(32px, 5vh, 72px) var(--pad-x);
}
.quote-cta-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-cta-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 20, 19, .88) 0%, rgba(20, 20, 19, .7) 35%, rgba(20, 20, 19, .15) 70%, rgba(20, 20, 19, 0) 100%);
}
.quote-cta-inner { position: relative; z-index: 2; max-width: 600px; text-align: left; }
.quote-cta-inner .eyebrow { margin-bottom: 22px; }
.quote-cta-inner h2 { font-size: clamp(30px, 4vw, 52px); margin: 0 0 18px; color: var(--cream-soft); }
.quote-cta-inner p {
  color: rgba(242, 236, 226, .78);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 17.5px);
  margin: 0 0 32px;
  max-width: 48ch;
}
.quote-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}
.quote-cta-btn:hover { background: var(--tan); color: var(--ink); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-section {
  min-height: calc(100dvh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cool-gradient);
  border-top: 1px solid rgba(25, 21, 18, .08);
  padding: clamp(32px, 5vh, 72px) var(--pad-x);
}

.faq-grid {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: .6fr 1fr;
  gap: clamp(32px, 5vw, 72px);
}
.faq-intro .eyebrow { margin-bottom: 18px; }
.faq-intro h2 { font-size: clamp(26px, 3.2vw, 44px); letter-spacing: -.02em; }

.faq-item { border-bottom: 1px solid rgba(25, 21, 18, .16); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: clamp(14px, 2vh, 22px) 0;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}
.faq-q > span:first-child { font-size: 16.5px; font-weight: 600; }
.faq-sign {
  font-family: 'Jost', sans-serif;
  font-size: 26px;
  color: var(--brown-mid);
  line-height: 1;
  flex: none;
}
.faq-a {
  margin: 0;
  padding: 0 0 clamp(14px, 2vh, 22px);
  color: var(--muted);
  font-weight: 400;
  font-size: 15px;
  max-width: 62ch;
  line-height: 1.5;
}
.faq-a[hidden] { display: none; }

/* ==========================================================================
   FOOTER + STICKY BAR
   ========================================================================== */

.site-footer { background: var(--darker); color: rgba(242, 236, 226, .7); }
.site-footer .footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) var(--pad-x);
}

/* Brand block takes the slack; the single links column hugs the right edge. */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(242, 236, 226, .12);
}

.footer-brand img { height: 44px; width: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 280px; font-weight: 400; font-size: 15px; margin: 0 0 18px; }
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(216, 193, 156, .14);
  color: var(--tan);
  font-size: 14px;
  font-weight: 600;
}
.footer-cta:hover { color: var(--cream); }

.footer-col-title {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(242, 236, 226, .45);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.footer-links a { color: rgba(242, 236, 226, .7); }
.footer-links a:hover { color: var(--cream); }

.footer-legal {
  padding-top: 24px;
  font-size: 13.5px;
  color: rgba(242, 236, 226, .4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 15px 24px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, .24);
  animation: floatUp .4s ease both;
  flex-wrap: wrap;
}
.sticky-bar[hidden] { display: none; }
.sticky-bar > span { font-family: 'Jost', sans-serif; font-size: 20px; }
.sticky-bar a {
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
}
.sticky-bar a:hover { background: var(--tan); color: var(--ink); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (min-width: 1025px) {
  .announce-item { opacity: 1 !important; position: static !important; }
}

@media (max-width: 1024px) {
  .above-fold { height: auto; min-height: 100dvh; overflow: visible; }
  .full-section, .intro-section, .materials-section, .gallery-section,
  .whyus-section, .sizing-section, .reviews-section, .quote-cta-section,
  .faq-section { min-height: auto; }

  .nav-links { display: none; }
  .hamburger-btn { display: flex; }

  .hero-section { min-height: 64vh; }
  .hero-title, .process-title { white-space: normal; }

  .announce-bar {
    position: relative;
    height: 20px;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .announce-item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    justify-content: center;
    opacity: 0;
    transition: opacity .5s ease;
  }
  .announce-item.is-active { opacity: 1; }
  .announce-sep { display: none; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item {
    border-left: none;
    align-items: center;
    text-align: center;
    padding: 10px 6px;
  }
  .trust-item:first-child { display: none; }
  .trust-item-row { flex-direction: column; align-items: center; gap: 8px; }
  .trust-item-row span { line-height: 1.3; }

  .materials-grid { grid-template-columns: repeat(3, 1fr); }
  .materials-cta { grid-column: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid { grid-template-columns: 1fr; }
  .sizing-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  /* Only room for one header action on a phone, so show the phone number
     instead of "Get a quote". The quote path is still reachable from the
     hero, the sticky bar and the footer. Styled as a pill so the header
     keeps a clear primary action. */
  .nav-cta { display: none; }
  .nav-phone {
    padding: 11px 16px;    /* 44px tall — Apple's minimum tap target */
    border-radius: 999px;
    background: var(--dark);
    color: var(--cream);
    font-size: 13.5px;
    white-space: nowrap;   /* keep the number on one line */
  }
  .nav-phone:hover { background: #333331; color: var(--cream); }

  /* The wide phone pill squeezes the centre track, so guarantee a gap and
     trim the logo — otherwise the logo butts right up against the pill. */
  .nav-bar {
    padding-left: 16px;
    padding-right: 16px;
    gap: 12px;
  }
  .nav-logo img { height: 30px; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-reasons { grid-template-columns: 1fr; }
  .sizing-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; }

  .sticky-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 14px 18px;
  }
  .sticky-bar > span { font-size: 16px; }

  .hero-secondary-btn { display: none; }
  .hero-actions { flex-wrap: nowrap; }
  .hero-title { font-size: 38px; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-inner, .gallery-track, .sticky-bar { animation: none; }
  html { scroll-behavior: auto; }
}
