/* ═══════════════════════════════════════
   RESET & VARIABLES
═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #F8F6F1;
  --white: #FFFFFF;
  --dark: #111111;
  --gold: #C6A87D;
  --gold-l: #D4BC97;
  --muted: #888888;
  --line: #E3DDD3;
  --line-dark: rgba(17,17,17,0.1);

  --ff-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --pad-x: clamp(28px, 5.5vw, 88px);
  --sec-pad: clamp(72px, 10vh, 120px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

html { font-size: 16px; scroll-behavior: auto; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { cursor: pointer; }
::selection { background: var(--gold); color: var(--dark); }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ═══════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-body {
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

.line-wrap { overflow: hidden; display: block; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.line-inner { display: block; transform: translateY(105%); }

.gold-dot { color: var(--gold); opacity: 0.82; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary, .btn-text, .btn-outline, .btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--ff-sans);
  font-weight: 400;
  cursor: pointer;
  transition: background 0.32s var(--ease-out),
              color 0.32s var(--ease-out),
              border-color 0.32s var(--ease-out),
              transform 0.32s var(--ease-out);
}

.btn-primary {
  background: var(--dark);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 1px;
}
.btn-primary:hover { background: var(--gold); color: var(--dark); transform: translateY(-1px); }
.btn-primary .btn-arrow { transition: transform 0.3s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-text {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
}
.btn-text:hover { color: var(--gold); border-color: var(--gold); }
.btn-text .btn-arrow { transition: transform 0.3s; }
.btn-text:hover .btn-arrow { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--line-dark);
  padding: 13px 22px;
  border-radius: 1px;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-outline .btn-arrow { transition: transform 0.3s; }
.btn-outline:hover .btn-arrow { transform: translateX(4px); }

.btn-cta-main {
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 1px;
  font-weight: 500;
  transition: background 0.32s var(--ease-out), transform 0.32s var(--ease-out);
}
.btn-cta-main:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn-cta-main .btn-arrow { transition: transform 0.3s; }
.btn-cta-main:hover .btn-arrow { transform: translateX(5px); }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}

#site-header.scrolled {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

#site-header.scrolled .burger span {
  background: #111;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 20px var(--pad-x);
  gap: 2rem;
}

/* Nav links */
.main-nav { display: flex; justify-content: center; }
.main-nav ul { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.main-nav a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding-bottom: 2px;
  cursor: pointer;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.main-nav a:hover::after { width: 100%; }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-header {
  background: var(--dark);
  color: var(--bg);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 20px;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.32s var(--ease-out), transform 0.32s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn-header:hover { background: var(--gold); color: var(--dark); transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgb(255, 255, 255); /* darker for visibility */
  transition: all 0.3s;
}

.header.scrolled .burger span {
  background: #111;
}

/* Mobile overlay */
.mob-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 600;
  display: flex;
  align-items: center;
  padding: var(--pad-x);
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out);
}
.mob-overlay.open { transform: none; }
.mob-close {
  position: absolute;
  top: 24px; right: var(--pad-x);
  background: none;
  border: none;
  color: rgba(248,246,241,0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
}
.mob-nav ul { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.mob-link {
  font-family: var(--ff-display);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 400;
  color: var(--bg);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.3s;
  
}
.mob-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   SECTION WRAPPER
═══════════════════════════════════════ */
.section { padding: var(--sec-pad) 0; }
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  display: grid;
  grid-template-columns: 46fr 54fr;
  min-height: 100vh;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px clamp(32px,3vw,56px) clamp(40px,6vh,72px) var(--pad-x);
}

.hero-content {
  display: flex;
  flex-direction: column;
  animation: heroSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  gap: 10px;
}

@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  overflow: hidden;
}
.hero-eyebrow-inner { display: block; transform: translateY(110%); }

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5.5vw, 78px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.028em;
  color: var(--dark);
  margin-bottom: 2.2rem;
}

