/* =========================================================
   Hamburger Hochzeiten — Redesign
   Tokens
   ========================================================= */
:root {
  --ink: #0b0b0b;
  --ink-soft: #18151c;
  --plum: #623777;
  --plum-deep: #4a2a5c;
  --lavender: #8d6ea8;
  --lavender-light: #c3aed9;
  --stone: #7a7a7a;
  --stone-light: #a39fa8;
  --cream: #faf8f6;
  --paper: #ffffff;
  --line: rgba(11, 11, 11, 0.12);
  --line-light: rgba(255, 255, 255, 0.28);

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Poppins', -apple-system, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 80px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.35s;
  --dur: 0.7s;
  --dur-slow: 1.1s;
}

/* =========================================================
   Reset
   ========================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, blockquote { margin: 0; font-family: var(--font-display); font-weight: 600; }
p { margin: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--paper); color: var(--ink); padding: 12px 20px;
}
.skip-link:focus { left: 16px; top: 16px; }

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

.section { padding: clamp(72px, 12vw, 148px) var(--gutter); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  margin: 0 0 18px;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.85); }

.h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.h2 em { font-style: italic; color: var(--lavender); font-weight: 500; }

.body { font-size: 15.5px; color: var(--stone); font-weight: 300; }
.body-lg { font-size: 18px; color: var(--stone); font-weight: 300; line-height: 1.8; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.btn--solid { background: var(--plum); color: #fff; }
.btn--solid:hover { background: var(--plum-deep); }

.btn--outline-light { border-color: var(--line-light); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--ink); }

.btn--ghost { border-color: var(--line); color: var(--ink); text-transform: none; letter-spacing: 0.02em; font-size: 14.5px; }
.btn--ghost:hover { border-color: var(--plum); color: var(--plum); }

/* Magnetic pull + shine sweep — JS sets the transform on mousemove,
   this just supplies the snap-back easing and the light sweep. */
