/* ═══════════════════════════════════════════════════════════
   Design-Werkstatt Heike Holder-Niedermeier · „Studiolicht"
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink: #17120e;            /* warmes Tiefschwarz */
  --ink-soft: #241d17;
  --paper: #f3ede2;          /* warmes Papier */
  --paper-deep: #e9e0cf;
  --amber: #e8a94f;          /* Wolfram-Studiolicht */
  --amber-deep: #c9853a;
  --cream: #f8f3ea;
  --muted: #6b6155;
  --muted-dark: #b3a48e;
  --line: rgba(23, 18, 14, 0.14);
  --line-light: rgba(248, 243, 234, 0.16);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Alegreya Sans", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: light; }

[id] { scroll-margin-top: 90px; }

body {
  font-family: var(--font-body);
  font-size: 1.075rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

a, button { touch-action: manipulation; }

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); letter-spacing: -0.01em; text-wrap: balance; }
h2 em, h1 em { font-style: italic; font-weight: 400; color: var(--amber-deep); }
.dot { color: var(--amber); }

a { color: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--amber); color: var(--ink); padding: 0.6rem 1.2rem;
  border-radius: 0 0 8px 0; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

/* ─────────────── Navigation ─────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; gap: 2rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  color: var(--cream);
  transition: background 300ms ease, box-shadow 300ms ease;
}
.nav.scrolled {
  background: rgba(23, 18, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  padding-top: 0.6rem; padding-bottom: 0.6rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-right: auto; }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px; flex: none;
  border: 1.5px solid var(--amber); border-radius: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--amber);
  background: rgba(23, 18, 14, 0.45);
}
.brand-text { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.15; }
.brand-text em { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-dark); }
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a {
  text-decoration: none; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 0.5rem 0.15rem; position: relative; color: var(--cream); opacity: 0.85;
  transition: opacity 200ms ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0.2rem; height: 2px;
  background: var(--amber); transition: right 280ms var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { right: 0; }
.nav-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--amber); color: var(--ink); text-decoration: none;
  font-weight: 700; font-size: 0.95rem; padding: 0.6rem 1.1rem; border-radius: 999px;
  transition: transform 200ms var(--ease), box-shadow 200ms ease, background 200ms ease;
  box-shadow: 0 4px 18px rgba(232, 169, 79, 0.35);
}
.nav-call:hover { transform: translateY(-2px); background: #f0b96a; box-shadow: 0 8px 26px rgba(232, 169, 79, 0.45); }

/* ─────────────── Hero ─────────────── */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--cream); overflow: hidden;
  background: var(--ink);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(23, 18, 14, 0.96) 0%, rgba(23, 18, 14, 0.55) 45%, rgba(23, 18, 14, 0.25) 100%),
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(232, 169, 79, 0.14), transparent 60%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 2; width: min(1150px, 100%);
  margin: 0 auto; padding: 8.5rem clamp(1.25rem, 4vw, 3rem) clamp(4rem, 9vh, 7rem);
}
.hero-kicker {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber);
}
.kicker-line { width: 46px; height: 1.5px; background: var(--amber); flex: none; }
.hero h1 {
  font-size: clamp(2.9rem, 8.2vw, 6.2rem);
  font-weight: 400; letter-spacing: -0.015em; margin: 1.1rem 0 1.4rem;
  text-wrap: balance;
}
.hero-sub { max-width: 40rem; font-size: clamp(1.05rem, 1.6vw, 1.24rem); color: rgba(248, 243, 234, 0.88); }
.hero-sub strong { color: var(--cream); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-credits {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.6rem;
  list-style: none; margin-top: 3rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
  font-family: var(--font-display); font-size: 1.02rem; color: rgba(248, 243, 234, 0.82);
}
.hero-credits li:first-child {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-dark);
}
.hero-credits li + li + li::before { content: "·"; margin-right: 1.6rem; color: var(--amber); }
.hero-scroll {
  position: absolute; right: clamp(1.2rem, 4vw, 3rem); bottom: 2.2rem; z-index: 2;
  width: 1.5px; height: 64px; background: var(--line-light); overflow: hidden;
}
.hero-scroll span {
  display: block; width: 100%; height: 40%; background: var(--amber);
  animation: scrollhint 2.2s var(--ease) infinite;
}
@keyframes scrollhint { 0% { transform: translateY(-110%); } 60%, 100% { transform: translateY(260%); } }