.hero-sub {
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 340px;
  opacity: 0;
  transform: translateY(16px);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: auto;
  padding-top: 3rem;
  opacity: 0;
}
.scroll-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.35);
}
.scroll-bar {
  width: 1px;
  height: 36px;
  background: rgba(17,17,17,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(-100%);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(0);     }
  100% { transform: translateY(100%);  }
}

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 105%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transform-origin: center;
}

/* Clip-in reveal — JS adds class 'revealed' */
.hero-right { clip-path: inset(0 100% 0 0); }
.hero-right.revealed { clip-path: inset(0 0% 0 0); transition: clip-path 1.4s var(--ease-out); }

.hero-tagline-bar { display: none; }

.hero-counter {
  position: absolute;
  bottom: 32px; right: 28px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: rgba(255,255,255,0.65);
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.cnt-cur { font-size: 22px; }
.cnt-sep { font-size: 13px; margin: 0 2px; }
.cnt-tot { font-size: 13px; }

/* ═══════════════════════════════════════
   INTRO
═══════════════════════════════════════ */
#intro { background: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.intro-text { display: flex; flex-direction: column; gap: 1.5rem; }

.intro-text .section-h2 { margin-bottom: 0.5rem; }

.intro-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.intro-img-wrap img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.88);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding-left: 3px;
  color: var(--dark);
}
.play-btn:hover { background: var(--white); transform: translate(-50%, -50%) scale(1.08); }

.img-caption {
  position: absolute;
  bottom: 20px; right: -1px;
  background: var(--white);
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.img-caption::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--gold);
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
#services { background: var(--bg); }

#services .section-label { margin-bottom: 2.5rem; }

.services-grid {
  display:grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap:clamp(48px,6vw,90px);
  align-items:stretch;
}

/* Service list */
.services-list { 
  height:100%;
  display:flex;
  flex-direction:column;
  border-top:1px solid var(--line);
}

.service-row {
  flex:1;
  min-height:0;
  display:grid;
  grid-template-columns:70px 1fr 28px;
  align-items:center;
  gap:1rem;
  padding:0;
  border-bottom:1px solid var(--line);
}
.service-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}
.service-row:hover::before { transform: scaleX(1); }
.service-row > * { position: relative; z-index: 1; }
.service-row:hover { padding-left: 8px; }

.svc-num {
  font-family: var(--ff-display);
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 400;
  color: rgba(17,17,17,0.18);
  line-height: 1;
  transition: color 0.3s;
}
.service-row:hover .svc-num { color: var(--gold); }

.svc-info { display: flex; flex-direction: column; gap: 4px; }

.svc-name {
  font-family: var(--ff-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--dark);
  transition: color 0.3s;
}

.svc-desc {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

.svc-arr {
  font-size: 16px;
  color: var(--line-dark);
  transition: color 0.3s, transform 0.3s;
  justify-self: end;
}
.service-row:hover .svc-arr { color: var(--gold); transform: translateX(3px) translateY(-3px); }

/* Services visual */
.services-visual {
  display:flex;
  flex-direction:column;
  gap:12px;
  height:100%;
}

.svc-main-img {
  width: min(130%, 900px);
  height: 680px;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.svc-main-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .8s cubic-bezier(0.16,1,0.3,1);
}
.svc-main-img:hover img { transform: scale(1.03); }

.svc-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: min(130%, 900px);
}
.svc-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.svc-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s cubic-bezier(0.16,1,0.3,1);
}
.svc-thumb:hover img { transform: scale(1.06); }

/* ═══════════════════════════════════════
   TARGET GROUPS
═══════════════════════════════════════ */
#targets { background: var(--bg); padding-top: 0; }

.targets-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  padding-top: var(--sec-pad);
  border-top: 1px solid var(--line);
}

.targets-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 100px;
}

.targets-h2 {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.targets-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.target-card {
  padding: clamp(20px,2.5vw,32px) clamp(16px,1.8vw,24px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s;
}
.target-card:hover { background: var(--white); }

.tc-icon { color: var(--gold); }

.tc-name {
  font-family: var(--ff-display);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--dark);
  hyphens: auto;
}

.tc-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ═══════════════════════════════════════
   EVENT REINIGUNG
═══════════════════════════════════════ */
#event { padding: 0; overflow: hidden; }

.event-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
}

