:root {
  --ink: #32373A;
  --ink-dark: #25292B;
  --black: #000000;
  --taupe: #B8A48B;
  --taupe-light: #EFE8DE;
  --cream: #F7F4EF;
  --white: #FFFFFF;
  --line: rgba(50, 55, 58, .14);
  --line-light: rgba(255, 255, 255, .18);
  --shadow: 0 30px 90px rgba(0, 0, 0, .14);
  --radius: 4px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.narrow { width: min(calc(100% - 48px), 860px); }
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(247, 244, 239, .92);
  border-bottom: 1px solid rgba(50, 55, 58, .10);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 172px; height: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.nav a { opacity: .78; transition: opacity .2s ease; }
.nav a:hover { opacity: 1; }
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 880px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background-image: url("https://venzipainting.com/img/vp-hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.62) 42%, rgba(0,0,0,.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.58) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 340px);
  align-items: end;
  gap: 72px;
  padding-top: 116px;
}
.hero-copy { padding: 110px 0 84px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--taupe);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .26em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--taupe-light); }
.hero h1 {
  margin: 0;
  max-width: 800px;
  color: var(--white);
  font-size: clamp(52px, 8.2vw, 72px);
  line-height: .92;
  letter-spacing: 0em;
  font-weight: 900;
}
.hero-kicker {
  max-width: 690px;
  margin: 34px 0 0;
  color: var(--white);
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.035em;
}
.hero-text {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.8;
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--taupe-light); color: var(--black); }
.btn-ghost { border-color: rgba(255,255,255,.46); color: var(--white); }
.btn-light { border-color: rgba(255,255,255,.28); color: var(--white); }

.hero-proof {
  margin-bottom: 92px;
  padding: 34px 0 0 34px;
  border-left: 1px solid rgba(255, 255, 255, .58);
  color: var(--white);
  background: transparent;
}
.proof-label {
  display: block;
  margin-bottom: 18px;
  color: var(--taupe-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.hero-proof strong {
  display: block;
  color: var(--taupe-light);
  font-size: 72px;
  line-height: .9;
  letter-spacing: -.06em;
}
.hero-proof > span:not(.proof-label) {
  display: block;
  max-width: 230px;
  margin-top: 16px;
  color: rgba(255,255,255,.90);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.55;
  text-transform: uppercase;
}
.hero-proof ul {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.20);
}
.hero-proof li {
  padding: 9px 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.positioning {
  background: var(--taupe);
  color: var(--black);
  text-align: center;
  padding: 28px 0;
}
.positioning p {
  margin: 0 auto;
  font-size: 26px;
  max-width: 760px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.025em;
}

.section { padding: 120px 0; }
.split {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 96px;
  align-items: start;
}
h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 5.2vw, 62px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 900;
}
h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -.025em;
}
p { font-size: 16px; }
.intro-copy p {
  margin: 0 0 22px;
  color: rgba(50, 55, 58, .75);
  font-size: 18px;
  line-height: 1.85;
}

.section-head {
  max-width: 680px;
  margin-bottom: 52px;
}
.section-head p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(50,55,58,.66);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}
.service-card {
  padding: 46px 42px;
  min-height: 440px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.52);
}
.service-card:last-child { border-right: 0; }
.service-card.featured {
  background: var(--ink);
  color: var(--white);
}
.service-card span {
  display: block;
  margin-bottom: 70px;
  color: var(--taupe);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}
.service-card h3 { margin-bottom: 24px; }
.service-card li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: rgba(50,55,58,.78);
  font-size: 14px;
}
.service-card.featured li {
  border-top-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.78);
}

.craft {
  background: #EFEAE3;
}
.craft-grid {
  display: grid;
  grid-template-columns: minmax(280px, 470px) minmax(0, 1fr);
  gap: 92px;
  align-items: center;
}
.craft-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.craft p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(50,55,58,.72);
  font-size: 18px;
  line-height: 1.8;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 36px;
  border: 1px solid var(--line);
  background: var(--line);
}
.detail-grid div {
  min-height: 126px;
  padding: 24px;
  background: var(--cream);
}
.detail-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.detail-grid span {
  color: rgba(50,55,58,.68);
  font-size: 13px;
  line-height: 1.65;
}

.portfolio-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 52px 74px;
  align-items: start;
}
.portfolio-head { margin: 0; }
.portfolio-intro {
  max-width: 470px;
  margin: 0px 0 0;
  color: rgba(50,55,58,.68);
  line-height: 1.8;
}
.gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.35fr .72fr .72fr;
  grid-auto-rows: 185px;
  gap: 16px;
  align-items: stretch;
}
.gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}
.gallery-large { grid-column: span 1; grid-row: span 2; }
.gallery-tall { grid-row: span 3; }
.gallery-wide { grid-column: span 2; }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery figure:hover img { transform: scale(1.035); }
.gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.gallery figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.58));
}
.gallery figcaption { z-index: 2; }

