:root {
  --sand: #efe5d8;
  --sand-deep: #e3d4bf;
  --cream: #fff8f0;
  --white-soft: rgba(255, 249, 241, 0.9);
  --ink: #1d2935;
  --ink-soft: #62707d;
  --navy: #17222d;
  --navy-soft: #243443;
  --rust: #b45d3a;
  --rust-deep: #8c3e23;
  --gold: #d8ba91;
  --line: rgba(29, 41, 53, 0.1);
  --shadow: 0 24px 70px rgba(17, 26, 34, 0.14);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Barlow", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(180deg, #f4ece0 0%, #ecdfcf 100%);
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 18px 0;
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(244, 236, 224, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 44px rgba(17, 26, 34, 0.08);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 28px;
  height: 22px;
  display: inline-block;
  flex: 0 0 auto;
  background-image: url("assets/gable.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.brand-mark-preview {
  width: 74px;
  height: 74px;
  position: relative;
  display: inline-block;
}

.brand-mark-icon-a,
.brand-mark-icon-b,
.brand-mark-icon-c,
.brand-mark-icon-d {
  width: 84px;
  height: 64px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.brand-mark-icon-a {
  background-image: url("assets/roof-logo-option-a.svg");
}

.brand-mark-icon-b {
  background-image: url("assets/roof-logo-option-b.svg");
}

.brand-mark-icon-c {
  background-image: url("assets/roof-logo-option-c.svg");
}

.brand-mark-icon-d {
  background-image: url("assets/roof-logo-option-d.svg");
}

.brand-mark-ridge-a::before,
.brand-mark-ridge-a::after,
.brand-mark-ridge-b::before,
.brand-mark-ridge-b::after,
.brand-mark-ridge-c::before,
.brand-mark-ridge-c::after,
.brand-mark-ridge-d::before,
.brand-mark-ridge-d::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.brand-mark-ridge-a::before {
  width: 58px;
  height: 32px;
  top: 14px;
  border: 5px solid var(--navy);
  border-bottom: 0;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.brand-mark-ridge-a::after {
  width: 34px;
  height: 18px;
  top: 26px;
  border: 5px solid var(--rust);
  border-bottom: 0;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.brand-mark-ridge-b::before {
  width: 60px;
  height: 30px;
  top: 14px;
  background: linear-gradient(to bottom right, transparent 47%, var(--navy) 48%, var(--navy) 55%, transparent 56%),
              linear-gradient(to bottom left, transparent 47%, var(--navy) 48%, var(--navy) 55%, transparent 56%);
}

.brand-mark-ridge-b::after {
  width: 38px;
  height: 19px;
  top: 29px;
  background: linear-gradient(to bottom right, transparent 46%, var(--rust) 47%, var(--rust) 56%, transparent 57%),
              linear-gradient(to bottom left, transparent 46%, var(--rust) 47%, var(--rust) 56%, transparent 57%);
}

.brand-mark-ridge-c::before {
  width: 58px;
  height: 30px;
  top: 13px;
  border-top: 5px solid var(--navy);
  border-left: 5px solid var(--navy);
  transform: translateX(-50%) skewX(-37deg);
}

.brand-mark-ridge-c::after {
  width: 36px;
  height: 19px;
  top: 30px;
  border-top: 5px solid var(--rust);
  border-left: 5px solid var(--rust);
  transform: translateX(-50%) skewX(-37deg);
}

.brand-mark-ridge-d::before {
  width: 62px;
  height: 34px;
  top: 10px;
  background:
    linear-gradient(135deg, transparent 47%, var(--navy) 48%, var(--navy) 54%, transparent 55%),
    linear-gradient(225deg, transparent 47%, var(--navy) 48%, var(--navy) 54%, transparent 55%);
}

.brand-mark-ridge-d::after {
  width: 38px;
  height: 22px;
  top: 25px;
  background:
    linear-gradient(135deg, transparent 46%, var(--rust) 47%, var(--rust) 55%, transparent 56%),
    linear-gradient(225deg, transparent 46%, var(--rust) 47%, var(--rust) 55%, transparent 56%);
}

.brand-mark-line-a::before,
.brand-mark-line-a::after,
.brand-mark-line-b::before,
.brand-mark-line-b::after,
.brand-mark-line-c::before,
.brand-mark-line-c::after,
.brand-mark-line-d::before,
.brand-mark-line-d::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.brand-mark-line-a::before {
  width: 58px;
  height: 30px;
  top: 14px;
  border-top: 5px solid var(--navy);
  border-left: 5px solid var(--navy);
  border-right: 5px solid var(--navy);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.brand-mark-line-a::after {
  width: 24px;
  height: 16px;
  top: 36px;
  border-top: 5px solid var(--rust);
  border-left: 5px solid var(--rust);
  border-right: 5px solid var(--rust);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.brand-mark-line-b::before {
  width: 62px;
  height: 34px;
  top: 10px;
  background:
    linear-gradient(135deg, transparent 47%, var(--navy) 48%, var(--navy) 53%, transparent 54%),
    linear-gradient(225deg, transparent 47%, var(--navy) 48%, var(--navy) 53%, transparent 54%);
}

.brand-mark-line-b::after {
  width: 10px;
  height: 18px;
  top: 24px;
  left: 68%;
  transform: none;
  border-left: 5px solid var(--rust);
  border-top: 5px solid var(--rust);
}

.brand-mark-line-c::before {
  width: 62px;
  height: 34px;
  top: 12px;
  background:
    linear-gradient(135deg, transparent 47%, var(--navy) 48%, var(--navy) 53%, transparent 54%),
    linear-gradient(225deg, transparent 47%, var(--navy) 48%, var(--navy) 53%, transparent 54%);
}

.brand-mark-line-c::after {
  width: 38px;
  height: 22px;
  top: 28px;
  background:
    linear-gradient(135deg, transparent 47%, var(--rust) 48%, var(--rust) 53%, transparent 54%),
    linear-gradient(225deg, transparent 47%, var(--rust) 48%, var(--rust) 53%, transparent 54%);
}

.brand-mark-line-d::before {
  width: 60px;
  height: 34px;
  top: 12px;
  border-top: 5px solid var(--navy);
  border-left: 5px solid var(--navy);
  border-right: 5px solid var(--navy);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.brand-mark-line-d::after {
  width: 52px;
  height: 5px;
  top: 50px;
  background: linear-gradient(90deg, var(--rust), var(--rust));
  border-radius: 999px;
}

.brand-mark-flat-a::before,
.brand-mark-flat-a::after,
.brand-mark-flat-b::before,
.brand-mark-flat-b::after,
.brand-mark-flat-c::before,
.brand-mark-flat-c::after,
.brand-mark-flat-d::before,
.brand-mark-flat-d::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.brand-mark-flat-a::before {
  width: 60px;
  height: 32px;
  top: 16px;
  background:
    linear-gradient(135deg, transparent 47%, var(--navy) 48%, var(--navy) 52%, transparent 53%),
    linear-gradient(225deg, transparent 47%, var(--navy) 48%, var(--navy) 52%, transparent 53%);
}

.brand-mark-flat-a::after {
  width: 28px;
  height: 5px;
  top: 43px;
  background: var(--rust);
  border-radius: 999px;
}

.brand-mark-flat-b::before {
  width: 58px;
  height: 30px;
  top: 16px;
  border-top: 5px solid var(--navy);
  border-left: 5px solid var(--navy);
  border-right: 5px solid var(--navy);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.brand-mark-flat-b::after {
  width: 10px;
  height: 16px;
  top: 24px;
  left: 67%;
  transform: none;
  border-left: 5px solid var(--rust);
}

.brand-mark-flat-c::before {
  width: 60px;
  height: 32px;
  top: 14px;
  background:
    linear-gradient(135deg, transparent 47%, var(--navy) 48%, var(--navy) 52%, transparent 53%),
    linear-gradient(225deg, transparent 47%, var(--navy) 48%, var(--navy) 52%, transparent 53%);
}

.brand-mark-flat-c::after {
  width: 40px;
  height: 18px;
  top: 34px;
  border-bottom: 5px solid var(--rust);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.brand-mark-flat-d::before {
  width: 62px;
  height: 34px;
  top: 12px;
  background:
    linear-gradient(135deg, transparent 47%, var(--navy) 48%, var(--navy) 52%, transparent 53%),
    linear-gradient(225deg, transparent 47%, var(--navy) 48%, var(--navy) 52%, transparent 53%);
}

.brand-mark-flat-d::after {
  width: 18px;
  height: 18px;
  top: 30px;
  border: 5px solid var(--rust);
  border-top: 0;
  border-radius: 0 0 6px 6px;
}

.brand-text {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  font-weight: 800;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(180, 93, 58, 0.1);
  color: var(--rust-deep);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(23, 34, 45, 0.06);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}

.nav-toggle span + span {
  margin-top: 5px;
}

.page-main {
  padding-bottom: 64px;
}

.hero-home,
.hero-page,
.hero-article {
  position: relative;
  overflow: hidden;
}

.hero-home {
  padding: 72px 0 84px;
  min-height: 76vh;
  display: flex;
  align-items: center;
}

.hero-home-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-home-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(0.95) brightness(0.72);
}

.hero-home::before,
.hero-page::before,
.hero-article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  background:
    linear-gradient(140deg, rgba(23, 34, 45, 0.98), rgba(23, 34, 45, 0.88)),
    linear-gradient(180deg, rgba(180, 93, 58, 0.18), rgba(180, 93, 58, 0.08));
}

.hero-home::before {
  display: none;
}

.hero-page {
  padding: 64px 0 76px;
}

.hero-page::before,
.hero-article::before {
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 0 100%);
}

.hero-article {
  padding: 64px 0 70px;
}

.hero-grid,
.hero-page-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-home-simple {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-copy-simple {
  max-width: 1100px;
  display: grid;
  gap: 24px;
  text-align: center;
  justify-items: center;
}

.hero-copy-simple h1 {
  max-width: 16ch;
  margin: 0;
  color: var(--navy);
  text-shadow: 0 4px 24px rgba(255, 248, 240, 0.22);
}

.hero-page-copy,
.hero-article-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.hero-page-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
}

.eyebrow,
.section-kicker,
.card-kicker,
.metric-label,
.article-meta,
.service-tag,
.floating-label,
.quote-kicker,
.contact-tag,
.policy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.hero-page-copy .eyebrow,
.hero-article-copy .eyebrow {
  color: rgba(255, 245, 237, 0.78);
}

.section-kicker,
.card-kicker,
.metric-label,
.service-tag,
.quote-kicker,
.contact-tag,
.policy-kicker,
.article-meta {
  color: var(--rust-deep);
}

.hero-home h1,
.hero-page h1,
.hero-article h1,
.section-heading h2,
.statement-grid h2,
.split-copy h2,
.card h3,
.service-card h3,
.leader-card h3,
.brand-card h3,
.article-card h3,
.media-card h3,
.contact-card h3,
.faq-card h3,
.article-body h2,
.quote-block strong {
  font-family: "Barlow Semi Condensed", sans-serif;
}

.hero-home h1,
.hero-page h1,
.hero-article h1 {
  margin: 18px 0 0;
  color: #fff7ef;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-home h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 8vw, 6.8rem);
}

.hero-page h1,
.hero-article h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.hero-summary,
.hero-page-copy p,
.hero-article-copy p {
  margin: 0;
  color: rgba(255, 245, 237, 0.82);
  line-height: 1.9;
  font-size: 1.06rem;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.hero-actions-centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #d7794d, var(--rust));
  color: #fff8f1;
  box-shadow: 0 14px 34px rgba(180, 93, 58, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 245, 237, 0.22);
  background: rgba(255, 245, 237, 0.08);
  color: #fff7ef;
  backdrop-filter: blur(12px);
}

.button-secondary-dark {
  border-color: rgba(23, 34, 45, 0.14);
  background: rgba(23, 34, 45, 0.06);
  color: var(--ink);
}

.hero-visual,
.hero-page-aside {
  position: relative;
}

.roof-composition {
  position: relative;
  min-height: 620px;
}

.roof-panel,
.floating-card,
.statement-grid,
.card,
.service-card,
.leader-card,
.brand-card,
.article-card,
.media-card,
.contact-card,
.faq-card,
.split-panel,
.metrics-band,
.cta-band,
.quote-block,
.article-shell,
.contact-form,
.hero-page-aside-card {
  box-shadow: var(--shadow);
}

.roof-panel {
  position: absolute;
  inset: 34px 34px 80px 24px;
  padding: 26px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, #f7f1e7, #eddac9);
}

.roof-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(23, 34, 45, 0.1), transparent 45%),
    repeating-linear-gradient(
      160deg,
      rgba(23, 34, 45, 0.08) 0 12px,
      rgba(255, 255, 255, 0) 12px 28px
    );
  mix-blend-mode: multiply;
}

.roof-ridge {
  position: absolute;
  top: 72px;
  left: 13%;
  width: 74%;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #314456, #6b7d8d);
  transform: rotate(-24deg);
}

.roof-surface {
  position: absolute;
  inset: 26% 11% 16% 10%;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.14)),
    repeating-linear-gradient(
      152deg,
      rgba(180, 93, 58, 0.22) 0 14px,
      rgba(140, 62, 35, 0.22) 14px 28px
    );
  clip-path: polygon(14% 8%, 86% 24%, 70% 92%, 0 72%);
}

.roof-note {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.84);
  border: 1px solid rgba(23, 34, 45, 0.08);
}

.roof-note span {
  display: block;
  color: var(--rust-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.roof-note strong {
  display: block;
  margin-top: 10px;
  font-size: 1.18rem;
  line-height: 1.45;
}

.floating-card {
  position: absolute;
  border-radius: 28px;
  padding: 24px;
}

.floating-card h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.floating-card p,
.floating-card li {
  margin: 0;
  line-height: 1.8;
}

.floating-card-light {
  top: 0;
  right: 0;
  width: min(320px, 52%);
  background: rgba(255, 249, 242, 0.94);
}

.floating-card-dark {
  right: 12px;
  bottom: 0;
  width: min(300px, 48%);
  background: rgba(23, 34, 45, 0.92);
  color: #fff7ef;
}

.floating-card-dark .floating-label {
  color: var(--gold);
}

.floating-card-dark p,
.floating-card-dark li {
  color: rgba(255, 245, 237, 0.8);
}

.floating-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.floating-list li + li {
  margin-top: 12px;
}

.hero-page-aside-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 242, 0.9);
  border: 1px solid rgba(255, 245, 237, 0.08);
}

.hero-page-aside-card strong {
  display: block;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--navy);
}

.hero-page-aside-card p,
.hero-page-aside-card li {
  color: var(--ink-soft);
  line-height: 1.8;
}

.hero-page-aside-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.section,
.statement-band,
.metrics-section {
  padding: clamp(78px, 8vw, 100px) 0;
}

.statement-band {
  padding-top: 28px;
}

.statement-grid,
.split-grid,
.footer-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.statement-grid,
.metrics-band,
.cta-band,
.quote-block,
.article-shell {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: rgba(255, 249, 242, 0.9);
  border: 1px solid var(--line);
}

.statement-grid > div,
.section-heading,
.split-copy,
.split-panel,
.quote-block,
.footer-brand {
  display: grid;
  align-content: start;
  gap: 18px;
}

.metrics-band,
.cta-band {
  display: grid;
  gap: 30px;
}

.section-heading h2,
.statement-grid h2,
.split-copy h2,
.cta-band h2,
.article-body h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading p,
.statement-grid p:last-child,
.split-copy p,
.cta-band p,
.article-lead,
.article-body p,
.article-body li,
.article-sidebar p,
.policy-copy p,
.policy-copy li {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.9;
}

.stack {
  display: grid;
  gap: 22px;
}

.cards-3,
.cards-4,
.leaders-grid,
.brands-grid,
.articles-grid,
.media-grid,
.policies-grid {
  display: grid;
  gap: 24px;
}

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

.cards-4,
.brands-grid,
.articles-grid,
.leaders-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.leader-card,
.brand-card,
.article-card,
.media-card,
.contact-card,
.faq-card,
.split-panel,
.contact-form {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 242, 0.92);
  border: 1px solid var(--line);
}

