/* creativecontraband.dk — latest style.css
   Paste your current stylesheet here and we’ll work directly in this file.
   Goal: keep one clean master version and reduce lag from large chat pastes.
*/
/* =========================================================
   01. DESIGN TOKENS
   Global colors, spacing, shadows, motion, and layout rules
   ========================================================= */

:root {
  --bg: #f5efe7;
  --bg-soft: #fbf8f4;
  --surface: #ffffff;
  --surface-2: #f0e8df;

  --text: #1d1b19;
  --muted: #645a52;

  --charcoal: #181615;
  --charcoal-2: #221f1d;
  --charcoal-3: #2b2724;

  --hero-rust-deep: #8f4a31;
  --hero-rust: #b7603e;
  --hero-rust-bright: #d68458;
  --hero-rust-soft: #e8a06d;

  --accent: #b7603e;
  --accent-2: #d68458;
  --accent-3: #f0c3a7;

  --line: rgba(29, 27, 25, 0.12);
  --line-soft: rgba(29, 27, 25, 0.08);

  --max-width: 1120px;
  --radius: 20px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.06);
  --transition: 180ms ease;
}

/* =========================================================
   02. RESET / BASE
   Foundational element defaults and accessibility basics
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--accent);
  color: #fffaf7;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

/* =========================================================
   03. LAYOUT UTILITIES
   Shared width containers and section spacing
   ========================================================= */

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
  scroll-margin-top: 6rem;
}

.section-dark {
  background: var(--charcoal);
  color: #f5efe7;
}

.section-light {
  background: var(--bg-soft);
}

.section-contact {
  background: var(--charcoal);
  color: #f5efe7;
  border-top: 1px solid rgba(241, 196, 171, 0.2);
}

/* =========================================================
   04. SECTION LABELS / HEADINGS
   Eyebrows, labels, and shared heading patterns
   ========================================================= */

.section-label,
.eyebrow {
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label {
  color: var(--accent);
}

.eyebrow {
  color: rgba(245, 239, 231, 0.72);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.75rem;
}

.section-heading h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-heading p,
.section-dark .about-copy p {
  color: rgba(245, 239, 231, 0.76);
}

/* =========================================================
   05. HEADER / NAVIGATION
   Sticky header, wordmark, and nav hover behavior
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(24, 22, 21, 0.9);
  border-bottom: 1px solid rgba(241, 196, 171, 0.12);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.wordmark {
  position: relative;
  color: #f5efe7;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.wordmark::after {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(214, 132, 88, 0.24);
  animation: brandPulse 2.8s ease-in-out infinite;
  vertical-align: middle;
}

.nav-toggle {
  display: none;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  position: relative;
  color: rgba(245, 239, 231, 0.72);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #f5efe7;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

/* =========================================================
   06. HERO
   Hero background, title, intro bloom, and service pulse
   ========================================================= */

.hero {
  position: relative;
  overflow: clip;
  padding: 7rem 0 5.5rem;
  background:
    radial-gradient(circle at 22% 24%, rgba(232, 160, 109, 0.16), transparent 24%),
    radial-gradient(circle at 72% 36%, rgba(214, 132, 88, 0.18), transparent 22%),
    linear-gradient(180deg, var(--hero-rust-deep) 0%, var(--hero-rust) 48%, var(--hero-rust-bright) 100%);
  color: var(--text);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -14rem -8%;
  height: 22rem;
  background:
    radial-gradient(ellipse at center, rgba(240, 195, 167, 0.22) 0%, rgba(240, 195, 167, 0.08) 38%, transparent 72%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 45% 68%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 54rem;
}

.hero-service {
  margin: 0 0 0.9rem;
  color: #fff3ea;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(255, 248, 243, 0.18),
    0 0 18px rgba(214, 132, 88, 0.16);
  animation: servicePulse 3.2s ease-in-out infinite;
}

.hero-title {
  max-width: 11ch;
  margin: 0 0 1rem;
  font-size: clamp(3rem, 7.2vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-title-rest {
  display: block;
}

.hero-title-emphasis {
  position: relative;
  display: inline-block;
  color: #fff8f3;
  z-index: 0;
}

.hero-title-emphasis::after {
  content: "";
  position: absolute;
  left: 0.01em;
  right: 0.01em;
  bottom: 0.04em;
  height: 0.05em;
  border-radius: 999px;
  background: rgba(255, 248, 243, 0.94);
  opacity: 0.92;
  pointer-events: none;
  z-index: -1;
}

.hero-title-lead {
  display: block;
  color: #fff8f3;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  filter: blur(8px);
  transform-origin: left center;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0);
  animation: bloomEffect 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
  will-change: opacity, transform, filter, text-shadow;
}

.hero-subheading {
  max-width: 34ch;
  margin: 0 0 1.5rem;
  color: rgba(23, 20, 18, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* =========================================================
   07. BUTTONS
   Primary and secondary CTA styling, including shine sweep
   ========================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fff7f2;
  color: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 10px 28px rgba(24, 22, 21, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -38% auto -38% -30%;
  width: 28%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.10) 18%,
    rgba(255, 255, 255, 0.42) 34%,
    rgba(255, 255, 255, 0.96) 50%,
    rgba(255, 255, 255, 0.42) 66%,
    rgba(255, 255, 255, 0.10) 82%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-250%) skewX(-22deg);
  filter: blur(0.35px);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  animation: buttonShine 3.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.16) 36%,
      rgba(255, 255, 255, 0.88) 50%,
      rgba(255, 255, 255, 0.16) 64%,
      rgba(255, 255, 255, 0) 100%
    ),
    #ffffff;
  background-size: 220% 100%, 100% 100%;
  background-position: 180% 0, 0 0;
  border-color: #ffffff;
  box-shadow:
    0 18px 38px rgba(24, 22, 21, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.32),
    0 0 22px rgba(255, 255, 255, 0.16);
}

.button-secondary {
  background: var(--charcoal);
  color: #ffffff;
  border-color: var(--charcoal);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: 0 10px 24px rgba(24, 22, 21, 0.16);
}

/* =========================================================
   08. WORK SECTION
   Project grid, cards, placeholder media, and work links
   ========================================================= */

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

.work-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.08);
}