.event-text {
  padding: var(--sec-pad) var(--pad-x) var(--sec-pad) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  max-width: 640px;
}

.event-text .section-h2 { margin-bottom: 0.25rem; }

.event-image {
  position: relative;
  overflow: hidden;
}
.event-image img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transform-origin: center center;
  transition: transform 0.8s var(--ease-out);
}
.event-image:hover img { transform: scale(1.08); }
.event-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(248,246,241,0.85) 15%,
    rgba(248,246,241,0.2) 40%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   WHY US
═══════════════════════════════════════ */
#why { background: var(--white); }

#why .section-label { margin-bottom: 2.5rem; }

.why-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-item {
  padding: clamp(24px,3vw,40px) clamp(20px,2.2vw,32px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background 0.3s;
}
.why-item:hover { background: var(--bg); }

.why-icon { color: var(--gold); }

.why-content { display: flex; flex-direction: column; gap: 6px; }

.why-title {
  font-family: var(--ff-display);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.why-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.why-next-arrow {
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--gold);
  background: var(--white);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  font-weight: 300;
}

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
#process { background: var(--bg); }

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.process-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.process-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--dark);
}

.process-right {}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  position: relative;
}

.process-step { padding-right: 24px; position: relative; }
.process-step.last { padding-right: 0; }

.ps-top {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  position: relative;
}

.ps-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.ps-line {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(17,17,17,0.25);
  font-size: 12px;
  padding-left: 8px;
}

.process-step.last .ps-line { display: none; }

.ps-name {
  font-family: var(--ff-display);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.ps-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ═══════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════ */
#contact { background: var(--white); }

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}

.cta-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.cta-gold-line {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: -0.028em;
  line-height: 1.08;
  overflow: hidden;
  margin-bottom: 2rem;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-img-wrap {
  overflow: hidden;
  aspect-ratio: 3 / 2.5;
  border-radius: 2px;
  background: var(--line);
}
.cta-img-wrap img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center top;
}

.cta-action { display: flex; justify-content: flex-end; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#footer {
  background: var(--dark);
  color: var(--bg);
  padding: 28px var(--pad-x);
  border-top: 1px solid rgba(248,246,241,0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-copy {
  font-size: 10px;
  color: rgba(248,246,241,0.3);
  letter-spacing: 0.03em;
}

.footer-center {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  justify-content: center;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(248,246,241,0.5);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
  white-space: nowrap;
}
.footer-contact-item:hover { color: var(--bg); }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; }

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.footer-legal a {
  font-size: 10px;
  color: rgba(248,246,241,0.35);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--bg); }
.footer-divider { color: rgba(248,246,241,0.15); font-size: 10px; }

/* ═══════════════════════════════════════
   KONTAKT FORM
═══════════════════════════════════════ */
.kontakt-form-wrap {
  border-top: 1px solid var(--line);
  margin-top: clamp(52px, 8vh, 96px);
  padding-top: clamp(44px, 7vh, 76px);
}

.kf-header { margin-bottom: 2.5rem; }

.kf-title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.kontakt-form { display: grid; gap: 0; }

.kf-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.kf-row-2 { grid-template-columns: 1fr 1fr; }

.kf-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.kf-field label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.kf-field input,
.kf-field select,
.kf-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  width: 100%;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s;
}

.kf-field input::placeholder,
.kf-field textarea::placeholder { color: rgba(17,17,17,0.28); }

.kf-field input:focus,
.kf-field select:focus,
.kf-field textarea:focus { border-bottom-color: var(--gold); }

.kf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 22px;
  cursor: pointer;
}

.kf-field textarea { resize: vertical; min-height: 110px; line-height: 1.7; }

.kf-row-check { grid-template-columns: 1fr; margin-top: 0.25rem; }

.kf-check {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
}

.kf-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.kf-check-box {
  width: 15px;
  height: 15px;
  min-width: 15px;
  border: 1px solid var(--line);
  margin-top: 2px;
  transition: border-color 0.25s, background 0.25s;
  position: relative;
  flex-shrink: 0;
}