.btn { position: relative; overflow: hidden; will-change: transform; }
.btn::before {
  content: '';
  position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
  pointer-events: none;
}
.btn:hover::before { left: 130%; }
.btn--ghost::before { background: linear-gradient(120deg, transparent, rgba(98,55,119,0.12), transparent); }

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: transparent;
  transition: background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), padding var(--dur-fast) var(--ease);
  padding: 22px 0;
}
.nav.is-scrolled {
  background: rgba(11, 11, 11, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo img { height: 40px; width: auto; transition: height var(--dur-fast) var(--ease); }
.nav.is-scrolled .nav__logo img { height: 32px; }

.nav__links { display: flex; align-items: center; gap: 40px; }
.nav__links a {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--lavender-light); transition: width var(--dur-fast) var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  border: 1px solid var(--line-light);
  color: #fff;
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.nav__cta:hover { background: #fff; color: var(--ink); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 6px 0;
}
.nav__toggle span { display: block; height: 1.5px; width: 100%; background: #fff; transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================
   Viewfinder (signature motif)
   ========================================================= */
.viewfinder { position: relative; overflow: hidden; }
.viewfinder img, .viewfinder video { width: 100%; height: 100%; object-fit: cover; display: block; }

.corner {
  position: absolute;
  width: 30px; height: 30px;
  z-index: 5;
  pointer-events: none;
}
.corner::before, .corner::after { content: ''; position: absolute; background: currentColor; }
.corner--tl { top: 22px; left: 22px; color: #fff; }
.corner--tr { top: 22px; right: 22px; color: #fff; }
.corner--bl { bottom: 22px; left: 22px; color: #fff; }
.corner--br { bottom: 22px; right: 22px; color: #fff; }

.corner--tl::before, .corner--tr::before, .corner--bl::before, .corner--br::before { width: 100%; height: 2px; }
.corner--tl::after, .corner--tr::after, .corner--bl::after, .corner--br::after { width: 2px; height: 100%; }
.corner--tl::before, .corner--tl::after { top: 0; left: 0; }
.corner--tr::before { top: 0; left: 0; }
.corner--tr::after { top: 0; right: 0; }
.corner--bl::before { bottom: 0; left: 0; }
.corner--bl::after { bottom: 0; left: 0; }
.corner--br::before { bottom: 0; right: 0; }
.corner--br::after { bottom: 0; right: 0; }

/* Hero + quote + final-cta frames: corners animate in on load/reveal */
.hero__frame .corner, .quote__frame .corner, .final-cta__frame .corner {
  opacity: 0;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.hero__frame .corner--tl, .quote__frame .corner--tl, .final-cta__frame .corner--tl { transform: translate(-14px, -14px); }
.hero__frame .corner--tr, .quote__frame .corner--tr, .final-cta__frame .corner--tr { transform: translate(14px, -14px); }
.hero__frame .corner--bl, .quote__frame .corner--bl, .final-cta__frame .corner--bl { transform: translate(-14px, 14px); }
.hero__frame .corner--br, .quote__frame .corner--br, .final-cta__frame .corner--br { transform: translate(14px, 14px); }

.hero.is-ready .corner, .is-visible .quote__frame .corner, .is-visible .final-cta__frame .corner {
  opacity: 0.9;
  transform: translate(0, 0);
}

/* Hover-triggered viewfinders (photo cards) */
.viewfinder--hover .corner {
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  color: var(--lavender-light);
}
.viewfinder--hover .corner--tl { transform: translate(6px, 6px); }
.viewfinder--hover .corner--tr { transform: translate(-6px, 6px); }
.viewfinder--hover .corner--bl { transform: translate(6px, -6px); }
.viewfinder--hover .corner--br { transform: translate(-6px, -6px); }
.viewfinder--hover:hover .corner, .viewfinder--hover:focus-within .corner { opacity: 1; transform: translate(0, 0); }
.viewfinder--hover:hover img, .viewfinder--hover:focus-within img { transform: scale(1.045); }
.viewfinder--hover img { transition: transform 0.9s var(--ease); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero__frame { position: absolute; inset: 0; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.25) 38%, rgba(11,11,11,0.15) 55%, rgba(11,11,11,0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(64px, 10vw, 120px);
  text-align: center;
}
.hero__title {
  font-size: clamp(48px, 9vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 6px 0 34px;
}
.hero__title span { display: block; }
.hero__title .reveal--italic { font-style: italic; font-weight: 500; color: var(--lavender-light); }

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.75);
}
.hero__scroll-line { width: 1px; height: 34px; background: rgba(255,255,255,0.5); overflow: hidden; position: relative; }
.hero__scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: #fff; animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 50% { top: 0; } 100% { top: 100%; } }
.hero__scroll-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }

/* =========================================================
   Intro
   ========================================================= */
.intro__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.intro__text > * + * { margin-top: 20px; }
.intro__text .btn { margin-top: 32px; }
.intro__media .viewfinder { aspect-ratio: 3 / 4; border-radius: 2px; }

/* =========================================================
   Destinations strip
   ========================================================= */
.destinations {
  background: var(--ink);
  color: #fff;
  padding: 44px var(--gutter);
  text-align: center;
}
.destinations__label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone-light); margin: 0 0 18px;
}
.destinations__row {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 3vw, 30px);
  display: flex; justify-content: center; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.destinations__dot { color: var(--lavender-light); font-style: normal; }
.destinations__row span:not(.destinations__dot) {
  position: relative;
  cursor: default;
  padding-bottom: 3px;
  transition: color 0.45s var(--ease);
}
.destinations__row span:not(.destinations__dot)::after {
  content: '';
  position: absolute; left: 50%; right: 50%; bottom: 0; height: 1px;
  background: var(--lavender-light);
  transition: left 0.45s var(--ease), right 0.45s var(--ease);
}
.destinations__row span:not(.destinations__dot):hover::after { left: 0; right: 0; }
.destinations__row span:not(.destinations__dot):hover { color: var(--lavender-light); }

/* =========================================================
   Services
   ========================================================= */
.services__head { max-width: var(--container); margin: 0 auto 56px; text-align: center; }
.services__list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.services__item {
  position: relative;
  padding: 26px 12px 26px 22px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: default;
}
.services__item:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 32px; }
.services__item:nth-child(even) { padding-left: 34px; }

/* hairline that draws itself in once the row is on screen */
.services__item::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms + 150ms);
}
.is-visible .services__item::after { transform: scaleX(1); }
.services__item:nth-last-child(-n+2)::after { display: none; }

/* accent tick that grows on hover, text nudges right */
.services__item::before {
  content: '';
  position: absolute; left: 0; top: 50%; width: 2px; height: 0;
  background: var(--plum);
  transform: translateY(-50%);
  transition: height 0.4s var(--ease);
}
.services__item:hover::before { height: 46%; }
.services__item span { display: inline-block; transition: transform 0.4s var(--ease), color 0.4s var(--ease); }
.services__item:hover span { transform: translateX(9px); color: var(--plum); }

/* =========================================================
   Tailored
   ========================================================= */
.tailored__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.tailored__media .viewfinder { aspect-ratio: 3 / 4; border-radius: 2px; }
.tailored__text > * + * { margin-top: 20px; }
.tailored__text .btn { margin-top: 32px; }

/* =========================================================
   Quote
   ========================================================= */
.quote { padding: 0 var(--gutter) clamp(72px, 12vw, 148px); }
.quote__frame {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  background: var(--ink);
  color: #fff;
  padding: clamp(56px, 9vw, 108px) clamp(24px, 6vw, 90px);
  text-align: center;
  border-radius: 2px;
  will-change: transform;
  transform-style: preserve-3d;
}
.quote__frame::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(480px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.06), transparent 60%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.quote__frame:hover::before, .final-cta__frame:hover::before { opacity: 1; }
.quote__text {
  font-size: clamp(24px, 3.4vw, 38px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto;
}
.quote__tag {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender-light);
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery__head { max-width: var(--container); margin: 0 auto 48px; text-align: center; }
.gallery__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
}
.gallery__item { margin: 0; border-radius: 2px; overflow: hidden; }
.gallery__item .viewfinder, .gallery__item .viewfinder img { height: 100%; }
.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 4; }
.gallery__item:nth-child(2) { grid-column: span 2; grid-row: span 3; }
.gallery__item:nth-child(3) { grid-column: span 2; grid-row: span 3; }
.gallery__item:nth-child(4) { grid-column: span 2; grid-row: span 4; }
.gallery__item:nth-child(5) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(6) { grid-column: span 2; grid-row: span 2; }

.gallery__cta { text-align: center; margin-top: 56px; }

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta { padding: 0 var(--gutter) clamp(72px, 12vw, 148px); }
.final-cta__frame {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--plum) 0%, var(--ink) 120%);
  color: #fff;
  padding: clamp(64px, 10vw, 120px) clamp(24px, 6vw, 90px);
  text-align: center;
  border-radius: 2px;
  will-change: transform;
  transform-style: preserve-3d;
}
.final-cta__frame::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(480px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.final-cta__title { font-size: clamp(30px, 4.6vw, 54px); line-height: 1.15; margin: 8px 0 40px; }
.final-cta__title em { font-style: italic; color: var(--lavender-light); font-weight: 500; }
.final-cta__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Page hero (interior pages)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.6) 0%, rgba(11,11,11,0.35) 45%, rgba(11,11,11,0.85) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 160px var(--gutter) 72px;
  text-align: center;
  width: 100%;
}
.page-hero__title { font-size: clamp(38px, 6vw, 66px); line-height: 1.1; margin: 6px 0 0; }
.page-hero__title em { font-style: italic; color: var(--lavender-light); font-weight: 500; }
.page-hero__intro {
  max-width: 720px; margin: 26px auto 0;
  font-size: 17px; color: rgba(255,255,255,0.82); font-weight: 300; line-height: 1.8;
}

