/* ==========================================================================
   Al-Hudda Fleischerei — Landingpage
   ========================================================================== */

:root {
  --red: #e30613;
  --red-dark: #b8040f;
  --green: #1fa845;
  --ink: #101012;
  --ink-soft: #1c1c20;
  --grey-900: #2a2a30;
  --grey-600: #6b6b76;
  --grey-400: #a3a3ad;
  --grey-200: #e6e6ea;
  --grey-100: #f4f4f6;
  --white: #ffffff;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Oswald', 'Inter', sans-serif;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(16, 16, 18, .06);
  --shadow-md: 0 10px 30px rgba(16, 16, 18, .10);
  --shadow-lg: 0 24px 60px rgba(16, 16, 18, .16);

  --container: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--grey-900);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; margin: 0; letter-spacing: .01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* ------------------------------------------------------------ Buttons --- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 15px 30px;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .3s var(--ease);
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--red-dark);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--red); }
.btn--dark    { --btn-bg: var(--ink); }
.btn--light   { --btn-bg: var(--white); --btn-fg: var(--ink); }
.btn--light:hover { color: var(--white); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .45);
}
.btn--sm { padding: 11px 22px; font-size: 14px; }

/* ------------------------------------------------------------- Header --- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.header.is-scrolled { height: 66px; box-shadow: 0 1px 0 rgba(16, 16, 18, .08); }
.header.is-scrolled::before { opacity: 1; }

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .25);
  transition: transform .5s var(--ease);
}
.brand:hover .brand__logo { transform: rotate(-8deg) scale(1.06); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .04em;
  color: var(--white);
  transition: color .4s var(--ease);
}
.brand__text small {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
}
.header.is-scrolled .brand__text strong { color: var(--ink); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.header.is-scrolled .nav__link { color: var(--grey-900); }
.nav__link.is-active { color: var(--red); }

.burger {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease), background .4s var(--ease);
}
.header.is-scrolled .burger span, .header.is-open .burger span { background: var(--ink); }
.header.is-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.is-open .burger span:nth-child(2) { opacity: 0; }
.header.is-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 90px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,16,18,.86) 0%, rgba(16,16,18,.55) 40%, rgba(16,16,18,.88) 100%),
    linear-gradient(90deg, rgba(16,16,18,.85) 0%, rgba(16,16,18,.15) 70%);
}

.hero__content { position: relative; max-width: 720px; color: var(--white); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(31, 168, 69, .7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(31, 168, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 168, 69, 0); }
}

.hero__title {
  margin: 22px 0 18px;
  font-size: clamp(2.8rem, 7vw, 5rem);
  text-transform: uppercase;
  letter-spacing: .01em;
}
.hero__title em {
  font-style: normal;
  color: var(--red);
  -webkit-text-stroke: 0;
}
.hero__text {
  max-width: 560px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, .82);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 46px;
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.hero__stats span { font-size: 13px; color: rgba(255, 255, 255, .6); }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  width: 2px; height: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}
.hero__scroll-line {
  display: block;
  width: 100%; height: 40%;
  background: var(--red);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* ------------------------------------------------------------ Marquee --- */
.marquee {
  background: var(--ink);
  color: var(--white);
  padding: 16px 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .08);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ----------------------------------------------------------- Sections --- */
.section { padding: clamp(72px, 10vw, 130px) 0; }
.section--offers { background: var(--grey-100); }
.section--dark { background: var(--ink); color: var(--white); }

.section__head { max-width: 680px; margin-bottom: 56px; }
.section__title { font-size: clamp(2rem, 4.4vw, 3.1rem); text-transform: uppercase; margin-bottom: 18px; }
.section__lead { color: var(--grey-600); font-size: 1.05rem; margin: 0; }
.section--dark .section__lead { color: var(--grey-400); }

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before { content: '— '; color: var(--green); }

/* ----------------------------------------------------------- Angebote --- */
.offers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 230px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.offer::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.offer:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer:hover::before { transform: scaleX(1); }

.offer--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--ink) 0%, #26262c 100%);
  color: var(--white);
}
.offer--featured::before { transform: scaleX(1); }
.offer--featured .offer__desc { color: rgba(255, 255, 255, .68); }
.offer--featured .offer__old { color: rgba(255, 255, 255, .45); }

