/* ═══════════════════════════════════════
   Sebastian Dydo — Shared Stylesheet
   css/style.css
═══════════════════════════════════════ */

/* ── FONTS ── */
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('/fonts/cormorant-garamond-normal-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('/fonts/cormorant-garamond-normal-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300 700; font-display: swap; src: url('/fonts/cormorant-garamond-italic-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300 700; font-display: swap; src: url('/fonts/cormorant-garamond-italic-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300 600; font-display: swap; src: url('/fonts/inter-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300 600; font-display: swap; src: url('/fonts/inter-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('/fonts/space-grotesk-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('/fonts/space-grotesk-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── CSS VARIABLES ── */
:root {
  --bg:           #0C0C0C;
  --surface:      #141414;
  --surface-2:    #1C1C1C;
  --border:       rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.13);
  --text:         #F0EDE8;
  --text-muted:   rgba(240,237,232,0.48);
  --text-dim:     rgba(240,237,232,0.22);
  --accent:       #C9A96E;
  --accent-dim:   rgba(201,169,110,0.12);
}

/* ── BASE ── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-light); border-radius: 9999px;
  padding: 9px 22px; font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease,
              transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.nav-cta:hover {
  background: var(--accent-dim); border-color: var(--accent);
  transform: translateY(-1px);
}
.nav-cta:active { transform: translateY(0); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #0C0C0C;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; padding: 13px 28px; border-radius: 9999px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 24px rgba(201,169,110,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px); opacity: 0.9;
  box-shadow: 0 8px 32px rgba(201,169,110,0.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.09em;
  text-transform: uppercase; padding: 12px 26px; border-radius: 9999px;
  border: 1px solid var(--border-light); text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease,
              transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(0); }

/* ── SCROLL MARGIN (fixed navbar offset for hash navigation) ── */
section[id], div[id] { scroll-margin-top: 88px; }

/* ── SECTION BASICS ── */
.section-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--accent);
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px,5vw,64px); font-weight: 700;
  color: var(--text); letter-spacing: -0.03em; line-height: 1.05;
}
.section-sub { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* ── FADE-UP ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ── LANG TOGGLE ── */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  padding: 6px 13px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease,
              transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.lang-toggle:hover {
  color: var(--text); border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}
.lang-toggle:active { opacity: 0.7; transform: translateY(0); }
.lang-flag { font-size: 14px; line-height: 1; letter-spacing: 0; }
.lang-code { font-size: 10.5px; }

/* ── RESPONSIVE NAV ── */
@media (max-width: 900px) {
  .hidden-mobile { display: none !important; }
  #mobile-menu-btn { display: flex !important; }
}

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: var(--text-dim); letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 24px; }
.footer-link { font-size: 12px; color: var(--text-dim); text-decoration: none; transition: color 0.2s ease; }
.footer-link:hover { color: var(--text-muted); }

/* ── DIVIDER ── */
.divider { width: 100%; height: 1px; background: var(--border); }


/* ══════════════════════════════
   HOMEPAGE — index.html
══════════════════════════════ */

/* ── SECTION ── */
.section { padding: 120px 0; }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding-bottom: 88px;
  position: relative; overflow: hidden;
}
.hero-bg-text {
  position: absolute; top: 50%; right: -20px;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(180px, 26vw, 380px);
  font-weight: 700; line-height: 1;
  color: rgba(255,255,255,0.022);
  pointer-events: none; user-select: none;
  letter-spacing: -0.05em;
}
.hero-available {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 36px;
}
.hero-available-line { display: block; width: 32px; height: 1px; background: var(--accent); }
.hero-available-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #4ADE80;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
  animation: dot-pulse 2s infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.8); }
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 12vw, 164px);
  font-weight: 700; line-height: 0.88;
  letter-spacing: -0.03em; color: var(--text);
}
.hero-name .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(240,237,232,0.35);
}
.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-top: 52px; padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-desc { font-size: 15px; line-height: 1.78; color: var(--text-muted); max-width: 360px; }
.hero-ctas { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.hero-stats { display: flex; gap: 36px; flex-shrink: 0; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 700; color: var(--text);
  line-height: 1; letter-spacing: -0.04em;
}
.stat-lbl {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim); margin-top: 5px;
}
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--text-muted));
  animation: scroll-anim 2.2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: .55; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* ── WIDE SCREEN (≥1600px / 2560p monitors) ── */