.card h3,
.service-card h3,
.leader-card h3,
.brand-card h3,
.article-card h3,
.media-card h3,
.contact-card h3,
.faq-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.48rem;
  line-height: 1.08;
}

.card p,
.service-card p,
.leader-card p,
.brand-card p,
.article-card p,
.media-card p,
.contact-card p,
.faq-card p,
.split-panel p,
.split-panel li {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.85;
}

.split-panel ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.service-card {
  background:
    linear-gradient(180deg, rgba(23, 34, 45, 0.96), rgba(23, 34, 45, 0.9)),
    linear-gradient(90deg, rgba(180, 93, 58, 0.12), rgba(180, 93, 58, 0.02));
}

.service-card h3 {
  color: #fff7ef;
}

.service-card p {
  color: rgba(255, 245, 237, 0.8);
}

.service-card .service-tag {
  color: var(--gold);
}

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

.metric {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 2.1rem;
  color: var(--navy);
}

.metric span {
  display: block;
  margin-top: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.leader-card .leader-role {
  display: block;
  margin-top: 4px;
  color: var(--rust-deep);
  font-weight: 800;
}

.leader-card {
  gap: 14px;
}

.leader-photo-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.leader-photo-button:focus-visible {
  outline: 3px solid rgba(180, 93, 58, 0.42);
  outline-offset: 6px;
  border-radius: 28px;
}

.leader-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  margin: 0 0 8px;
  border-radius: 22px;
  background: rgba(23, 34, 45, 0.08);
}