/* Load-Stagger */
.load-1, .load-2, .load-3, .load-4, .load-5 {
  opacity: 0; transform: translateY(26px);
  animation: rise 850ms var(--ease) forwards;
}
.load-2 { animation-delay: 130ms; }
.load-3 { animation-delay: 260ms; }
.load-4 { animation-delay: 390ms; }
.load-5 { animation-delay: 540ms; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ─────────────── Buttons ─────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 0.9rem 1.6rem; border-radius: 999px; text-decoration: none;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background 220ms ease, color 220ms ease;
  cursor: pointer;
}
.btn-amber { background: var(--amber); color: var(--ink); box-shadow: 0 6px 24px rgba(232, 169, 79, 0.35); }
.btn-amber:hover { transform: translateY(-3px); background: #f0b96a; box-shadow: 0 12px 32px rgba(232, 169, 79, 0.45); }
.btn-ghost { border: 1.5px solid rgba(248, 243, 234, 0.4); color: var(--cream); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-3px); }
.btn-line { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--cream); transform: translateY(-3px); }
.btn-big { font-size: 1.15rem; padding: 1.05rem 2rem; margin-top: 1.6rem; }

/* ─────────────── Sections gemeinsam ─────────────── */
section { position: relative; }
.eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-deep); margin-bottom: 0.9rem;
}
.section-head { width: min(1150px, 100%); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.section-lede { max-width: 34rem; margin-top: 1.1rem; color: var(--muted); font-size: 1.1rem; }
.section-head--light .section-lede { color: var(--muted-dark); }

/* ─────────────── Intro ─────────────── */
.intro { padding: clamp(4.5rem, 10vw, 8rem) 0; background: var(--paper); }
.intro-grid {
  width: min(1150px, 100%); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.intro-media { position: relative; }
.intro-media img {
  border-radius: 14px; box-shadow: 24px 24px 0 -6px var(--paper-deep), 0 24px 48px rgba(23, 18, 14, 0.18);
  aspect-ratio: 4 / 4.6; object-fit: cover; width: 100%;
}
.intro-media figcaption {
  margin-top: 1.9rem; font-family: var(--font-display); font-style: italic;
  color: var(--muted); font-size: 0.98rem;
}
.intro-text h2 { margin-bottom: 1.3rem; }
.intro-text p + p { margin-top: 1rem; }
.intro-facts {
  list-style: none; margin-top: 2rem; display: grid; gap: 1rem;
  border-left: 2px solid var(--amber); padding-left: 1.4rem;
}
.intro-facts strong { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; display: block; }
.intro-facts span { color: var(--muted); font-size: 0.98rem; }

/* ─────────────── Leistungen ─────────────── */
.services { padding: clamp(4.5rem, 10vw, 8rem) 0; background: var(--cream); }
.services::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.55;
  background: radial-gradient(ellipse 60% 40% at 90% 0%, rgba(232, 169, 79, 0.12), transparent 65%);
}
.service-grid {
  width: min(1150px, 100%); margin: 3rem auto 0; padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem;
}
.service-card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 1.8rem 1.6rem 1.7rem;
  transition: transform 260ms var(--ease), box-shadow 260ms ease, border-color 260ms ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(23, 18, 14, 0.13);
  border-color: rgba(201, 133, 58, 0.5);
}
.service-num {
  font-family: var(--font-display); font-style: italic; font-size: 2.4rem;
  color: transparent; -webkit-text-stroke: 1px var(--amber-deep);
  position: absolute; top: 1.1rem; right: 1.3rem; opacity: 0.75;
}
.service-card h3 { font-size: 1.32rem; margin-bottom: 0.7rem; padding-right: 3.2rem; }
.service-card p { color: var(--muted); font-size: 0.99rem; }