@media (min-width: 1600px) {
  .container { max-width: 1440px; }

  /* Fill the viewport with symmetric padding instead of flex-end */
  #hero {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  #hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    column-gap: 100px;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  /* Bigger name at wide screens — feels proportionate to the space */
  .hero-name { font-size: 200px; }

  /* SD watermark: large and centered behind the right column */
  .hero-bg-text {
    font-size: 600px;
    right: auto;
    left: 50%;
    top: 50%;
    transform: translate(-8%, -50%);
  }

  .hero-bottom {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    border-left: 1px solid var(--border);
    padding-left: 80px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 40px;
    min-height: 180px;
  }

  .hero-desc { max-width: 100%; }
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-text-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400; font-style: italic;
  color: var(--text); line-height: 1.65; margin-top: 20px;
}
.about-text-body { font-size: 15px; line-height: 1.85; color: var(--text-muted); margin-top: 16px; }
.tags-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.tag {
  border: 1px solid var(--border-light); border-radius: 9999px;
  padding: 5px 14px; font-size: 11.5px; font-weight: 500;
  color: var(--text-muted); transition: border-color 0.2s ease, color 0.2s ease;
}
.tag:hover { border-color: var(--accent); color: var(--accent); }
.stat-rows { margin-top: 0; }
.stat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0; border-bottom: 1px solid var(--border);
}
.stat-row:first-child { border-top: 1px solid var(--border); }
.stat-row-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px; font-weight: 700; color: var(--text);
  letter-spacing: -0.04em; line-height: 1;
}
.stat-row-lbl {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim); text-align: right;
}
.currently-block {
  margin-top: 28px; padding: 22px; border: 1px solid var(--border);
  border-radius: 10px; background: var(--surface);
}
.currently-title {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 12px;
}

/* ── SERVICES ── */
.services-card-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  border: 1px solid var(--border); margin-top: 64px; overflow: hidden;
}
.svc-card {
  padding: 32px 26px; position: relative;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  cursor: pointer; background: var(--bg);
  transition: background 0.2s ease;
}
.svc-card:hover { background: var(--surface); }
.svc-card:nth-child(-n+3) { grid-column: span 2; }
.svc-card:nth-child(4), .svc-card:nth-child(5) { grid-column: span 3; border-bottom: none; }
.svc-card:nth-child(3), .svc-card:nth-child(5) { border-right: none; }
.svc-plus {
  position: absolute; top: 18px; right: 18px;
  color: var(--text-dim); font-size: 20px; line-height: 1; font-weight: 300;
}
.svc-num {
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text-dim); margin-bottom: 22px;
}
.svc-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px,1.6vw,20px); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--text); line-height: 1.2; margin-bottom: 14px;
}
.svc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 768px) {
  .services-card-grid { grid-template-columns: 1fr; }
  .svc-card:nth-child(-n+3), .svc-card:nth-child(4), .svc-card:nth-child(5) {
    grid-column: span 1; border-bottom: 1px solid var(--border); border-right: none;
  }
  .svc-card:last-child { border-bottom: none; }
}

/* ── PORTFOLIO ── */
#portfolio { padding: 120px 0; }
.project-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (max-width: 768px) { .project-grid { grid-template-columns: 1fr; } }
a.project-card { display: block; text-decoration: none; color: inherit; }
.project-card { cursor: pointer; }
.project-img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 10px;
}
.project-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
  filter: saturate(0.75) brightness(0.88);
}
.project-card:hover .project-img-wrap img { transform: scale(1.06); filter: saturate(0.6) brightness(0.75); }
.project-meta {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 14px 0 0;
}
.project-cat {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px;
}
.project-ttl {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text);
}
.project-year { font-size: 12px; color: var(--text-dim); font-weight: 500; letter-spacing: 0.06em; }

/* ── FILTER TABS ── */
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 20px; }
.filter-tab {
  padding: 6px 16px; border-radius: 9999px;
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--text-muted);
  background: transparent; border: 1px solid var(--border);
  cursor: pointer; user-select: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.filter-tab:hover { color: var(--text); border-color: var(--border-light); }
