:root {
  --red: #e10812;
  --red-dark: #9d0710;
  --ink: #202125;
  --black: #111111;
  --muted: #62646b;
  --line: #e2e3e7;
  --soft: #f6f6f7;
  --paper: #ffffff;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.13);
  --radius: 8px;
  --body: "Inter", Arial, sans-serif;
  --display: "Barlow Condensed", Impact, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 227, 231, 0.75);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1440px, calc(100% - 40px));
  min-height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.logo-mark {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.logo-ring {
  fill: none;
  stroke: var(--red-dark);
  stroke-width: 4;
  stroke-linecap: round;
}

.logo-house { fill: var(--red); }
.logo-door {
  fill: none;
  stroke: #fff;
  stroke-width: 5;
  stroke-linecap: round;
}
.logo-brush { fill: var(--ink); }
.logo-dot { fill: var(--ink); }

.brand-copy {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
  line-height: 1;
}

.brand-copy strong {
  color: var(--red-dark);
  font: 800 1.7rem/0.9 var(--display);
  font-style: italic;
}

.brand-copy small {
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a:not(.nav-call) {
  position: relative;
  padding: 10px 0;
}

.nav-links a:not(.nav-call)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 3px;
  background: var(--red);
  transition: right 0.2s ease;
}

.nav-links a:hover::after { right: 0; }

.nav-call {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 24px rgba(225, 8, 18, 0.22);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  width: min(1440px, calc(100% - 40px));
  min-height: clamp(640px, calc(100vh - 90px), 810px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
  padding: 36px 0 42px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 38px 0;
}

.hero-copy h1,
.section-head h2,
.process-copy h2,
.contact-copy h2,
.about-copy h2 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 535px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.hero-copy h1 span {
  display: block;
  color: var(--red);
}

.hero-copy p {
  max-width: 500px;
  margin-bottom: 30px;
  color: #3d3f45;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: 800 0.92rem var(--body);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 16px 34px rgba(225, 8, 18, 0.24);
}

.button.secondary {
  color: var(--red);
  background: #fff;
  border-color: var(--red);
}

.contact-strip,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink);
  font-weight: 600;
}

.contact-strip a,
.contact-list a,
.contact-list > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-strip span,
.contact-list span span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
}

.hero-visual::before,
.contact-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 470px;
  height: 760px;
  border-left: 70px solid var(--red);
  border-right: 56px solid var(--red-dark);
  border-radius: 50%;
  transform: rotate(7deg);
  pointer-events: none;
}

.hero-visual::before {
  left: -82px;
  top: -78px;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

section {
  width: min(1440px, 100%);
  margin-inline: auto;
  padding: 92px 24px;
}

.centered {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head p,
.process-copy > p:first-child,
.contact-copy > p:first-child,
.about-copy > p:first-child {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head h2,
.process-copy h2,
.contact-copy h2,
.about-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.09);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-image,
.project-thumb {
  min-height: 190px;
  background-image: url("../assets/service-collage.png");
  background-size: 200% 200%;
}

.service-image.interior,
.project-thumb.living { background-position: left top; }
.service-image.exterior,
.project-thumb.exterior { background-position: right top; }
.service-image.plaster,
.project-thumb.plaster { background-position: left bottom; }
.service-image.fence,
.project-thumb.fence { background-position: right bottom; }

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: -24px 0 18px 24px;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 1.1rem;
  font-weight: 800;
}

.service-card h3,
.service-card p {
  padding-right: 24px;
  padding-left: 24px;
}

.service-card h3 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 1.16rem;
}

.service-card p {
  min-height: 104px;
  margin-bottom: 26px;
  color: var(--muted);
}

.process {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: center;
  background: var(--soft);
  box-shadow: 0 0 0 100vmax var(--soft);
  clip-path: inset(0 -100vmax);
}

.process::before {
  content: "";
  position: absolute;
  left: -260px;
  bottom: -390px;
  width: 560px;
  height: 560px;
  border: 54px solid var(--red);
  border-radius: 50%;
}

.process-copy {
  position: relative;
  z-index: 1;
  max-width: 380px;
}

.process-copy p:last-child,
.contact-copy p {
  color: var(--muted);
}

.steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.steps article {
  text-align: center;
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-weight: 800;
}

.steps article::before {
  content: "";
  display: block;
  width: 86px;
  height: 86px;
  margin: 0 auto -74px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.1);
}

.steps h3 {
  margin: 84px 0 8px;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.2;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.projects {
  background: #fff;
}

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

.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
}

.project-thumb {
  min-height: 172px;
  transition: transform 0.28s ease;
}

.project-card:hover .project-thumb {
  transform: scale(1.04);
}

.project-card h3 {
  margin: 0;
  padding: 14px 16px 16px;
  color: #fff;
  font-size: 0.96rem;
}

