:root {
  --navy: #071f4a;
  --blue: #0958f5;
  --coral: #ff4f49;
  --cream: #fffaf0;
  --ink: #0a2149;
  --muted: #5c6575;
  --line: #d9dfeb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

.site-header {
  height: 108px;
  max-width: 1440px;
  margin: auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { display: block; width: 218px; height: auto; }
nav { display: flex; gap: 32px; font-weight: 700; }
nav a { padding: 12px 0; position: relative; }
nav a:hover::after { content: ""; position: absolute; height: 2px; background: var(--blue); left: 0; right: 0; bottom: 4px; }
.header-phone { font-weight: 800; padding-left: 24px; border-left: 1px solid #aeb6c4; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 25px; border-radius: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-outline { border: 2px solid var(--blue); color: var(--blue); }
.button-primary { color: white; background: var(--coral); box-shadow: 0 12px 30px #ff4f4933; }

.hero { max-width: 1440px; margin: auto; padding: 70px 48px 0; display: grid; grid-template-columns: 42% 58%; position: relative; }
.hero-copy { padding-top: 12px; z-index: 2; }
.eyebrow, .kicker { text-transform: uppercase; letter-spacing: .14em; font-size: 14px; font-weight: 900; color: var(--blue); }
.eyebrow b { color: var(--coral); margin: 0 8px; }
h1 { font-size: clamp(52px, 5.2vw, 78px); letter-spacing: -.055em; line-height: .98; margin: 28px 0 24px; max-width: 620px; }
.lead { color: #515a68; max-width: 520px; font-size: 21px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 36px; margin: 30px 0 28px; }
.text-link { color: var(--blue); font-weight: 800; border-bottom: 2px solid var(--blue); padding: 10px 0 7px; }
.location { font-weight: 700; font-size: 14px; }
.location::before { content: "⌖"; color: var(--blue); font-size: 25px; margin-right: 10px; vertical-align: middle; }
.hero-art { min-height: 560px; position: relative; margin-left: 42px; }
.hero-art::before { content: ""; position: absolute; inset: 24px -18px -18px 24px; border-radius: 34px; background: var(--blue); }
.hero-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 2; border-radius: 34px; box-shadow: 0 24px 60px #071f4a26; }
.catalog-strip { grid-column: 1 / -1; z-index: 3; background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border: 1px solid #e6e4de; border-radius: 24px 24px 0 0; padding: 24px 28px 28px; box-shadow: 0 -6px 30px #071f4a0a; }
.catalog-strip p { margin: 0 0 18px; font-size: 22px; font-weight: 900; }
.catalog-strip > div { display: flex; flex-wrap: wrap; gap: 8px; }
.catalog-strip span { border: 1px solid #c9d6f4; padding: 10px 13px; border-radius: 12px; font-size: 13px; font-weight: 700; }
.catalog-strip b { color: var(--blue); font-size: 10px; margin-right: 7px; }

.section { max-width: 1440px; margin: auto; padding: 120px 48px; }
.section-heading { display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: end; gap: 40px; margin-bottom: 64px; }
h2 { font-size: clamp(40px, 4.3vw, 64px); line-height: 1.02; letter-spacing: -.045em; margin: 0; }
.section-heading > p:last-child, .proof-copy > p { color: var(--muted); line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { overflow: hidden; min-height: 330px; background: #fffdf8; border: 1px solid var(--line); border-radius: 26px; transition: background .25s, transform .25s, box-shadow .25s; }
.service-card:hover { background: white; transform: translateY(-4px); box-shadow: 0 18px 45px #071f4a12; }
.service-card-image { display: grid; grid-template-columns: 44% 56%; min-height: 390px; }
.service-image { min-height: 100%; overflow: hidden; background: #eee7da; }
.service-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-image img { transform: scale(1.035); }
.service-content { padding: 38px; display: flex; flex-direction: column; align-items: flex-start; }
.service-number { color: var(--coral); font-weight: 900; font-size: 13px; }
.service-grid h3 { font-size: 30px; margin: 30px 0 16px; }
.service-grid p { color: var(--muted); line-height: 1.65; max-width: 520px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 28px; }
.service-tags span { background: #eef3ff; color: var(--blue); padding: 8px 11px; border-radius: 100px; font-size: 12px; font-weight: 800; }
.service-card-design { position: relative; background: var(--blue); color: white; }
.service-card-design::before, .service-card-design::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.service-card-design::before { width: 340px; height: 340px; background: var(--coral); right: -90px; top: -150px; }
.service-card-design::after { width: 250px; height: 250px; border: 45px solid var(--cream); right: 55px; bottom: -155px; opacity: .9; }
.service-card-design .service-content { max-width: 62%; min-height: 390px; position: relative; z-index: 1; }
.service-card-design .service-number { color: #ffd2ce; }
.service-card-design p { color: #dce7ff; }
.service-card-design .service-tags span { background: rgba(255,255,255,.14); color: white; }

.proof { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; padding-top: 40px; gap: 80px; align-items: center; }
.proof-visual { background: var(--blue); min-height: 600px; color: white; padding: 56px; position: relative; overflow: hidden; border-radius: 2px 90px 2px 2px; }
.proof-visual span { letter-spacing: .25em; font-weight: 900; }
.proof-visual strong { display: block; font-size: clamp(56px, 6vw, 92px); line-height: .9; letter-spacing: -.06em; margin-top: 150px; position: relative; z-index: 2; }
.swatch { position: absolute; display: block; width: 230px; height: 230px; border-radius: 50%; }
.swatch.blue { background: #0638a0; right: -40px; top: 55px; }
.swatch.coral { background: var(--coral); right: 90px; top: 120px; }
.swatch.cream { background: var(--cream); right: -70px; top: 220px; }
.proof-copy { padding-right: 30px; }
.proof-copy h2 { margin: 18px 0 26px; }
.proof-copy ul { list-style: none; margin: 42px 0 0; padding: 0; border-top: 1px solid var(--line); }
.proof-copy li { display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); color: var(--muted); line-height: 1.55; }
.proof-copy li > b { color: var(--coral); font-size: 12px; }
.proof-copy li strong { display: block; color: var(--ink); margin-bottom: 4px; }

.contact { max-width: none; background: var(--navy); color: white; display: grid; grid-template-columns: 1.4fr 1fr; gap: 100px; padding-left: max(48px, calc((100vw - 1344px)/2)); padding-right: max(48px, calc((100vw - 1344px)/2)); }
.contact .kicker { color: #88aeff; }
.contact h2 { max-width: 700px; margin: 22px 0; }
.contact > div > p:not(.kicker) { color: #b9c6d9; max-width: 600px; font-size: 18px; line-height: 1.6; }
.button-light { background: white; color: var(--navy); margin-top: 25px; gap: 28px; }
.quote-note { display: block; margin-top: 13px; color: #9fb2cf; font-size: 13px; }
address { font-style: normal; border-left: 1px solid #33486b; padding-left: 60px; }
address p { margin: 0; padding: 21px 0; border-bottom: 1px solid #33486b; font-size: 17px; line-height: 1.5; }
address span { display: block; color: #88aeff; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 7px; }

footer { background: #041736; color: #9eacc1; min-height: 180px; padding: 45px max(48px, calc((100vw - 1344px)/2)); display: flex; align-items: center; gap: 50px; font-size: 13px; }
.brand-light { background: white; padding: 10px 14px; border-radius: 12px; }
.brand-light img { width: 190px; }
footer p:last-child { margin-left: auto; }

@media (max-width: 980px) {
  .site-header { padding: 0 24px; }
  nav, .header-phone { display: none; }
  .hero { padding: 45px 24px 0; grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-art { min-height: 500px; margin: 30px 0 0; }
  .section { padding: 90px 24px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .kicker { margin: 0; }
  .proof { grid-template-columns: 1fr; gap: 50px; }
  .contact { padding-left: 24px; padding-right: 24px; grid-template-columns: 1fr; gap: 60px; }
  footer { padding-left: 24px; padding-right: 24px; flex-wrap: wrap; }
  footer p:last-child { margin-left: 0; }
}

@media (max-width: 620px) {
  .site-header { height: 88px; }
  .brand img { width: 170px; }
  .button-outline { display: none; }
  .hero { padding-top: 32px; }
  h1 { font-size: 48px; }
  .lead { font-size: 18px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero-art { min-height: 330px; margin: 24px -8px 0; }
  .hero-art::before { inset: 14px -8px -8px 14px; border-radius: 24px; }
  .hero-art img { border-radius: 24px; }
  .catalog-strip { margin: 0 -8px; }
  .catalog-strip > div { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .catalog-strip span { white-space: nowrap; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card-image { grid-template-columns: 1fr; }
  .service-image { min-height: 260px; aspect-ratio: 4 / 3; }
  .service-content { padding: 30px; min-height: 300px; }
  .service-card-design .service-content { max-width: 78%; min-height: 370px; }
  .proof-visual { min-height: 490px; padding: 34px; }
  .proof-copy { padding-right: 0; }
  address { border-left: 0; padding-left: 0; }
}

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