/* ==========================================================================
   LB STUDIO – Modern static styles
   Same minimalist black & white identity, modernized markup & layout
   ========================================================================== */

:root {
  --color-bg: #ffffff;
  --color-fg: #0a0a0a;
  --color-muted: #6b6b6b;
  --color-line: #e8e8e8;
  --color-soft: #f7f7f7;
  --color-accent: #0a0a0a;

  --font-sans: "Inter", "Helvetica Neue", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Inter", "Helvetica Neue", system-ui, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.08);

  --easing: cubic-bezier(.2,.7,.2,1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #0a0a0a;
    --color-fg: #f5f5f5;
    --color-muted: #a0a0a0;
    --color-line: #1f1f1f;
    --color-soft: #141414;
    --color-accent: #ffffff;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-fg);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s var(--easing); }
a:hover { opacity: .65; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 .8rem;
  font-weight: 500;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-fg);
  color: var(--color-bg);
  padding: .6rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; outline: 2px solid var(--color-fg); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 5rem 0; }
@media (max-width: 700px) { .section { padding: 3.5rem 0; } }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-header h2 { letter-spacing: .04em; }
.section-lead { color: var(--color-muted); font-size: 1.05rem; margin: 0; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* Inner page header */
.page { padding: 4rem 0 5rem; }
.page-header { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; }
.page-header h1 { letter-spacing: .02em; }
.page-lead { color: var(--color-muted); font-size: 1.1rem; margin: .75rem auto 0; max-width: 620px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--easing), background .2s var(--easing), color .2s var(--easing), border-color .2s var(--easing);
}
.btn:hover { opacity: 1; transform: translateY(-1px); }
.btn-primary {
  background: var(--color-fg);
  color: var(--color-bg);
  border-color: var(--color-fg);
}
.btn-primary:hover { background: var(--color-bg); color: var(--color-fg); }
.btn-ghost {
  background: transparent;
  color: var(--color-fg);
  border-color: var(--color-fg);
}
.btn-ghost:hover { background: var(--color-fg); color: var(--color-bg); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 1rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-fg);
  padding-bottom: 2px;
  transition: gap .2s var(--easing);
}
.link-arrow:hover { gap: .7rem; opacity: 1; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-fg);
}
@media (prefers-color-scheme: dark) {
  .brand img { background: var(--color-bg); filter: invert(1); }
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 1.05rem; letter-spacing: .15em; }
.brand-tagline { font-size: .72rem; color: var(--color-muted); letter-spacing: .12em; text-transform: uppercase; }

/* Nav */
.primary-nav { display: flex; align-items: center; gap: 2rem; }
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.primary-nav ul li a {
  position: relative;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 6px 2px;
}
.primary-nav ul li a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-fg);
}
.social-nav { gap: .75rem; }
.social-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  color: var(--color-fg);
  transition: background .2s var(--easing), color .2s var(--easing), border-color .2s var(--easing);
}
.social-nav a:hover {
  background: var(--color-fg);
  color: var(--color-bg);
  border-color: var(--color-fg);
  opacity: 1;
}

/* Language switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .75rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lang-switch a {
  font-weight: 500;
  color: var(--color-muted);
  padding: 2px 4px;
  letter-spacing: .12em;
  transition: color .2s var(--easing);
}
.lang-switch a.is-active {
  color: var(--color-fg);
  font-weight: 600;
}
.lang-switch a:hover { color: var(--color-fg); opacity: 1; }
.lang-switch span { color: var(--color-line); font-weight: 300; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-fg);
  margin: 5px 0;
  transition: transform .25s var(--easing), opacity .2s var(--easing);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-line);
    transform: translateY(-110%);
    transition: transform .3s var(--easing);
    box-shadow: var(--shadow-md);
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav ul { flex-direction: column; gap: 1rem; width: 100%; }
  .primary-nav ul li a { font-size: 1.15rem; }
  .social-nav { flex-direction: row !important; gap: 1rem; }
  .lang-switch { align-self: flex-start; }
}

/* ===== Hero ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 72px);
  padding: 4rem 0;
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--color-fg) 4%, transparent), transparent 60%),
    radial-gradient(circle at 80% 100%, color-mix(in srgb, var(--color-fg) 4%, transparent), transparent 60%),
    var(--color-bg);
}
.hero-inner {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp .8s var(--easing) both;
}
.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  background: var(--color-fg);
}
@media (prefers-color-scheme: dark) {
  .hero-logo { background: var(--color-bg); filter: invert(1); }
}
.hero h1 {
  margin: .25rem 0 .5rem;
  letter-spacing: .15em;
}
.lead {
  font-size: 1.2rem;
  color: var(--color-muted);
  margin-bottom: .8rem;
  letter-spacing: .02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 0 2rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== About teaser (two-col) ===== */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}
