:root {
  --paper: #f5f2ec;
  --paper-2: #fbfaf7;
  --white: #fff;
  --ink: #111;
  --muted: #706b64;
  --line: #e6dfd4;
  --red: #d01820;
  --red-dark: #9f1118;
  --black: #111;
  --soft-shadow: 0 28px 90px rgba(21, 18, 16, .10);
  --hard-shadow: 0 24px 70px rgba(0, 0, 0, .18);
  --radius-xl: 34px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

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

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(245, 242, 236, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 17, 17, .08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  border: 3px solid var(--red);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 38px rgba(208, 24, 32, .18);
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong {
  font-size: 20px;
  line-height: 1;
  letter-spacing: .035em;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .14em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #393530;
  font-size: 14px;
}

.main-nav a:hover {
  color: var(--red);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone {
  font-size: 15px;
  font-weight: 850;
}

.header-cta,
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 18px 42px rgba(208, 24, 32, .26);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: rgba(17, 17, 17, .16);
  background: rgba(255,255,255,.72);
}

.btn-secondary:hover,
.btn-dark:hover {
  transform: translateY(-2px);
  border-color: var(--red);
}

.btn-dark {
  background: var(--black);
  color: #fff;
}

.btn-full {
  width: 100%;
  margin-top: 12px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  padding: 12px;
}

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

.hero {
  padding: 74px 0 68px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.1vw, 76px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(33px, 3.8vw, 54px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: -.03em;
}

.hero-lead,
.materials-card p,
.about p,
.lead-card p,
.site-footer p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 34px;
}

.proof-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.proof-item {
  min-width: 128px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
}

.proof-item span {
  display: block;
  color: var(--red);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.proof-item p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.media-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(135deg, #fff 0%, #ede6dc 43%, #171717 43%, #282522 100%);
  box-shadow: var(--soft-shadow);
}

.visual-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.88), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(208,24,32,.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.32), transparent 54%);
}

.visual-house {
  position: absolute;
  left: 11%;
  right: 8%;
  bottom: 9%;
  height: 360px;
}

