:root {
  --ink: #151515;
  --ink-soft: rgba(246, 244, 238, 0.68);
  --paper: #070909;
  --paper-deep: #0e1111;
  --white: #fffdf8;
  --warm-dark: #0c0d0c;
  --amber: #d6b276;
  --amber-bright: #f1cc88;
  --amber-soft: rgba(214, 178, 118, 0.12);
  --clay: #a45f50;
  --line: rgba(255, 253, 248, 0.11);
  --line-gold: rgba(214, 178, 118, 0.28);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(214, 178, 118, 0.075), transparent 28rem),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 64px 64px, 64px 64px, auto;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(7, 9, 9, 0.88);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", Inter, sans-serif;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-gold);
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.brand-name {
  font-size: 0.98rem;
  line-height: 1;
}

.brand-name strong,
.brand-title strong,
.site-footer strong {
  font-weight: 700;
}

.brand-name span,
.brand-title span,
.site-footer span {
  font-weight: 400;
}

.brand-name strong,
.brand-title strong,
.site-footer strong {
  color: var(--amber);
}

.site-nav {
  display: flex;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav a {
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  opacity: 0.76;
  transition: opacity 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  border-color: var(--line-gold);
  background: var(--amber-soft);
  color: var(--amber);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 76px) 42px;
  background: #050606;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 120%;
  object-fit: cover;
  object-position: left center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 7, 0.94) 0%, rgba(5, 7, 7, 0.78) 44%, rgba(5, 7, 7, 0.48) 100%),
    linear-gradient(0deg, rgba(5, 7, 7, 0.92) 0%, rgba(5, 7, 7, 0.08) 64%);
}

.hero-content {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 100%;
  max-width: 980px;
  padding-bottom: clamp(34px, 7vh, 68px);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 0.98;
}

h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 600;
  line-height: 1.02;
}

h3,
h4 {
  font-family: "Space Grotesk", Inter, sans-serif;
}

.hero-heading {
  max-width: 980px;
  margin: 0 auto 28px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(3.1rem, 7.2vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero-heading span {
  color: var(--amber-bright);
}

.brand-title {
  max-width: 920px;
  margin-bottom: 24px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(1.9rem, 3.8vw, 3.7rem);
  letter-spacing: -0.045em;
}

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

.hero-copy {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--amber-bright);
  color: #16120d;
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.28);
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
}

.hero-panel {
  position: relative;
  z-index: 1;
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(900px, 100%);
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: rgba(8, 10, 10, 0.68);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-width: 0;
  padding: 20px;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 24px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-bright);
  box-shadow: 0 0 18px rgba(241, 204, 136, 0.72);
}

.hero-panel div + div {
  border-left: 1px solid var(--line);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  color: var(--amber-bright);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
  line-height: 1;
}

.hero-panel span {
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.76rem;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 130px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(34px, 8vw, 96px);
  align-items: start;
}

.intro .section-kicker {
  grid-column: 1 / -1;
  text-align: center;
}

.intro h2 {
  grid-column: 1 / 2;
}

.intro p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2 {
  max-width: 770px;
  margin: 0 auto;
}

.text-link {
  flex: 0 0 auto;
  color: var(--amber);
  font-weight: 800;
}

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

.work-card,
.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-deep);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.work-card {
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.work-card:hover {
  border-color: rgba(214, 178, 118, 0.58);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.work-thumb {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.work-thumb::before,
.work-thumb::after {
  position: absolute;
  content: "";
}

.work-thumb::before {
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 39, 32, 0.92), rgba(214, 178, 118, 0.72));
}

.work-thumb::after {
  inset: 30px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.14) 1px, transparent 1px) 0 0 / 42px 100%,
    linear-gradient(0deg, rgba(255, 253, 248, 0.35), rgba(255, 253, 248, 0.08));
  clip-path: polygon(0 10%, 100% 0, 88% 100%, 10% 86%);
}

.work-thumb.launch::before {
  background: linear-gradient(135deg, rgba(120, 84, 58, 0.9), rgba(47, 39, 28, 0.88));
}