.kf-check input:checked ~ .kf-check-box {
  background: var(--gold);
  border-color: var(--gold);
}

.kf-check input:checked ~ .kf-check-box::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 4px; height: 8px;
  border: 1.5px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.kf-check-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.kf-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(198,168,125,0.35);
  transition: border-color 0.2s;
}
.kf-link:hover { border-bottom-color: var(--gold); }

.kf-submit-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.kf-success{
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: #8d724f;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity .45s ease,
    transform .45s ease;
  pointer-events: none;
}

.kf-success.visible{
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   LEGAL MODAL
═══════════════════════════════════════ */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.legal-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.legal-modal {
  background: var(--white);
  border-radius: 4px;
  width: 100%;
  max-width: 660px;
  max-height: min(82vh, 82dvh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s var(--ease-out);
  box-shadow: 0 24px 80px rgba(17,17,17,0.18);
}

.legal-modal-overlay.open .legal-modal {
  transform: translateY(0) scale(1);
}

.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.2rem 1.4rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.legal-modal-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.legal-modal-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--muted);
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}
.legal-modal-close:hover { color: var(--dark); }

.legal-modal-body {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-height: 0;
  padding: 1.8rem 2.2rem 2.2rem;
  overscroll-behavior: contain;
}

.legal-modal-body h3 {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.legal-modal-body h3:first-child { margin-top: 0; }

.legal-modal-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

.legal-modal-body strong { font-weight: 500; color: var(--dark); }

.legal-modal-body a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(198,168,125,0.3);
  transition: border-color 0.2s;
}
.legal-modal-body a:hover { border-bottom-color: var(--gold); }

/* ═══════════════════════════════════════
   SCROLL REVEAL STATES
   GSAP reads these as starting state, animates to visible.
   The scale(0.97) on translate classes creates the
   "coming forward" / layered cinematic effect.
═══════════════════════════════════════ */
.reveal-from-left  { opacity: 0; transform: translateX(-72px) scale(0.97); }
.reveal-from-right { opacity: 0; transform: translateX(72px) scale(0.97); }
.reveal-from-up    { opacity: 0; transform: translateY(56px) scale(0.97); }
.reveal-forward    { opacity: 0; transform: scale(0.94) translateY(24px); }

/* Hero sub & ctas — GSAP to() reads these */
.hero-sub  { opacity: 0; transform: translateY(18px); }
.hero-ctas { opacity: 0; transform: translateY(18px); }
.scroll-hint { opacity: 0; }

