/* ============================================================
   HENRIK HILDEBRANDT — Design System
   Shared across all pages (DA + EN)
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* ── Tokens ── */
:root {
  --ink:         #1a1814;
  --ink-mid:     #4a4640;
  --ink-light:   #8a8580;
  --paper:       #f7f4ef;
  --paper-warm:  #ede9e2;
  --paper-deep:  #e2ddd6;
  --gold:        #b8964a;
  --gold-light:  #d4b06a;
  --gold-pale:   #f0e8d5;
  --white:       #ffffff;
  --black:       #0d0b09;

  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max:     1200px;
  --gap:     clamp(1.5rem, 4vw, 3rem);
  --section: clamp(4rem, 8vw, 7rem);
  --radius:  2px;
  --ease:    cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:cubic-bezier(0, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Layout ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.section { padding: var(--section) 0; }
.section--dark { background: var(--ink); }
.section--white { background: var(--white); }
.section--warm { background: var(--paper-warm); }

/* ── Typography ── */
.eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: var(--gold-light); }

.display {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.display--xl  { font-size: clamp(3rem, 7vw, 6rem); }
.display--lg  { font-size: clamp(2.5rem, 5vw, 4rem); }
.display--md  { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.display--sm  { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.body-lg  { font-size: 1.05rem; line-height: 1.75; color: var(--ink-mid); }
.body-md  { font-size: 0.92rem; line-height: 1.75; color: var(--ink-mid); }
.body-sm  { font-size: 0.82rem; line-height: 1.7;  color: var(--ink-mid); }
.caption  { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--ink-light); }

.divider {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}
.divider--light { background: var(--gold-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--white);
  padding: 0.9rem 2rem;
  border: 1px solid var(--ink);
}
.btn--primary:hover { background: var(--gold); border-color: var(--gold); }

.btn--ghost-light {
  color: rgba(247,244,239,0.85);
  border-bottom: 1px solid rgba(247,244,239,0.35);
  padding-bottom: 2px;
}
.btn--ghost-light:hover { color: var(--gold-light); border-color: var(--gold-light); }

.btn--outlined {
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.8rem 1.75rem;
}
.btn--outlined:hover { background: var(--ink); color: var(--white); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2rem;
  border: 1px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ── Top bar ── */
.topbar {
  background: var(--black);
  padding: 0.55rem 0;
  position: relative;
  z-index: 10;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar__contact {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.topbar__link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(247,244,239,0.6);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.topbar__link:hover { color: var(--gold-light); }
.topbar__link svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.5; flex-shrink: 0; }
.topbar__lang {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar__lang a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.35);
  transition: color 0.2s;
  padding: 2px 0;
}
.topbar__lang a.active { color: var(--gold-light); }
.topbar__lang a:hover { color: rgba(247,244,239,0.7); }
.topbar__lang span { color: rgba(247,244,239,0.2); font-size: 0.6rem; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,244,239,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--paper-warm);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: 0 1px 24px rgba(26,24,20,0.07); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
  flex-shrink: 0;
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}
.nav__link {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  position: relative;
  transition: color 0.2s;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--ink); }

.nav__cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--ink);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold); border-color: var(--gold); }

/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--paper-warm);
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 8px 32px rgba(26,24,20,0.08);
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  transition: color 0.15s, background 0.15s;
}
.nav__dropdown a:hover { color: var(--ink); background: var(--paper); }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.25rem;
  color: var(--ink-mid);
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-nav a {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  padding: 0.6rem 0;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  width: 100%;
  text-align: center;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav__divider {
  width: 36px;
  height: 1px;
  background: var(--paper-warm);
  margin: 1rem 0;
}
.mobile-nav__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--ink-mid);
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  max-height: 960px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero__slide.active { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.88) 0%, rgba(10,8,5,0.25) 55%, rgba(10,8,5,0.1) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max);
  margin: 0 auto;
}
.hero__eyebrow {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s 0.2s var(--ease-out) forwards;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1.02;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s 0.4s var(--ease-out) forwards;
}
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__cycle {
  --cycle-height: 2.55em;
  height: var(--cycle-height);
  overflow: hidden;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease-out) forwards;
}

.hero__cycle-inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}

.hero__cycle-inner span {
  display: flex;
  align-items: center;
  height: var(--cycle-height);
  min-height: var(--cycle-height);
  line-height: 1.15;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s var(--ease-out) forwards;
}
.hero__dots {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.25rem, 4vw, 2.5rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hero__dot {
  width: 2px;
  height: 22px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s, height 0.3s;
}
.hero__dot.active { background: var(--gold); height: 34px; }

/* ── Credentials ticker ── */
.ticker { background: var(--black); padding: 1.1rem 0; overflow: hidden; }
.ticker__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.38);
  flex-shrink: 0;
  transition: color 0.2s;
}
.ticker__item:hover { color: var(--gold-light); }
.ticker__sep { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); flex-shrink: 0; opacity: 0.4; }

/* ── Section headers ── */
.section-header { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-header--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ── Service grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--paper-deep);
  border: 1px solid var(--paper-deep);
}
.service-card {
  background: var(--paper);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.service-card:hover { background: var(--white); }
.service-card:hover::after { width: 100%; }
.service-card__num {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-family: var(--body);
}
.service-card__title {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
}
.service-card__desc {
  font-size: 0.83rem;
  color: var(--ink-mid);
  line-height: 1.65;
  flex: 1;
}
.service-card__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--ink);
  padding-top: 0.75rem;
  border-top: 1px solid var(--paper-warm);
  margin-top: 0.25rem;
}
.service-card__arrow { color: var(--gold); transition: transform 0.2s; }
.service-card:hover .service-card__arrow { transform: translateX(4px); }

