:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #dbe4f2;
  --paper: #ffffff;
  --soft: #f3f7ff;
  --brand: #1264c8;
  --brand-dark: #0a4fa8;
  --accent: #f25545;
  --accent-dark: #d83f32;
  --night: #081f46;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: static;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 150px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(120deg, #fff 0%, #fff 24%, var(--brand) 56%, var(--accent) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 168px;
  height: 112px;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: #fff;
  font-weight: 700;
}

.nav a:hover,
.contact-list a:hover,
.footer-links a:hover {
  color: #fff;
}

.header-cta {
  padding: 11px 16px;
  color: var(--brand-dark);
  background: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.header-cta:hover {
  color: #fff;
  background: var(--night);
}

.hero {
  position: relative;
  z-index: 0;
  clear: both;
  display: grid;
  grid-template-columns: 1fr;
  color: #fff;
  background:
    linear-gradient(135deg, var(--night), var(--brand-dark) 58%, var(--brand));
}

.hero-media {
  height: min(680px, 62vw);
  min-height: 420px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 84px) 0 clamp(34px, 5vw, 58px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.button-primary {
  color: #fff;
  background: var(--brand);
}

.button-primary:hover {
  background: var(--accent);
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

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

.section-pad {
  padding: clamp(70px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
  gap: clamp(30px, 6vw, 78px);
  align-items: end;
  color: #fff;
  background: linear-gradient(135deg, var(--night), var(--brand-dark) 48%, var(--accent-dark));
}

.intro .eyebrow {
  color: #fff;
}

.intro h2 {
  color: #fff;
}

.stats {
  display: grid;
  gap: 14px;
}

.stats div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(8, 31, 70, 0.06);
}

.stats strong {
  color: var(--accent-dark);
  font-size: 1.55rem;
  line-height: 1;
}

.stats span,
.service-card p,
.process-step p,
.contact-copy p,
.footer p {
  color: var(--muted);
}

.artwork-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 380px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--night);
}

.artwork-copy {
  max-width: 760px;
}

.artwork-showcase h2 {
  margin-bottom: 0;
}

.artwork-showcase img {
  width: min(100%, 360px);
  max-height: 520px;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  object-fit: contain;
}

.services {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand) 50%, var(--accent-dark));
}

.services .eyebrow,
.services .section-heading h2 {
  color: #fff;
}

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

.service-card {
  min-height: 230px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(8, 31, 70, 0.06);
}

.service-card h3 {
  color: var(--ink);
}

.feature-card {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.feature-card div {
  padding: 34px 34px 34px 0;
}

.process {
  color: #fff;
  background: linear-gradient(135deg, var(--night), var(--brand-dark) 44%, var(--accent));
}

.process .eyebrow,
.process .section-heading h2 {
  color: #fff;
}

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

.process-step {
  padding: 24px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(8, 31, 70, 0.05);
}

.process-step h3 {
  color: var(--ink);
}

.process-step span {
  display: block;
  margin-bottom: 22px;
  color: var(--brand);
  font-weight: 800;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(44px, 7vw, 70px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(135deg, var(--night), var(--brand-dark) 58%, var(--accent-dark));
}

.cta-band h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
  color: #fff;
  background:
    linear-gradient(135deg, var(--night), var(--brand-dark) 42%, var(--accent-dark));
}

.contact .eyebrow,
.contact h2,
.contact-list {
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(8, 31, 70, 0.06);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cdd9ec;
  border-radius: 8px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(18, 100, 200, 0.16);
  border-color: var(--brand);
}

textarea {
  resize: vertical;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
  padding: 34px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--night);
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.copyright {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.legal-hero {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(135deg, var(--night), var(--brand-dark) 46%, var(--accent-dark));
}

.legal-hero div,
.legal-content {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-hero h1 {
  margin-bottom: 12px;
}

.legal-hero p,
.legal-content p,
.legal-content li {
  color: rgba(255, 255, 255, 0.84);
}

.legal-content {
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 72px);
}

.legal-content section {
  margin-bottom: 34px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, rgba(8, 31, 70, 0.94), rgba(10, 79, 168, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.legal-content h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.legal-content a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding-bottom: 22px;
  }

  .nav {
    padding: 10px 12px;
    color: var(--night);
    background: rgba(255, 255, 255, 0.82);
    border-radius: 8px;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }

  .intro,
  .contact,
  .feature-card,
  .artwork-showcase,
  .cta-band,
  .footer {
    grid-template-columns: 1fr;
  }

  .artwork-showcase img {
    justify-self: start;
  }

  .cta-band {
    display: grid;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card {
    grid-column: span 2;
  }

  .feature-card div {
    padding: 0 26px 28px;
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 142px;
    height: 96px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-content {
    margin-left: 18px;
  }

  .service-grid,
  .process-grid,
  .stats div {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-column: span 1;
  }

  h1 {
    font-size: 3rem;
  }
}
