:root {
  --black: #05070a;
  --navy: #07111f;
  --navy-2: #0d1e31;
  --white: #ffffff;
  --paper: #f5f4ef;
  --muted: #69717d;
  --yellow: #ffd12d;
  --yellow-2: #e7a900;
  --red: #e30613;
  --red-2: #9f0008;
  --whatsapp: #25d366;
  --line: rgba(9, 17, 31, 0.12);
  --shadow: 0 24px 70px rgba(5, 7, 10, 0.16);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

main section[id],
.area-section[id],
.appointment-section[id] {
  scroll-margin-top: 112px;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 14px;
  left: clamp(14px, 4vw, 56px);
  right: clamp(14px, 4vw, 56px);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 108px;
  padding: 8px 14px 8px 10px;
  color: var(--white);
  background: rgba(5, 7, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.site-header.is-scrolled {
  background: rgba(5, 7, 10, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 94px;
  height: 94px;
  overflow: hidden;
  border: 2px solid rgba(255, 209, 45, 0.68);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 209, 45, 0.16);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav > a,
.nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav > a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--yellow);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  background: transparent;
  border: 0;
  font: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(390px, 80vw);
  max-height: min(70vh, 560px);
  overflow-y: auto;
  padding: 10px;
  background: rgba(10, 12, 16, 0.98);
  border: 1px solid rgba(255, 209, 45, 0.35);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
  transform: translateX(-50%);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.84);
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.3;
  text-transform: none;
}

.nav-dropdown-menu a:hover {
  color: var(--black);
  background: var(--yellow);
}

.mobile-nav-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  margin-left: 6px;
  gap: 10px;
}

.phone-link {
  color: var(--yellow);
  font-weight: 900;
  white-space: nowrap;
}

.header-cta,
.button,
.nav-toggle {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.button-primary {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 14px 32px rgba(255, 209, 45, 0.26);
}

.button-whatsapp {
  color: var(--black);
  background: linear-gradient(135deg, #44f187, var(--whatsapp));
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.3);
}

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

.button:hover,
.header-cta:hover,
.nav-toggle:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(18px, 5vw, 72px) 72px;
  color: var(--white);
  background: var(--navy);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.hero-shade {
  background:
    linear-gradient(105deg, rgba(5, 7, 10, 0.94) 0%, rgba(7, 17, 31, 0.86) 43%, rgba(7, 17, 31, 0.24) 72%, rgba(5, 7, 10, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 7, 10, 0.48), transparent 58%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(132deg, transparent 0 34%, rgba(255, 255, 255, 0.05) 34% 47%, transparent 47%),
    linear-gradient(126deg, transparent 0 62%, rgba(227, 6, 19, 0.86) 62% 73%, transparent 73%);
  pointer-events: none;
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  width: min(1180px, 100%);
}

.hero-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(48px, 8vw, 102px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.28);
}

.hero-subtext {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.hero-positioning,
.positioning-line {
  margin: 12px 0;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions,
.emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-card {
  padding: 26px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 25px;
  line-height: 1.12;
}

.roof-calculator-promo {
  position: relative;
  overflow: hidden;
  align-self: end;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 209, 45, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(18, 20, 23, 0.98), rgba(5, 7, 10, 0.99));
  border: 1px solid rgba(255, 209, 45, 0.72);
  border-radius: 18px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(255, 209, 45, 0.11),
    inset 0 0 38px rgba(255, 209, 45, 0.035);
  backdrop-filter: blur(18px);
}

.calculator-promo-icon {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 0 14px;
  object-fit: contain;
  object-position: center center;
  background: #050505;
  border: 2px solid #ffc107;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 193, 7, 0.45);
}

.roof-calculator-promo::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -92px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 209, 45, 0.18);
  transform: rotate(45deg);
  pointer-events: none;
}

.roof-calculator-promo > strong {
  display: block;
  color: var(--white);
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: 35px;
  line-height: 0.98;
  text-align: left;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.42);
  text-transform: uppercase;
}

.roof-calculator-promo > strong span {
  color: var(--yellow);
}

.roof-calculator-promo > p {
  margin: 14px 0 20px;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
}

.roof-calculator-promo > small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

h2,
h3 {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0;
}