.filter-tab.active { background: var(--accent); border-color: var(--accent); color: #0C0C0C; }

/* ── PROJECT CARD VISIBILITY ── */
.project-card.hidden { display: none; }
.project-card.entering {
  animation: cardEnter 0.35s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes cardEnter {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── LOAD MORE BUTTON ── */
#view-all-btn {
  display: flex; align-items: center; justify-content: center;
  margin: 48px auto 0; gap: 10px;
  background: transparent; color: var(--text);
  padding: 12px 28px; border-radius: 9999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; border: 1px solid var(--border);
  cursor: pointer; user-select: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease,
              transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
#view-all-btn:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.04); transform: translateY(-2px); }
#view-all-btn:active { transform: translateY(0); }
#view-all-btn.hidden { display: none; }

/* ── CLIENTS ── */
#clients, #klienci { padding: 120px 0; }
/* ── Clients marquee ── */
.clients-marquee-wrap {
  margin-top: 64px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.clients-marquee-wrap:hover .clients-track { animation-play-state: paused; }
.clients-track {
  display: flex; gap: 16px; width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.client-logo-card {
  background: var(--surface-2);
  border: 1px solid var(--border-light); border-radius: 14px;
  width: 176px; height: 128px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.2s ease;
}
.client-logo-card:hover { transform: translateY(-6px); background: var(--surface); }
.client-logo-text {
  font-size: 14px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text); text-align: center; padding: 0 12px;
}
.client-logo-img {
  max-width: 120px; max-height: 56px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.8);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.client-logo-card:hover .client-logo-img { filter: grayscale(0) brightness(1); opacity: 1; }
@media (max-width: 768px) {
  .client-logo-card { width: 140px; height: 100px; }
}
.testimonial { margin-top: 80px; position: relative; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; line-height: 0.7; color: var(--accent); opacity: 0.1;
  position: absolute; top: -16px; left: -4px;
  pointer-events: none; user-select: none;
}
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px,3vw,34px); font-weight: 400; font-style: italic;
  color: var(--text); line-height: 1.55; letter-spacing: -0.01em;
  padding-left: 48px; position: relative;
}
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-left: 48px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700; color: var(--accent);
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testi-role { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

/* ── CONTACT ── */
#contact, #kontakt { padding: 120px 0; position: relative; overflow: hidden; }
.contact-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.contact-email-link {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 600; font-style: italic;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 56px;
  position: relative;
  transition: color 0.25s ease;
}
.contact-email-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-email-link:hover { color: var(--accent); }
.contact-email-link:hover::after { transform: scaleX(1); }
.contact-email-link:active { transform: scale(0.99); }
.contact-divider {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
  margin: 48px auto 0;
}
.contact-meta-row {
  display: flex; justify-content: center; gap: 0;
  margin-top: 0; border-top: 1px solid var(--border);
}
.contact-meta-item {
  flex: 1; max-width: 240px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.contact-meta-item:last-child { border-right: none; }
.ci-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-dim);
}
.ci-value { font-size: 14px; font-weight: 500; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }
.social-row { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.social-link {
  width: 42px; height: 42px; border-radius: 9999px;
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease,
              transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.social-link:hover {
  color: var(--text); border-color: rgba(255,255,255,0.25);
  background: var(--surface); transform: translateY(-2px);
}
.social-link:active { transform: translateY(0); }
@media (max-width: 600px) {
  .contact-meta-row { flex-direction: column; border-top: none; }
  .contact-meta-item { max-width: 100%; border-right: none; border-top: 1px solid var(--border); }
}


/* ══════════════════════════════
   PROJECT PAGES
   project.html · portfolio/tourism-sector/index.html
══════════════════════════════ */

/* ── PROJECT HERO ── */
#project-hero { position: relative; overflow: hidden; }
.hero-noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-glow-1 {
  position: absolute; top: -10%; right: -5%;
  width: 55vw; height: 55vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.055) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: 0; left: -10%;
  width: 40vw; height: 40vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-number {
  position: absolute; right: -10px; bottom: -0.1em;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 700; line-height: 1;
  color: rgba(255,255,255,0.018);
  pointer-events: none; user-select: none;
  letter-spacing: -0.05em;
}
.hero-content { position: relative; z-index: 2; padding: 152px 0 72px; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-dim);
  text-decoration: none; margin-bottom: 40px;
  transition: color 0.2s ease;
}
.breadcrumb:hover { color: var(--text-muted); }
.breadcrumb svg { opacity: 0.5; }
.project-hero-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }
.project-hero-tag {
  border: 1px solid var(--border-light); border-radius: 9999px;
  padding: 4px 13px; font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
}
.project-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 700; line-height: 0.9;
  letter-spacing: -0.035em; color: var(--text);
  max-width: 900px;
}
.project-hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(240,237,232,0.3);
}
.hero-divider { margin-top: 56px; border: none; border-top: 1px solid var(--border); }

/* ── META BAR ── */
.meta-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) { .meta-bar { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .meta-bar { grid-template-columns: 1fr; } }
.meta-item { padding: 28px 32px; border-right: 1px solid var(--border); }
.meta-item:last-child { border-right: none; }
@media (max-width: 768px) {
  .meta-item:nth-child(2n) { border-right: none; }
  .meta-item { border-bottom: 1px solid var(--border); }
}
.meta-label {
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 9px;
}
.meta-value { font-size: 14px; font-weight: 500; color: var(--text-muted); line-height: 1.4; }
.meta-link {
  font-size: 14px; font-weight: 500; color: var(--accent);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: opacity 0.2s ease;
}
.meta-link:hover { opacity: 0.75; }

/* ── FEATURED IMAGE ── */
.featured-image-section { padding: 0 0 80px; }
.featured-image-wrap {
  position: relative; width: 100%;
  aspect-ratio: 21/9; overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 16px 56px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}
.featured-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.8) brightness(0.85);
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.featured-image-wrap:hover img { transform: scale(1.02); }
.featured-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(12,12,12,0.4) 100%);
  pointer-events: none;
}

