/* =========================================================================
   Enzi Goldbeck Digital – Stylesheet
   Farbwelt: Anthrazit · Schwarz · Weiß · Beige
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Farben */
  --black:            #0e0e10;
  --anthracite:       #23232a;
  --anthracite-2:     #2d2d35;
  --anthracite-soft:  #3a3a44;
  --beige:            #c9b79c;   /* Akzent */
  --beige-deep:       #b39f80;
  --beige-light:      #e9e1d4;
  --beige-pale:       #f5f1ea;
  --white:            #ffffff;
  --off-white:        #faf8f4;

  /* Text */
  --text-dark:   #1a1a1d;
  --text-muted:  #6c6c73;
  --text-light:  #ededed;
  --text-faint:  rgba(255,255,255,.72);

  /* Struktur */
  --border:      rgba(26,26,29,.12);
  --border-dark: rgba(255,255,255,.14);
  --shadow-sm:   0 4px 16px rgba(14,14,16,.06);
  --shadow-md:   0 18px 48px rgba(14,14,16,.12);
  --shadow-lg:   0 30px 80px rgba(14,14,16,.18);

  /* Layout */
  --nav-h:       76px;
  --container:   1180px;
  --radius:      16px;
  --radius-sm:   10px;

  /* Fonts */
  --font-head: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -.01em;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: clamp(72px, 11vw, 140px) 0;
  scroll-margin-top: var(--nav-h);
}

.section--tint { background: var(--beige-pale); }
.section--dark {
  background: var(--anthracite);
  color: var(--text-light);
}

.section__head {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 68px);
}
.section__head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--beige-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--beige-deep);
  display: inline-block;
}
.section__head.center .eyebrow { justify-content: center; }

.section__title {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
}
.section__lead {
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--text-muted);
}
.section--dark .section__lead { color: var(--text-faint); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--anthracite);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg);
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--accent {
  --btn-bg: var(--beige);
  --btn-fg: var(--anthracite);
  border-color: var(--beige);
}
.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--anthracite);
  border-color: var(--anthracite);
}
.btn--outline:hover { background: var(--anthracite); color: var(--white); }

.btn--light {
  --btn-bg: var(--white);
  --btn-fg: var(--anthracite);
  border-color: var(--white);
}
.btn--lg { padding: 18px 40px; font-size: 1.05rem; }

/* =========================================================================
   Navigation
   ========================================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease),
              border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--white);
  transition: color .4s var(--ease);
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--beige);
  color: var(--anthracite);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.brand__name { font-size: 1.02rem; line-height: 1.1; }
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .7;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links a {
  position: relative;
  font-weight: 500;
  font-size: .96rem;
  color: var(--text-faint);
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--beige);
  transition: width .3s var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta { margin-left: 8px; }
.nav .btn { padding: 11px 22px; font-size: .9rem; }

/* Zustand nach Scroll: heller Hintergrund */
.nav.scrolled {
  background: rgba(250,248,244,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(14,14,16,.06);
}
.nav.scrolled .brand { color: var(--anthracite); }
.nav.scrolled .nav__links a { color: var(--text-muted); }
.nav.scrolled .nav__links a:hover,
.nav.scrolled .nav__links a.active { color: var(--anthracite); }

/* Burger */
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform .3s var(--ease), background .3s var(--ease), opacity .2s;
}
.nav.scrolled .nav__burger span,
.nav.scrolled .nav__burger span::before,
.nav.scrolled .nav__burger span::after { background: var(--anthracite); }
.nav__burger span { top: 21px; }
.nav__burger span::before { top: -7px; }
.nav__burger span::after  { top: 7px; }
.nav.menu-open .nav__burger span { background: transparent; }
.nav.menu-open .nav__burger span::before { transform: translateY(7px) rotate(45deg); background: var(--anthracite); }
.nav.menu-open .nav__burger span::after  { transform: translateY(-7px) rotate(-45deg); background: var(--anthracite); }

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform, opacity;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,16,.55) 0%, rgba(14,14,16,.30) 40%, rgba(14,14,16,.78) 100%),
    linear-gradient(90deg, rgba(14,14,16,.72) 0%, rgba(14,14,16,.15) 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 30px) 24px 90px;
  width: 100%;
}
.hero__inner { max-width: 780px; }

