/* ==============================
   CORKI — Prémiová Digitálna Agentúra
   style.css
   ============================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --bg-dark: #0e0d0b;
  --bg-dark-2: #131210;
  --bg-light: #f4f0eb;
  --bg-light-2: #ede8e1;
  --gold: #c9a96e;
  --gold-light: #e0c68e;
  --gold-dark: #a07840;
  --text-primary: #f4f0eb;
  --text-muted: #d4cdc4;
  --text-dark: #1a1815;
  --text-dark-muted: #3c3732;
  --border-dark: rgba(201,169,110,0.15);
  --border-light: rgba(26,24,21,0.12);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-glow: 0 0 80px rgba(201,169,110,0.08);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 5.5rem;
  background: var(--bg-dark);
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
iframe { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }
.dark-section { background: var(--bg-dark-2); }
.portfolio { padding-top: clamp(1.25rem, 2.5vw, 2rem); }

/* ---------- GRAIN TEXTURE ---------- */
.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about .section-label,
.services .section-label {
  color: var(--gold-dark);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
}
.dark-section .section-title,
.hero-headline { color: var(--text-primary); }

.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  font-size: 1.06em;
  text-shadow: 0 0 48px rgba(201, 169, 110, 0.35);
}

.hero-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 1.06em;
}

.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header--inline {
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  text-align: center;
}

.portfolio .section-header--inline {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.portfolio .section-title em {
  color: var(--text-primary);
  font-weight: 400;
  text-shadow: none;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,169,110,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(201, 169, 110, 0.5);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.08);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 24px rgba(201, 169, 110, 0.2);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(244,240,235,0.25);
}
.btn-ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full { width: 100%; justify-content: center; }