/* ── Portfolio grid ── */
.portfolio-filters {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.filter-btn {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 0.38rem 0.85rem;
  border: 1px solid var(--paper-deep);
  background: transparent;
  cursor: pointer;
  transition: all 0.18s;
}
.filter-btn:hover,
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

.masonry { columns: 3; column-gap: 6px; }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img,
.masonry-item .img-ph {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}
.masonry-item .img-ph { background: var(--paper-warm); }
.masonry-item:hover img,
.masonry-item:hover .img-ph { transform: scale(1.025); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,5,0);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  transition: background 0.3s;
}
.masonry-overlay span {
  font-family: var(--display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--white);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.25s;
}
.masonry-item:hover .masonry-overlay { background: rgba(10,8,5,0.38); }
.masonry-item:hover .masonry-overlay span { opacity: 1; transform: none; }

/* ── Testimonials ── */
.testimonial-card {
  background: rgba(247,244,239,0.05);
  border: 1px solid rgba(247,244,239,0.1);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-quote {
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(247,244,239,0.82);
  line-height: 1.6;
}
.testimonial-quote::before { content: '\201C'; color: var(--gold); font-size: 1.4em; line-height: 0; vertical-align: -0.25em; margin-right: 0.1em; }
.testimonial-name { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; color: var(--white); }
.testimonial-role { font-size: 0.72rem; color: rgba(247,244,239,0.4); letter-spacing: 0.04em; margin-top: 0.15rem; }

/* ── Pricing tables ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--paper-deep);
  border: 1px solid var(--paper-deep);
}
.pricing-card {
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition: background 0.2s;
}
.pricing-card--featured {
  background: var(--ink);
}
.pricing-card__name {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
}
.pricing-card--featured .pricing-card__name { color: var(--white); }
.pricing-card__subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-light);
  font-weight: 400;
}
.pricing-card--featured .pricing-card__subtitle { color: rgba(247,244,239,0.45); }
.pricing-card__price {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin: 0.25rem 0;
}
.pricing-card__includes {
  font-size: 0.8rem;
  color: var(--ink-mid);
  line-height: 1.65;
}
.pricing-card--featured .pricing-card__includes { color: rgba(247,244,239,0.6); }
.pricing-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.pricing-card__list li {
  font-size: 0.8rem;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.pricing-card--featured .pricing-card__list li { color: rgba(247,244,239,0.65); }
.pricing-card__list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.pricing-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(184,150,74,0.35);
  padding: 0.2rem 0.5rem;
}

/* ── FAQ ── */
.faq-item {
  border-top: 1px solid var(--paper-warm);
  padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--paper-warm); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}
.faq-question p {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--gold);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.25s, opacity 0.25s;
}
.faq-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.75;
  padding-top: 0.75rem;
}

/* ── CTA section ── */
.cta-band {
  background: var(--ink);
  padding: var(--section) 0;
  text-align: center;
}
.cta-band__title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.1;
}
.cta-band__title em { font-style: italic; color: var(--gold-light); }
.cta-band__sub {
  font-size: 0.9rem;
  color: rgba(247,244,239,0.5);
  margin: 1rem auto 0;
  max-width: 480px;
  line-height: 1.7;
}
.cta-contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.cta-contact__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}
.cta-contact__value {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.01em;
  display: block;
  transition: color 0.2s;
}
.cta-contact__value:hover { color: var(--gold-light); }
.cta-sep { color: rgba(184,150,74,0.3); font-size: 1.5rem; align-self: center; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--ink);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  pointer-events: none;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-top: 0.75rem;
}
.page-hero__title em { font-style: italic; color: var(--gold-light); }
.page-hero__sub {
  font-size: 0.95rem;
  color: rgba(247,244,239,0.55);
  margin-top: 1rem;
  max-width: 520px;
  line-height: 1.7;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(247,244,239,0.35);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(247,244,239,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb__sep { font-size: 0.6rem; }

/* ── Footer ── */
.footer { background: var(--black); padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247,244,239,0.07);
}
.footer__logo {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 0.75rem;
}
.footer__logo span { color: var(--gold); }
.footer__tagline {
  font-family: var(--display);
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(247,244,239,0.3);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.footer__socials { display: flex; gap: 0.6rem; }
.footer__social {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(247,244,239,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(247,244,239,0.35);
  transition: all 0.2s;
}
.footer__social:hover { border-color: var(--gold); color: var(--gold); }
.footer__col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.28);
  margin-bottom: 1rem;
  display: block;
}
.footer__links { display: flex; flex-direction: column; gap: 0.45rem; }
.footer__links a {
  font-size: 0.8rem;
  color: rgba(247,244,239,0.45);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
}
.footer__legal { font-size: 0.7rem; color: rgba(247,244,239,0.2); letter-spacing: 0.04em; }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,8,5,0.96);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px; height: 40px;
  border: 1px solid rgba(247,244,239,0.15);
  color: rgba(247,244,239,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.lightbox__close:hover { border-color: rgba(247,244,239,0.4); color: var(--white); }
.lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border: 1px solid rgba(247,244,239,0.15);
  color: rgba(247,244,239,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.lightbox__nav:hover { border-color: rgba(247,244,239,0.4); color: var(--white); }
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ── Animations ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-contacts { flex-direction: column; gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .masonry { columns: 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__contact { gap: 1rem; }
}

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