.work-thumb.social::before {
  background: linear-gradient(135deg, rgba(33, 32, 29, 0.94), rgba(143, 116, 76, 0.78));
}

.work-body,
.service-card {
  padding: 24px;
}

.work-body > span,
.service-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work-body p,
.service-card p,
.timeline-item p,
.value-item p,
.contact p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.work-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  color: var(--amber);
  font-size: 0.82rem;
  text-transform: uppercase;
}

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

.service-card {
  min-height: 100%;
}

.package-card {
  position: relative;
  grid-column: span 2;
  padding: 30px;
}

.package-card h3 {
  margin-bottom: 12px;
  font-size: 1.75rem;
}

.package-card.featured {
  border-color: var(--amber);
  box-shadow: 0 18px 50px rgba(214, 178, 118, 0.12);
}

.package-icon {
  display: block;
  margin-bottom: 18px;
  font-size: 1.5rem;
  line-height: 1;
}

.popular-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package-intro {
  min-height: 78px;
  margin-bottom: 18px !important;
}

.package-price {
  margin-bottom: 22px !important;
  color: var(--white) !important;
  font-size: 0.9rem;
}

.package-price strong {
  color: var(--amber);
}

.package-list-title {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.package-features {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.package-features li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.package-features li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--amber);
  content: "•";
}

.package-footnote {
  margin: 14px 0 0 !important;
  font-size: 0.76rem;
  font-style: italic;
}

.ideal-title {
  margin-top: 26px;
}

.ideal-list {
  padding-top: 14px;
}

.custom-projects {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.custom-projects-heading {
  margin-bottom: 26px;
}

.custom-projects-heading h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.custom-projects-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.custom-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-project-grid li {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-deep);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.custom-quote-button {
  margin-top: 28px;
}

.pricing-note {
  max-width: 760px;
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.process-band {
  background: var(--warm-dark);
  color: var(--white);
}

.process h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process > .eyebrow {
  text-align: center;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 253, 248, 0.18);
}

.timeline::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: var(--warm-dark);
  content: "";
}

.timeline-item {
  min-height: 210px;
  padding: 28px;
  background: var(--warm-dark);
}

.timeline-item span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--amber);
  font-weight: 800;
}

.timeline-item p {
  color: rgba(255, 253, 248, 0.72);
}

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

.quote {
  position: static;
  align-self: center;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.2vw, 3.2rem);
  line-height: 1.05;
}

.quote span {
  display: block;
  white-space: nowrap;
}

.quote span:last-child {
  font-size: 0.89em;
}

.values-list {
  display: grid;
  gap: 16px;
}

.value-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.contact {
  padding: clamp(76px, 10vw, 132px) 18px;
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.92), rgba(47, 39, 28, 0.92)),
    url("assets/wasl-contact-bg.png") center / cover;
  color: var(--white);
}

.contact-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  margin-bottom: 22px;
}

.contact p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: rgba(255, 253, 248, 0.76);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.instagram-button {
  width: 48px;
  padding: 0;
}

.instagram-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

/* Product-marketing studio visual system */
.section {
  width: min(1240px, calc(100% - 36px));
}

.intro {
  position: relative;
  row-gap: clamp(28px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
}

.intro h2 {
  max-width: 720px;
}

.intro p {
  max-width: 500px;
  padding-top: 8px;
  font-size: 1rem;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 860px;
}

.work-grid,
.service-grid {
  gap: 16px;
}

.work-card,
.service-card,
.custom-project-grid li {
  border-color: var(--line);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 46%),
    var(--paper-deep);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.work-card {
  position: relative;
}

.work-card::before,
.service-card::before {
  position: absolute;
  z-index: 2;
  top: -1px;
  right: 22px;
  left: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  content: "";
  opacity: 0.5;
}

.work-card:hover {
  border-color: var(--line-gold);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38), 0 0 32px rgba(214, 178, 118, 0.06);
  transform: translateY(-6px);
}

.work-thumb {
  min-height: 270px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #090b0b;
  background-size: 30px 30px, 30px 30px, auto;
}

