:root {
  --black: #050505;
  --charcoal: #171717;
  --charcoal-2: #242424;
  --red: #ed1c24;
  --red-dark: #ba1218;
  --white: #ffffff;
  --soft-white: #f7f7f7;
  --grey: #a8a8a8;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(5, 5, 5, 0.12);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  animation: pageEntrance 0.55s ease both;
}

body.page-loaded {
  opacity: 1;
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--line);
  transition: padding 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled {
  padding-top: 6px;
  padding-bottom: 6px;
  background: rgba(5, 5, 5, 0.985);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: min(260px, 42vw);
  height: 70px;
  object-fit: contain;
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.035);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.93rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

.header-actions {
  display: flex;
  justify-self: end;
  gap: 10px;
}

.header-call,
.header-quote {
  justify-self: end;
  padding: 12px 16px;
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.header-call:hover,
.header-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(237, 28, 36, 0.22);
}

.header-call {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.header-quote {
  background: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: 42px;
  min-height: 760px;
  padding: 120px clamp(20px, 6vw, 76px) 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.25)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1800&q=80") center/cover;
  background-attachment: fixed;
  will-change: background-position;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: var(--red);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: fadeUp 0.8s ease both;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-reveal {
  opacity: 0;
  animation: textReveal 0.8s ease forwards;
}

.hero-reveal:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-reveal:nth-child(2) {
  animation-delay: 0.24s;
}

.hero-reveal:nth-child(3) {
  animation-delay: 0.38s;
}

.hero p,
.page-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions,
.cta-actions,
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(237, 28, 36, 0.28);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.24), transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.button:hover::after {
  transform: translateX(130%);
}

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

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary,
.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.74);
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: fadeUp 0.9s ease 0.12s both;
}

.hero-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--grey);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  font-size: 1.12rem;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 92px 20px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: stretch;
  gap: 28px;
}

.about-preview-copy p {
  max-width: 780px;
  color: #555;
  font-size: 1.05rem;
}

.about-preview-card {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 280px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.88)),
    url("https://images.unsplash.com/photo-1615873968403-89e068629265?auto=format&fit=crop&w=900&q=80") center/cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-zoom-card {
  overflow: hidden;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.image-zoom-card:hover {
  transform: scale(1.015);
  filter: contrast(1.04);
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 20px 10px;
  gap: 18px;
}

.stat-item {
  padding: 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--charcoal-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.stat-item strong {
  display: block;
  color: var(--red);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.stat-item span:last-child {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  text-transform: uppercase;
}

.about-preview-card strong {
  font-size: 1.45rem;
  line-height: 1.18;
  text-transform: uppercase;
}

.about-preview-card span {
  color: rgba(255, 255, 255, 0.78);
}

h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1.08;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 10px;
  color: inherit;
  font-size: 1.18rem;
}

.service-grid,
.value-grid,
.portfolio-grid,
.project-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.service-card,
.value-grid article {
  min-height: 220px;
  padding: 28px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover,
.value-grid article:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 28, 36, 0.32);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
}

.service-card:hover span {
  background: var(--red);
}

.service-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
  font-weight: 900;
}

.service-card p,
.value-grid p,
.intro-copy p,
.cta-band p {
  margin: 0;
  color: #5a5a5a;
}

.center-action {
  margin-top: 30px;
}

.text-link {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: 640px;
  color: var(--white);
  background: var(--black);
}

.split-copy {
  align-self: center;
  padding: 78px clamp(24px, 5vw, 74px);
}

.split-copy h2,
.dark-section h2,
.cta-band h2,
.contact-panel h2 {
  color: var(--white);
}

.split-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.split-image {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.image-room {
  background-image:
    linear-gradient(rgba(237, 28, 36, 0.06), rgba(0, 0, 0, 0.18)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1400&q=80");
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

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

.feature-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: rgba(255, 255, 255, 0.72);
}

.dark-section {
  max-width: none;
  padding-left: clamp(20px, 6vw, 76px);
  padding-right: clamp(20px, 6vw, 76px);
  color: var(--white);
  background: var(--charcoal);
}

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

.project-card,
.portfolio-card {
  position: relative;
  display: flex;
  min-height: 330px;
  align-items: end;
  overflow: hidden;
  padding: 24px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.project-card:hover,
.portfolio-card:hover {
  transform: translateY(-6px);
  filter: contrast(1.05);
}

.project-card::after,
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(237, 28, 36, 0.2), transparent 45%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.project-card:hover::after,
.portfolio-card:hover::after {
  opacity: 1;
}

.project-card::before,
.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.88));
}

.project-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.35s ease;
}

.project-card:hover .project-image,
.portfolio-card:hover .project-image {
  transform: scale(1.06);
}

.project-card div,
.portfolio-card div {
  position: relative;
  z-index: 2;
}

.project-card span,
.portfolio-card span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.project-basement {
  background-image: url("https://images.unsplash.com/photo-1556912172-45b7abe8b7e1?auto=format&fit=crop&w=1000&q=80");
}

.project-commercial {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1000&q=80");
}

.project-kitchen {
  background-image: url("https://images.unsplash.com/photo-1600585152220-90363fe7e115?auto=format&fit=crop&w=1000&q=80");
}

.project-concrete {
  background-image: url("/images/concrete-wall-work.png");
}

.project-washroom {
  background-image: url("https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&w=1000&q=80");
}

.project-flooring {
  background-image: url("https://images.unsplash.com/photo-1581858726788-75bc0f6a952d?auto=format&fit=crop&w=1000&q=80");
}