/* ---------- NAVIGATION ==============================================---------- */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  overflow: visible;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav-wrapper.scrolled {
  background: rgba(14,13,11,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: auto;
}

.nav-wrapper .logo {
  gap: 0.15rem;
}

.logo picture {
  display: contents;
}

.logo-img--header {
  height: 40px !important;
  width: auto !important;
  max-width: min(240px, 55vw);
  display: block;
  object-fit: contain;
  object-position: left center;
  transform: none;
  margin: 0 !important;
}

.logo-icon { color: var(--gold); font-size: 1.4rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.logo-text--header {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.95rem;
  line-height: 1;
  letter-spacing: 0;
}

.logo-text-mark {
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(
    118deg,
    #f0e2c4 0%,
    #d4b87a 38%,
    #c9a96e 62%,
    #9a7340 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 10px rgba(201, 169, 110, 0.28));
}

.logo-text-tag {
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  font-size: 0.9em;
  margin-left: 0.02em;
  opacity: 0.95;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links--mobile {
  display: none;
}
.nav-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }

.nav-links--desktop a {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.4rem;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--gold-light); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  transition: transform 0.25s, opacity 0.25s;
  cursor: pointer;
}
.lang-toggle:hover {
  transform: translateY(-1px);
  opacity: 0.85;
}

.lang-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.lang-flag {
  width: 28px;
  height: 20px;
  display: block;
  border-radius: 2px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav-menu-cta,
.nav-close-item,
.nav-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  padding: 0;
}

.nav-close-btn span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: background 0.2s ease;
}

.nav-close-btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-close-btn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-close-btn:active span {
  background: var(--gold);
}

/* ---------- PAGE LOADER ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loader__inner picture {
  display: contents;
}

.page-loader__logo {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.page-loader__spinner {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border: 2px solid rgba(201, 169, 110, 0.18);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: corki-spin 0.75s linear infinite;
}

@keyframes corki-spin {
  to { transform: rotate(360deg); }
}

html.is-loading,
html.is-loading body {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__spinner { animation: none; border-top-color: transparent; border-color: var(--gold); }
  .page-loader { transition: none; }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100svh;
  padding: 72px clamp(1.25rem, 5vw, 3rem) 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  min-height: calc(100svh - 72px);
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
}

.hero-media {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 1;
}

.hero-scrim {
  display: none;
}

.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, #c9a96e 0%, transparent 70%);
  animation: float1 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  bottom: 0; right: 0;
  background: radial-gradient(circle, #a07840 0%, transparent 70%);
  animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -40px); }
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 6.2vw, 5.15rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 2.1rem;
}

.hero-h1-d {
  display: none;
}

.hero-nowrap {
  white-space: nowrap;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 2vw, 1.68rem);
  font-style: normal;
  font-weight: 600;
  color: var(--text-primary);
  max-width: 36rem;
  line-height: 1.35;
  margin-bottom: 1.35rem;
}

.hero-sub em {
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
}

.hero-channels {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.85rem 1.05rem;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.hero-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-width: 2.85rem;
}

.hero-channel-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.35);
  color: var(--gold);
}

.hero-channel-icon svg {
  display: block;
  overflow: visible;
}

.hero-channel-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
}
.hero-img-frame picture,
.about-img-wrap picture,
.portfolio-case-visual picture {
  display: contents;
}
.hero-img-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,13,11,0.5) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.scroll-indicator {
  display: none;
}
.scroll-line {
  position: relative;
  width: 14.5rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(201,169,110,0.24);
  overflow: hidden;
  box-shadow: 0 0 14px rgba(201,169,110,0.24);
}
.scroll-line::before,
.scroll-line::after {
  content: '';
  position: absolute;
  top: -1px;
  width: 45%;
  height: 4px;
  border-radius: 999px;
  filter: blur(0.4px);
}
.scroll-line::before {
  left: -45%;
  background: linear-gradient(90deg, rgba(224, 198, 142, 0), rgba(224, 198, 142, 0.9), rgba(201, 169, 110, 0.95));
  animation: glow-in-left 2.8s ease-in-out infinite;
}
.scroll-line::after {
  right: -45%;
  background: linear-gradient(270deg, rgba(224, 198, 142, 0), rgba(224, 198, 142, 0.9), rgba(201, 169, 110, 0.95));
  animation: glow-in-right 2.8s ease-in-out infinite;
}
@keyframes glow-in-left {
  0% {
    left: -45%;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    left: 27.5%;
    opacity: 0.95;
  }
  75% {
    opacity: 1;
  }
  100% {
    left: -45%;
    opacity: 0;
  }
}
@keyframes glow-in-right {
  0% {
    right: -45%;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    right: 27.5%;
    opacity: 0.95;
  }
  75% {
    opacity: 1;
  }
  100% {
    right: -45%;
    opacity: 0;
  }
}

/* ---------- HERO DIVIDER ---------- */
.hero-divider {
  width: 100%;
  height: 9px;
  background: var(--gold);
}

.section-header--center {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--bg-light-2);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
}
.services .section-title,
.services .section-title em {
  color: var(--text-dark);
  text-shadow: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: clamp(3.5rem, 6vw, 5rem);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.5rem 2rem;
  background: #faf8f5;
  border-radius: 20px;
  border: 1px solid rgba(26, 24, 21, 0.06);
  box-shadow: 0 4px 24px rgba(26, 24, 21, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 24, 21, 0.1);
}

.service-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 140px;
  margin-bottom: 1.25rem;
  color: var(--gold-dark);
}

.service-card-visual svg,
.service-card-visual img {
  width: auto;
  height: clamp(100px, 14vw, 128px);
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.68rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1.1rem;
  line-height: 1.2;
}

.service-card p {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-dark-muted);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  flex: 1;
  max-width: 34ch;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  background: var(--text-dark);
  color: var(--text-primary);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-card-btn:focus {
  outline: none;
  background: var(--text-dark);
  transform: none;
}

.service-card-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.service-card-btn.is-released,
.service-card-btn.is-released:hover,
.service-card-btn.is-released:focus {
  background: var(--text-dark);
  transform: none;
}

@media (hover: hover) {
  .service-card-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
  }
}

.services-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  flex-wrap: wrap;
}
.highlight-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-primary);
}
.highlight-text h3 em { color: var(--gold); }
.highlight-text p { color: var(--text-muted); font-size: 1.05rem; font-weight: 400; margin-top: 0.3rem; }

/* ---------- PORTFOLIO =============================================---------- */

.portfolio-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.portfolio-case {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 169, 110, 0.16);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(250, 248, 245, 0.03);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-case:hover {
  border-color: rgba(201, 169, 110, 0.32);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.portfolio-case-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(220px, 26vw, 300px);
  padding: 1.25rem 1.25rem 0;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.06) 0%, transparent 100%);
  line-height: 0;
  transition: transform 0.55s ease;
}