/* Reduced motion: show everything flat */
@media (prefers-reduced-motion: reduce) {
  .reveal-from-left, .reveal-from-right, .reveal-from-up, .reveal-forward,
  .hero-sub, .hero-ctas, .scroll-hint {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* ─── Tablet wide (1100px) ─── */
@media (max-width: 1100px) {
  .targets-grid { grid-template-columns: 1fr; gap: 2rem; }
  .targets-text { position: static; }
  .targets-cards { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
  .process-step { padding-right: 0; }
  .process-step.last .ps-line { display: flex; }
}

/* ─── Tablet / large phone ≤900px ─── */
@media (max-width: 900px) {

  /* ── Nav ── */
  .main-nav { display: none; }
  .burger   { display: flex; margin-left: auto; }
  .btn-header { display: none; }

  /* ── Global section rhythm ── */
  .section { padding: clamp(56px, 10vh, 88px) 0; }

  /* ════════════════════════════
     HERO — editorial split
  ════════════════════════════ */
  #hero {
    display: block;
    position: relative;
    width: 100%;
    min-height: unset;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    overflow: hidden;
    background: var(--bg);
  }

  /* Image bleeds from the right */
  .hero-right {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: calc(100% - 50px);
    z-index: 0;
    clip-path: none;
  }
  .hero-right img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transform: none;
    object-fit: cover;
    object-position: 65% top;
    display: block;
  }

  /* Cream overlay left → transparent right, dark vignette bottom */
  .hero-left {
    position: absolute;
    top: 0; left: 0; right: 0;
    bottom: 50px;
    z-index: 1;
    min-height: unset;
    width: 100%;
   background:
  linear-gradient(
    to right,
    rgba(248,246,241,0.86) 0%,
    rgba(248,246,241,0.78) 24%,
    rgba(248,246,241,0.58) 46%,
    rgba(248,246,241,0.28) 68%,
    rgba(248,246,241,0.08) 84%,
    transparent 100%
  ),
  linear-gradient(
    to top,
    rgba(248,246,241,0.42) 0%,
    rgba(248,246,241,0.12) 36%,
    transparent 64%
  );
    justify-content: center;
    align-items: flex-start;
    padding: clamp(72px,14vh,110px) 28px 0;
  }
  .hero-content {
    max-width: 78%;
    padding-bottom: 0;
  }
  .hero-eyebrow {
    font-size: 8.5px;
    letter-spacing: 0.30em;
    color: var(--gold);
    margin-bottom: 1.4rem;
    opacity: 1;
    text-shadow: none;
  }
  .hero-title {
    color: var(--dark);
    font-size: clamp(38px, 9.5vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.028em;
    margin-bottom: 1.3rem;
    text-shadow: none;
  }
  .hero-sub {
    max-width: 100%;
    color: var(--muted);
    font-weight: 300;
    font-size: 13px;
    line-height: 1.78;
    margin-bottom: 0;
    opacity: 1;
    transform: none;
    text-shadow: none;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2.2rem;
    opacity: 1;
    transform: none;
  }
  .hero-ctas .btn-primary {
    background: var(--dark);
    color: var(--bg);
    padding: 15px 28px;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    min-width: 180px;
    justify-content: center;
  }
  .hero-ctas .btn-text {
    color: var(--dark);
    border-bottom-color: var(--dark);
    font-size: 11.5px;
    letter-spacing: 0.07em;
    padding-bottom: 2px;
  }
  .scroll-hint { display: none; }
  .hero-counter { display: none; }

  /* Tagline bar */
  .hero-tagline-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50px;
    z-index: 3;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
  }
  .hero-tagline-text {
    font-size: 8.5px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .hero-tagline-counter {
    font-family: var(--ff-display);
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
  }

  /* ════════════════════════════
     INTRO
  ════════════════════════════ */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }
  .intro-text { gap: 1.2rem; }
  .intro-img-wrap { aspect-ratio: 4 / 3; }

  /* ════════════════════════════
     SERVICES
  ════════════════════════════ */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .services-visual { order: 1; margin-top: 2.4rem; }
  .svc-main-img {
    width: 100%;
    height: clamp(240px, 58vw, 420px);
  }
  .svc-main-img img { height: 100%; object-position: center 20%; }
  .svc-thumbs {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 5px;
    margin-top: 5px;
  }
  .svc-thumb { aspect-ratio: 1 / 1; }
  .service-row { padding-top: 16px; padding-bottom: 16px; min-height: 68px; }
  .svc-desc { display: block; font-size: 11px; line-height: 1.5; }

  /* ════════════════════════════
     TARGET GROUPS
  ════════════════════════════ */
  .targets-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: clamp(40px, 7vh, 64px);
  }
  .targets-text { position: static; gap: 1rem; }
  .targets-h2 { font-size: clamp(22px, 5vw, 30px); }
  .targets-cards {
    grid-template-columns: repeat(2, 1fr);
    border-left: none;
    border-top: none;
    gap: 1px;
    background: var(--line);
  }
  .target-card {
    background: var(--bg);
    padding: 24px 20px;
    gap: 10px;
  }
  .tc-name { font-size: 13px; }
  .tc-desc { font-size: 11px; line-height: 1.55; }

  /* ════════════════════════════
     EVENT
  ════════════════════════════ */
  #event { padding: 0; }
  .event-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .event-image {
    height: clamp(260px, 60vw, 400px);
    order: -1;
  }
  .event-image img {
    height: 100%;
    transform: none;
    object-position: center 30%;
  }
  .event-fade {
    background: linear-gradient(
      to bottom,
      transparent 50%,
      rgba(248,246,241,0.6) 80%,
      var(--bg) 100%
    );
  }
  .event-text {
    max-width: 100%;
    padding: clamp(36px, 7vh, 56px) 28px clamp(48px, 9vh, 72px);
    gap: 1.4rem;
  }

  /* ════════════════════════════
     WHY US
  ════════════════════════════ */
  .why-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-next-arrow { display: none; }
  .why-item {
    padding: 24px 20px;
    gap: 12px;
  }

  /* ════════════════════════════
     PROCESS
  ════════════════════════════ */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .process-left { position: static; gap: 1rem; }
  .process-title { font-size: clamp(28px, 7vw, 42px); }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 1.4rem;
    padding-top: 20px;
  }
  .process-step { padding-right: 0; }
  .ps-line { display: none; }
  .ps-num { font-size: 24px; }
  .ps-name { font-size: 15px; margin-bottom: 8px; }
  .ps-desc { font-size: 12px; }

  /* ════════════════════════════
     CTA + CONTACT
  ════════════════════════════ */
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .cta-title { font-size: clamp(38px, 9vw, 58px); }
  .cta-gold-line { font-size: clamp(20px, 5vw, 32px); }
  .cta-img-wrap { aspect-ratio: 16 / 9; }
  .cta-action { justify-content: flex-start; }
  .kontakt-form-wrap { margin-top: 2.8rem; padding-top: 2.8rem; }

  /* ════════════════════════════
     FOOTER
  ════════════════════════════ */
  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-center { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-legal { justify-content: flex-start; }
}