.offer__badge {
  position: absolute;
  top: 22px; right: 22px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.offer__name {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.offer__desc { font-size: .94rem; color: var(--grey-600); margin-bottom: 18px; }

.offer__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.offer__old { font-size: .95rem; color: var(--grey-400); text-decoration: line-through; }
.offer__new {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  letter-spacing: .01em;
}
.offer--featured .offer__new { color: #ff4a53; }
.offer__unit { font-size: .9rem; color: var(--grey-600); }
.offer--featured .offer__unit { color: rgba(255, 255, 255, .6); }

.offers__note {
  margin: 32px 0 0;
  font-size: .9rem;
  color: var(--grey-600);
}
.offers__note a { color: var(--red); font-weight: 600; border-bottom: 1px solid currentColor; }

/* ---------------------------------------------------------- Sortiment --- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.card {
  padding: 34px 30px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.card__icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--grey-100);
  font-size: 26px;
  transition: background .4s var(--ease), transform .5s var(--ease);
}
.card:hover .card__icon { background: rgba(227, 6, 19, .1); transform: scale(1.08) rotate(-6deg); }
.card h3 { font-size: 1.3rem; text-transform: uppercase; margin-bottom: 10px; }
.card p { margin: 0; color: var(--grey-600); font-size: .96rem; }

/* ----------------------------------------------------------- Über uns --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split__media { position: relative; }
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.split__stamp {
  position: absolute;
  right: -20px; bottom: -20px;
  width: 130px; height: 130px;
  padding: 10px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
.split__stamp img { width: 100%; height: 100%; border-radius: 50%; aspect-ratio: 1; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.split__body p { color: var(--grey-600); }
.checklist { margin: 26px 0 32px; display: grid; gap: 12px; }
.checklist li {
  position: relative;
  padding-left: 34px;
  font-size: .98rem;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ------------------------------------------------------------ Galerie --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}
.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-soft);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .6s var(--ease);
}
.gallery__item--logo img { object-fit: contain; padding: 26px; background: var(--ink-soft); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item figcaption {
  position: absolute;
  left: 20px; bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(16, 16, 18, .62);
  backdrop-filter: blur(6px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  transform: translateY(8px);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.gallery__item:hover figcaption { transform: translateY(0); opacity: 1; }

/* ------------------------------------------------------------ Kontakt --- */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.contact__box {
  padding: 34px 30px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.contact__box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact__box h3 { font-size: 1.35rem; text-transform: uppercase; margin-bottom: 20px; }
.contact__box--cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-color: transparent;
  color: var(--white);
}
.contact__box--cta p { color: rgba(255, 255, 255, .85); font-size: .96rem; }

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-200);
  font-size: .96rem;
}
.hours li:last-child { border-bottom: 0; }
.hours span { color: var(--grey-600); }
.hours b { font-weight: 600; }
.hours__closed { color: var(--red); }
.contact__hint { margin: 16px 0 0; font-size: .84rem; color: var(--grey-400); }

.contactlist { display: grid; gap: 18px; margin-bottom: 26px; }
.contactlist__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 4px;
}
.contactlist__value { font-size: 1rem; font-weight: 500; transition: color .3s var(--ease); }
a.contactlist__value:hover { color: var(--red); }

/* ------------------------------------------------------------- Social --- */
.social {
  position: relative;
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--grey-100);
  overflow: hidden;
}
.social::before {
  content: '';
  position: absolute;
  right: -140px; top: -140px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(227, 6, 19, .14), transparent 68%);
}
.social__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.social__text p { color: var(--grey-600); margin: 0; max-width: 44ch; }
.social__text .section__title { margin-bottom: 16px; }

