:root {
  --ink: #111827;
  --muted: #64748b;
  --line: #d9e1ea;
  --paper: #ffffff;
  --wash: #f4f7fa;
  --navy: #0f2742;
  --blue: #2563eb;
  --orange: #f97316;
  --green: #16a34a;
  --shadow: 0 24px 60px rgba(15, 39, 66, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 225, 234, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.desktop-nav,
.proof-row,
.hero-actions,
.site-footer,
.mobile-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--navy);
  border-radius: 7px;
  font-size: 13px;
  letter-spacing: 0;
}

.desktop-nav {
  gap: 28px;
  color: #39475a;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--orange);
}

.header-cta {
  padding: 12px 18px;
  color: #fff;
  background: var(--orange);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.24);
}

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

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 16px auto;
  z-index: 19;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mobile-nav a {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav.open {
  display: flex;
}

.section,
.section-band {
  padding: 96px clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  min-height: calc(100vh - 76px);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), transparent 40%),
    linear-gradient(180deg, #fff, #f7f9fc);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 26px 0 0;
  color: #526173;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  gap: 14px;
  margin-top: 34px;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.micro-proof span {
  padding: 9px 12px;
  color: #435166;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.24);
}

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

.proof-row {
  gap: 28px;
  padding: 0;
  margin: 42px 0 0;
}

.proof-row div {
  min-width: 112px;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.proof-row div:last-child {
  border-right: 0;
}

.proof-row dt {
  color: var(--navy);
  font-size: 26px;
  font-weight: 800;
}

.proof-row dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.image-hero img {
  position: absolute;
  inset: 36px 28px 34px 0;
  width: calc(100% - 28px);
  height: calc(100% - 70px);
  object-fit: cover;
  object-position: center;
  border: 1px solid #cfd9e5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-hero::after {
  position: absolute;
  inset: 36px 28px 34px 0;
  content: "";
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.estimate-card,
.turnaround-card {
  position: absolute;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.estimate-card {
  top: 120px;
  width: min(320px, 52vw);
  padding: 20px;
}

.estimate-title {
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 800;
}

.estimate-row,
.estimate-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  color: #435166;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.estimate-row strong,
.estimate-total strong {
  color: var(--navy);
}

.estimate-total {
  margin-top: 8px;
  padding: 14px;
  background: #fff7ed;
  border: 0;
  border-radius: 7px;
  color: var(--orange);
  font-weight: 800;
}

.turnaround-card {
  right: 40px;
  bottom: 34px;
  width: 210px;
  padding: 18px;
}

.turnaround-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.turnaround-card strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 30px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.render-section h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.render-section p,
.contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.service-card,
.price-card,
.process-steps article,
.sample-stack article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  min-height: 224px;
  padding: 24px;
}

.service-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.service-card h3,
.process-steps h3,
.price-card h3,
.sample-large h3 {
  margin: 24px 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.service-card p,
.process-steps p,
.price-card p,
.sample-large p,
.sample-stack span {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.accent-card {
  background: var(--navy);
  border-color: var(--navy);
}

.accent-card h3,
.accent-card p {
  color: #fff;
}

.samples-section,
.pricing-section {
  background: var(--wash);
}

.sample-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 20px;
}

.sample-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sample-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(15, 39, 66, 0.05);
}

.sample-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.sample-card.large img {
  aspect-ratio: 16 / 10;
}

.sample-card div {
  padding: 22px;
}

.sample-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}

.sample-card span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.deliverables-section {
  background: #fff;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.deliverables-grid article {
  padding: 24px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.deliverables-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
}

.deliverables-grid span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.process-steps,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-steps article {
  min-height: 220px;
  padding: 26px;
}

.process-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--navy);
  border-radius: 7px;
  font-weight: 800;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  padding: 30px;
}

.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.14);
}

.price-card h3 {
  margin-top: 0;
  font-size: 24px;
}

.price-card strong {
  display: block;
  margin: 24px 0;
  color: var(--navy);
  font-size: 34px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #435166;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--orange);
  border-radius: 50%;
}

.render-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 48px;
  background: var(--navy);
}

.render-section h2,
.render-section p {
  color: #fff;
}

.render-section p {
  color: #cbd5e1;
}

.render-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.render-gallery figure {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #0b1f35;
}

.render-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.render-gallery figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(8, 24, 39, 0.78));
}

.render-gallery figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-note {
  margin-top: 30px;
  padding: 20px;
  background: #fff7ed;
  border-left: 4px solid var(--orange);
  border-radius: 7px;
}

.contact-note strong,
.contact-note span {
  display: block;
}

.contact-note span {
  margin-top: 4px;
  color: #7c4a1c;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
}

textarea {
  min-height: 118px;
  padding-top: 14px;
  resize: vertical;
}

input[type="file"] {
  min-height: auto;
  padding: 13px 14px;
  background: #fff;
}

.full-field {
  grid-column: 1 / -1;
}

.file-field {
  padding: 16px;
  background: #f8fafc;
  border: 1px dashed #b8c6d6;
  border-radius: 7px;
}

.file-hint,
.form-footnote {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.form-footnote {
  margin: -2px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.form-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
}

.form-message[data-type="info"] {
  color: #1d4ed8;
  background: #eff6ff;
}

.form-message[data-type="success"] {
  color: #166534;
  background: #ecfdf3;
}

.form-message[data-type="error"] {
  color: #991b1b;
  background: #fef2f2;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: #cbd5e1;
  background: #081827;
}

.site-footer strong {
  color: #fff;
}

@media (max-width: 1060px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .render-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

  .service-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sample-layout,
  .sample-gallery,
  .deliverables-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section,
  .section-band {
    padding: 68px 18px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand span:last-child {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-actions,
  .proof-row,
  .micro-proof {
    align-items: stretch;
    flex-direction: column;
  }

  .proof-row {
    gap: 14px;
  }

  .proof-row div {
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-visual {
    min-height: 420px;
  }

  .image-hero img,
  .image-hero::after {
    inset: 20px 0 60px;
    width: 100%;
    height: calc(100% - 80px);
  }

  .estimate-card {
    top: 132px;
    right: 10px;
    width: 265px;
  }

  .turnaround-card {
    right: 18px;
    bottom: 12px;
  }

  .service-grid,
  .process-steps,
  .render-gallery,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .render-gallery figure,
  .render-gallery img {
    min-height: 250px;
  }

  .contact-section {
    gap: 28px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