/* ─── Phone portrait ≤640px ─── */
@media (max-width: 640px) {

  .section { padding: clamp(48px, 9vh, 72px) 0; }

  /* ── Hero ── */
  .hero-left { padding-left: 22px; padding-right: 22px; padding-top: clamp(68px, 13vh, 100px); }
  .hero-content { max-width: 82%; }
  .hero-title { font-size: clamp(34px, 9.2vw, 50px); }
  .hero-sub { font-size: 13px; }
  .hero-ctas { margin-top: 1.8rem; gap: 0.9rem; }
  .hero-ctas .btn-primary { min-width: 165px; padding: 14px 24px; }

  /* ── Intro ── */
  .intro-img-wrap { aspect-ratio: 3 / 2; }

  /* ── Services ── */
  .svc-thumbs { grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .svc-main-img { height: clamp(220px, 56vw, 360px); }

  /* ── Targets ── */
  .targets-cards { grid-template-columns: repeat(2, 1fr); }
  .target-card { padding: 20px 16px; }

  /* ── Why Us ── */
  .why-row { grid-template-columns: 1fr; }
  .why-item { padding: 22px 20px; }

  /* ── Process ── */
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }

  /* ── CTA ── */
  .cta-title { font-size: clamp(34px, 9vw, 50px); }
  .cta-gold-line { font-size: clamp(18px, 5vw, 28px); }
  .cta-img-wrap { aspect-ratio: 4 / 3; }
  .kf-row-2 { grid-template-columns: 1fr; }
  .kf-submit-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ─── Small phone ≤430px ─── */
@media (max-width: 430px) {

  .section { padding: clamp(40px, 8vh, 60px) 0; }

  /* ── Hero ── */
  .hero-left { padding-left: 18px; padding-right: 18px; padding-top: clamp(64px, 12vh, 96px); }
  .hero-content { max-width: 86%; }
  .hero-title { font-size: clamp(32px, 9.5vw, 44px); margin-bottom: 1rem; }
  .hero-sub { font-size: 12.5px; line-height: 1.75; }
  .hero-ctas .btn-primary { min-width: 155px; padding: 13px 22px; }

  /* ── Services ── */
  .svc-thumbs { grid-template-columns: repeat(3, 1fr); gap: 4px; }

  /* ── Targets ── */
  .targets-cards { grid-template-columns: 1fr; }
  .target-card { padding: 18px 16px; }

  /* ── Process ── */
  .process-steps { grid-template-columns: 1fr; gap: 1.4rem; }

  /* ── Why ── */
  .why-item { gap: 10px; }

  /* ── Modal ── */
  .legal-modal-overlay { padding: 10px; }
  .legal-modal-header { padding: 1.25rem 1.25rem 1rem; }
  .legal-modal-body { padding: 1.25rem; }
}

/* ═══════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-from-left, .reveal-from-right, .reveal-from-up, .reveal-forward {
    opacity: 1;
    transform: none;
  }
  .line-inner { transform: none; }
  .hero-right { clip-path: none; }
}

@media (max-width: 768px) {

  /* HERO TITLE */
  .hero-title {
    font-weight: 500;
    letter-spacing: -0.035em;
    color: rgba(17,17,17,0.97);
  }

  /* HERO SUBTEXT */
  .hero-sub {
    font-weight: 400;
    color: rgba(17,17,17,0.72);
  }

  /* HERO EYEBROW */
  .hero-eyebrow {
    font-weight:800;
    color: rgba(100, 59, 1, 0.76);
  }

}

