/* =============================================
   ODENWALD DESIGN – Premium Dark Theme
   ============================================= */

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section[id] {
  scroll-margin-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

/* --- Design Tokens --- */
:root {
  --bg-primary: #0F0F10;
  --bg-elevated: #1A1A1C;
  --bg-card: #141416;
  --text-primary: #FFFFFF;
  --text-muted: #A0A0A5;
  --text-subtle: #6B6B70;
  --accent: #0D6EFD;
  --accent-hover: #0B5ED7;
  --accent-glow: rgba(13, 110, 253, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);

  --font-display: 'Syne', 'Helvetica Neue', system-ui, sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', system-ui, sans-serif;

  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.25rem, 2vw, 1.625rem);
  --text-2xl: clamp(2rem, 4vw, 3.25rem);
  --text-hero: clamp(2.75rem, 7vw, 5.5rem);
  --text-display: clamp(2.5rem, 5vw, 4rem);

  --nav-height: 80px;
  --nav-height-scrolled: 64px;
  --container-max: 1280px;
  --section-padding: clamp(5rem, 12vh, 8rem);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding-block: var(--section-padding);
}

.section__header {
  max-width: 680px;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.section__eyebrow {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section__desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: height var(--transition), background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}

.header:not(.header--scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.75);
}

.header:not(.header--scrolled) .nav__link--cta {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-primary);
}

.header:not(.header--scrolled) .nav__logo-sub {
  color: rgba(255, 255, 255, 0.55);
}

.header--scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(15, 15, 16, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
  z-index: 1001;
}

.nav__logo-img {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.nav__logo-sub {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--cta {
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--border-hover);
  border-radius: 2px;
  color: var(--text-primary);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle--open .nav__toggle-bar:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav__toggle--open .nav__toggle-bar:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn--primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  border: 1px solid var(--text-primary);
}

.btn--primary:hover {
  background: transparent;
  color: var(--text-primary);
  box-shadow: none;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(15, 15, 16, 0.72) 0%,
      rgba(15, 15, 16, 0.55) 45%,
      rgba(15, 15, 16, 0.65) 100%
    ),
    linear-gradient(
      180deg,
      rgba(15, 15, 16, 0.35) 0%,
      rgba(15, 15, 16, 0.65) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-height) + 1rem);
  padding-bottom: clamp(4rem, 8vh, 6rem);
  width: 100%;
}

