:root {
  --ink: #17201d;
  --deep: #0e1714;
  --green: #213a34;
  --green-soft: #e4ebe6;
  --ivory: #f7f3ea;
  --paper: #fffdf8;
  --copper: #a97448;
  --copper-dark: #755033;
  --line: rgba(23, 32, 29, .14);
  --muted: #69736d;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(14, 23, 20, .78), rgba(14, 23, 20, .22));
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .92);
  border-radius: 4px;
}

.brand img,
.site-footer img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav a,
.header-cta {
  opacity: .9;
  transition: opacity .2s, color .2s;
}

.main-nav a:hover,
.header-cta:hover {
  color: #f2c69b;
  opacity: 1;
}

.header-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}


.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 42px;
  padding: 0 14px;
  color: #fff;
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary::before {
  content: "";
  width: 16px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  box-shadow: inset 0 4px 0 0 transparent, 0 4px 0 -2px currentColor;
}

.mobile-menu[open] summary {
  color: #f2c69b;
  border-color: rgba(242, 198, 155, .7);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: min(82vw, 320px);
  padding: 10px;
  background: rgba(16, 35, 31, .98);
  border: 1px solid rgba(242, 198, 155, .28);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
}

.mobile-menu nav a {
  padding: 14px 14px;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
  color: #fff;
  background: rgba(242, 198, 155, .12);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(14, 23, 20, .9) 0%, rgba(14, 23, 20, .64) 42%, rgba(14, 23, 20, .1) 100%),
    url("assets/img/toiture-veranda.jpg") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(0deg, rgba(14, 23, 20, .96) 0%, rgba(14, 23, 20, .34) 38%, rgba(14, 23, 20, .12) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(92px, 12vh, 132px) clamp(20px, 7vw, 96px);
}

.eyebrow,
.section-kicker,
.range-label {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2c69b;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
  max-width: 760px;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  font-size: 24px;
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .22s, background .22s, color .22s, border-color .22s;
}

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

.btn-primary {
  color: #fff;
  background: var(--copper);
}

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

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .45);
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
}