.work-thumb::before {
  inset: 0;
  background:
    radial-gradient(circle at 68% 38%, rgba(214, 178, 118, 0.3), transparent 28%),
    linear-gradient(145deg, #111515, #080909);
}

.work-thumb::after {
  inset: 24px;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(214, 178, 118, 0.7) 0 32%, transparent 32%) 18px calc(100% - 24px) / 72% 3px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 0 58%, transparent 58%) 18px calc(100% - 36px) / 58% 3px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015));
  clip-path: none;
  box-shadow: inset 0 0 30px rgba(214, 178, 118, 0.04);
}

.work-thumb.launch::before {
  background:
    radial-gradient(circle at 38% 32%, rgba(214, 178, 118, 0.34), transparent 30%),
    linear-gradient(145deg, #17130e, #080909);
}

.work-thumb.social::before {
  background:
    radial-gradient(circle at 72% 62%, rgba(214, 178, 118, 0.26), transparent 30%),
    linear-gradient(145deg, #121414, #080909);
}

.work-body {
  padding: 28px;
}

.work-body h3 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.work-body > span,
.service-number {
  letter-spacing: 0.12em;
}

.work-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.package-card {
  overflow: hidden;
  padding: 34px;
}

.package-card h3 {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.package-card.featured {
  border-color: var(--line-gold);
  background:
    radial-gradient(circle at 85% 5%, rgba(214, 178, 118, 0.12), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 46%),
    var(--paper-deep);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), 0 0 40px rgba(214, 178, 118, 0.06);
}

.package-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: var(--amber-soft);
  filter: grayscale(0.35);
}

.package-price {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
}

.package-features {
  border-color: var(--line);
}

.package-features li::before {
  content: "→";
}

.custom-projects {
  padding: 56px clamp(18px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 178, 118, 0.1), transparent 24rem),
    var(--paper-deep);
}

.custom-project-grid li {
  position: relative;
  padding-left: 38px;
  text-align: left;
}

.custom-project-grid li::before {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--amber);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.process-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--warm-dark);
  background-size: 48px 48px, 48px 48px, auto;
}

.timeline {
  gap: 12px;
  background: transparent;
}

.timeline::after {
  display: none;
}

.timeline-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 9, 9, 0.86);
}

.timeline-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent 70%);
  content: "";
}

.timeline-item span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: var(--amber-soft);
  font-size: 0.72rem;
}

.values {
  margin-top: clamp(64px, 8vw, 110px);
  margin-bottom: clamp(64px, 8vw, 110px);
  padding: clamp(54px, 7vw, 90px) clamp(24px, 6vw, 74px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 50%, rgba(214, 178, 118, 0.1), transparent 24rem),
    rgba(10, 12, 12, 0.88);
}

.quote {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.05em;
}

.quote span:first-child {
  color: var(--amber-bright);
}

.quote span:last-child {
  font-size: 1.12em;
}

.value-item {
  border-color: var(--line);
}

.value-item h3 {
  font-size: 1.1rem;
}

.contact {
  border-top: 1px solid var(--line-gold);
  background:
    radial-gradient(circle at 50% 25%, rgba(214, 178, 118, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(7, 9, 9, 0.96), rgba(18, 15, 11, 0.94)),
    url("assets/wasl-contact-bg.png") center / cover;
}

.contact h2 {
  letter-spacing: -0.05em;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050606;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 850ms ease, transform 850ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .intro,
  .values {
    grid-template-columns: 1fr;
  }

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

  .package-card {
    grid-column: auto;
  }

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

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

  .quote {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 18px auto 18px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-deep);
    color: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 118px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 7, 7, 0.94), rgba(5, 7, 7, 0.74)),
      linear-gradient(0deg, rgba(5, 7, 7, 0.9), rgba(5, 7, 7, 0.12) 62%);
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.5rem);
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel div + div {
    border-top: 1px solid rgba(255, 253, 248, 0.2);
    border-left: 0;
  }

  .section-heading {
    align-items: center;
    flex-direction: column;
  }

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

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

  .package-intro {
    min-height: auto;
  }

  .work-thumb {
    min-height: 210px;
  }

  .timeline-item {
    min-height: auto;
  }

  .timeline-item span {
    margin-bottom: 28px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