.hero__content--split {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__eyebrow {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  max-width: 22ch;
}

.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: 100%;
  max-width: var(--container-max);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero__split-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__split-col--left {
  text-align: left;
  align-items: flex-start;
  padding-right: clamp(0.5rem, 2vw, 2rem);
}

.hero__split-col--right {
  text-align: right;
  align-items: flex-end;
  padding-left: clamp(0.5rem, 2vw, 2rem);
}

.hero__split-label {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.hero__split-col--left .hero__split-label {
  color: rgba(255, 255, 255, 0.95);
}

.hero__split-col--right .hero__split-label {
  color: rgba(255, 255, 255, 0.95);
}

.hero__split-list {
  font-size: clamp(0.7rem, 1.2vw, 0.8125rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  max-width: 36ch;
}

.hero__split-col--right .hero__split-list {
  margin-left: auto;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* --- Services --- */
.section--services {
  background: var(--bg-primary);
  padding-block: clamp(3rem, 5vh, 4.5rem);
}

.section--services .section__header {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.service-card-lg {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition-fast), background var(--transition);
}

.service-card-lg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card-lg:hover,
.service-card-lg:focus-visible {
  border-color: var(--border-hover);
  background: var(--bg-elevated);
  transform: translateY(-4px);
  outline: none;
}

.service-card-lg:hover::before,
.service-card-lg:focus-visible::before {
  opacity: 1;
}

.service-card-lg__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-card-lg__index {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.8;
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.service-card-lg__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-card-lg__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-card-lg__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding-top: 1.25rem;
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
}

@media (min-width: 769px) {
  .service-card-lg__list {
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
  }
}

.service-card-lg__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  line-height: 1.4;
}

.service-card-lg__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

.service-card-lg--deko {
  background-color: var(--bg-card);
  background-image:
    linear-gradient(160deg, rgba(15, 15, 16, 0.88) 0%, rgba(15, 15, 16, 0.78) 45%, rgba(15, 15, 16, 0.92) 100%),
    url('../assets/images/services/deko-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card-lg--deko:hover,
.service-card-lg--deko:focus-visible {
  background-color: var(--bg-card);
  background-image:
    linear-gradient(160deg, rgba(15, 15, 16, 0.82) 0%, rgba(15, 15, 16, 0.72) 45%, rgba(15, 15, 16, 0.88) 100%),
    url('../assets/images/services/deko-bg.png');
}

.service-card-lg--werbe {
  background-color: var(--bg-card);
  background-image:
    linear-gradient(160deg, rgba(15, 15, 16, 0.88) 0%, rgba(15, 15, 16, 0.75) 45%, rgba(15, 15, 16, 0.92) 100%),
    url('../assets/images/services/werbe-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card-lg--werbe:hover,
.service-card-lg--werbe:focus-visible {
  background-color: var(--bg-card);
  background-image:
    linear-gradient(160deg, rgba(15, 15, 16, 0.82) 0%, rgba(15, 15, 16, 0.68) 45%, rgba(15, 15, 16, 0.88) 100%),
    url('../assets/images/services/werbe-bg.png');
}

.service-card-lg--deko .service-card-lg__list,
.service-card-lg--werbe .service-card-lg__list {
  border-top-color: rgba(255, 255, 255, 0.12);
}

/* --- Gallery --- */
.section--gallery {
  padding-bottom: 0;
}

.section--gallery .section__header {
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  max-width: calc(var(--container-max) + 5rem);
  margin-inline: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
  margin-top: 1rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(15, 15, 16, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
}

.gallery__category {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.gallery__name {
  font-size: var(--text-lg);
  font-weight: 600;
}

@media (hover: none) {
  .gallery__caption {
    opacity: 1;
    background: linear-gradient(to top, rgba(15, 15, 16, 0.75) 0%, transparent 50%);
  }
}

/* --- About --- */
.section--about {
  background: var(--bg-elevated);
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__lead {
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.about__text {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.about__stats {
  display: flex;
  gap: 3rem;
}

.about__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about__stat-label {
  font-size: var(--text-sm);
  color: var(--text-subtle);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.contact-info__item {
  margin-bottom: 2rem;
}

.contact-info__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.5rem;
}

.contact-info__value {
  font-size: var(--text-lg);
  font-weight: 500;
  transition: color var(--transition-fast);
}

a.contact-info__value:hover {
  color: var(--accent);
}

.contact-info__value--whatsapp {
  color: var(--accent);
}

.contact-info__value--address {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-map {
  margin-top: 2rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(80%) invert(92%) contrast(90%);
}

/* --- Form --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
}

.form-optional {
  color: var(--text-subtle);
  font-weight: 400;
}

.form-input {
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
}

.form-input::placeholder {
  color: var(--text-subtle);
}

.form-input--error {
  border-color: rgba(255, 68, 68, 0.6) !important;
}

.form-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  font-size: var(--text-sm);
  color: var(--text-subtle);
  text-align: center;
}

.form-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-success {
  padding: 1.5rem;
  background: rgba(13, 110, 253, 0.1);
  border: 1px solid var(--accent);
  border-radius: 2px;
  text-align: center;
  color: var(--text-primary);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: 2px;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.form-status--success,
.form-status--error {
  display: block;
}

.form-status--success {
  background: rgba(13, 110, 253, 0.1);
  border: 1px solid var(--accent);
  color: var(--text-primary);
}

.form-status--error {
  background: rgba(255, 68, 68, 0.08);
  border: 1px solid rgba(255, 68, 68, 0.4);
  color: #ff8888;
}

.btn--loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: clamp(1.25rem, 4vw, 2rem);
  right: clamp(1.25rem, 4vw, 2rem);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp-float:active {
  transform: scale(1.02);
}

/* --- Footer --- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem 3rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--text-subtle);
  margin-top: 0.5rem;
}

.footer__nav,
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav a,
.footer__legal a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__nav a:hover,
.footer__legal a:hover {
  color: var(--text-primary);
}

.footer__copy {
  grid-column: 1 / -1;
  font-size: var(--text-sm);
  color: var(--text-subtle);
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.hero .reveal:nth-child(1) { transition-delay: 0.15s; }
.hero .reveal:nth-child(2) { transition-delay: 0.3s; }
.hero .reveal:nth-child(3) { transition-delay: 0.45s; }
.hero .reveal:nth-child(4) { transition-delay: 0.6s; }

.services-showcase .reveal:nth-child(1) { transition-delay: 0.05s; }
.services-showcase .reveal:nth-child(2) { transition-delay: 0.15s; }

.gallery__item.reveal:nth-child(1) { transition-delay: 0.05s; }
.gallery__item.reveal:nth-child(2) { transition-delay: 0.1s; }
.gallery__item.reveal:nth-child(3) { transition-delay: 0.15s; }
.gallery__item.reveal:nth-child(4) { transition-delay: 0.2s; }
.gallery__item.reveal:nth-child(5) { transition-delay: 0.25s; }
.gallery__item.reveal:nth-child(6) { transition-delay: 0.3s; }
.gallery__item.reveal:nth-child(7) { transition-delay: 0.35s; }

/* --- Legal Pages --- */
.legal-page {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  min-height: 100vh;
}

.legal-page h1 {
  font-size: var(--text-2xl);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: var(--text-xl);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page a {
  color: var(--accent);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 3rem;
  transition: color var(--transition-fast);
}

.legal-back:hover {
  color: var(--text-primary);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-showcase {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about__media {
    order: -1;
    max-height: 400px;
    aspect-ratio: 16 / 9;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --nav-height-scrolled: 56px;
  }

  .nav__logo-img {
    width: 44px;
    height: 44px;
  }

  .nav__logo-text {
    font-size: 1rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(15, 15, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .nav__menu--open {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: var(--text-lg);
  }

  .nav__link--cta {
    margin-top: 1rem;
  }

  .hero__title {
    max-width: 18ch;
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__split-col--left,
  .hero__split-col--right {
    text-align: left;
    align-items: flex-start;
    padding: 0;
  }

  .hero__split-col--right .hero__split-list {
    margin-left: 0;
  }

  .hero__split-list {
    font-size: 0.7rem;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
    text-align: center;
  }

  .hero__scroll {
    display: none;
  }

  .service-card-lg__title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  .service-card-lg__list {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery__item--wide,
  .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .about__stats {
    gap: 2rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__nav,
  .footer__legal {
    align-items: center;
  }
}

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

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

  .whatsapp-float {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* --- Future expansion hooks (shop, blog, testimonials, FAQ) --- */
[data-expandable] {
  display: none;
}