.hero-proof {
  position: absolute;
  left: clamp(20px, 7vw, 96px);
  right: clamp(20px, 7vw, 96px);
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.hero-proof span {
  padding: 24px 20px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.hero-proof span:last-child {
  border-right: 0;
}

.intro-band,
.video-feature,
.benefits,
.ranges,
.renovation,
.contact-section {
  padding: clamp(74px, 9vw, 126px) clamp(20px, 6vw, 88px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  background: linear-gradient(135deg, #f7f3ea 0%, #ebe4d8 100%);
}

.video-copy {
  max-width: 520px;
}

.video-copy p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(33, 58, 52, .24), rgba(169, 116, 72, .18)),
    var(--deep);
  border: 1px solid rgba(23, 32, 29, .16);
  border-radius: 8px;
  box-shadow: 0 34px 80px rgba(23, 32, 29, .18);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 5px;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.image-story {
  display: grid;
  gap: 0;
  background: var(--green);
}

.story-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  color: #fff;
}

.story-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-panel > div {
  align-self: center;
  max-width: 560px;
  padding: clamp(42px, 7vw, 92px);
}

.story-panel p {
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
}

.story-panel-alt img {
  order: 2;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.benefits {
  background: var(--ivory);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.benefit-grid article {
  min-height: 310px;
  padding: 34px;
  background: var(--paper);
}

.benefit-grid span {
  display: block;
  margin-bottom: 72px;
  color: var(--copper);
  font-weight: 800;
}

.benefit-grid p,
.range-card p,
.season-card p,
.renovation-text p,
.contact-section p {
  color: var(--muted);
}

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

.range-card {
  display: grid;
  grid-template-rows: 320px auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.range-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--green-soft);
}

.range-card > div {
  padding: 34px;
}

.range-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.range-card li {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.season-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--deep);
}

.season-card {
  display: grid;
  grid-template-rows: 410px auto;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.season-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.season-card div {
  padding: clamp(34px, 5vw, 58px);
}

.season-card p {
  color: rgba(255, 255, 255, .72);
}

.renovation {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .75fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  background: var(--green-soft);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  min-height: 92px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.steps strong {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 520;
}

.steps span {
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: center;
  color: #fff;
  background: var(--green);
}

.contact-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, .76);
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
}

.contact-card > a:first-child {
  font-family: var(--font-display);
  font-size: 30px;
}

.contact-card span {
  color: rgba(255, 255, 255, .74);
}

.contact-card label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 13px 14px;
  color: #fff;
  font: inherit;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  outline: none;
}

.contact-card textarea {
  resize: vertical;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(242, 198, 155, .72);
  box-shadow: 0 0 0 3px rgba(242, 198, 155, .12);
}

.contact-card button {
  border: 0;
  cursor: pointer;
}

.contact-card button:disabled {
  cursor: wait;
  opacity: .68;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}


.site-footer {
  padding: 0 clamp(20px, 6vw, 88px);
  background:
    radial-gradient(circle at 16% 0%, rgba(197, 143, 93, .18), transparent 32%),
    linear-gradient(135deg, #10231f 0%, #172c27 48%, #0e1714 100%);
  color: rgba(255, 255, 255, .74);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .62fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 0 34px;
}

.footer-brand-block {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .96);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-brand-block p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
}

.footer-contact-block {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.footer-contact-block span {
  color: #f2c69b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-contact-block a:first-of-type {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  text-decoration: none;
}

.footer-contact-block a:last-of-type {
  display: inline-flex;
  margin-top: 8px;
  padding: 11px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(242, 198, 155, .42);
  border-radius: 999px;
}

.footer-contact-block a:last-of-type:hover {
  background: rgba(242, 198, 155, .12);
  border-color: rgba(242, 198, 155, .72);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 13px;
}

.footer-links a {
  color: rgba(255, 255, 255, .66);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .footer-inner,
  .footer-brand-block {
    grid-template-columns: 1fr;
  }

  .footer-contact-block {
    justify-items: start;
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

.page-hero {
  position: relative;
  min-height: 440px;
  display: grid;
  align-content: end;
  padding: 138px clamp(20px, 7vw, 96px) 62px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(14, 23, 20, .9), rgba(14, 23, 20, .54) 52%, rgba(14, 23, 20, .24)),
    var(--green);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .64;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(20px, 7vw, 96px) 0;
  height: 1px;
  background: rgba(255, 255, 255, .18);
}

.page-hero > * {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero h1 {
  font-size: clamp(34px, 4.2vw, 54px);
}

.page-hero p:last-child {
  margin: 20px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}

.solution-hero::before,
.page-hero-32::before {
  background-image: url("assets/img/toiture-polycarbonate.jpg");
}

.page-hero-16::before,
.renovation-hero::before {
  background-image: url("assets/img/toiture-patio.jpg");
}

.performance-hero::before {
  background-image: url("assets/img/plaque-veranda-ete.jpg");
}

.contact-hero::before {
  background-image: url("assets/img/toiture-veranda.jpg");
}

.content-section,
.pro-grid,
.split-feature,
.product-editorial,
.quote-band,
.range-grid-section {
  padding: clamp(56px, 7vw, 92px) clamp(20px, 6vw, 88px);
}

.content-section.two-col {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.content-section p {
  color: var(--muted);
  font-size: 18px;
}

.content-section p:first-child {
  margin-top: 0;
}

.pro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pro-grid article {
  min-height: 260px;
  padding: 36px;
  background: var(--paper);
}

.pro-grid p,
.product-editorial p,
.split-feature p,
.split-feature li,
.product-editorial li,
.quote-band p {
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: var(--ivory);
}

.split-feature img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(23, 32, 29, .16);
}

.split-feature ul,
.product-editorial ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.split-feature li,
.product-editorial li {
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.product-editorial {
  display: grid;
  gap: 26px;
  background: var(--paper);
}

.product-editorial article {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-editorial article:nth-child(even) img {
  order: 2;
}

.product-editorial img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  background: var(--green-soft);
  border-radius: 6px;
}

.quote-band {
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(33, 58, 52, .95), rgba(14, 23, 20, .98)),
    var(--green);
  color: #fff;
}

.quote-band h2,
.quote-band p {
  max-width: 760px;
}

.quote-band p {
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
}

.inner-season {
  padding: clamp(56px, 7vw, 92px) clamp(20px, 6vw, 88px);
  gap: 28px;
  background: var(--deep);
}

.inner-season .season-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
}

.large-steps {
  padding: clamp(56px, 7vw, 92px) clamp(20px, 6vw, 88px);
  background: var(--ivory);
}

.large-steps div {
  max-width: 980px;
  margin: 0 auto;
}

.form-page {
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(56px, 7vw, 92px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .intro-grid,
  .video-feature,
  .story-panel,
  .range-grid,
  .season-section,
  .renovation,
  .contact-section,
  .content-section.two-col,
  .pro-grid,
  .split-feature,
  .product-editorial article {
    grid-template-columns: 1fr;
  }

  .story-panel-alt img {
    order: 0;
  }

  .product-editorial article:nth-child(even) img {
    order: 0;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 140px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu summary {
    height: 40px;
    padding: 0 13px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 150px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-proof {
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .intro-band,
  .video-feature,
  .benefits,
  .ranges,
  .renovation,
  .contact-section,
  .content-section,
  .pro-grid,
  .split-feature,
  .product-editorial,
  .quote-band,
  .range-grid-section,
  .inner-season,
  .large-steps {
    padding: 56px 16px;
  }

  .page-hero {
    min-height: 460px;
    padding: 132px 16px 54px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .story-panel {
    min-height: auto;
  }

  .story-panel img,
  .season-card img,
  .split-feature img,
  .product-editorial img {
    height: 300px;
    min-height: 0;
  }

  .story-panel > div,
  .season-card div,
  .range-card > div {
    padding: 28px 20px;
  }

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

  .benefit-grid article {
    min-height: auto;
  }

  .benefit-grid span {
    margin-bottom: 36px;
  }

  .contact-card {
    padding: 24px;
  }

}


.pro-hero {
  background:
    linear-gradient(90deg, rgba(14, 23, 20, .88), rgba(14, 23, 20, .42)),
    url("assets/img/toiture-patio.jpg") center / cover;
}

.pro-intro,
.pro-workflow {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 6vw, 88px);
}

.pro-intro {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(340px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  background: var(--paper);
}

.pro-intro > div:first-child p:not(.section-kicker) {
  margin-top: 24px;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.pro-pillars {
  display: grid;
  gap: 14px;
}

.pro-pillars article,
.workflow-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(23, 32, 29, .07);
}

.pro-pillars span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--copper);
  font-weight: 800;
  letter-spacing: .14em;
}

.pro-pillars strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.12;
}

.pro-pillars p,
.workflow-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.pro-workflow {
  background: var(--green-soft);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.workflow-grid h3 {
  font-size: 26px;
}

.pro-form-section {
  background:
    linear-gradient(120deg, rgba(33, 58, 52, .96), rgba(14, 23, 20, .94)),
    url("assets/img/toiture-polycarbonate.jpg") center / cover;
  color: #fff;
}

.pro-form-section p,
.pro-form-section h2 {
  color: #fff;
}

.pro-form-section .section-kicker {
  color: #f2c69b;
}

.pro-contact-card select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

@media (max-width: 900px) {
  .pro-intro,
  .workflow-grid {
    grid-template-columns: 1fr;
  }
}


.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 18px;
  font-size: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.legal-hero {
  min-height: 340px;
  background: linear-gradient(120deg, rgba(33, 58, 52, .96), rgba(17, 31, 27, .9)), url("assets/img/toiture-polycarbonate.jpg") center / cover;
}

.legal-content {
  max-width: 900px;
  margin-inline: auto;
  padding-top: 64px;
}

.legal-content h2 {
  margin: 38px 0 14px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.legal-content p,
.legal-content li,
.legal-content dd {
  color: var(--muted);
  line-height: 1.75;
}

.legal-updated,
.legal-note {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.legal-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.legal-list dt {
  font-weight: 700;
  color: var(--ink);
}

.legal-list dd {
  margin: 0;
}

.legal-content a {
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 700px) {
  .legal-content {
    padding-top: 42px;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* Mobile polish */
@media (max-width: 640px) {
  body {
    background: #fffdf8;
  }

  .site-header {
    min-height: 66px;
    background: rgba(14, 23, 20, .92);
    border-bottom-color: rgba(242, 198, 155, .18);
    backdrop-filter: blur(14px);
  }

  .brand {
    width: 132px;
    padding: 7px 10px;
    border-radius: 5px;
  }

  .mobile-menu summary span {
    display: none;
  }

  .mobile-menu summary {
    width: 42px;
    justify-content: center;
    padding: 0;
    border-color: rgba(255, 255, 255, .36);
    background: rgba(255, 255, 255, .06);
  }

  .mobile-menu summary::before {
    width: 17px;
    height: 11px;
  }

  .mobile-menu nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    width: auto;
    max-height: calc(100vh - 96px);
    overflow: auto;
    padding: 10px;
    border-radius: 18px;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
    margin-top: 6px;
    color: #fff;
    background: rgba(242, 198, 155, .14);
  }

  .hero {
    min-height: 690px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(14, 23, 20, .92) 0%, rgba(14, 23, 20, .58) 44%, rgba(14, 23, 20, .92) 100%),
      url("assets/img/toiture-veranda.jpg") center / cover;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 132px;
  }

  .eyebrow,
  .section-kicker,
  .range-label {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: .13em;
  }

  h1,
  .page-hero h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .hero-lead,
  .page-hero p:last-child {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-proof {
    bottom: 18px;
    overflow: hidden;
    border-radius: 16px;
  }

  .hero-proof span {
    padding: 11px 14px;
    text-align: left;
    font-size: 12px;
  }

  .intro-band,
  .video-feature,
  .benefits,
  .ranges,
  .renovation,
  .contact-section,
  .content-section,
  .pro-grid,
  .split-feature,
  .product-editorial,
  .quote-band,
  .range-grid-section,
  .inner-season,
  .large-steps,
  .pro-intro,
  .pro-workflow,
  .pro-form-section {
    padding: 44px 16px;
  }

  h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .intro-copy p,
  .content-section p,
  .benefit-grid p,
  .range-card p,
  .legal-content p,
  .legal-content li,
  .legal-content dd {
    font-size: 15.5px;
    line-height: 1.72;
  }

  .video-frame {
    border-radius: 18px;
  }

  .benefit-grid,
  .range-grid,
  .pro-pillars,
  .workflow-grid {
    gap: 12px;
  }

  .benefit-grid article,
  .pro-pillars article,
  .workflow-grid article,
  .product-editorial article {
    border-radius: 14px;
  }

  .range-card,
  .story-panel,
  .season-card,
  .contact-card {
    border-radius: 18px;
  }

  .story-panel img,
  .season-card img,
  .split-feature img,
  .product-editorial img {
    height: 240px;
  }

  .page-hero {
    min-height: 380px;
    padding: 112px 16px 42px;
  }

  .legal-hero {
    min-height: 330px;
  }

  .legal-content {
    padding-top: 36px;
  }

  .footer-inner {
    gap: 24px;
    padding: 34px 0 24px;
  }

  .footer-brand-block p {
    font-size: 15px;
    line-height: 1.62;
  }

  .footer-contact-block a:first-of-type {
    font-size: 25px;
  }

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


/* Mobile menu button refinement */
@media (max-width: 640px) {
  .mobile-menu summary {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(242, 198, 155, .28);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  }

  .mobile-menu summary::before,
  .mobile-menu summary::after,
  .mobile-menu summary span::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #fff;
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    transition: transform .18s ease, opacity .18s ease, top .18s ease;
  }

  .mobile-menu summary::before {
    top: 14px;
    width: auto;
  }

  .mobile-menu summary span::before {
    top: 21px;
  }

  .mobile-menu summary::after {
    top: 28px;
  }

  .mobile-menu[open] summary {
    background: rgba(242, 198, 155, .14);
    border-color: rgba(242, 198, 155, .55);
  }

  .mobile-menu[open] summary::before {
    top: 21px;
    transform: rotate(45deg);
  }

  .mobile-menu[open] summary span::before {
    opacity: 0;
  }

  .mobile-menu[open] summary::after {
    top: 21px;
    transform: rotate(-45deg);
  }
}


.video-consent {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14, 23, 20, .74), rgba(33, 58, 52, .42)),
    url("assets/img/toiture-veranda.jpg") center / cover;
}

.video-consent-button {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 340px;
  padding: 24px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 20px;
  background: rgba(14, 23, 20, .58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
}

.video-consent-button:hover,
.video-consent-button:focus-visible {
  border-color: rgba(242, 198, 155, .72);
  background: rgba(14, 23, 20, .72);
}

.video-consent-button span:not(.video-play) {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
}

.video-consent-button small {
  color: rgba(255, 255, 255, .76);
  line-height: 1.5;
}

.video-play {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #f2c69b;
  position: relative;
}

.video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-42%, -50%);
  border-left: 16px solid #17201d;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

@media (max-width: 640px) {
  .video-consent {
    min-height: 270px;
  }

  .video-consent-button {
    max-width: calc(100% - 32px);
    padding: 20px;
  }

  .video-consent-button span:not(.video-play) {
    font-size: 21px;
  }
}

/* 2026-06-25 - Responsive YouTube video on home */
.video-feature {
  overflow: hidden;
}

.video-frame {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.video-frame iframe {
  display: block;
  max-width: 100%;
}

@media (max-width: 980px) {
  .video-feature {
    gap: 24px;
  }

  .video-copy {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .video-feature {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .video-frame {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(23, 32, 29, .16);
  }

  .video-frame::before {
    inset: 8px;
    border-radius: 8px;
  }
}