@media (max-width: 768px) {
  #targets {
    padding-top: 64px;
  }

  #targets .targets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 0;
  }

  #targets .targets-text {
    position: relative;
    top: auto;
    gap: 16px;
  }

  #targets .targets-h2 {
    font-size: 30px;
    line-height: 1.15;
    max-width: 92%;
  }

  #targets .section-body {
    font-size: 14px;
    line-height: 1.75;
    max-width: 92%;
  }

  #targets .targets-cards {
    display: grid;
    grid-template-columns: 1fr;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  #targets .target-card {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    gap: 12px;
  }

  #targets .tc-icon svg {
    width: 24px;
    height: 24px;
  }

  #targets .tc-name {
    font-size: 18px;
    line-height: 1.25;
  }

  #targets .tc-desc {
    font-size: 13px;
    line-height: 1.65;
    max-width: 92%;
  }
}

@media (max-width: 768px) {

  #event .event-inner {
    display: flex;
    flex-direction: column;
  }

  /* TEXT FIRST */
  #event .event-text {
    order: 1;
    padding: 64px var(--pad-x) 40px;
    max-width: 100%;
    gap: 1.25rem;
  }

  /* IMAGE SECOND */
  #event .event-image {
    order: 2;
  }

  /* KEEP ORIGINAL IMAGE SIZE */
  #event .event-image img {
    transform: translate3d(0px, 0px, 0px) scale(1.05);
  }

  /* SOFTER PREMIUM FADE */
  #event .event-fade {
    background: linear-gradient(
      to bottom,
      rgba(248,246,241,0.04) 0%,
      rgba(248,246,241,0.12) 100%
    );
  }

  /* TYPOGRAPHY */
  #event .section-h2 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  #event .section-body {
    font-size: 14px;
    line-height: 1.8;
    max-width: 95%;
  }

  /* BUTTON */
  #event .btn-outline {
    margin-top: 6px;
    width: fit-content;
  }
}

@media (min-width: 1025px) {
  #targets .targets-grid {
    grid-template-columns: 360px 1fr;
    gap: 90px;
    align-items: start;
  }

  #targets .targets-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(230px, 1fr));
    grid-template-rows: repeat(2, 300px);
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  #targets .target-card {
    width: 100%;
    height: 300px;
    min-height: 300px;
    padding: 40px 38px;
    overflow: hidden;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  #targets .tc-name {
    font-size: 18px;
    line-height: 1.2;
    min-height: 44px;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  #targets .tc-desc {
    font-size: 12px;
    line-height: 1.55;
    max-width: 100%;
  }
}

/* LOGO */
.logo-img{
  width: 100px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* smaller header spacing */
.header-inner{
  padding: 18px var(--pad-x);
}

/* MOBILE */
@media (max-width: 768px){

  .logo-img{
    width: 80px;
  }

  .header-inner{
    padding: 14px 22px;
    grid-template-columns: auto auto;
  }

  .main-nav{
    display:none;
  }

  .btn-header{
    display:none;
  }

  .burger{
    display:flex;
  }
}