.col-text h2 { margin-top: 0; }
.col-visual .visual-card {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-soft);
  box-shadow: var(--shadow-sm);
}
.visual-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-line);
}
.visual-stat:last-child { border-bottom: 0; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: .85rem;
  color: var(--color-muted);
  letter-spacing: .04em;
  text-align: right;
}

/* ===== Services grid (home teaser) ===== */
.services-section { background: var(--color-soft); }
.services-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: srv;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  padding: 2rem 1.6rem 1.6rem;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  transition: transform .25s var(--easing), box-shadow .25s var(--easing), border-color .25s var(--easing);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--color-fg) 25%, var(--color-line));
}
.service-card h3 { margin: .8rem 0 .5rem; letter-spacing: -0.01em; }
.service-card p { margin: 0; color: var(--color-muted); font-size: .95rem; }
.service-num {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-line);
  padding-bottom: .35rem;
  margin-bottom: .25rem;
}

/* ===== About page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 5rem;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
}
.about-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-md);
}
.about-text h2 { margin: 0 0 .25rem; }
.about-text .role {
  color: var(--color-muted);
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}
.about-text .intro { font-size: 1.08rem; }

.creds {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.creds li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: .85rem 0;
  border-top: 1px solid var(--color-line);
  align-items: baseline;
}
.creds li:last-child { border-bottom: 1px solid var(--color-line); }
.creds-year {
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--color-fg);
  font-size: 1.05rem;
}

/* Values grid */
.values-section { padding: 4rem 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 2rem 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  text-align: left;
}
.value-icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-fg);
  background: var(--color-soft);
  border-radius: 50%;
}
.value-card h3 { margin: 0 0 .5rem; letter-spacing: -0.01em; }
.value-card p { margin: 0; color: var(--color-muted); font-size: .95rem; }

/* Services CTA box */
.services-cta {
  text-align: center;
  padding: 3.5rem 2rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-soft);
  margin-top: 2rem;
}
.services-cta h2 { margin-top: 0; }
.services-cta p { color: var(--color-muted); margin-bottom: 1.5rem; }

/* ===== Projects page ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 900px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .projects-grid { grid-template-columns: 1fr; } }
.project-card {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s var(--easing), box-shadow .25s var(--easing);
}
.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.project-thumb {
  aspect-ratio: 4 / 3;
  background: var(--color-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-line);
}
.project-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.project-card-body h3 { margin: 0 0 .35rem; }
.project-card-body p { margin: 0; color: var(--color-muted); font-size: .92rem; }

.ig-cta { display: flex; justify-content: center; }
.ig-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-soft);
  max-width: 640px;
  width: 100%;
  transition: transform .2s var(--easing), box-shadow .2s var(--easing);
}
.ig-card:hover { opacity: 1; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ig-handle { font-weight: 600; margin: 0; }
.ig-text { color: var(--color-muted); margin: .25rem 0 0; font-size: .9rem; }
.ig-arrow { font-size: 1.3rem; margin-left: auto; }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  padding: 2rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-soft);
}
.contact-card h2 { margin-top: 0; }
.contact-card .lead { font-size: 1rem; }
.contact-block {
  display: grid;
  gap: .75rem;
  margin: 1.5rem 0;
}
.contact-block > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: .75rem;
  align-items: baseline;
  padding: .5rem 0;
  border-top: 1px solid var(--color-line);
}
.contact-block > div:last-child { border-bottom: 1px solid var(--color-line); }
.contact-block dt {
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .12em;
  color: var(--color-muted);
}
.contact-block dd { margin: 0; }
.contact-card .entity {
  color: var(--color-muted);
  font-size: .88rem;
  margin: 1rem 0;
}
.hero-social {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.hero-social a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: .9rem;
  background: var(--color-bg);
  transition: background .2s var(--easing), color .2s var(--easing);
}
.hero-social a:hover { background: var(--color-fg); color: var(--color-bg); opacity: 1; }

.contact-map {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.contact-map iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  flex: 1;
}
.map-link {
  margin: 0;
  padding: .85rem 1.25rem;
  background: var(--color-soft);
  border-top: 1px solid var(--color-line);
  font-size: .9rem;
  text-align: right;
}

/* Contact form */
.contact-form-section { margin-top: 3rem; }
.contact-form {
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.contact-form label {
  display: grid;
  gap: .35rem;
  font-size: .9rem;
  color: var(--color-muted);
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--color-fg);
  padding: .75rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  transition: border-color .2s var(--easing), box-shadow .2s var(--easing);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--color-fg);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-fg) 12%, transparent);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { justify-self: start; }