.project-house {
  background-image: url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1000&q=80");
}

.project-remodel {
  background-image: url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1000&q=80");
}

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

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

.testimonial-card {
  min-height: 260px;
  padding: 28px;
  background: var(--soft-white);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.testimonial-card p {
  margin: 0 0 22px;
  color: #4f4f4f;
  font-size: 1.02rem;
}

.testimonial-card strong {
  color: var(--black);
}

.before-after-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 92px 20px;
}

.before-after-slider {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.before-after-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.after-image-wrap {
  position: absolute;
  inset: 0;
  width: 55%;
  overflow: hidden;
}

.after-image {
  width: calc(100vw - 40px);
  max-width: var(--max-width);
}

.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 55%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.55);
}

.slider-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border: 2px solid var(--white);
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.slider-label {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
}

.before-label {
  right: 18px;
}

.after-label {
  left: 18px;
}

.slider-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto 90px;
  padding: 44px;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--charcoal-2));
  border-radius: var(--radius);
  border-left: 8px solid var(--red);
}

.site-footer {
  display: block;
  padding: 60px 80px 25px;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--grey);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--grey);
  font-weight: 800;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--grey);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}

.footer-bottom p {
  margin: 3px 0;
  color: var(--grey);
}

.developer-credit-link {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  transition: color 0.22s ease;
}

.footer-policy-link {
  position: relative;
  color: var(--grey);
  font-weight: 800;
  transition: color 0.22s ease;
}

.developer-credit-link::after,
.footer-policy-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.developer-credit-link:hover,
.footer-policy-link:hover {
  color: var(--red);
}

.developer-credit-link:hover::after,
.footer-policy-link:hover::after {
  transform: scaleX(1);
}

.footer-column a,
.contact-link,
.instagram-link {
  transition: color 0.22s ease, transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.contact-link:hover,
.footer-column a:hover {
  color: var(--red);
  transform: translateY(-1px);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.instagram-link:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.instagram-link .social-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
}

.contact-list .instagram-link:hover {
  border-color: rgba(237, 28, 36, 0.48);
  background: rgba(237, 28, 36, 0.12);
}

.contact-list .contact-link:hover {
  border-color: rgba(237, 28, 36, 0.48);
  background: rgba(237, 28, 36, 0.12);
}

.contact-list .instagram-link strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 500px;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 76px) 74px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.46)),
    url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.services-hero {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.48)),
    url("https://images.unsplash.com/photo-1505798577917-a65157d3320a?auto=format&fit=crop&w=1800&q=80");
}

.portfolio-hero {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=80");
}

.contact-hero {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1800&q=80");
}

.privacy-hero {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=80");
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}

.stats-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.stats-panel div {
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
}

.stats-panel strong,
.stats-panel span {
  display: block;
}

.stats-panel strong {
  font-size: 1.5rem;
}

.stats-panel span {
  color: var(--grey);
}

.values-section {
  padding: 90px clamp(20px, 6vw, 76px);
  background: var(--soft-white);
}

.values-section .section-heading,
.values-section .value-grid {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

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

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

.policy-section {
  max-width: 980px;
}

.policy-content {
  display: grid;
  gap: 28px;
}

.policy-content article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--dark-line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

.policy-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
}

.policy-content p {
  margin: 0;
  color: #555;
}

.policy-content p + p {
  margin-top: 12px;
}

.policy-updated {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.policy-contact-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  color: #555;
  list-style: none;
}

.policy-contact-list a {
  color: var(--charcoal);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, 420px) minmax(0, 1fr);
  gap: 34px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 92px 20px;
}

.contact-panel,
.contact-form {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 30px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--line);
}

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

.contact-list a,
.contact-list div {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-list span {
  color: var(--grey);
  font-size: 0.84rem;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--dark-line);
  animation: formEntrance 0.75s ease both;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: var(--black);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--charcoal);
  background: var(--soft-white);
  border: 1px solid #d8d8d8;
  border-radius: var(--radius);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(237, 28, 36, 0.16);
  border-color: var(--red);
}

textarea {
  resize: vertical;
}

.form-submit {
  width: fit-content;
}

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav.open {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: grid;
    padding: 14px;
    background: var(--black);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.open a {
    padding: 13px 14px;
  }

  .hero,
  .intro-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 700px;
  }

  .service-grid,
  .full-service-grid,
  .detailed-service-grid,
  .value-grid,
  .portfolio-grid,
  .project-grid,
  .testimonial-grid,
  .about-preview,
  .stats-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    background-attachment: scroll;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    width: auto;
    max-width: min(190px, 46vw);
    height: 50px;
  }

  .hero,
  .page-hero {
    min-height: 590px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .service-grid,
  .full-service-grid,
  .detailed-service-grid,
  .value-grid,
  .portfolio-grid,
  .project-grid,
  .split-section,
  .testimonial-grid,
  .about-preview,
  .choice-grid,
  .stats-section {
    grid-template-columns: 1fr;
  }

  .section,
  .values-section,
  .contact-layout {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding: 48px 22px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .button,
  .form-submit {
    width: 100%;
  }

  .before-after-slider {
    min-height: 390px;
  }
}

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

  .brand-logo {
    width: auto;
    max-width: min(170px, 45vw);
    height: 50px;
  }

  .hero-card,
  .service-card,
  .contact-panel,
  .contact-form,
  .cta-band {
    padding: 22px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageEntrance {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
    clip-path: inset(0 0 100% 0);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes formEntrance {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