.portfolio-case-visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: clamp(200px, 24vw, 280px);
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.portfolio-case:hover .portfolio-case-visual {
  transform: translateY(-4px);
}

.portfolio-case-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.5rem 1.65rem;
}

.portfolio-case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.portfolio-case-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.portfolio-case-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 1.25rem;
  line-height: 1.15;
}

.portfolio-case-lead {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  min-height: calc(1.05rem * 1.7 * 3);
}

.portfolio-case-points {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.portfolio-case-points li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(244, 240, 235, 0.88);
}

.portfolio-case-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.portfolio-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  white-space: nowrap;
  transition: gap 0.25s;
}

.portfolio-link:hover {
  gap: 0.65rem;
}

.portfolio-more {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--bg-light);
  overflow: hidden;
}
.about-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 88% 20%, rgba(201, 169, 110, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 45% at 8% 90%, rgba(201, 169, 110, 0.07), transparent 55%),
    linear-gradient(165deg, var(--bg-light) 0%, var(--bg-light-2) 100%);
  pointer-events: none;
  z-index: 0;
}
.about-grain {
  opacity: 0.55;
  z-index: 0;
}
.about .container {
  position: relative;
  z-index: 1;
}
.about .section-title {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0;
}
.about .section-title em {
  color: var(--text-dark);
  font-weight: 500;
  font-style: italic;
  text-shadow: none;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.75rem, 3.5vw, 2.75rem) clamp(2rem, 4.5vw, 4rem);
  align-items: start;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  max-width: none;
  padding-top: 0.15rem;
}

.about-header {
  text-align: left;
}

.about-text {
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}

.about-text p {
  color: var(--text-dark-muted);
  margin-bottom: 0.85rem;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.75;
}
.about-text p:last-child {
  margin-bottom: 0;
}

.about-pillars {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.5rem 0 0;
  margin-top: 0.35rem;
  list-style: none;
}

.about-pillar {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
  padding: 1.15rem 1.05rem 1.2rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(26, 24, 21, 0.07);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26, 24, 21, 0.04);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.about-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.28);
  box-shadow: 0 10px 28px rgba(26, 24, 21, 0.08);
}

.about-pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 0.15rem;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(201, 169, 110, 0.16) 0%, rgba(201, 169, 110, 0.06) 100%);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--gold-dark);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.about-pillar-icon svg {
  display: block;
}

.about-pillar:hover .about-pillar-icon {
  transform: scale(1.08) translateY(-1px);
  background: linear-gradient(145deg, rgba(201, 169, 110, 0.22) 0%, rgba(201, 169, 110, 0.1) 100%);
  box-shadow: 0 4px 14px rgba(201, 169, 110, 0.15);
}

.about-pillar-label {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
}

.about-pillar-desc {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-dark-muted);
  letter-spacing: 0.01em;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .about-pillar,
  .about-pillar-icon {
    transition: none;
  }
  .about-pillar:hover {
    transform: none;
  }
  .about-pillar:hover .about-pillar-icon {
    transform: none;
  }
}

.about-image {
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(160, 120, 64, 0.22);
  box-shadow:
    0 18px 48px rgba(26, 24, 21, 0.12),
    0 2px 0 rgba(201, 169, 110, 0.2);
}

.about-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image:hover .about-img-wrap img {
  transform: scale(1.04);
}

/* ---------- CONTACT ==============================================---------- */
.contact {
  overflow: hidden;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-text {
  margin-top: -4rem;
}
.contact-text p:not(.section-label):not(.contact-socials-label) {
  color: var(--text-muted);
  margin-top: 1.25rem;
  margin-bottom: 2rem;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.7;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  transition: color 0.25s, gap 0.25s;
}
.contact-info-item:hover {
  color: var(--gold-light);
  gap: 0.95rem;
}
.contact-info-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.35);
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}
.contact-info-item:hover .contact-info-icon {
  background: rgba(201,169,110,0.22);
  border-color: rgba(201,169,110,0.6);
}

.contact-socials {
  margin-top: 1.5rem;
}

.contact-text .contact-socials-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(244, 240, 235, 0.72);
  line-height: 1.55;
  margin-top: 0.25rem;
  margin-bottom: 0.85rem;
  max-width: 22rem;
}