.about-section {
  background:
    linear-gradient(90deg, #151515 0 48%, #202125 48% 100%);
  color: #fff;
  box-shadow: 0 0 0 100vmax #151515;
  clip-path: inset(0 -100vmax);
}

.about-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(225, 8, 18, 0.22), transparent 32%),
    linear-gradient(135deg, #1b1b1d, #101010);
  box-shadow: var(--shadow);
}

.about-card::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -150px;
  width: 430px;
  height: 520px;
  border-left: 48px solid var(--red);
  border-right: 34px solid var(--red-dark);
  border-radius: 50%;
  transform: rotate(12deg);
  opacity: 0.78;
}

.about-copy,
.about-proof {
  position: relative;
  z-index: 1;
}

.about-copy h2 {
  color: #fff;
}

.about-copy p:not(:first-child) {
  max-width: 560px;
  color: #d7d7da;
}

.about-proof {
  display: grid;
  gap: 14px;
}

.about-proof article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.about-proof strong {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-family: var(--display);
  font-size: 1.45rem;
}

.about-proof span {
  color: #fff;
  font-weight: 800;
}

.quality-section {
  background: var(--paper);
}

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

.quality-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(225, 8, 18, 0.06), rgba(225, 8, 18, 0) 44%),
    #fff;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.07);
}

.quality-grid span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quality-grid h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-size: 1.15rem;
}

.quality-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: center;
  background: linear-gradient(90deg, #fff 0 52%, #f7f7f8 52% 100%);
  box-shadow: 0 0 0 100vmax #f7f7f8;
  clip-path: inset(0 -100vmax);
}

.contact-section::before {
  left: 40%;
  top: 32px;
  width: 300px;
  height: 590px;
  border-left-width: 52px;
  border-right-width: 36px;
}

.contact-copy,
.quote-form {
  position: relative;
  z-index: 1;
}

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

.quote-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-form h3 {
  margin-bottom: 18px;
  font-size: 1.45rem;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: 600 0.95rem var(--body);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.message-field {
  margin: 14px 0;
}

.quote-form .button {
  width: 100%;
}

.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--red-dark);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 34px;
  width: min(1440px, 100%);
  margin-inline: auto;
  padding: 40px 24px;
  color: #fff;
  background: linear-gradient(135deg, #161616, #252525);
  box-shadow: 0 0 0 100vmax #161616;
  clip-path: inset(0 -100vmax);
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy small {
  color: #fff;
}

.site-footer h3 {
  margin-bottom: 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 5px;
}

.site-footer a,
.site-footer span {
  color: #e2e2e4;
  font-size: 0.94rem;
}

@media (max-width: 1000px) {
  .nav { min-height: 78px; }
  .menu-button { display: block; }
  .nav-links {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-call { justify-content: center; }
  .hero,
  .process,
  .about-card,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 20px;
  }
  .hero-copy h1 {
    max-width: 720px;
  }
  .hero-visual {
    min-height: auto;
  }
  .hero-visual img {
    height: 430px;
  }
  .service-grid,
  .project-row,
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-section {
    background: #fff;
  }
  .contact-section::before {
    opacity: 0.12;
    left: 55%;
  }
  .about-section {
    background: #151515;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }
  .nav {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0 14px;
  }
  .nav .brand {
    max-width: calc(100vw - 86px);
  }
  .menu-button {
    display: block !important;
    position: fixed;
    top: 17px;
    right: auto;
    left: 332px;
    z-index: 50;
    background: var(--red);
    border-color: var(--red);
  }
  .menu-button span {
    background: #fff;
  }
  .brand-copy strong {
    font-size: 1.32rem;
  }
  .brand-copy small {
    font-size: 0.5rem;
  }
  .logo-mark {
    width: 52px;
    height: 52px;
  }
  .hero-copy {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding-top: 22px;
  }
  .hero-copy h1 {
    max-width: 100%;
    font-size: 2.36rem;
  }
  .hero-copy p,
  .contact-strip {
    width: 100%;
    max-width: 318px;
  }
  .hero-copy p {
    font-size: 1rem;
    overflow-wrap: break-word;
  }
  .hero-actions,
  .contact-strip {
    align-items: stretch;
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .hero-visual::before {
    left: -120px;
    top: -44px;
    transform: scale(0.72) rotate(7deg);
  }
  .hero-visual img {
    height: 320px;
  }
  section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .service-grid,
  .project-row,
  .quality-grid,
  .steps,
  .field-grid {
    grid-template-columns: 1fr;
  }
  .section-head h2,
  .process-copy h2,
  .contact-copy h2,
  .about-copy h2 {
    font-size: 3rem;
  }
  .about-card {
    padding: 28px;
  }
  .about-proof article {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