.hero__eyebrow {
  color: var(--beige);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 22px;
}
.hero__title {
  color: var(--white);
  font-size: clamp(2.6rem, 6.6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
}
.hero__title .accent { color: var(--beige); }
.hero__subtitle {
  color: var(--text-faint);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  max-width: 560px;
  margin-top: 26px;
}
.hero__actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Verzögerte Einblendung der Hero-Texte */
.hero__reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: heroIn 1s var(--ease) forwards;
}
.hero__eyebrow.hero__reveal  { animation-delay: 1s; }
.hero__title.hero__reveal    { animation-delay: 1.2s; }
.hero__subtitle.hero__reveal { animation-delay: 1.55s; }
.hero__actions.hero__reveal  { animation-delay: 1.85s; }
@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

/* =========================================================================
   Leistungen
   ========================================================================= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 34px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease),
              border-color .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 4px;
  background: var(--beige);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--beige-pale);
  color: var(--anthracite);
  display: grid;
  place-items: center;
  margin-bottom: 26px;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 0 20px;
}
.service-card__list li {
  position: relative;
  padding-left: 24px;
  font-size: .95rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--beige-deep);
}

.services-cta {
  margin-top: clamp(44px, 6vw, 68px);
  text-align: center;
}
.services-cta p {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--text-dark);
}

/* =========================================================================
   Portfolio – Branchen-Mockups
   ========================================================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.pf-card {
  background: var(--anthracite-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.pf-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Browser-Mockup */
.mockup {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: var(--m-bg, #fff);
}
.mockup__bar {
  height: 34px;
  background: rgba(0,0,0,.16);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  backdrop-filter: blur(2px);
}
.mockup__bar i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  display: block;
}
.mockup__url {
  margin-left: 10px;
  height: 16px;
  flex: 1;
  max-width: 220px;
  border-radius: 8px;
  background: rgba(255,255,255,.35);
}
.mockup__body { padding: 22px 22px 0; }
.mockup__nav {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: center;
}
.mockup__logo {
  width: 42px; height: 12px;
  border-radius: 4px;
  background: var(--m-accent, #333);
}
.mockup__nav span {
  width: 30px; height: 7px;
  border-radius: 4px;
  background: var(--m-soft, rgba(0,0,0,.18));
}
.mockup__hero {
  height: 46px;
  width: 78%;
  border-radius: 8px;
  background: var(--m-accent, #333);
  margin-bottom: 10px;
  opacity: .92;
}
.mockup__line {
  height: 8px;
  border-radius: 6px;
  background: var(--m-soft, rgba(0,0,0,.16));
  margin-bottom: 8px;
}
.mockup__line.w80 { width: 80%; }
.mockup__line.w60 { width: 60%; }
.mockup__cards {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.mockup__cards i {
  flex: 1;
  height: 40px;
  border-radius: 8px;
  background: var(--m-card, rgba(0,0,0,.10));
  display: block;
}
.mockup__cards i:nth-child(2) { background: var(--m-accent, #333); opacity: .85; }

.pf-card__body {
  padding: 24px 26px 28px;
}
.pf-card__tag {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--beige);
  font-weight: 600;
}
.pf-card__body h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin: 10px 0 8px;
}
.pf-card__body p {
  color: var(--text-faint);
  font-size: .96rem;
  margin: 0;
}

.portfolio-note {
  margin-top: 44px;
  text-align: center;
  color: var(--text-faint);
  font-size: 1.05rem;
}
.portfolio-note strong { color: var(--beige); font-weight: 600; }

/* =========================================================================
   Über uns
   ========================================================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.about__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about__placeholder {
  width: 100%; height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-muted);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
}
.about__placeholder svg { width: 56px; height: 56px; opacity: .45; }
.about__placeholder span {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  opacity: .75;
}
.about__badge {
  position: absolute;
  left: 22px; bottom: 22px;
  background: rgba(14,14,16,.68);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
}
.about__badge strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.about__badge span { font-size: .82rem; color: var(--text-faint); }

.about__title {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  margin-bottom: 22px;
}
.about__text p {
  color: var(--text-muted);
  margin: 0 0 18px;
  font-size: 1.05rem;
}
.about__text .lead {
  color: var(--text-dark);
  font-size: 1.18rem;
  font-weight: 500;
}

.about__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.about__value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.about__value .dot {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--beige-pale);
  color: var(--beige-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about__value .dot svg { width: 20px; height: 20px; }

/* =========================================================================
   Kontakt
   ========================================================================= */
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
}
.contact__info h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.contact__info > p {
  color: var(--text-faint);
  margin-bottom: 30px;
}
.contact__list { margin-bottom: 32px; }
.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--border-dark);
}
.contact__item:last-child { border-bottom: 1px solid var(--border-dark); }
.contact__item .ic {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(201,183,156,.14);
  color: var(--beige);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact__item .ic svg { width: 20px; height: 20px; }
.contact__item span { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }
.contact__item a, .contact__item p { color: var(--white); margin: 2px 0 0; font-weight: 500; }

/* Formular */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 8px;
}
.field label .req { color: var(--beige-deep); }
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--beige-deep);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,183,156,.22);
}
.field input::placeholder,
.field textarea::placeholder { color: #a6a6ac; }

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .86rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.form-consent input { margin-top: 4px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--beige-deep); }
.form-consent a { color: var(--anthracite); text-decoration: underline; }