.visual-roof {
  position: absolute;
  background: repeating-linear-gradient(90deg, #0f0f0f 0 13px, #2a2826 13px 17px);
  box-shadow: 0 28px 70px rgba(0,0,0,.34);
}

.main-roof {
  left: 4%;
  right: 2%;
  top: 44px;
  height: 122px;
  transform: skewY(-12deg);
  border-top: 6px solid var(--red);
}

.side-roof {
  right: 2%;
  top: 104px;
  width: 54%;
  height: 92px;
  transform: skewY(18deg);
  opacity: .86;
}

.visual-wall {
  position: absolute;
  left: 12%;
  right: 10%;
  bottom: 0;
  height: 200px;
  border-radius: 16px 16px 28px 28px;
  background: linear-gradient(135deg, #f4eddf, #cfc2af);
}

.window {
  position: absolute;
  top: 52px;
  width: 20%;
  height: 108px;
  background: linear-gradient(180deg, #1d1b1a, #34302d);
  border-bottom: 5px solid var(--red);
}

.w1 { left: 12%; }
.w2 { left: 40%; }
.w3 { right: 12%; }

.visual-chimney {
  position: absolute;
  right: 22%;
  top: 0;
  width: 48px;
  height: 100px;
  background: #161616;
  border-top: 5px solid var(--red);
  box-shadow: 0 20px 45px rgba(0,0,0,.2);
}

.media-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 46px rgba(0,0,0,.12);
}

.media-caption strong,
.media-caption span {
  display: block;
}

.media-caption span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.service-strip {
  padding: 50px 0 78px;
}

.strip-head,
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.strip-head h2,
.section-title h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.strip-head a,
.section-title a {
  color: var(--red);
  font-weight: 850;
  white-space: nowrap;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.54);
}

.strip-grid article {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.strip-grid article:last-child {
  border-right: 0;
}

.line-icon {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .14em;
}

.strip-grid p,
.project-text p,
.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 92px 0;
}

.projects {
  background: #111;
  color: #fff;
}

.projects .eyebrow,
.projects .section-title a {
  color: #ff4249;
}

.projects h2 {
  color: #fff;
}

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

.project-card {
  overflow: hidden;
  border-radius: 24px;
  background: #1d1a18;
  border: 1px solid rgba(255,255,255,.12);
}

.project-photo {
  height: 245px;
}

.photo-a {
  background:
    linear-gradient(135deg, rgba(208,24,32,.22), transparent 40%),
    repeating-linear-gradient(115deg, #171717 0 18px, #30302f 18px 22px);
}

.photo-b {
  background:
    linear-gradient(145deg, #efe9df 0 34%, #111 34% 58%, #c7b9a5 58% 100%);
}

.photo-c {
  background:
    linear-gradient(180deg, #dfd8cc 0 42%, #191919 42% 55%, #f5f0e8 55% 100%);
}

.photo-d {
  background:
    radial-gradient(circle at 70% 18%, rgba(208,24,32,.22), transparent 22%),
    linear-gradient(135deg, #f2ece2 0 35%, #161616 35% 58%, #b9a88e 58%);
}

.project-text {
  padding: 22px;
}

.materials-process {
  background: var(--paper-2);
}

.details-grid,
.about-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}

.materials-card,
.process-card,
.lead-card {
  border-radius: var(--radius-xl);
  padding: 38px;
}

.materials-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 60px rgba(17,17,17,.05);
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.brand-row span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 900;
  background: #fbfaf7;
}

.process-card,
.lead-card {
  background: #111;
  color: #fff;
  box-shadow: var(--hard-shadow);
}

.process-card h2,
.lead-card h3 {
  color: #fff;
}

.process-card ol {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.process-card li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}

.process-card li span {
  color: #ff4249;
  font-weight: 900;
}

.process-card li p {
  color: rgba(255,255,255,.76);
}

.about {
  background: linear-gradient(135deg, var(--paper) 0%, #fff 100%);
}

.about-grid {
  align-items: start;
}

.about-numbers {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.about-numbers div {
  min-width: 118px;
  padding: 16px;
  border-left: 2px solid var(--red);
  background: rgba(255,255,255,.58);
}

.about-numbers strong {
  display: block;
  color: var(--red);
  font-size: 32px;
  line-height: 1;
}

.about-numbers span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

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

.site-footer {
  padding: 56px 0;
  background: #111;
  color: #fff;
}

.footer-grid {
  grid-template-columns: 1.4fr .7fr .9fr;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255,255,255,.66);
}

.site-footer h4 {
  margin: 0 0 14px;
  color: #fff;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 11px;
}

@media (max-width: 1040px) {
  .header-contact,
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav.is-open {
    position: fixed;
    display: grid;
    left: 22px;
    right: 22px;
    top: 92px;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--soft-shadow);
  }

  .main-nav.is-open a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .details-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

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

  .strip-grid article {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    padding: 56px 0 52px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions,
  .proof-row,
  .about-numbers {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .media-card {
    min-height: 410px;
    border-radius: 28px;
  }

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

  .strip-head,
  .section-title {
    display: block;
  }

  .strip-head a,
  .section-title a {
    display: inline-block;
    margin-top: 16px;
  }

  .strip-grid,
  .project-grid,
  .brand-row {
    grid-template-columns: 1fr;
  }

  .strip-grid article {
    border-right: 0;
  }

  .project-photo {
    height: 215px;
  }

  .materials-card,
  .process-card,
  .lead-card {
    padding: 26px;
    border-radius: 24px;
  }
}

/* STEP 006A: client-ready visual polish */
.hero {
  padding: 54px 0 56px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  gap: 52px;
}

h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 900;
  max-width: 680px;
}

h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.media-card {
  min-height: 470px;
  border-radius: 34px;
}

.visual-house {
  height: 320px;
  bottom: 8%;
}

.hero-lead {
  max-width: 620px;
}

.proof-row {
  margin-top: 4px;
}

.proof-item {
  min-width: 126px;
  padding: 14px 17px;
}

.service-strip {
  padding: 54px 0 74px;
}

.strip-grid article {
  min-height: 190px;
  padding: 24px;
}

.project-photo {
  height: 220px;
}

.section {
  padding: 82px 0;
}

.process-card,
.lead-card,
.materials-card {
  border-radius: 28px;
}

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

  .media-card {
    min-height: 430px;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 44px 0 48px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  .media-card {
    min-height: 380px;
  }
}

/* STEP 006B: keep hero trust proof above the fold */
.hero {
  padding: 42px 0 46px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.82fr);
  gap: 44px;
}

h1 {
  font-size: clamp(40px, 4.05vw, 58px);
  line-height: 1.03;
  max-width: 640px;
  margin-bottom: 18px;
}

.hero-lead {
  font-size: 16px;
  line-height: 1.58;
  max-width: 590px;
}

.hero-actions {
  margin: 24px 0 24px;
}

.media-card {
  min-height: 420px;
  max-width: 520px;
  margin-left: auto;
}

.visual-house {
  height: 285px;
}

.proof-item {
  min-width: 112px;
  padding: 12px 15px;
}

.proof-item span {
  font-size: 24px;
}

.proof-item p {
  font-size: 11px;
}

@media (max-width: 1040px) {
  .media-card {
    max-width: 100%;
  }
}

/* STEP 007C: Instagram link in top header */
.insta-link {
  font-size: 14px;
  font-weight: 850;
  color: #d01820;
  white-space: nowrap;
}

.insta-link:hover {
  color: #9f1118;
}

/* STEP 007F: header contact layout fix */
@media (min-width: 1100px) {
  .container {
    width: min(1280px, calc(100% - 54px));
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .header-contact {
    gap: 12px;
    flex-shrink: 0;
  }

  .phone {
    white-space: nowrap;
    font-size: 14px;
    line-height: 1;
  }

  .insta-link {
    white-space: nowrap;
    font-size: 13px;
    line-height: 1;
  }

  .header-cta {
    padding: 0 20px;
    min-height: 44px;
    white-space: nowrap;
  }
}