.pill--dark {
  background: var(--white);
  border-color: var(--grey-200);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.social__links { display: grid; gap: 14px; }
.social__btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.social__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.social__btn--ig::before {
  background: linear-gradient(120deg, #f9ce34 0%, #ee2a7b 52%, #6228d7 100%);
}
.social__btn--tt::before { background: linear-gradient(120deg, #111 0%, #25f4ee 55%, #fe2c55 100%); }
.social__btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--white); }
.social__btn:hover::before { opacity: 1; }
.social__btn > * { position: relative; }

.social__btn svg {
  width: 30px; height: 30px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.social__btn svg .fill { fill: currentColor; }
.social__btn span { display: flex; flex-direction: column; line-height: 1.25; }
.social__btn b {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.social__btn small { font-size: .86rem; opacity: .72; }
.social__arrow {
  margin-left: auto;
  font-style: normal;
  font-size: 1.15rem;
  opacity: .5;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.social__btn:hover .social__arrow { transform: translate(4px, -4px); opacity: 1; }

/* ------------------------------------------------------------- Footer --- */
.footer { background: var(--ink); color: var(--grey-400); padding: 64px 0 28px; }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer__brand { display: flex; gap: 16px; align-items: center; max-width: 340px; }
.footer__logo { width: 62px; height: 62px; border-radius: 50%; }
.footer__brand p { margin: 0; font-size: .92rem; }
.footer__side { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}
.footer__social svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.footer__social svg .fill { fill: currentColor; }
.footer__social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__nav, .footer__legal { display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: .92rem; }
.footer__nav a, .footer__legal a { transition: color .3s var(--ease); }
.footer__nav a:hover, .footer__legal a:hover { color: var(--white); }
.footer__bottom { padding-top: 22px; font-size: .84rem; color: var(--grey-600); }

/* --------------------------------------------------- Rechtliche Seiten --- */
/* Header ohne Hero: dauerhaft heller Zustand */
.header--solid { background: var(--white); box-shadow: 0 1px 0 rgba(16, 16, 18, .08); }
.header--solid .brand__text strong { color: var(--ink); }
.header--solid .nav__link { color: var(--grey-900); }
.header--solid .burger span { background: var(--ink); }

.legal { padding: calc(var(--header-h) + 60px) 0 90px; }
.legal__inner { max-width: 780px; }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--grey-600);
  transition: color .3s var(--ease), gap .3s var(--ease);
}
.legal__back:hover { color: var(--red); gap: 12px; }
.legal h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.legal__updated { color: var(--grey-400); font-size: .88rem; margin-bottom: 44px; }
.legal h2 {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: 44px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
}
.legal h3 { font-size: 1.05rem; margin: 26px 0 8px; font-family: var(--font-body); font-weight: 700; }
.legal p, .legal li { color: var(--grey-600); font-size: .98rem; }
.legal ul { list-style: disc; padding-left: 22px; margin: 0 0 1em; display: grid; gap: 6px; }
.legal a:not(.btn):not(.legal__back) {
  color: var(--red);
  border-bottom: 1px solid rgba(227, 6, 19, .3);
  transition: border-color .3s var(--ease);
}
.legal a:not(.btn):not(.legal__back):hover { border-color: var(--red); }
.legal address { font-style: normal; color: var(--grey-900); font-weight: 500; }
.legal__todo {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(227, 6, 19, .1);
  color: var(--red);
  font-size: .82em;
  font-weight: 700;
}
.legal__note {
  padding: 20px 24px;
  border-left: 3px solid var(--green);
  background: var(--grey-100);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.legal__note p:last-child { margin: 0; }

/* -------------------------------------------------- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------------------------------------------------- Responsive --- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .split__media { max-width: 480px; }
  .offer--featured { grid-column: span 1; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .social__inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .burger { display: flex; }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-h) + 12px) 24px 28px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    clip-path: inset(0 0 100% 0);
    transition: clip-path .5s var(--ease);
  }
  .header.is-open .nav { clip-path: inset(0 0 0 0); }
  .nav__link {
    padding: 16px 0;
    font-size: 18px;
    color: var(--grey-900);
    border-bottom: 1px solid var(--grey-200);
  }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 20px; }

  .hero { padding-bottom: 110px; }
  .hero__stats { gap: 18px 30px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--tall { grid-row: span 1; }
  .split__stamp { width: 96px; height: 96px; right: -8px; bottom: -14px; }
  .footer__inner { flex-direction: column; }
}

/* ------------------------------------------------------ Accessibility --- */
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

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