.form-card .btn { width: 100%; justify-content: center; }

.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: #e7f3ec; color: #1c7a45; border: 1px solid #b7dcc4; }
.form-status.error   { background: #fbeaea; color: #b23b3b; border: 1px solid #f0c4c4; }

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
  background: var(--black);
  color: var(--text-faint);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}
.footer .brand { color: var(--white); margin-bottom: 18px; }
.footer__about { font-size: .96rem; max-width: 300px; }
.footer h4 {
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__links li { margin-bottom: 11px; }
.footer__links a { font-size: .96rem; transition: color .25s; }
.footer__links a:hover { color: var(--beige); }
.footer__contact p { margin: 0 0 8px; font-size: .96rem; }
.footer__contact a:hover { color: var(--beige); }

.footer__bottom {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: .86rem;
}
.footer__bottom nav { display: flex; gap: 22px; }
.footer__bottom a:hover { color: var(--beige); }

/* =========================================================================
   Rechtsseiten (Impressum / Datenschutz)
   ========================================================================= */
.legal {
  padding: calc(var(--nav-h) + 60px) 0 90px;
  background: var(--off-white);
}
.legal__inner {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: 24px;
}
.legal h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 10px;
}
.legal .updated { color: var(--text-muted); margin-bottom: 44px; }
.legal h2 {
  font-size: 1.3rem;
  margin: 40px 0 14px;
  padding-top: 10px;
}
.legal h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--text-dark); }
.legal p { margin: 0 0 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin: 0 0 16px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--beige-deep); text-decoration: underline; }
.legal address {
  font-style: normal;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 8px 0 20px;
  box-shadow: var(--shadow-sm);
}
.legal .back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-weight: 600;
  color: var(--anthracite);
  text-decoration: none;
}
.legal .note {
  background: var(--beige-pale);
  border-left: 4px solid var(--beige-deep);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: .92rem;
  color: var(--text-muted);
  margin: 30px 0;
}

/* =========================================================================
   Scroll-Reveal
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }

/* =========================================================================
   Mobile Menü Panel
   ========================================================================= */
.mobile-panel {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 999;
  display: none;
}
.mobile-panel a {
  display: block;
  padding: 16px 24px;
  font-weight: 500;
  color: var(--anthracite);
  border-top: 1px solid var(--border);
}
.mobile-panel .btn { margin: 18px 24px; }
.nav.menu-open + .mobile-panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 960px) {
  .contact { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin-inline: auto; order: -1; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .mobile-panel { display: block; }
  .services { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brandcol { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .about__values { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}