/* =========================================================
   Portfolio gallery (dense grid)
   ========================================================= */
.portfolio-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
}
.portfolio-grid .gallery__item { margin: 0; border-radius: 2px; overflow: hidden; }
.portfolio-grid .gallery__item.is-tall { grid-row: span 2; }
.portfolio-grid .gallery__item.is-wide { grid-column: span 2; }

/* =========================================================
   Contact cards (WhatsApp-first, no form)
   ========================================================= */
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.contact-card__icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--cream);
  color: var(--plum);
}
.contact-card__label { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); margin: 0 0 4px; }
.contact-card__value { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--ink); }

.contact-card--whatsapp { border-color: rgba(37,211,102,0.35); background: rgba(37,211,102,0.05); }
.contact-card--whatsapp .contact-card__icon { background: #25D366; color: #fff; }
.contact-card--whatsapp:hover { transform: translateY(-2px); border-color: #25D366; box-shadow: 0 10px 30px rgba(37,211,102,0.18); }

.contact-card--mail:hover, .contact-card--phone:hover { transform: translateY(-2px); border-color: var(--lavender); }

.contact-info__block { padding: 28px 0; border-top: 1px solid var(--line); }
.contact-info__block:last-child { border-bottom: 1px solid var(--line); }
.contact-info__block h3 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); font-family: var(--font-body); font-weight: 500; margin: 0 0 10px; }
.contact-info__block p { color: var(--ink); font-size: 15.5px; line-height: 1.8; }

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq__item {
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: border-color var(--dur-fast) var(--ease);
}
.faq__item.is-open { border-color: var(--lavender); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--dur-fast) var(--ease);
}
.faq__question:hover { color: var(--plum); }

