:root {
  --ink: #121118;
  --ink-soft: #2f2b3a;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --muted: #716c7c;
  --line: #e8e1dc;
  --violet: #8c32ff;
  --violet-dark: #5b18c8;
  --teal: #0c8f8f;
  --coral: #e85d4f;
  --gold: #e0aa36;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(22, 17, 30, 0.12);
}

* {
  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: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(232, 225, 220, 0.72);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: min(210px, 48vw);
}

.brand img {
  width: 100%;
  aspect-ratio: 3.7 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.65);
  transition: 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
}

.nav-cta,
.button.primary {
  color: white;
  background: var(--ink);
}

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

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--panel);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(56px, 9vw, 116px) clamp(18px, 5vw, 72px) clamp(42px, 7vw, 82px);
  color: white;
  background:
    linear-gradient(130deg, rgba(18, 17, 24, 0.92), rgba(18, 17, 24, 0.74)),
    url("assets/asere-studio-logo.png") center / cover no-repeat,
    #121118;
}

.hero::after {
  position: absolute;
  content: "";
}

.hero-copy,
.hero-panel,
.page-hero,
.section,
.cta-band,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.hero-copy {
  width: 100%;
  margin: 0;
}

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

.hero .eyebrow,
.cta-band .eyebrow {
  color: #80e0d8;
}

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

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

h1 {
  max-width: 860px;
  font-size: clamp(3rem, 8vw, 6.9rem);
  font-weight: 850;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  font-weight: 830;
}

h3 {
  font-size: 1.22rem;
}

.hero-text,
.page-hero p,
.split-section p,
.story-section p,
.future-note p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-panel {
  width: 100%;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-panel p {
  margin: 22px 0 6px;
  font-size: 1.28rem;
  font-weight: 800;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.68);
}

.section {
  padding-block: clamp(64px, 10vw, 118px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
}

.feature-grid,
.project-grid,
.blog-grid,
.artist-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article,
.project-card,
.blog-grid article,
.artist-services article,
.service-stack article,
.contact-card,
.story-section aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(22, 17, 30, 0.06);
}

.feature-grid article,
.blog-grid article,
.artist-services article {
  padding: 24px;
}

.feature-grid p,
.project-card p,
.artist-services p,
.contact-card p {
  color: var(--muted);
}

.split-section,
.story-section,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.split-section p,
.story-section p,
.future-note p {
  color: var(--ink-soft);
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-list span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink-soft);
  font-weight: 750;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading a {
  color: var(--teal);
  font-weight: 800;
}

.project-card {
  min-height: 240px;
  padding: 26px;
}

.project-card span,
.blog-grid span,
.service-stack span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.project-card.large {
  min-height: 300px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  min-height: 210px;
  padding: 22px;
  border-left: 4px solid var(--violet);
  background: white;
  counter-increment: process;
}

.process-list li::before {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 850;
  content: "0" counter(process);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 8px;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(58px, 8vw, 92px);
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius);
  color: white;
  background: linear-gradient(120deg, var(--ink), #24202e 58%, #153b3b);
}

.cta-band h2 {
  max-width: 760px;
}

.page-hero {
  padding: clamp(58px, 9vw, 120px) 0 clamp(34px, 6vw, 72px);
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 7vw, 6rem);
}

.page-hero p {
  color: var(--ink-soft);
}

.artist-hero,
.about-hero {
  border-bottom: 1px solid var(--line);
}

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

.service-stack article {
  padding: clamp(24px, 4vw, 38px);
}

.service-stack h2 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.service-stack ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--ink-soft);
}

.future-note {
  padding: clamp(32px, 5vw, 56px);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  background: white;
}

.story-section aside {
  padding: 28px;
}

.story-section aside strong {
  color: var(--coral);
  text-transform: uppercase;
}

.blog-grid article {
  min-height: 190px;
}

.blog-grid h2 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.contact-card h2 {
  font-size: 2rem;
}

.contact-card a {
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.footer-brand {
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
}

.legal-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.legal-content {
  width: min(720px, 100%);
  padding: clamp(24px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.legal-content a {
  color: var(--teal);
  font-weight: 850;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-flex;
  }

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

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

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

  .site-nav a::after {
    display: none;
  }

  .hero,
  .intro-grid,
  .split-section,
  .story-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
  }

  .brand {
    width: min(170px, 54vw);
  }

  .hero-copy,
  .hero-panel,
  .page-hero,
  .section,
  .cta-band,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 42px;
  }

  .feature-grid,
  .project-grid,
  .blog-grid,
  .artist-services,
  .service-stack,
  .process-list {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }
}