/* ── OVERVIEW ── */
#overview { padding: 120px 0; }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .overview-grid { grid-template-columns: 1fr; gap: 48px; } }
.overview-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400; font-style: italic;
  color: var(--text); line-height: 1.6;
  letter-spacing: -0.01em;
}
.overview-intro em { color: var(--accent); font-style: inherit; }
.overview-body { font-size: 15px; line-height: 1.85; color: var(--text-muted); }
.overview-body p + p { margin-top: 18px; }

/* ── PROCESS ── */
#process { padding: 0 0 120px; }
.process-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-bottom: 64px; border-bottom: 1px solid var(--border);
  gap: 32px; flex-wrap: wrap;
}
.process-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 700; line-height: 1;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  user-select: none; pointer-events: none;
}
.process-step {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.process-step.reverse { direction: rtl; }
.process-step.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .process-step { grid-template-columns: 1fr; gap: 40px; }
  .process-step.reverse { direction: ltr; }
}
.step-num {
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.step-num::before { content: ''; display: block; width: 28px; height: 1px; background: var(--accent); }
.step-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; color: var(--text);
  letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 20px;
}
.step-body { font-size: 15px; line-height: 1.85; color: var(--text-muted); }
.step-body p + p { margin-top: 14px; }
.step-img-wrap {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 12px 40px rgba(0,0,0,0.45), 0 0 0 1px var(--border);
}
.step-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.8) brightness(0.88);
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.step-img-wrap:hover img { transform: scale(1.04); }
.step-img-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(12,12,12,0.82); backdrop-filter: blur(12px);
  border: 1px solid var(--border-light); border-radius: 9999px;
  padding: 5px 14px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
}

/* ── FINDINGS STRIP ── */
.findings-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; margin: 80px 0 0;
}
@media (max-width: 768px) { .findings-strip { grid-template-columns: 1fr; } }
.finding-item { padding: 36px 32px; border-right: 1px solid var(--border); }
.finding-item:last-child { border-right: none; }
@media (max-width: 768px) {
  .finding-item { border-right: none; border-bottom: 1px solid var(--border); }
  .finding-item:last-child { border-bottom: none; }
}
.finding-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 700; line-height: 1;
  color: var(--accent); letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.finding-label { font-size: 13px; font-weight: 500; color: var(--text-muted); line-height: 1.5; }

/* ── GALLERY ── */
#gallery { padding: 0 0 120px; }
.gallery-label-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.gallery-item {
  border-radius: 10px; overflow: hidden;
  background: var(--surface);
  cursor: zoom-in;
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(12,12,12,0);
  transition: background 0.3s ease;
}
.gallery-item:hover::after { background: rgba(12,12,12,0.15); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.75) brightness(0.88);
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); filter: saturate(0.6) brightness(0.78); }
.gallery-item:nth-child(1) { grid-column: span 7; aspect-ratio: 16/10; }
.gallery-item:nth-child(2) { grid-column: span 5; aspect-ratio: 4/3; }
.gallery-item:nth-child(3) { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-item:nth-child(4) { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-item:nth-child(5) { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-item:nth-child(6) { grid-column: span 12; aspect-ratio: 21/9; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item:nth-child(n) { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 2; aspect-ratio: 16/9; }
}
@media (max-width: 580px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: span 1; }
}

/* ── LIGHTBOX ── */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(8,8,8,0.96); backdrop-filter: blur(20px);
  align-items: center; justify-content: center;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
#lightbox-close {
  position: fixed; top: 28px; right: 32px;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 28px; line-height: 1;
  transition: color 0.2s ease;
}
#lightbox-close:hover { color: var(--text); }

/* ── NEXT PROJECT ── */
#next-project { border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.next-project-inner { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 768px) { .next-project-inner { grid-template-columns: 1fr; } }
.next-nav-item {
  padding: 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  text-decoration: none;
  transition: background 0.25s ease;
  position: relative;
}
.next-nav-item:hover { background: var(--surface); }
.next-nav-item:first-child { border-right: 1px solid var(--border); }
@media (max-width: 768px) {
  .next-nav-item:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .next-nav-item { padding: 32px 24px; }
}
.next-nav-dir {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-dim);
  display: flex; align-items: center; gap: 10px;
}
.next-nav-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700; color: var(--text);
  letter-spacing: -0.02em; line-height: 1.1;
  margin-top: 14px;
  transition: color 0.2s ease;
}
.next-nav-item:hover .next-nav-title { color: var(--accent); }
.next-nav-cat {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim); margin-top: 12px;
}