.faq__icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; background: var(--plum);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq__item.is-open .faq__icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.faq__item.is-open .faq__answer { grid-template-rows: 1fr; }
.faq__answer-inner { overflow: hidden; }
.faq__answer p {
  padding: 0 24px 22px;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================================
   Legal typography (Impressum / Datenschutz)
   ========================================================= */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(64px, 10vw, 120px) var(--gutter) clamp(80px, 10vw, 140px); }
.legal h1 { font-size: clamp(34px, 5vw, 50px); margin-bottom: 12px; }
.legal h2 { font-family: var(--font-display); font-size: 26px; font-weight: 600; margin: 56px 0 16px; padding-top: 24px; border-top: 1px solid var(--line); }
.legal h2:first-of-type { border-top: none; padding-top: 0; margin-top: 40px; }
.legal h3 { font-family: var(--font-body); font-size: 15.5px; font-weight: 600; letter-spacing: 0.02em; margin: 32px 0 10px; color: var(--plum); }
.legal h4 { font-family: var(--font-body); font-size: 14.5px; font-weight: 600; margin: 22px 0 8px; color: var(--ink); }
.legal p { font-size: 15px; color: var(--stone); line-height: 1.85; margin: 0 0 14px; }
.legal a { color: var(--plum); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
.legal a:hover { color: var(--lavender); }
.legal ul { margin: 0 0 14px; padding-left: 20px; }
.legal li { color: var(--stone); font-size: 15px; line-height: 1.8; margin-bottom: 6px; list-style: disc; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--ink-soft); color: rgba(255,255,255,0.75); }
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px var(--gutter) 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}
.footer__brand img { margin-bottom: 18px; }
.footer__brand p { font-size: 14px; color: var(--stone-light); max-width: 260px; }
.footer__nav { display: flex; flex-direction: column; gap: 14px; }
.footer__nav a { font-size: 14px; color: rgba(255,255,255,0.75); transition: color var(--dur-fast) var(--ease); }
.footer__nav a:hover { color: var(--lavender-light); }
.footer__contact { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer__whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-size: 14.5px; font-weight: 500;
}
.footer__whatsapp svg { color: #25D366; }
.footer__mail { font-size: 14px; color: var(--stone-light); }
.footer__mail:hover { color: var(--lavender-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px var(--gutter);
  text-align: center;
  font-size: 12.5px;
  color: var(--stone-light);
}

/* =========================================================
   Floating WhatsApp
   ========================================================= */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform var(--dur-fast) var(--ease);
}
.wa-float:hover { transform: scale(1.07); }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal[data-delay="1"] { --d: 1; }
.reveal[data-delay="2"] { --d: 2; }
.reveal[data-delay="3"] { --d: 3; }
.reveal[data-delay="4"] { --d: 4; }
.reveal[data-delay="5"] { --d: 5; }
.reveal[data-delay="6"] { --d: 6; }
.is-visible .reveal, .hero__content .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* hero reveals independent of scroll (load-triggered) */
.hero.is-ready .hero__content .reveal { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .intro__grid, .tailored__grid { grid-template-columns: 1fr; }
  .tailored__media { order: -1; }
  .services__list { grid-template-columns: 1fr; }
  .services__item:nth-child(odd) { border-right: none; padding-right: 12px; }
  .services__item:nth-child(even) { padding-left: 22px; }
  .services__item:nth-last-child(-n+2)::after { display: block; }
  .services__item:last-child::after { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(11,11,11,0.97); padding: 8px var(--gutter) 28px;
  }
  .nav.is-open .nav__links a:not(.nav__cta) { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav.is-open .nav__cta { display: inline-flex; justify-content: center; margin: 18px 0 4px; }

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

  .gallery__item:nth-child(n) { grid-column: span 1; grid-row: span 2; }
  .gallery__item:nth-child(2), .gallery__item:nth-child(3), .gallery__item:nth-child(5), .gallery__item:nth-child(6) { grid-row: span 1; }

  .corner { width: 20px; height: 20px; }
  .hero__frame .corner--tl, .hero__frame .corner--tr, .hero__frame .corner--bl, .hero__frame .corner--br { top: 16px; left: 16px; right: 16px; bottom: 16px; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero.is-ready .hero__content .reveal, .hero__frame .corner, .quote__frame .corner, .final-cta__frame .corner {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__scroll-line::after { animation: none; }
  .viewfinder--hover img { transition: none; }
  .btn::before { display: none; }
  .services__item::after, .services__item::before, .services__item span,
  .destinations__row span::after, .destinations__row span {
    transition: none !important;
  }
  .quote__frame, .final-cta__frame { transform: none !important; }
}