.work-media,
.placeholder-media {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(183, 96, 62, 0.12), rgba(255, 255, 255, 0.4));
  color: var(--muted);
  text-align: center;
}

.work-copy {
  padding: 1.35rem;
}

.work-copy h3 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
}

.work-description,
.work-role {
  color: var(--muted);
  font-size: 0.98rem;
}

.work-role {
  margin-bottom: 1rem;
}

.work-copy a {
  color: var(--text);
  font-weight: 650;
}

.work-copy a:hover,
.work-copy a:focus-visible {
  color: var(--accent);
}

/* =========================================================
   09. SERVICES SECTION
   Simple stacked service descriptions with restrained borders
   ========================================================= */

.services-grid {
  display: block;
  border-top: 1px solid var(--line);
}

.service-card {
  max-width: 46rem;
  padding: 1.45rem 0 1.6rem;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.service-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================================================
   10. ABOUT SECTION
   About grid, portrait placeholder, and copy styling
   ========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.about-image,
.about-copy {
  min-width: 0;
}

.about-portrait {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(245, 239, 231, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(214, 132, 88, 0.14), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-photo {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  padding: 1.5rem;
  border: 1px solid rgba(245, 239, 231, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(214, 132, 88, 0.14), rgba(255, 255, 255, 0.02));
  color: rgba(245, 239, 231, 0.68);
  text-align: center;
}

.about-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-copy p {
  font-size: 1.02rem;
}

.about-copy a {
  color: #f5efe7;
  font-weight: 650;
}

.about-copy a:hover,
.about-copy a:focus-visible {
  color: var(--accent-3);
}

.about-visit .jr-link-icon {
  position: relative;
  top: 0.06em;
}

.about-visit {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

/* =========================================================
   11. PROCESS SECTION
   4-step layout, line motif, and moving spark accent
   ========================================================= */

#process {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding-top: 1.9rem;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0.9rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(143, 74, 49, 0.3),
    rgba(183, 96, 62, 0.85),
    rgba(214, 132, 88, 0.95),
    rgba(183, 96, 62, 0.55)
  );
}

.process-grid::after {
  content: "";
  position: absolute;
  top: 0.53rem;
  left: calc(2% - 0.35rem);
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  background: radial-gradient(circle, #fff8f3 0%, var(--accent-2) 52%, var(--accent) 100%);
  box-shadow:
    0 0 0 5px rgba(214, 132, 88, 0.12),
    0 0 14px rgba(214, 132, 88, 0.34),
    0 0 28px rgba(214, 132, 88, 0.24);
  animation: sparkRun 5.8s ease-in-out infinite;
}

.process-step {
  position: relative;
  padding-top: 0.55rem;
}

.process-step:last-child::after {
  content: "";
  position: absolute;
  top: -0.12rem;
  left: 0.62rem;
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 999px;
  background: radial-gradient(circle, #fff8f3 0%, var(--accent-2) 56%, var(--accent) 100%);
  box-shadow:
    0 0 0 6px rgba(214, 132, 88, 0.12),
    0 0 16px rgba(214, 132, 88, 0.34),
    0 0 34px rgba(214, 132, 88, 0.22);
  opacity: 0.92;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(183, 96, 62, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.process-step h3 {
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================================================
   12. CONTACT SECTION
   Contact heading, shine pass, email emphasis, location text
   ========================================================= */

.contact-inner {
  max-width: 44rem;
}

.section-contact .section-label {
  color: var(--accent-3);
}

.contact-inner h2 {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.contact-inner h2::after {
  content: "";
  position: absolute;
  inset: -12% auto -12% -18%;
  width: 24%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 248, 243, 0.12) 30%,
    rgba(255, 248, 243, 0.75) 50%,
    rgba(255, 248, 243, 0.12) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-240%) skewX(-24deg);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: contactShine 7.6s ease-in-out infinite;
}

.contact-inner p {
  color: rgba(245, 239, 231, 0.78);
  font-size: 1.05rem;
}

.contact-email {
  display: inline-block;
  margin: 1rem 0 0.75rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 750;
  line-height: 1.2;
  color: #fff7f3;
  text-shadow: 0 0 18px rgba(214, 132, 88, 0.12);
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--accent-3);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-location {
  opacity: 0.88;
}

/* =========================================================
   13. FOOTER
   Closing strip, subtle top accent, and quiet outbound link
   ========================================================= */

.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--charcoal-2) 0%, #111111 100%);
  color: #f5efe7;
  border-top: 1px solid rgba(240, 195, 167, 0.16);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--hero-rust-deep) 0%,
    var(--hero-rust) 42%,
    var(--hero-rust-bright) 100%
  );
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.55rem 0 2rem;
}

.footer-inner p {
  margin: 0;
  color: rgba(245, 239, 231, 0.68);
  font-size: 0.92rem;
}

.footer-inner a {
  color: #f5efe7;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--accent-3);
}

.jr-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.jr-link-icon {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 180ms ease, transform 180ms ease;
}

.jr-link:hover .jr-link-icon,
.jr-link:focus-visible .jr-link-icon {
  opacity: 1;
  transform: none;
}

/* =========================================================
   14. ANIMATIONS
   Brand pulse, hero bloom, service pulse, CTA flare, contact shine
   ========================================================= */

@keyframes brandPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
    box-shadow: 0 0 12px rgba(214, 132, 88, 0.24);
  }

  50% {
    transform: scale(1.42);
    opacity: 1;
    box-shadow:
      0 0 22px rgba(214, 132, 88, 0.42),
      0 0 34px rgba(214, 132, 88, 0.18);
  }
}