.calculator-launch {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  color: var(--black);
  background: var(--yellow);
  border: 1px solid #ffe47b;
  border-radius: 999px;
  box-shadow:
    0 0 22px rgba(255, 209, 45, 0.18),
    0 14px 32px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.calculator-launch:hover {
  transform: translateY(-4px);
  filter: brightness(1.06);
  box-shadow:
    0 0 28px rgba(255, 209, 45, 0.34),
    0 18px 38px rgba(0, 0, 0, 0.38);
}

.calculator-launch > b {
  color: var(--black);
  font-size: 20px;
}

.section {
  padding: 88px clamp(18px, 5vw, 72px);
}

.services-page {
  color: var(--white);
  background: #0b0e13;
}

.services-page-hero {
  position: relative;
  display: grid;
  min-height: 68svh;
  align-items: end;
  overflow: hidden;
  padding: 160px clamp(18px, 7vw, 104px) 72px;
  background: #07111f;
}

.services-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.94), rgba(5, 7, 10, 0.45) 72%, rgba(5, 7, 10, 0.2)),
    linear-gradient(0deg, rgba(5, 7, 10, 0.78), transparent 60%);
}

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

.services-page-hero > div {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.services-page-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 92px);
}

.services-page-hero p:last-child {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  font-weight: 700;
}

.services-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 36px clamp(18px, 7vw, 104px) 96px;
}

.service-directory-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background: #171a1f;
  border: 1px solid rgba(255, 209, 45, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  scroll-margin-top: 132px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-directory-card:hover,
.service-directory-card:focus-visible {
  color: var(--white);
  border-color: var(--yellow);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38), 0 0 24px rgba(255, 209, 45, 0.14);
  transform: translateY(-5px);
}

.service-directory-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 209, 45, 0.25);
}

.service-directory-card > span {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--yellow);
  background: rgba(5, 7, 10, 0.88);
  border: 1px solid rgba(255, 209, 45, 0.5);
  border-radius: 6px;
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.service-directory-card > div {
  display: flex;
  min-height: 220px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.service-directory-card .service-card-icon {
  align-self: center;
  width: 96px;
  height: 96px;
  margin-bottom: 16px;
  object-fit: contain;
  object-position: center center;
  background: #050505;
  border: 2px solid #ffc107;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 193, 7, 0.45);
  flex-shrink: 0;
}

.services-directory h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(24px, 2.2vw, 34px);
}

.services-directory p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.service-directory-card strong {
  margin-top: auto;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-directory-card strong::after {
  content: " \2192";
}

.service-detail-page {
  color: var(--white);
  background: #0b0e13;
}

.service-detail-hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: 160px clamp(18px, 7vw, 104px) 80px;
}

.service-detail-copy h1 {
  margin: 18px 0 22px;
  font-size: clamp(48px, 6vw, 86px);
}

.service-detail-copy > p:not(.section-kicker) {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
}

.service-detail-content {
  max-width: 700px;
  margin: -4px 0 32px;
}

.service-detail-content h2 {
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 24px;
}

.service-detail-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.service-detail-content li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.service-detail-content li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--yellow);
  border-radius: 50%;
}

.service-detail-content p {
  margin: 0;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-back-link {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-detail-media {
  overflow: hidden;
  border: 1px solid rgba(255, 209, 45, 0.35);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.service-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(36px, 6vw, 90px);
  padding: 86px clamp(18px, 7vw, 104px) 104px;
  color: var(--black);
  background: #f5f5f2;
}

.service-request-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 64px);
}

.service-request-copy > p {
  color: var(--muted);
  font-size: 18px;
}

.service-request-contact {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.service-request-contact a {
  display: flex;
  flex-direction: column;
  padding: 16px 18px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 8px;
}

.service-request-contact span {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-request-form .field-wide {
  grid-column: 1 / -1;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 36px;
}

.section-heading h2,
.emergency-text h2,
.appointment-copy h2,
.area-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.appointment-copy p,
.area-copy p {
  color: var(--muted);
  font-size: 18px;
}

.emergency-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 32px;
  align-items: center;
  margin: 28px clamp(18px, 5vw, 72px) 0;
  padding: 34px;
  position: relative;
  z-index: 3;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-2), var(--red));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.emergency-strip p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.emergency-whatsapp {
  color: var(--black);
  background: #25d366;
}

.emergency-outline {
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.74);
}

.problem-selector {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(520px, 1.25fr);
  gap: 42px;
  align-items: center;
  padding: 78px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.problem-selector h2,
.trust-section h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
}

.problem-selector-copy > p:last-child {
  color: var(--muted);
}

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