.contact-socials-links {
  display: flex;
  gap: 0.65rem;
}

.contact-social-link {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.35);
  color: var(--gold);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.contact-social-link:hover {
  background: rgba(201, 169, 110, 0.22);
  border-color: rgba(201, 169, 110, 0.6);
  color: var(--gold-light);
}

.icon-whatsapp,
.icon-instagram,
.icon-tiktok {
  display: block;
}

.contact-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.contact-heading .section-title {
  margin-bottom: 0;
}

.contact-corki {
  width: 118px;
  height: 118px;
  flex-shrink: 0;
  margin: 2.25rem 0 0 0.75rem;
  pointer-events: none;
}

.contact-corki svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(244,240,235,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  outline: none;
  
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-dark-2); }
.form-group select.is-prefilled {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #8a8074; }

.form-success {
  text-align: center;
  color: #4ade80;
  font-size: 0.9rem;
  padding: 1rem;
  background: rgba(74,222,128,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(74,222,128,0.2);
}

.form-error {
  text-align: center;
  color: #f87171;
  font-size: 0.9rem;
  padding: 1rem;
  background: rgba(248,113,113,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(248,113,113,0.2);
}

.form-privacy {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: center;
}

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

.form-privacy a:hover {
  color: var(--gold-light, #d4b87a);
}

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

/* ---------- FOOTER ---------- */
.footer {
  background: #080807;
  border-top: 1px solid var(--border-dark);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-col--brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  margin-left: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-logo {
  display: block;
  line-height: 0;
  margin: 0;
  overflow: visible;
}

.logo-img--footer {
  height: 40px !important;
  width: auto !important;
  max-width: min(240px, 65vw);
  display: block;
  object-fit: contain;
  object-position: left center;
  transform: none;
  margin: 0;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 260px;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-contact a,
.footer-contact span {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-col--map {
  position: relative;
  z-index: 2;
}
.footer-map {
  border-radius: 16px;
  border: 1px solid var(--border-dark);
  position: relative;
  z-index: 2;
  line-height: 0;
  isolation: isolate;
  min-height: 220px;
}
.footer-map-frame {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 16px;
  pointer-events: none;
  touch-action: none;
}
.footer-map.is-active .footer-map-frame {
  pointer-events: auto;
  touch-action: auto;
}
.footer-map-activate {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 1rem;
  border: 0;
  border-radius: 16px;
  background: rgba(8, 8, 7, 0.55);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.25s;
}
.footer-map-activate:hover {
  background: rgba(8, 8, 7, 0.7);
}
.footer-map-activate-icon {
  font-size: 1.25rem;
  color: var(--gold);
}
.footer-map.is-active .footer-map-activate {
  display: none;
}
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer-bottom-inner p {
  font-size: 0.75rem;
  color: rgba(138,125,110,0.45);
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }
.reveal.delay-4 { transition-delay: 0.6s; }
.reveal.delay-5 { transition-delay: 0.75s; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Without JS (crawlers / noscript) content stays visible */
noscript .reveal {
  opacity: 1;
  transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-heading {
    gap: 0.65rem;
  }

  .contact-corki {
    width: 96px;
    height: 96px;
    margin: 0.75rem 0 0 0.55rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* About: mobile/tablet — nadpis → foto → text */
@media (max-width: 968px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-copy {
    display: contents;
    max-width: none;
  }

  .about-header {
    order: 1;
  }

  .about-image {
    order: 2;
    max-width: 100%;
  }

  .about-text {
    order: 3;
    max-width: 40rem;
  }

  .about-pillars {
    order: 4;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .about-pillar {
    padding: 1rem 1.1rem 1.05rem;
  }

  .about-pillar-label {
    font-size: 1.14rem;
  }

  .about-pillar-desc {
    font-size: 0.84rem;
  }

  .about-img-wrap {
    aspect-ratio: 16 / 11;
  }
}

@media (min-width: 969px) {
  .hero-h1-m {
    display: none;
  }

  .hero-h1-d {
    display: inline;
  }

  .hero-headline {
    margin-bottom: 2.75rem;
  }

  .nav-inner {
    padding-left: clamp(0.75rem, 2vw, 1.25rem);
    overflow: visible;
  }

  .nav-wrapper .logo {
    margin-left: 0;
    margin-right: auto;
    flex-shrink: 0;
  }

  .logo-img--header {
    height: 40px !important;
    width: auto !important;
    max-width: none;
    margin-left: 0;
    margin-top: 0 !important;
    object-position: left center;
  }

  .footer-col--brand {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .nav-inner {
    padding-left: 0;
  }

  .nav-wrapper .logo {
    margin-left: -0.5rem;
  }

  .logo-img--header {
    margin-left: -0.5rem;
  }
}

/* About container width */
@media (min-width: 1340px) {
  .about .container {
    max-width: 1320px;
  }
}

@media (min-width: 1400px) {
  .nav-wrapper .logo {
    margin-left: -0.95rem;
  }

  .logo-img--header {
    margin-left: -1.15rem;
  }

  .about .container {
    max-width: 1480px;
  }
}

@media (max-width: 968px) {
  .nav-cta--header,
  .nav-links--desktop {
    display: none;
  }

  .nav-links--mobile {
    display: none;
  }

  .nav-links--mobile.is-animating,
  .nav-links--mobile.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 10005;
    padding: 6rem 2rem 3rem;
    gap: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    background:
      radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 110, 0.08), transparent 55%),
      rgba(10, 9, 8, 0.96);
    backdrop-filter: blur(24px) saturate(1.1);
    -webkit-backdrop-filter: blur(24px) saturate(1.1);
  }

  .nav-links--mobile.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-inner {
    padding-left: 0;
    position: relative;
    z-index: 1003;
  }

  .lang-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-wrapper .logo {
    margin-left: 0.55rem;
    margin-right: auto;
    position: relative;
    z-index: 1003;
  }

  .logo-img--header {
    height: 32px !important;
    margin-left: 0.25rem;
    margin-top: 0 !important;
    max-width: min(160px, 50vw);
  }

  .burger {
    display: flex;
    position: relative;
    z-index: 1003;
  }

  .burger.open span {
    background: var(--gold);
  }

  .nav-wrapper.menu-open {
    z-index: 10010;
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
  }

  .nav-close-item {
    display: none;
  }

  .nav-links--mobile > li:not(.nav-menu-cta):not(.nav-close-item) {
    width: 100%;
    max-width: 300px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  }

  .nav-links--mobile > li:not(.nav-menu-cta):not(.nav-close-item) a {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 6vw, 2.15rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    padding: 0.85rem 0;
    text-align: center;
    transition: color 0.25s ease;
  }

  .nav-links--mobile > li:not(.nav-menu-cta):not(.nav-close-item) a:hover,
  .nav-links--mobile > li:not(.nav-menu-cta):not(.nav-close-item) a:focus,
  .nav-links--mobile > li:not(.nav-menu-cta):not(.nav-close-item) a:active {
    color: var(--text-primary);
  }

  .nav-menu-cta {
    display: block;
    width: 100%;
    max-width: 300px;
    border-bottom: none;
    margin-top: 0.25rem;
  }

  .nav-links--mobile .nav-cta--menu {
    display: block;
    width: 100%;
    padding: 0.85rem 0;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 6vw, 2.15rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: center;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: var(--gold) !important;
  }

  .nav-links--mobile .nav-cta--menu:hover,
  .nav-links--mobile .nav-cta--menu:active {
    color: var(--gold) !important;
    background: none;
  }

  /* Hero mobile */
  .hero {
    padding: 0;
    max-width: none;
    width: 100%;
    min-height: 100svh;
    display: block;
  }

  .hero-inner {
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100svh;
    width: 100%;
    padding: 72px 1.25rem 2.75rem;
    box-sizing: border-box;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100svh;
    z-index: 0;
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .hero-scrim {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100svh;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      165deg,
      rgba(14, 13, 11, 0.91) 0%,
      rgba(14, 13, 11, 0.89) 45%,
      rgba(14, 13, 11, 0.94) 100%
    );
  }

  .hero-img-frame {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    min-height: 100%;
    height: 100%;
    width: 100%;
    border: none;
    border-radius: 0;
  }

  .hero-img-frame::before {
    display: none;
  }

  .hero-img-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 100%;
  }

  .hero-intro {
    padding: 0;
    margin-bottom: 0.45rem;
  }

  .hero-eyebrow {
    justify-content: center;
    width: 100%;
    margin-bottom: 0.9rem;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-align: center;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 1.5rem;
  }

  .hero-headline {
    margin-bottom: 0.25rem;
    font-size: clamp(3rem, 12.5vw, 4.15rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.025em;
    text-align: center;
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.6);
  }

  .hero-headline em {
    font-size: 1.08em;
    color: #fff;
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
  }

  .hero-sub {
    max-width: 100%;
    margin-bottom: 0.85rem;
    font-size: 1.22rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
  }

  .hero-channels {
    justify-content: center;
    gap: 0.75rem 0.9rem;
    margin-bottom: 1.25rem;
  }

  .hero-channel-label {
    color: rgba(255, 255, 255, 0.72);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  }

  .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.65rem;
    margin: 0;
  }

  .hero-actions .btn {
    flex: 1;
    justify-content: center;
    text-align: center;
    padding: 0.85rem 0.65rem;
    font-size: 0.78rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  }

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

  .service-card {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .service-card-visual {
    min-height: 120px;
  }

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

  .services-highlight {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }

  .services-highlight .btn {
    align-self: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer {
    padding-top: 2.75rem;
  }

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

  .footer-col--brand {
    grid-column: 1 / -1;
  }

  .footer-brand {
    gap: 0.65rem;
    margin-left: -1rem;
    margin-top: 0;
  }

  .footer-logo {
    max-height: none;
  }

  .logo-img--footer {
    height: 40px !important;
    max-width: min(240px, 65vw);
  }

  .scroll-indicator {
    display: none;
  }
}

/* Portfolio – mobil: jeden stĺpec */
@media (max-width: 768px) {
  .portfolio-showcase {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .portfolio-case-visual {
    min-height: clamp(240px, 62vw, 320px);
    padding: 1rem 1rem 0;
  }

  .portfolio-case-visual img {
    max-height: clamp(220px, 58vw, 300px);
  }

  .portfolio-case-body {
    padding: 1.15rem 1.15rem 1.4rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col--brand {
    grid-column: auto;
  }

  .footer-brand {
    margin-left: -1.15rem;
  }

  .footer-logo {
    max-height: none;
  }

  .logo-img--footer {
    height: 34px !important;
    max-width: min(190px, 65vw);
  }
}

/* ==============================
   SUBPAGE — Service detail pages
   ============================== */

.subpage-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.subpage-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.subpage-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.subpage-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.02em;
}

.subpage-hero-lead {
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
  max-width: 480px;
}

.subpage-cta {
  align-self: flex-start;
}

.subpage-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.subpage-hero-visual img {
  width: 100%;
  max-width: 480px;
  height: auto;
  opacity: 0.92;
}

/* Features list */
.subpage-content {
  background: var(--bg-dark-2);
}

.subpage-features {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.subpage-feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 16px 24px;
  background: rgba(250, 248, 245, 0.035);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 20px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

@media (hover: hover) {
  .subpage-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 110, 0.28);
    background: rgba(250, 248, 245, 0.055);
  }
}

.subpage-feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 168px;
  padding: 16px 12px;
  background: #faf8f5;
  border-radius: 16px;
  color-scheme: light;
}

.subpage-feature-visual img {
  width: auto;
  height: 148px;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.subpage-feature-copy {
  padding: 0 8px;
}

.subpage-feature h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1.1rem;
  line-height: 1.2;
}

.subpage-feature-icon {
  color: var(--gold);
  font-size: 0.72em;
  flex-shrink: 0;
  line-height: 1;
}

.subpage-feature p {
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.subpage-cta-section {
  background: var(--bg-dark);
}

.subpage-hero-img--sm {
  width: 240px !important;
  max-width: 240px !important;
}

.subpage-features-cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .subpage-hero {
    padding: 110px 0 60px;
  }

  .subpage-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .subpage-hero-visual {
    order: -1;
  }

  .subpage-hero-visual img {
    max-width: 280px;
  }

  .subpage-hero-img--sm {
    width: 160px !important;
    max-width: 160px !important;
    margin: 0 auto !important;
    display: block;
  }

  .subpage-hero-visual--sm {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-right: 48px;
  }

  .subpage-hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .subpage-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .subpage-feature {
    padding: 14px 14px 20px;
  }

  .subpage-feature-visual {
    min-height: 140px;
  }

  .subpage-feature-visual img {
    height: 124px;
  }
}