@keyframes servicePulse {
  0%, 100% {
    opacity: 0.85;
    text-shadow:
      0 0 6px rgba(255, 248, 243, 0.10),
      0 0 12px rgba(214, 132, 88, 0.10);
  }

  50% {
    opacity: 1;
    text-shadow:
      0 0 14px rgba(255, 248, 243, 0.32),
      0 0 28px rgba(214, 132, 88, 0.28);
  }
}

@keyframes bloomEffect {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    filter: blur(8px);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  60% {
    opacity: 0.88;
    transform: translateY(0) scale(1.02);
    filter: blur(2px);
    text-shadow:
      0 0 18px rgba(255, 248, 243, 0.55),
      0 0 30px rgba(214, 132, 88, 0.22);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    text-shadow:
      0 0 8px rgba(255, 248, 243, 0.18),
      0 0 18px rgba(214, 132, 88, 0.10);
  }
}

@keyframes buttonShine {
  0%,
  78%,
  100% {
    transform: translateX(-260%) skewX(-24deg);
    opacity: 0;
  }

  82% {
    opacity: 0.4;
  }

  88% {
    transform: translateX(540%) skewX(-24deg);
    opacity: 1;
  }

  92% {
    opacity: 0.18;
  }
}

@keyframes contactShine {
  0%,
  82%,
  100% {
    transform: translateX(-240%) skewX(-24deg);
    opacity: 0;
  }

  86% {
    opacity: 0.3;
  }

  91% {
    transform: translateX(460%) skewX(-24deg);
    opacity: 0.9;
  }

  94% {
    opacity: 0;
  }
}