/* ─────────────── Referenzen ─────────────── */
.work { padding: clamp(4.5rem, 10vw, 8rem) 0; background: var(--ink); color: var(--cream); }
.work::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 45% at 15% 8%, rgba(232, 169, 79, 0.1), transparent 60%);
}
.work-grid {
  width: min(1150px, 100%); margin: 3rem auto 0; padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem; align-items: start;
}
.work-card {
  position: relative; border-radius: 16px; overflow: hidden; background: var(--ink-soft);
  border: 1px solid rgba(248, 243, 234, 0.09);
  transition: transform 300ms var(--ease), box-shadow 300ms ease;
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 26px 56px rgba(0, 0, 0, 0.5); }
.work-card img {
  width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover;
  transition: transform 700ms var(--ease), opacity 400ms ease; opacity: 0.92;
}
.work-card--tall img { aspect-ratio: 4 / 4.4; }
.work-card:hover img { transform: scale(1.05); opacity: 1; }
.work-info { padding: 1.4rem 1.4rem 1.5rem; }
.work-info h3 { font-size: 1.42rem; margin-bottom: 0.5rem; }
.work-info p { color: var(--muted-dark); font-size: 0.97rem; }
.work-tag {
  display: inline-block; margin-top: 0.95rem; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber);
  border: 1px solid rgba(232, 169, 79, 0.4); border-radius: 999px; padding: 0.3rem 0.8rem;
}
.work-note {
  width: min(1150px, 100%); margin: 2.8rem auto 0; padding: 0 clamp(1.25rem, 4vw, 3rem);
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--muted-dark);
}

/* ─────────────── Ablauf ─────────────── */
.process { padding: clamp(4.5rem, 10vw, 8rem) 0; background: var(--paper); }
.process-steps {
  width: min(1150px, 100%); margin: 3rem auto 0; padding: 0 clamp(1.25rem, 4vw, 3rem);
  list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.3rem;
  counter-reset: step;
}
.step { position: relative; padding-top: 1.2rem; }
.step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 1.3rem; height: 1.5px;
  background: var(--line);
}
.step:last-child::before { right: 0; }
.step-num {
  font-family: var(--font-display); font-style: italic; font-size: 3rem; line-height: 1;
  color: var(--amber-deep); display: block; margin-bottom: 0.7rem;
}
.step h3 { font-size: 1.22rem; margin-bottom: 0.55rem; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ─────────────── Band ─────────────── */
.band {
  position: relative; padding: clamp(6rem, 14vw, 10rem) clamp(1.25rem, 4vw, 3rem);
  display: grid; place-items: center; text-align: center; color: var(--cream); overflow: hidden;
  background: var(--ink);
}
.band-bg { position: absolute; inset: -12% 0; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(23, 18, 14, 0.78), rgba(23, 18, 14, 0.7));
}
.band-inner { position: relative; z-index: 2; max-width: 46rem; }
.band-inner h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
.band-inner p { margin-top: 0.9rem; font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--muted-dark); }
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .band-bg img { animation: bandpan linear both; animation-timeline: view(); animation-range: entry 0% exit 100%; }
    @keyframes bandpan { from { transform: translateY(-6%); } to { transform: translateY(6%); } }
  }
}

/* ─────────────── Pakete ─────────────── */
.pricing { padding: clamp(4.5rem, 10vw, 8rem) 0; background: var(--cream); }
.pricing-grid {
  width: min(1150px, 100%); margin: 3rem auto 0; padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem; align-items: stretch;
}
.price-card {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: 16px; padding: 2rem 1.7rem;
  transition: transform 260ms var(--ease), box-shadow 260ms ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(23, 18, 14, 0.13); }
.price-card--hero {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
  box-shadow: 0 24px 56px rgba(23, 18, 14, 0.3);
}
.price-flag {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink); background: var(--amber);
  border-radius: 999px; padding: 0.32rem 0.85rem; margin-bottom: 1.1rem;
}
.price-card h3 { font-size: 1.5rem; }
.price { font-family: var(--font-display); font-size: 1.9rem; margin: 0.7rem 0 1.2rem; }
.price span { font-size: 1rem; color: var(--muted); margin-right: 0.2rem; }
.price em { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.85rem; color: var(--muted); }
.price-card--hero .price span, .price-card--hero .price em { color: var(--muted-dark); }
.price-card ul { list-style: none; display: grid; gap: 0.55rem; margin-bottom: 1.8rem; flex: 1; }
.price-card li { position: relative; padding-left: 1.5rem; font-size: 0.98rem; }
.price-card li::before {
  content: ""; position: absolute; left: 0; top: 0.48em; width: 0.85em; height: 0.45em;
  border-left: 2px solid var(--amber-deep); border-bottom: 2px solid var(--amber-deep);
  transform: rotate(-45deg);
}
.price-card--hero li::before { border-color: var(--amber); }
.price-card--hero .btn-line { border-color: transparent; }
.pricing-note {
  width: min(1150px, 100%); margin: 2rem auto 0; padding: 0 clamp(1.25rem, 4vw, 3rem);
  color: var(--muted); font-size: 0.9rem;
}