.leader-photo-large {
  aspect-ratio: 4 / 4.7;
  border-radius: 26px;
}

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

.leader-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.leader-link {
  display: inline-flex;
  align-items: center;
  color: var(--rust);
  font-weight: 800;
}

.leader-bio {
  display: grid;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.leader-card .leader-desc {
  margin-top: 0;
}

.brand-card .brand-type {
  display: block;
  margin-top: 4px;
  color: var(--rust-deep);
  font-weight: 800;
}

.brand-logo-tile {
  display: grid;
  place-items: center;
  min-height: 124px;
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(23, 34, 45, 0.98), rgba(35, 52, 67, 0.94));
}

.brand-logo-image {
  width: 100%;
  max-width: 240px;
  max-height: 64px;
  object-fit: contain;
}

.brand-card .article-link {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  color: var(--rust);
  font-weight: 800;
}

.brand-card .brand-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(180, 93, 58, 0.1);
  color: var(--rust-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-card .article-link,
.media-card .article-link,
.contact-card .article-link {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  color: var(--rust);
  font-weight: 800;
}

.split-panel .article-link {
  display: inline-flex;
  align-items: center;
}

.section-tight-top {
  padding-top: 0;
}

.podcast-panel {
  gap: 20px;
}

.podcast-panel h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.podcast-player {
  width: 100%;
}

.podcast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote-block {
  background: linear-gradient(145deg, rgba(23, 34, 45, 0.96), rgba(35, 52, 67, 0.9));
  color: #fff7ef;
}

.quote-block strong {
  display: block;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.quote-block p {
  margin: 0;
  color: rgba(255, 245, 237, 0.78);
  line-height: 1.85;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(145deg, rgba(23, 34, 45, 0.96), rgba(35, 52, 67, 0.9));
}

.cta-band > :first-child {
  display: grid;
  gap: 18px;
}

.cta-band h2 {
  color: #fff7ef;
}

.cta-band p {
  color: rgba(255, 245, 237, 0.78);
}

.contact-grid {
  gap: 24px;
}

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

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

.field,
.field-full {
  display: grid;
  gap: 10px;
}

.field label,
.field-full label {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.92rem;
}

.field input,
.field-full input,
.field-full textarea,
.field-full select {
  width: 100%;
  border: 1px solid rgba(29, 41, 53, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.field-full textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 24px;
}

.article-shell {
  background: rgba(255, 249, 242, 0.94);
}

.article-body {
  display: grid;
  gap: 22px;
}

.article-body ul {
  margin: 0;
  padding-left: 18px;
}

.article-sidebar {
  display: grid;
  gap: 22px;
}

.article-sidebar .split-panel {
  height: fit-content;
}

.site-footer {
  padding: 0 0 42px;
}

.footer-grid {
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand p,
.footer-links a,
.footer-links span {
  color: var(--ink-soft);
  line-height: 1.75;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
}

.footer-contact-list a,
.direct-contact-list a {
  color: var(--rust-deep);
  font-weight: 700;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible,
.direct-contact-list a:hover,
.direct-contact-list a:focus-visible {
  color: var(--rust);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 18px;
  justify-content: flex-end;
  align-items: center;
}

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

.logo-option-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 242, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.logo-option-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.logo-option-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.6rem;
}

.logo-option-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.logo-option-meta {
  margin-top: 16px;
  color: var(--rust-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .cards-4,
  .brands-grid,
  .leaders-grid,
  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .hero-grid,
  .hero-page-grid,
  .statement-grid,
  .split-grid,
  .contact-grid,
  .footer-grid,
  .article-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .media-grid,
  .logo-options-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 249, 242, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-block;
  }

  .roof-composition {
    min-height: 560px;
  }

  .floating-card-light,
  .floating-card-dark {
    width: min(320px, 82%);
  }
}

@media (max-width: 720px) {
  .field-grid,
  .metric-grid,
  .cards-4,
  .brands-grid,
  .leaders-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .hero-home h1,
  .hero-page h1,
  .hero-article h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 0;
  }

  .hero-home,
  .hero-page,
  .hero-article {
    padding-top: 38px;
  }

  .hero-home::before {
    height: 78%;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  }

  .roof-composition {
    min-height: 500px;
  }

  .roof-panel {
    inset: 30px 0 80px;
  }

  .floating-card-light,
  .floating-card-dark {
    right: 0;
  }

  .section,
  .statement-band,
  .metrics-section {
    padding: 64px 0;
  }

  .statement-grid,
  .metrics-band,
  .cta-band,
  .quote-block,
  .article-shell {
    padding: 30px;
  }
}
