/* ==========================================================================
   Drop Cloth & Roll Painting — site styles
   Fonts: Montserrat (400/700/800) + Lobster, served from assets/fonts/
   ========================================================================== */

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-extrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lobster";
  src: url("../fonts/lobster-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #082b50;
  --navy-2: #0d3a68;
  --red: #d7192e;
  --red-dark: #a90f20;
  --cream: #fffaf0;
  --cream-2: #f4eee1;
  --ink: #142235;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 43, 80, .14);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.topbar span::before { content: "✦"; color: var(--red); margin-right: 9px; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,250,240,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(8,43,80,.10);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
  color: var(--navy);
}
.brand img { width: 72px; height: 72px; object-fit: contain; }
.brand-name { line-height: 1.05; }
.brand-name small {
  display: block;
  color: var(--red);
  font-size: .62rem;
  letter-spacing: .16em;
  margin-top: 6px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: .9rem;
}
nav a { transition: color .2s ease; }
nav a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: white;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(215,25,46,.22);
}
.nav-cta:hover { color: white; background: var(--red-dark); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 95px;
  background:
    radial-gradient(circle at 85% 15%, rgba(215,25,46,.12), transparent 26%),
    radial-gradient(circle at 10% 85%, rgba(8,43,80,.10), transparent 30%),
    var(--cream);
}
.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -90px;
  height: 160px;
  background: var(--navy);
  transform: rotate(-2deg);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 65px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
}
h1 {
  color: var(--navy);
  font-size: clamp(3.4rem, 6.5vw, 6.4rem);
  line-height: .94;
  letter-spacing: -.055em;
  margin: 16px 0 22px;
  font-weight: 800;
}
h1 em {
  display: block;
  color: var(--red);
  font-family: "Lobster", cursive;
  font-weight: 400;
  font-size: .72em;
  letter-spacing: 0;
  transform: rotate(-2deg);
}
.hero-copy {
  max-width: 610px;
  font-size: 1.08rem;
  color: #435164;
  margin-bottom: 30px;
}
.actions { display: flex; flex-wrap: wrap; gap: 13px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(215,25,46,.23);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary {
  color: var(--navy);
  border-color: rgba(8,43,80,.22);
  background: rgba(255,255,255,.55);
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-logo {
  width: min(100%, 530px);
  filter: drop-shadow(0 28px 28px rgba(8,43,80,.17));
  transform: rotate(2deg);
}
.paint-swipe {
  position: absolute;
  width: 270px;
  height: 68px;
  background: var(--navy);
  opacity: .95;
  z-index: -1;
  left: 8%;
  bottom: 3%;
  transform: rotate(-8deg);
  clip-path: polygon(0 25%, 8% 10%, 20% 22%, 34% 4%, 52% 17%, 67% 5%, 84% 21%, 100% 10%, 96% 80%, 72% 72%, 54% 92%, 34% 77%, 14% 94%, 0 75%);
}

section { padding: 105px 0; }
.section-kicker {
  color: var(--red);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
h2 {
  color: var(--navy);
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -.04em;
  margin: 0 0 16px;
}
h2 .script {
  color: var(--red);
  font-family: "Lobster", cursive;
  font-weight: 400;
  letter-spacing: 0;
}
.intro {
  max-width: 690px;
  color: #5a6674;
  margin: 0;
}

.services { background: var(--navy); color: white; }
.services h2 { color: white; }
.services .intro { color: rgba(255,255,255,.72); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.service {
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 29px;
  transition: transform .2s ease, background .2s ease;
}
.service:hover { transform: translateY(-5px); background: rgba(255,255,255,.10); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--red);
  font-size: 1.35rem;
  margin-bottom: 22px;
}
.service h3 { margin: 0 0 8px; font-size: 1.15rem; }
.service p { margin: 0; color: rgba(255,255,255,.68); font-size: .92rem; }

.why { background: var(--cream-2); }
.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.promise-card {
  position: relative;
  background: white;
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.promise-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 9px;
  background: var(--red);
}
.promise {
  font-family: "Lobster", cursive;
  color: var(--navy);
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 12px;
}
.promise-card p { color: #5a6674; margin: 0; }
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 25px;
  margin-top: 30px;
}
.check { display: flex; gap: 12px; align-items: flex-start; font-weight: 700; }
.check b {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: grid; place-items: center;
  font-size: .75rem;
}

.process { background: white; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 46px;
}
.step {
  padding: 27px 24px;
  border: 1px solid #e7e1d5;
  border-radius: 20px;
  background: var(--cream);
}
.number {
  font-family: "Lobster", cursive;
  color: var(--red);
  font-size: 2.2rem;
  line-height: 1;
}
.step h3 { color: var(--navy); margin: 14px 0 7px; }
.step p { color: #66717e; margin: 0; font-size: .9rem; }

.quote {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: white;
  text-align: center;
}
.quote::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 50%;
  left: -180px; top: -200px;
}
.quote h2 { color: white; max-width: 760px; margin: 0 auto 17px; }
.quote h2 .script { color: white; }
.quote p { max-width: 640px; margin: 0 auto 28px; color: rgba(255,255,255,.83); }

footer {
  background: #061f39;
  color: white;
  padding: 55px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
footer .brand { color: white; }
footer .brand img { width: 90px; height: 90px; }
footer .brand-name small { color: #ff6675; }
footer h4 { margin: 0 0 14px; color: #fff; }
footer p, footer a { color: rgba(255,255,255,.68); font-size: .9rem; }
footer a:hover { color: white; }
.footer-links { display: grid; gap: 8px; }
.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(255,255,255,.45);
  font-size: .76rem;
}

@media (max-width: 900px) {
  nav ul { display: none; }
  .hero-grid, .why-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 55px; }
  .hero-art { order: -1; }
  .hero-logo { width: min(78vw, 430px); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .topbar-inner { font-size: .65rem; text-align: center; }
  .brand img { width: 58px; height: 58px; }
  .brand-name { font-size: .78rem; }
  .nav { min-height: 72px; }
  .nav-cta { padding: 10px 14px; font-size: .78rem; }
  .hero { padding: 35px 0 75px; }
  h1 { font-size: clamp(3rem, 16vw, 4.2rem); }
  section { padding: 76px 0; }
  .service-grid, .steps, .checks, .footer-grid { grid-template-columns: 1fr; }
  .promise-card { padding: 32px 27px; }
  .copyright { flex-direction: column; }
}