/* ─────────────── Über ─────────────── */
.about { padding: clamp(4.5rem, 10vw, 8rem) 0; background: var(--paper); overflow: hidden; }
.about-grid {
  width: min(1150px, 100%); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.about-text h2 { margin-bottom: 1.3rem; }
.about-text p + p { margin-top: 1rem; }
.about-text blockquote {
  margin-top: 2rem; padding: 1.4rem 1.6rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4;
  background: var(--cream); border-left: 3px solid var(--amber); border-radius: 0 12px 12px 0;
}
.about-media { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.about-img { border-radius: 12px; overflow: hidden; box-shadow: 0 16px 36px rgba(23, 18, 14, 0.16); }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.about-img:hover img { transform: scale(1.05); }
.about-img--a { aspect-ratio: 1 / 1.15; transform: translateY(1.6rem); }
.about-img--b { aspect-ratio: 1 / 1.35; }
.about-img--c { grid-column: 1 / -1; aspect-ratio: 16 / 8.5; margin-top: 0.2rem; }

/* ─────────────── Kontakt ─────────────── */
.contact { padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem); background: var(--ink); color: var(--cream); }
.contact::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 80% 90%, rgba(232, 169, 79, 0.12), transparent 60%);
}
.contact-grid {
  width: min(1150px, 100%); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(2.5rem, 5vw, 5rem);
  position: relative; z-index: 2;
}
.contact-text h2 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
.contact-text p { margin-top: 1.2rem; color: var(--muted-dark); max-width: 26rem; }
.contact-cards { display: grid; gap: 1.1rem; align-content: center; }
.contact-card {
  background: var(--ink-soft); border: 1px solid rgba(248, 243, 234, 0.1);
  border-radius: 14px; padding: 1.5rem 1.6rem;
  transition: border-color 240ms ease, transform 240ms var(--ease);
}
.contact-card:hover { border-color: rgba(232, 169, 79, 0.45); transform: translateX(6px); }
.contact-card h3 {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.18rem; margin-bottom: 0.6rem; color: var(--amber);
}
.contact-card p { color: rgba(248, 243, 234, 0.85); font-size: 0.99rem; }
.text-link {
  display: inline-block; margin-top: 0.8rem; color: var(--amber); text-decoration: none;
  font-weight: 700; font-size: 0.95rem; border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.text-link:hover { border-color: var(--amber); }

/* ─────────────── Footer ─────────────── */
.footer {
  background: var(--ink); color: var(--muted-dark);
  border-top: 1px solid rgba(248, 243, 234, 0.1);
  padding: 1.8rem clamp(1.25rem, 4vw, 3rem) 2rem; text-align: center; font-size: 0.9rem;
}
.footer a { color: var(--muted-dark); }
.footer-note { margin-top: 0.5rem; font-size: 0.82rem; opacity: 0.75; }

/* ─────────────── Anruf-FAB (mobil) ─────────────── */
.call-fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  display: none; align-items: center; gap: 0.55rem;
  background: var(--amber); color: var(--ink); text-decoration: none;
  font-weight: 700; font-size: 1rem; padding: 0.95rem 1.4rem; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: fabpulse 3s ease-in-out infinite;
}
@keyframes fabpulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(232, 169, 79, 0.5); }
  50% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 14px rgba(232, 169, 79, 0); }
}

/* ─────────────── Scroll-Reveals ─────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 500ms ease-out, transform 600ms var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─────────────── Reduced Motion ─────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .load-1, .load-2, .load-3, .load-4, .load-5 { animation: none; opacity: 1; transform: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero-scroll span, .call-fab { animation: none; }
  .work-card img, .about-img img { transition: none; }
}

/* ─────────────── Responsive ─────────────── */
@media (max-width: 1000px) {
  .service-grid, .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 1.3rem; }
  .nav-links { display: none; }
}
@media (max-width: 780px) {
  body { font-size: 1.03rem; }
  .intro-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-media img { aspect-ratio: 16 / 11; }
  .about-media { order: -1; }
  .about-img--a { transform: none; }
  .hero-inner { padding-top: 7rem; }
  .hero-scroll { display: none; }
  .nav-call { display: none; }
  .call-fab { display: inline-flex; }
  .brand-text em { display: none; }
}
@media (max-width: 560px) {
  .service-grid, .pricing-grid, .work-grid, .process-steps { grid-template-columns: 1fr; }
  .hero-credits { gap: 0.4rem 1.1rem; font-size: 0.95rem; }
  .hero-credits li + li + li::before { margin-right: 1.1rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; }
}