.problem-option-grid a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 176px;
  padding: 16px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 209, 45, 0.28);
  border-radius: 12px;
  text-align: center;
  transition: transform 200ms ease, background 200ms ease;
}

.problem-option-grid img {
  width: 120px;
  height: 120px;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: #050505;
  border: 2px solid #ffc107;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 193, 7, 0.45);
  flex-shrink: 0;
}

.problem-option-grid a:hover {
  transform: translateY(-3px);
  background: var(--black);
}

.problem-option-grid strong {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.gallery-card figcaption p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.gallery-card figcaption p b {
  color: var(--yellow);
}

.reviews-coming-soon {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(5, 7, 10, 0.08);
}

.reviews-coming-soon span {
  display: block;
  margin-bottom: 5px;
  color: var(--yellow-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-coming-soon strong {
  font-size: 20px;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(500px, 1.2fr);
  gap: 42px;
  align-items: center;
  padding: 72px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--black);
  border-top: 4px solid var(--yellow);
}

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

.trust-list span {
  padding: 14px 16px;
  background: #15191f;
  border-left: 3px solid var(--yellow);
  border-radius: 6px;
  font-weight: 900;
}

.appointment-form fieldset {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.appointment-form legend {
  padding: 0 8px;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.form-progress span {
  padding: 9px 7px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.photo-upload-emphasis {
  padding: 14px;
  background: rgba(255, 209, 45, 0.12);
  border: 2px dashed var(--yellow-2);
  border-radius: 8px;
}

.photo-upload-emphasis small {
  color: var(--muted);
  font-size: 12px;
  text-transform: none;
}

.emergency-media {
  position: relative;
  overflow: hidden;
  border: 5px solid rgba(5, 7, 10, 0.86);
  border-radius: 18px;
}

.emergency-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.emergency-media span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 9px 12px;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.roofing-weather {
  position: relative;
  margin: 28px clamp(18px, 5vw, 72px) 0;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, #244d72, #7399b7);
  border: 1px solid rgba(255, 209, 45, 0.42);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(5, 7, 10, 0.22);
}

.roofing-weather[data-weather-mode="sunny"] {
  background: linear-gradient(145deg, #157bc0 0%, #6fc0ec 58%, #f3c85f 100%);
}

.roofing-weather[data-weather-mode="cloudy"] {
  background: linear-gradient(145deg, #405d75, #9aaab6);
}

.roofing-weather[data-weather-mode="rain"] {
  background: linear-gradient(145deg, #13283b, #4a6479);
}

.roofing-weather[data-weather-mode="snow"] {
  background: linear-gradient(145deg, #667f96, #d2dfe8);
}

.roofing-weather::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--yellow);
}

.weather-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.weather-heading h2 {
  max-width: 820px;
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
}

.weather-heading p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.weather-radar-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(255, 209, 45, 0.2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 220ms ease, filter 220ms ease;
}

.weather-radar-button:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.weather-status {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 34px;
  padding: 22px;
  background: #15191f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 5px solid #8b929c;
  border-radius: 8px;
}

.weather-status-dot,
.weather-day-status {
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  background: #8b929c;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(139, 146, 156, 0.12);
}

.weather-status small {
  display: block;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.weather-status strong {
  display: block;
  margin-top: 3px;
  font-size: clamp(20px, 2.5vw, 30px);
}

.weather-status p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.weather-status.is-excellent { border-left-color: #32c56b; }
.weather-status.is-excellent .weather-status-dot,
.weather-day.is-excellent .weather-day-status {
  background: #32c56b;
  box-shadow: 0 0 0 5px rgba(50, 197, 107, 0.13);
}

.weather-status.is-limited { border-left-color: var(--yellow); }
.weather-status.is-limited .weather-status-dot,
.weather-day.is-limited .weather-day-status {
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 209, 45, 0.13);
}

.weather-status.is-poor { border-left-color: var(--red); }
.weather-status.is-poor .weather-status-dot,
.weather-day.is-poor .weather-day-status {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(227, 6, 19, 0.14);
}

.weather-current-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.weather-current-grid article {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 122px;
  padding: 18px;
  background: #15191f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 3px solid var(--yellow);
  border-radius: 8px;
}

.weather-current-grid span {
  grid-column: 1 / -1;
  align-self: start;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.weather-current-grid strong {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.9;
}

.weather-current-grid small {
  color: var(--yellow);
  font-weight: 900;
}

.weather-forecast-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin: 34px 0 14px;
}

.weather-forecast-heading span {
  display: block;
  font-size: 20px;
  font-weight: 900;
}

.weather-forecast-heading small,
.weather-forecast-heading p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.weather-forecast-heading p {
  margin: 0;
}

.weather-forecast-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.weather-day {
  position: relative;
  min-width: 0;
  padding: 16px 12px;
  background: #15191f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.weather-day-status {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 8px;
  height: 8px;
  margin: 0;
}

.weather-day > small {
  display: block;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.weather-day > strong {
  display: block;
  min-height: 44px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.25;
}

.weather-day > p {
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, 0.7);
}

.weather-day > p b {
  color: var(--white);
  font-size: 24px;
}

.weather-day dl,
.weather-day dl div {
  margin: 0;
}

.weather-day dl div {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
}

.weather-day dd {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.weather-forecast-placeholder {
  grid-column: 1 / -1;
  padding: 28px;
  color: rgba(255, 255, 255, 0.64);
  background: #15191f;
  border: 1px dashed rgba(255, 209, 45, 0.3);
  border-radius: 8px;
  text-align: center;
}

.weather-intelligence-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.weather-intelligence-row span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.weather-intelligence-row i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--yellow);
  border-radius: 50%;
}

.weather-source {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.weather-source a {
  color: var(--yellow);
  text-decoration: underline;
}

.weather-ambience {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.weather-ambience span {
  position: absolute;
  opacity: 0;
  transition: opacity 400ms ease;
}

.roofing-weather[data-weather-mode="sunny"] .weather-ambience span:first-child {
  top: -110px;
  right: -70px;
  width: 330px;
  height: 330px;
  opacity: 0.22;
  background: radial-gradient(circle, rgba(255, 209, 45, 0.62), rgba(255, 209, 45, 0) 68%);
  animation: weather-sun 8s ease-in-out infinite alternate;
}

.roofing-weather[data-weather-mode="cloudy"] .weather-ambience span,
.roofing-weather[data-weather-mode="rain"] .weather-ambience span {
  width: 260px;
  height: 72px;
  opacity: 0.08;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  filter: blur(12px);
  animation: weather-cloud 24s linear infinite;
}

.roofing-weather[data-weather-mode="cloudy"] .weather-ambience span:nth-child(1),
.roofing-weather[data-weather-mode="rain"] .weather-ambience span:nth-child(1) {
  top: 16%;
  left: -280px;
}

.roofing-weather[data-weather-mode="cloudy"] .weather-ambience span:nth-child(2),
.roofing-weather[data-weather-mode="rain"] .weather-ambience span:nth-child(2) {
  top: 48%;
  left: -420px;
  animation-delay: -9s;
}

.roofing-weather[data-weather-mode="rain"] .weather-ambience span:nth-child(3) {
  inset: 0;
  width: auto;
  height: auto;
  opacity: 0.13;
  background: repeating-linear-gradient(112deg, transparent 0 20px, rgba(255, 255, 255, 0.32) 21px 22px, transparent 23px 44px);
  border-radius: 0;
  filter: none;
  animation: weather-rain 1.2s linear infinite;
}

.roofing-weather[data-weather-mode="night"] {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 252, 215, 0.7) 0 2%, rgba(255, 252, 215, 0.1) 3% 8%, transparent 14%),
    linear-gradient(145deg, #071426, #18375d 68%, #39284f);
}

.roofing-weather[data-weather-mode="night"] .weather-ambience span:first-child {
  top: 36px;
  right: 8%;
  width: 180px;
  height: 180px;
  opacity: 0.16;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0) 68%);
}

.weather-heading,
.weather-city-grid,
.weather-source {
  position: relative;
  z-index: 1;
}

.weather-city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.weather-service-areas {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-service-areas a {
  padding: 8px 11px;
  color: var(--white);
  background: rgba(255, 209, 45, 0.08);
  border: 1px solid rgba(255, 209, 45, 0.28);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.weather-city-card {
  position: relative;
  min-width: 0;
  min-height: 240px;
  overflow: hidden;
  padding: 24px;
  background: #315d89;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 3px solid #8b929c;
  border-radius: 14px;
  box-shadow: inset 0 -90px 90px rgba(3, 8, 15, 0.38);
}

.weather-city-card > *:not(.weather-card-sky) {
  position: relative;
  z-index: 2;
}

.weather-card-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.weather-scene-sunny {
  background: linear-gradient(160deg, #1d83cf 0%, #76c7f1 58%, #f5c85b 100%);
}

.weather-scene-sunny .weather-card-sky::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 28px;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, #fff7b0 0 18%, #ffd84a 38%, rgba(255, 216, 74, 0) 70%);
  border-radius: 50%;
  animation: weather-card-sun 5s ease-in-out infinite alternate;
}

.weather-scene-cloudy {
  background: linear-gradient(160deg, #54728c, #aab7c1);
}

.weather-scene-cloudy .weather-card-sky i,
.weather-scene-rain .weather-card-sky i {
  position: absolute;
  width: 180px;
  height: 56px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  filter: blur(8px);
  animation: weather-card-cloud 15s linear infinite;
}

.weather-card-sky i:nth-child(1) { top: 28px; left: -190px; }
.weather-card-sky i:nth-child(2) { top: 90px; left: -280px; animation-delay: -6s; }
.weather-card-sky i:nth-child(3) { top: 150px; left: -230px; animation-delay: -11s; }

.weather-scene-rain {
  background: linear-gradient(160deg, #172c40, #52697c);
}

.weather-scene-rain .weather-card-sky::after {
  content: "";
  position: absolute;
  inset: -50px 0 0;
  background: repeating-linear-gradient(112deg, transparent 0 18px, rgba(210, 235, 255, 0.44) 19px 21px, transparent 22px 38px);
  animation: weather-card-rain 0.85s linear infinite;
}

.weather-scene-night {
  background:
    radial-gradient(circle at 78% 22%, rgba(248, 246, 213, 0.9) 0 3%, rgba(248, 246, 213, 0.2) 4% 9%, transparent 15%),
    radial-gradient(circle at 20% 18%, #fff 0 1px, transparent 2px),
    radial-gradient(circle at 48% 35%, #fff 0 1px, transparent 2px),
    linear-gradient(160deg, #071223, #19365d 72%, #492d65);
}

.weather-scene-snow {
  background: linear-gradient(160deg, #728aa1, #d8e2ea);
}

.weather-city-card.is-excellent { border-bottom-color: #32c56b; }
.weather-city-card.is-good,
.weather-city-card.is-limited { border-bottom-color: var(--yellow); }
.weather-city-card.is-poor { border-bottom-color: var(--red); }
.weather-city-card.is-unavailable { border-bottom-color: #8b929c; }

.weather-city-heading,
.weather-city-reading,
.weather-city-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.weather-city-heading {
  align-items: flex-start;
}

.weather-city-heading small {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.weather-city-heading h3 {
  margin: 3px 0 0;
  font-size: 20px;
}

.weather-city-icon {
  color: var(--yellow);
  font-size: 34px;
  line-height: 1;
}

.weather-city-reading {
  align-items: end;
  margin-top: 20px;
}

.weather-city-reading strong {
  font-size: 35px;
  line-height: 0.9;
}

.weather-city-reading span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-align: right;
}

.weather-city-unavailable {
  opacity: 0.7;
}

.weather-city-meta {
  margin-top: 16px;
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 700;
}

.weather-city-status {
  display: flex;
  min-height: 35px;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.weather-city-status i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: #8b929c;
  border-radius: 50%;
}

.weather-city-card.is-excellent .weather-city-status i { background: #32c56b; }
.weather-city-card.is-good .weather-city-status i,
.weather-city-card.is-limited .weather-city-status i { background: var(--yellow); }
.weather-city-card.is-poor .weather-city-status i { background: var(--red); }

@keyframes weather-sun {
  to { transform: scale(1.08); opacity: 0.3; }
}

@keyframes weather-cloud {
  to { transform: translateX(calc(100vw + 720px)); }
}

@keyframes weather-rain {
  to { background-position: 0 70px; }
}

@keyframes weather-card-sun {
  to { transform: scale(1.12); filter: brightness(1.08); }
}

@keyframes weather-card-cloud {
  to { transform: translateX(850px); }
}

@keyframes weather-card-rain {
  to { transform: translateY(80px); }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.why-card,
.review-card,
.gallery-card,
.appointment-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(5, 7, 10, 0.08);
}

.service-card {
  overflow: hidden;
  min-height: 230px;
  padding: 0;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.service-card-body {
  padding: 20px;
}

.service-card span,
.why-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  min-height: 50px;
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.18;
}

.service-card p,
.why-card p,
.review-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

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

.why-card {
  padding: 24px;
}

.why-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.gallery {
  color: var(--white);
  background: var(--navy);
}

.gallery .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

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

.gallery-card {
  overflow: hidden;
  margin: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card figcaption {
  margin: 0;
  padding: 20px;
}

.gallery-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card strong {
  font-size: 18px;
}

.area-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 88px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span,
.area-list a {
  padding: 12px 14px;
  color: var(--white);
  background: var(--navy);
  border-left: 4px solid var(--yellow);
  border-radius: 999px;
  font-weight: 900;
}

.area-list a:hover {
  color: var(--black);
  background: var(--yellow);
}

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

.review-card {
  min-height: 230px;
  padding: 26px;
}

.stars {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 11px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
}

.review-card strong {
  display: block;
  margin-top: 18px;
}

.appointment-section {
  display: block;
  padding: 88px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, var(--paper), var(--white));
}

.appointment-copy {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.inspection-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.inspection-call {
  color: var(--white);
  background: var(--navy);
}

.inspection-cta-actions .official-whatsapp {
  color: var(--black);
}

.contact-buttons {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-button {
  padding: 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(5, 7, 10, 0.12);
}

.contact-button span,
.site-footer h3 {
  display: block;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-button strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.contact-whatsapp {
  color: var(--black);
  background: linear-gradient(135deg, #44f187, var(--whatsapp));
}

.contact-whatsapp span {
  color: rgba(0, 0, 0, 0.7);
}

.official-whatsapp {
  background: #25d366;
}

.official-whatsapp img {
  width: 22px;
  height: 22px;
}

.official-whatsapp:hover,
.official-whatsapp-float:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.emergency-request {
  margin-top: 18px;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.contact-social > span {
  width: 100%;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  background: var(--yellow);
  border-radius: 7px;
  font-weight: 900;
}

.contact-social img {
  width: 18px;
  height: 18px;
}

.preferred-partners {
  display: grid;
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1.52fr);
  gap: 28px 48px;
  align-items: center;
  padding: 64px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
  border-top: 4px solid var(--yellow);
}

.preferred-partners h2,
.preferred-partners p {
  margin: 0;
}

.preferred-partners > p {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.74);
}

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

.partner-card {
  min-width: 0;
  min-height: 220px;
  padding: 22px;
  color: var(--black);
  background: var(--white);
  border-bottom: 4px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.partner-card .partner-wordmark {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 10px;
  border-bottom: 1px solid rgba(5, 7, 10, 0.1);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 36px;
  letter-spacing: 0;
  text-align: center;
}

.partner-card .partner-gaf { color: #d71920; }
.partner-card .partner-iko { color: #1b4f8a; font-style: italic; }
.partner-card .partner-bp { color: #cf202f; }
.partner-card .partner-certainteed {
  color: #1f5b2b;
  font-size: 25px;
}

.partner-card .partner-bp small {
  margin-left: 7px;
  color: #222;
  font-size: 13px;
  text-transform: uppercase;
}

.partner-card p {
  color: #555d68;
  font-size: 14px;
  line-height: 1.55;
}

.material-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.material-recommendation {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 209, 45, 0.7);
}

.partner-card,
.weather-service-areas a {
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
}

.weather-service-areas a:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
}

.appointment-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d9d8d2;
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--black);
  background: #fbfbf8;
  font: inherit;
  text-transform: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 209, 45, 0.42);
  border-color: var(--yellow-2);
}

textarea {
  resize: vertical;
}

input[type="file"] {
  padding: 12px;
  background: var(--white);
}

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

.form-note,
.form-status {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  min-height: 22px;
  color: var(--red);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
  gap: 32px;
  padding: 54px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--black);
}

.site-footer img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  margin-bottom: 14px;
  border-radius: 50%;
}

.site-footer strong,
.site-footer a {
  display: block;
  color: var(--white);
  font-weight: 900;
}

.site-footer p {
  margin: 10px 0 0;
}

.footer-hours p strong {
  margin-bottom: 2px;
  color: var(--yellow);
  font-size: 11px;
  text-transform: uppercase;
}

.site-footer h3 {
  margin: 0 0 12px;
}

.wsib-badge {
  display: inline-flex;
  margin-top: 16px;
  padding: 9px 12px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-icons a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 12px;
  text-transform: uppercase;
}

.social-icons img,
.site-footer .social-icons img {
  width: 18px;
  height: 18px;
  margin: 0;
  border-radius: 0;
}

.follow-heading {
  margin-top: 24px !important;
}

.footer-legal {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-legal p {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.footer-legal > div {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-legal small {
  grid-column: 1 / -1;
  max-width: 1100px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.6;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(5, 7, 10, 0.25);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.float-whatsapp {
  color: var(--white);
  background: #25d366;
  transition: transform 220ms ease, filter 220ms ease;
}

.official-whatsapp-float {
  position: relative;
}

.official-whatsapp-float img {
  width: 30px;
  height: 30px;
}

.official-whatsapp-float::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 72px;
  width: max-content;
  max-width: 230px;
  padding: 9px 11px;
  color: var(--white);
  background: var(--black);
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 12px;
  text-transform: none;
}

.official-whatsapp-float:hover::before,
.official-whatsapp-float:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.float-call {
  color: var(--white);
  background: var(--red);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.thank-you-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(7, 17, 31, 0.98), rgba(7, 17, 31, 0.74)),
    url("assets/hero-roofing-project-crop.jpeg") center bottom / cover;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  align-content: center;
  width: min(780px, 100%);
  padding: 48px clamp(18px, 5vw, 72px);
}

.thank-you img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 22px;
  border-radius: 50%;
}

.thank-you h1 {
  margin-bottom: 14px;
}

.thank-you p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.thank-you p + p {
  margin-top: 8px;
}

.thank-you .hero-actions {
  margin-top: 30px;
}

.seo-landing-page {
  color: var(--black);
  background: var(--paper);
}

.seo-landing-page .site-header {
  justify-content: space-between;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 48px;
  align-items: center;
  min-height: 76vh;
  padding: 150px clamp(18px, 7vw, 100px) 72px;
  color: var(--white);
  background: var(--navy);
}

.seo-hero h1 {
  max-width: 820px;
  margin: 0 0 20px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
}

.seo-hero p:not(.section-kicker) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 19px;
}

.seo-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 5px solid var(--yellow);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.seo-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 76px clamp(18px, 7vw, 100px);
}

.seo-content article {
  padding: 30px;
  background: var(--white);
  border-top: 4px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(5, 7, 10, 0.08);
}

.seo-content h2,
.seo-signs h2,
.seo-faq h2,
.seo-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
}

.seo-signs {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(420px, 1.25fr);
  gap: 44px;
  align-items: center;
  padding: 72px clamp(18px, 7vw, 100px);
  color: var(--white);
  background: var(--black);
}

.seo-signs ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-signs li {
  padding: 15px;
  background: #15191f;
  border-left: 3px solid var(--yellow);
  border-radius: 6px;
  font-weight: 900;
}

.seo-faq {
  padding: 72px clamp(18px, 7vw, 100px);
  background: var(--white);
}

.seo-faq details {
  max-width: 900px;
  margin-top: 10px;
  padding: 18px 20px;
  background: var(--paper);
  border-left: 4px solid var(--yellow);
  border-radius: 6px;
}

.seo-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.seo-faq details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.seo-cta {
  padding: 70px clamp(18px, 7vw, 100px);
  color: var(--white);
  background: var(--navy);
  text-align: center;
}

.seo-cta p {
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.7);
}

.seo-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: center;
  padding: 30px 18px;
  color: var(--white);
  background: var(--black);
}

.seo-footer strong {
  color: var(--yellow);
}

@media (max-width: 1180px) {
  .weather-city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .weather-forecast-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .service-detail-hero,
  .service-request-section {
    grid-template-columns: 1fr;
  }

  .service-detail-media {
    width: min(760px, 100%);
  }

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

  .site-nav {
    gap: 12px;
  }

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

@media (max-width: 960px) {
  .hero-panel {
    grid-template-columns: 1fr;
  }

  .emergency-strip,
  .area-section,
  .appointment-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .problem-selector,
  .trust-section,
  .seo-hero,
  .seo-content,
  .seo-signs {
    grid-template-columns: 1fr;
  }

  .weather-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .weather-radar-button {
    width: fit-content;
  }

  .weather-current-grid,
  .weather-intelligence-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .preferred-partners {
    grid-template-columns: 1fr;
  }

  .preferred-partners > p {
    grid-column: auto;
  }

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

@media (max-width: 700px) {
  .nav-toggle {
    display: grid;
    width: 52px;
    padding: 0;
    place-content: center;
    gap: 4px;
  }

  .site-nav {
    position: fixed;
    inset: 110px 18px auto 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    max-height: calc(100vh - 128px);
    overflow-y: auto;
    padding: 16px;
    background: rgba(5, 7, 10, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow: var(--shadow);
    margin-left: 0;
    transform: none;
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .header-actions {
    display: none;
  }

  .site-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 0 12px;
    border-radius: 7px;
  }

  .site-nav > a:hover,
  .nav-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-dropdown-menu {
    display: block;
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    padding: 0 8px;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    transform: none;
    transition: max-height 240ms ease, padding 240ms ease;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 560px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .mobile-nav-cta {
    display: flex;
    margin-top: 8px;
    color: var(--black) !important;
    background: var(--yellow);
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 76px;
    height: 76px;
  }

  .hero {
    min-height: 92svh;
    padding: 112px 18px 48px;
  }

  .hero-logo {
    width: 118px;
    height: 118px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.66)),
      linear-gradient(0deg, rgba(5, 7, 10, 0.58), transparent 60%);
  }

  .hero-actions,
  .emergency-actions {
    display: grid;
  }

  .problem-selector,
  .trust-section {
    padding: 58px 18px;
  }

  .seo-hero {
    min-height: auto;
    padding: 138px 18px 58px;
  }

  .seo-hero h1 {
    font-size: 45px;
  }

  .seo-content,
  .seo-signs,
  .seo-faq,
  .seo-cta {
    padding: 58px 18px;
  }

  .seo-signs ul {
    grid-template-columns: 1fr;
  }

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

  .trust-list {
    grid-template-columns: 1fr;
  }

  .problem-option-grid a {
    min-height: 164px;
    padding: 12px 8px;
  }

  .problem-option-grid img {
    width: 96px;
    height: 96px;
  }

  .reviews-coming-soon {
    align-items: stretch;
    flex-direction: column;
  }

  .reviews-coming-soon .button {
    width: 100%;
  }

  .form-progress {
    grid-template-columns: 1fr;
  }

  .roof-calculator-promo {
    width: min(360px, 100%);
    padding: 20px;
  }

  .roof-calculator-promo > strong {
    font-size: 31px;
  }

  .calculator-launch {
    font-size: 14px;
  }

  .button,
  .nav-toggle {
    min-height: 50px;
  }

  .section,
  .area-section,
  .appointment-section {
    padding: 58px 18px;
  }

  .services-page-hero {
    min-height: 62svh;
    padding: 140px 18px 48px;
  }

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

  .services-directory {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 18px 70px;
  }

  .service-directory-card > div {
    min-height: auto;
    padding: 20px;
  }

  .service-directory-card > span {
    top: 12px;
    left: 12px;
    width: 46px;
    height: 46px;
    font-size: 21px;
  }

  .service-detail-hero {
    min-height: auto;
    gap: 34px;
    padding: 140px 18px 58px;
  }

  .service-detail-copy h1 {
    font-size: 46px;
  }

  .service-request-section {
    gap: 32px;
    padding: 58px 18px 76px;
  }

  .service-request-form {
    grid-template-columns: 1fr;
  }

  .service-request-form .field-wide {
    grid-column: auto;
  }

  .emergency-strip {
    margin: 24px 18px 0;
    padding: 22px;
  }

  .roofing-weather {
    margin: 20px 18px 0;
    padding: 26px 18px;
    border-radius: 12px;
  }

  .weather-heading h2 {
    font-size: 34px;
  }

  .weather-radar-button {
    width: 100%;
  }

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

  .weather-city-grid {
    grid-template-columns: 1fr;
  }

  .weather-city-card {
    min-height: auto;
  }

  .weather-current-grid article {
    min-height: 108px;
    padding: 14px;
  }

  .weather-current-grid strong {
    font-size: 38px;
  }

  .weather-forecast-heading {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

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

  .weather-day:last-child {
    grid-column: 1 / -1;
  }

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

  .service-grid,
  .why-grid,
  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .preferred-partners {
    padding: 52px 18px;
  }

  .partner-list {
    grid-template-columns: 1fr;
  }

  .inspection-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .inspection-cta-actions .button {
    width: 100%;
  }

  .footer-legal {
    grid-template-columns: 1fr;
  }

  .footer-legal > div {
    justify-content: flex-start;
  }

  .footer-legal small {
    grid-column: auto;
  }

  .service-card,
  .review-card {
    min-height: auto;
  }

  .appointment-form {
    padding: 20px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-actions a {
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .weather-ambience span {
    animation: none !important;
  }
}