.service-area {
  background: var(--ink);
  color: var(--white);
}
.area-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 92px;
  align-items: center;
}
.service-area h2 { color: var(--white); }
.service-area p {
  max-width: 520px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}
.area-note {
  margin-top: 26px;
  color: var(--taupe-light) !important;
  font-weight: 800;
}
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255,255,255,.14);
}
.area-list li {
  padding: 18px 22px;
  border-right: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.area-list li:nth-child(2n) { border-right: 0; }
.area-list li:last-child {
  grid-column: 1 / -1;
  background: rgba(255,255,255,.08);
}

.why-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: start;
}
.why-feature {
  padding: 56px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}
.why-feature h2 { color: var(--white); }
.why-feature p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}
.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.why-list div {
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.why-list strong {
  font-size: 24px;
  line-height: 1.45;
  letter-spacing: -.015em;
}

.testimonial {
  padding: 80px 0;
  background: var(--taupe);
  color: var(--black);
  text-align: center;
}
.testimonial blockquote {
  margin: 0 auto;
  max-width: 920px;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -.065em;
  font-weight: 900;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
  padding: 58px;
  background: var(--white);
  border: 1px solid rgba(50,55,58,.08);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.contact-card p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(50,55,58,.68);
  line-height: 1.75;
}
.contact-panel {
  padding: 42px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}
.contact-panel h3 { margin-bottom: 12px; }
.contact-panel p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.72);
}
.contact-panel > a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  font-weight: 800;
}
.contact-actions { margin-top: 28px; }
.contact-actions .btn { min-height: 48px; padding-inline: 20px; }

.site-footer {
  padding: 34px 0;
  background: var(--black);
  color: rgba(255,255,255,.58);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-inner img { width: 132px; filter: brightness(1.8); }
.footer-inner p { margin: 0; font-size: 12px; }

@media (max-width: 980px) {
  .container, .narrow { width: min(calc(100% - 34px), var(--max)); }
  .nav { display: none; }
  .brand img { width: 146px; }
  .header-inner { min-height: 66px; }
  .hero { min-height: auto; }
  .hero-bg { background-position: 62% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.64) 0%, rgba(0,0,0,.86) 100%); }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 110px;
  }
  .hero-copy { padding: 72px 0 0; }
  .hero h1 {
    font-size: clamp(32px, 15vw, 66px);
    line-height: .95;
    letter-spacing: -.03em;
  }
  .hero-proof {
    margin: 0 0 46px;
    padding: 28px 0 0 24px;
  }
  .hero-proof strong { font-size: 58px; }
  .split, .craft-grid, .portfolio-layout, .area-grid, .why-grid, .contact-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .section { padding: 82px 0; }
  h2 { font-size: clamp(38px, 1vw, 58px); line-height: 1; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card {
    min-height: auto;
    padding: 34px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-card span { margin-bottom: 42px; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }
  .gallery-large, .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 2; }
  .area-list { grid-template-columns: 1fr; }
  .area-list li, .area-list li:nth-child(2n) { border-right: 0; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .site-header { position: absolute; background: rgba(247,244,239,.96); }
  .header-call {
    padding: 0 12px;
    min-height: 32px;
    font-size: 9px;
    letter-spacing: .08em;
  }
  .brand img { width: 124px; }
  .hero-bg { background-position: 64% center; }
  .hero-inner { padding-top: 86px; }
  .hero-copy { padding-top: 66px; }
  .hero h1 {
    font-size: clamp(44px, 12vw, 64px);
    line-height: .98;
  }
  .hero-kicker { font-size: 20px; margin-top: 24px; }
  .hero-text { font-size: 15px; line-height: 1.65; }
  .hero-actions, .contact-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; min-height: 52px; }
  .positioning { padding: 24px 0; }
  .positioning p { font-size: 15px; }
  .section { padding: 68px 0; }
  .eyebrow { font-size: 10px; letter-spacing: .2em; }
  h2 { letter-spacing: 0em; }
  .intro-copy p, .craft p:not(.eyebrow) { font-size: 16px; line-height: 1.72; }
  .detail-grid, .why-list { grid-template-columns: 1fr; }
  .craft-grid { gap: 34px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; gap: 14px; }
  .gallery-large, .gallery-tall, .gallery-wide { grid-column: auto; grid-row: auto; }
  .gallery-tall { min-height: 420px; }
  .why-feature, .contact-card, .contact-panel { padding: 30px; }
  .testimonial { padding: 58px 0; }
  .testimonial blockquote { font-size: 28px; line-height: 1.1; }
  .footer-inner { flex-direction: column; text-align: center; }
}