.form-note { color: var(--color-muted); font-size: .88rem; margin: 0; }

/* ===== Projects teaser & contact CTA ===== */
.projects-teaser { padding: 5rem 0; }
.contact-cta {
  background: var(--color-fg);
  color: var(--color-bg);
  padding: 5rem 0;
}
.contact-cta-inner { text-align: center; }
.contact-cta h2 { color: inherit; }
.contact-cta p { color: color-mix(in srgb, var(--color-bg) 75%, transparent); margin-bottom: 1.5rem; }
.contact-cta .btn-primary {
  background: var(--color-bg);
  color: var(--color-fg);
  border-color: var(--color-bg);
}
.contact-cta .btn-primary:hover { background: transparent; color: var(--color-bg); }
.contact-cta .btn-ghost {
  color: var(--color-bg);
  border-color: var(--color-bg);
}
.contact-cta .btn-ghost:hover { background: var(--color-bg); color: var(--color-fg); }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--color-line);
  padding: 3rem 0 2.5rem;
  background: var(--color-soft);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
.footer-brand .footer-name {
  font-weight: 600;
  letter-spacing: .15em;
  margin: 0 0 .25rem;
}
.footer-brand .footer-sub {
  margin: 0 0 .5rem;
  color: var(--color-muted);
  font-size: .92rem;
}
.footer-brand .footer-entity {
  margin: 0;
  color: var(--color-muted);
  font-size: .82rem;
}
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: flex-end;
}
@media (max-width: 700px) { .footer-nav ul { justify-content: flex-start; } }
.footer-nav a { font-size: .92rem; }
.footer-copy {
  grid-column: 1 / -1;
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-line);
  font-size: .82rem;
  color: var(--color-muted);
  text-align: center;
}

/* === Project thumb images === */
.project-thumb { overflow: hidden; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-card-body .eyebrow { margin: 0 0 .35rem; }

/* === Cookie consent banner === */
#cc-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  margin-left: auto;
  max-width: 460px;
  background: var(--color-fg);
  color: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  font-size: .9rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease;
}
#cc-banner.is-visible { opacity: 1; transform: translateY(0); }
#cc-banner .cc-message { margin: 0 0 1rem; color: inherit; }
#cc-banner .cc-buttons { display: flex; gap: .75rem; justify-content: flex-end; flex-wrap: wrap; }
#cc-banner .cc-btn {
  border: 1px solid var(--color-bg);
  background: transparent;
  color: var(--color-bg);
  padding: .55rem 1.25rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}
#cc-banner .cc-btn:hover { background: var(--color-bg); color: var(--color-fg); }
#cc-banner .cc-accept { background: var(--color-bg); color: var(--color-fg); }
#cc-banner .cc-accept:hover { opacity: .85; background: var(--color-bg); color: var(--color-fg); }

@media (max-width: 600px) {
  #cc-banner {
    left: 0; right: 0; bottom: 0;
    max-width: 100%;
    border-radius: 0;
    margin: 0;
    padding: 1rem 1.25rem;
  }
  #cc-banner .cc-buttons { justify-content: stretch; }
  #cc-banner .cc-btn { flex: 1; }
}

/* Footer link za upravljanje */
.footer-cookie-link {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

#cc-banner .cc-link {
  color: var(--color-bg);
  text-decoration: underline;
  font-weight: 500;
}
#cc-banner .cc-link:hover { opacity: .8; }

/* === Legal page (privacy / cookies) === */
.legal-content { line-height: 1.7; }
.legal-content h2 { margin-top: 2.5rem; font-size: 1.25rem; }
.legal-content ul { padding-left: 1.25rem; }
.legal-content ul li { margin-bottom: .5rem; }
.legal-content p { margin: 1rem 0; }
