:root {
  --ink: #111313;
  --charcoal: #252927;
  --paper: #fbfaf6;
  --white: #ffffff;
  --teal: #006d6f;
  --teal-dark: #00484a;
  --terracotta: #b95e3f;
  --mustard: #d8a532;
  --sky: #a9d7df;
  --sage: #6e7f64;
  --line: rgba(17, 19, 19, 0.14);
  --shadow: 0 18px 50px rgba(17, 19, 19, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 1.28rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 0 14px;
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 19, 0.84) 0%, rgba(17, 19, 19, 0.48) 42%, rgba(17, 19, 19, 0.12) 100%),
    url("assets/artazandra-hero-concept.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(88px, 14vh, 150px) 0 112px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sky);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
}

h2 {
  font-size: clamp(2.1rem, 4.8vw, 4rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
}

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

.button.ghost {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(17, 19, 19, 0.55);
  backdrop-filter: blur(14px);
}

.trust-strip span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 108px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.lead {
  margin: 0;
  color: rgba(17, 19, 19, 0.74);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(240px, 0.45fr);
  gap: 30px;
  margin-bottom: 34px;
}

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

.feature-card,
.person-card,
.proof-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(17, 19, 19, 0.06);
}

.feature-card p,
.person-card p,
.proof-grid p,
.service-card p,
.project-copy p {
  color: rgba(17, 19, 19, 0.72);
}

.card-mark {
  display: block;
  margin-bottom: 42px;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 900;
}

.about-band,
.portfolio-band,
.contact-band {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  background: var(--ink);
  color: var(--white);
}

.about-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

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

.person-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.person-card p {
  color: rgba(255, 255, 255, 0.72);
}

.role {
  margin: 0 0 12px;
  color: var(--sky) !important;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.service-card {
  min-height: 330px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card h3,
.service-card p {
  margin-inline: 20px;
}

.service-card h3 {
  margin-top: 20px;
}

.service-card p {
  margin-bottom: 22px;
  font-size: 0.95rem;
}

.service-visual {
  height: 130px;
  background:
    linear-gradient(135deg, rgba(0, 109, 111, 0.2), rgba(185, 94, 63, 0.24)),
    url("assets/artazandra-hero-concept.png") center / cover;
}

.visual-b { background-position: 34% 70%; }
.visual-c { background-position: 68% 44%; }
.visual-d { background-position: 82% 50%; }
.visual-e { background-position: 8% 54%; }
.visual-f { background-position: 48% 24%; }
.visual-g { background-position: 30% 42%; }
.visual-h { background-position: 72% 18%; }

.portfolio-band {
  background: #f0f2ed;
}

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

.project-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  min-height: 330px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.project-image {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(0, 72, 74, 0.26), rgba(216, 165, 50, 0.2)),
    url("assets/artazandra-hero-concept.png") center / cover no-repeat;
}

.project-crosswalk { background-position: 28% 76%; }
.project-cheers { background-position: 58% 42%; }
.project-playtown { background-position: 15% 38%; }
.project-train { background-position: 74% 34%; }

.project-copy {
  padding: 26px;
}

.project-copy p {
  margin: 14px 0;
}

.project-copy a {
  color: var(--teal);
  font-weight: 850;
}

.project-meta {
  margin: 0 0 12px !important;
  color: var(--terracotta) !important;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.government {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.government .button {
  margin-top: 28px;
}

.gov-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f5ee;
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  color: var(--white);
  background: var(--charcoal);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-details a {
  color: var(--sky);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fbfaf6;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .trust-strip,
  .split,
  .section-heading,
  .about-band,
  .government,
  .contact-band {
    grid-template-columns: 1fr;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 190px;
  }

  .trust-strip {
    bottom: 18px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 820px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(17, 19, 19, 0.78) 0%, rgba(17, 19, 19, 0.52) 55%, rgba(17, 19, 19, 0.9) 100%),
      url("assets/artazandra-hero-concept.png") 58% center / cover no-repeat;
  }

  .hero-content {
    width: min(100% - 32px, 760px);
    padding-top: 78px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip span:nth-child(2) {
    border-right: 0;
  }

  .feature-grid,
  .service-grid,
  .proof-grid,
  .people-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-image {
    min-height: 220px;
  }

  .site-footer {
    display: grid;
  }
}