@keyframes sparkRun {
  0% {
    left: calc(2% - 0.35rem);
    opacity: 0;
    box-shadow:
      0 0 0 4px rgba(214, 132, 88, 0.08),
      0 0 10px rgba(214, 132, 88, 0.2),
      0 0 16px rgba(214, 132, 88, 0.14);
  }

  8% {
    opacity: 1;
  }

  25% {
    left: calc(27% - 0.35rem);
  }

  50% {
    left: calc(52% - 0.35rem);
    box-shadow:
      0 0 0 5px rgba(214, 132, 88, 0.12),
      0 0 18px rgba(214, 132, 88, 0.34),
      0 0 28px rgba(214, 132, 88, 0.22);
  }

  75% {
    left: calc(77% - 0.35rem);
    box-shadow:
      0 0 0 6px rgba(214, 132, 88, 0.14),
      0 0 22px rgba(214, 132, 88, 0.42),
      0 0 36px rgba(214, 132, 88, 0.28);
  }

  92% {
    opacity: 1;
  }

  100% {
    left: calc(98% - 0.35rem);
    opacity: 0;
    box-shadow:
      0 0 0 7px rgba(214, 132, 88, 0.08),
      0 0 24px rgba(214, 132, 88, 0.3),
      0 0 44px rgba(214, 132, 88, 0.18);
  }
}

/* =========================================================
   15. REDUCED MOTION
   Disable decorative motion for users who prefer less motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .button-primary::after {
    animation: none;
  }
}

/* =========================================================
   16. RESPONSIVE: TABLET AND DOWN
   Collapse multi-column areas and simplify process motif
   ========================================================= */

@media (max-width: 980px) {
  .work-grid,
  .about-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 6rem;
  }

  .about-grid {
    gap: 1.6rem;
  }

  .about-image {
    order: -1;
  }

  .about-portrait {
    max-width: 26rem;
    margin-inline: auto;
  }

  .about-portrait img {
    object-position: center 18%;
  }

  .process-grid {
    gap: 1.75rem;
    padding-top: 0;
  }

  .process-grid::before,
  .process-grid::after,
  .process-step:last-child::after {
    display: none;
  }
}

/* =========================================================
   17. RESPONSIVE: MOBILE
   Tighten spacing and keep nav / footer usable on small screens
   ========================================================= */

@media (max-width: 720px) {
  .section {
    padding: 4.25rem 0;
  }

  .header-inner {
    min-height: 4rem;
  }

  .site-nav ul {
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .wordmark {
    max-width: 14rem;
    line-height: 1.2;
  }

  .hero-title {
    line-height: 0.98;
  }

  .about-portrait {
    max-width: 22rem;
  }

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

/* =========================================================
   18. RESPONSIVE: SMALL MOBILE
   Stack hero buttons full width for cleaner tapping
   ========================================================= */

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }
}