/* ============================================================
   snarr. — shared stylesheet
   ============================================================ */

:root {
  --magenta: #AD1E64;
  --coral: #C56974;
  --salmon: #E4A38C;
  --dark: #1A1A2E;
  --gray: #6B7280;
  --light-bg: #F9F7F4;
  --peach: #F5DDD0;
  --rosa: #F0D4D8;
  --white: #FFFFFF;
  --grad: linear-gradient(90deg, #AD1E64, #C56974, #E4A38C);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--dark); background: var(--light-bg); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ===================== ACCESSIBILITY ===================== */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--magenta);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Focus styles */
:focus-visible {
  outline: 2.5px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible {
  outline: 2.5px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===================== GRADIENT BAR ===================== */

.gradient-bar { height: 3px; background: var(--grad); }

/* ===================== NAV ===================== */

nav {
  position: sticky; top: 0; width: 100%; z-index: 100;
  padding: 1.2rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(249,247,244,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(173,30,100,0.06);
}
.logo {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-style: italic; font-size: 1.8rem;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.5px; text-decoration: none; cursor: pointer;
}
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a {
  font-size: 0.9rem; color: var(--gray); text-decoration: none; font-weight: 500;
  transition: color 0.2s; cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--magenta); }
.nav-cta {
  font-size: 0.9rem; color: var(--gray); text-decoration: none; padding: 0.5rem 1.4rem;
  border: 1.5px solid var(--peach); border-radius: 100px; transition: all 0.3s; cursor: pointer;
}
.nav-cta:hover { border-color: var(--coral); color: var(--magenta); }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(173,30,100,0.07); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(249,247,244,0.98);
  backdrop-filter: blur(24px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 320px;
}
.mobile-nav ul li a {
  display: block;
  padding: 1.1rem 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(173,30,100,0.1);
  width: 100%;
  text-align: center;
  transition: color 0.2s;
}
.mobile-nav ul li:last-child a { border-bottom: none; }
.mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--magenta); }
.mobile-nav-cta {
  margin-top: 2rem;
  display: inline-block;
  background: var(--grad);
  color: white;
  padding: 0.85rem 2.4rem;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}
.mobile-nav-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--gray);
  line-height: 1;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
}
.mobile-nav-close:hover { color: var(--magenta); }

/* ===================== SHARED ===================== */

.brand { text-transform: none; }
.section-label {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 1rem; font-weight: 500; display: block;
}

/* ===================== HOME PAGE ===================== */

.hero {
  min-height: 92vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center; padding: 2rem;
}
.hero-logo {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-style: italic;
  font-size: clamp(4rem, 12vw, 8rem);
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -2px; line-height: 1.1;
}
.hero-tagline { font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--gray); margin-top: 1rem; }

.services { padding: 5rem 2rem; max-width: 1060px; margin: 0 auto; }
.services h2 {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--dark);
  line-height: 1.4; margin-bottom: 3rem; max-width: 600px;
}
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.service-card {
  padding: 1.6rem 1.4rem; background: var(--white); border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.04); transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0; transition: opacity 0.35s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(173,30,100,0.08); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.service-card:nth-child(1) .service-icon { background: rgba(173,30,100,0.08); color: var(--magenta); }
.service-card:nth-child(2) .service-icon { background: rgba(197,105,116,0.1); color: var(--coral); }
.service-card:nth-child(3) .service-icon { background: rgba(228,163,140,0.15); color: #c07a5f; }
.service-card:nth-child(4) .service-icon { background: rgba(173,30,100,0.06); color: var(--magenta); }
.service-card h3 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--dark); }
.service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

.home-about { padding: 3rem 2rem 5rem; max-width: 660px; margin: 0 auto; }
.home-about p { font-size: 1.05rem; color: var(--gray); line-height: 1.8; margin-bottom: 1rem; }
.home-about p:first-of-type { font-size: 1.1rem; color: var(--dark); }

.home-contact { padding: 5rem 2rem; text-align: center; position: relative; }
.home-contact::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(173,30,100,0.03), rgba(228,163,140,0.05)); pointer-events: none; }
.home-contact h2 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: clamp(1.5rem, 4vw, 2rem); color: var(--dark); margin-bottom: 0.8rem; position: relative; }
.contact-desc { font-size: 1rem; color: var(--gray); margin-bottom: 2rem; position: relative; }
.contact-btn {
  display: inline-block; font-size: 0.95rem; font-weight: 500;
  color: var(--white); background: var(--grad);
  padding: 0.85rem 2.4rem; border-radius: 100px; text-decoration: none;
  transition: all 0.35s; cursor: pointer;
}
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(173,30,100,0.25); }

/* Article feed on home */
.home-articles { padding: 5rem 2rem 6rem; background: var(--white); border-top: 1px solid rgba(0,0,0,0.05); }
.home-articles-inner { max-width: 1060px; margin: 0 auto; }
.articles-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
.articles-header h2 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--dark); }
.articles-link { font-size: 0.88rem; font-weight: 500; color: var(--magenta); text-decoration: none; border-bottom: 1.5px solid currentColor; padding-bottom: 1px; cursor: pointer; }
.feed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.feed-card {
  background: var(--light-bg); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04); text-decoration: none; color: inherit;
  display: block; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.feed-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(173,30,100,0.09); }
.feed-card-img { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
.fc-img-1 { background: linear-gradient(135deg, #AD1E64, #C56974); }
.fc-img-2 { background: linear-gradient(135deg, #C56974, #E4A38C); }
.fc-img-3 { background: linear-gradient(135deg, #1A1A2E, #AD1E64); }
.fc-img-4 { background: linear-gradient(135deg, #E4A38C, #C56974); }
.feed-card-body { padding: 1.2rem 1.2rem 0.5rem; }
.feed-card-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--magenta); display: block; margin-bottom: 0.5rem; }
.feed-card h3 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.97rem; color: var(--dark); margin-bottom: 0.5rem; line-height: 1.4; }
.feed-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }
.feed-card-meta { padding: 0.75rem 1.2rem 1.1rem; font-size: 0.76rem; color: var(--gray); opacity: 0.75; }

@media (max-width: 768px) { .service-grid { grid-template-columns: repeat(2, 1fr); } .feed-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .service-grid { grid-template-columns: 1fr; } .feed-grid { grid-template-columns: 1fr; } }

/* ===================== OM OSS ===================== */

.om-hero {
  max-width: 1060px; margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 400px; gap: 5rem; align-items: center;
}
.om-hero h1 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: clamp(2rem, 4.5vw, 3rem); color: var(--dark); line-height: 1.2; margin-bottom: 1.5rem; }
.om-hero h1 span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.om-hero p { font-size: 1.05rem; color: var(--gray); line-height: 1.85; }
.andre-card { background: var(--white); border-radius: 20px; padding: 2.5rem; border: 1px solid rgba(173,30,100,0.1); box-shadow: 0 4px 24px rgba(173,30,100,0.07); }
.andre-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-family: 'Nunito', sans-serif; font-weight: 800; font-style: italic; font-size: 1.6rem; color: white; margin-bottom: 1.25rem; }
.andre-name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--dark); margin-bottom: 0.25rem; }
.andre-title { font-size: 0.88rem; color: var(--coral); font-weight: 500; margin-bottom: 1.25rem; }
.andre-divider { height: 1px; background: rgba(173,30,100,0.1); margin-bottom: 1.25rem; }
.andre-facts { display: flex; flex-direction: column; gap: 0.7rem; }
.andre-fact { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--gray); line-height: 1.5; }
.andre-fact-dot { width: 7px; height: 7px; border-radius: 50%; margin-top: 5px; background: var(--grad); flex-shrink: 0; }
.andre-location { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(173,30,100,0.1); font-size: 0.82rem; color: var(--gray); display: flex; align-items: center; gap: 6px; }

.story-section { background: var(--white); border-top: 1px solid rgba(0,0,0,0.05); padding: 5rem 2rem; }
.story-inner { max-width: 760px; margin: 0 auto; }
.story-inner h2 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--dark); margin-bottom: 2rem; line-height: 1.3; }
.story-inner p { font-size: 1.05rem; color: #374151; line-height: 1.9; margin-bottom: 1.4rem; }
.story-inner p:first-of-type { font-size: 1.1rem; color: var(--dark); }
.story-highlight { background: var(--rosa); border-left: 3px solid var(--magenta); border-radius: 0 12px 12px 0; padding: 1.4rem 1.6rem; margin: 2rem 0; font-size: 1rem; color: var(--dark); line-height: 1.8; font-style: italic; }

.values-section { padding: 5rem 2rem; max-width: 1060px; margin: 0 auto; }
.values-section h2 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--dark); margin-bottom: 2.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.value-card { background: var(--white); border-radius: 16px; padding: 1.6rem; border: 1px solid rgba(0,0,0,0.04); transition: transform 0.3s; }
.value-card:hover { transform: translateY(-3px); }
.value-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--rosa); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.value-card h3 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.86rem; color: var(--gray); line-height: 1.65; }

.om-cta { margin: 0 2rem 6rem; max-width: 1060px; margin-left: auto; margin-right: auto; background: var(--grad); border-radius: 20px; padding: 3rem; text-align: center; color: white; }
.om-cta h2 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.7rem; margin-bottom: 0.75rem; color: white; }
.om-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; font-size: 1rem; }
.btn-white { display: inline-block; background: white; color: var(--magenta); padding: 0.8rem 2rem; border-radius: 100px; font-weight: 700; font-size: 0.95rem; text-decoration: none; font-family: 'Nunito', sans-serif; }

@media (max-width: 900px) { .om-hero { grid-template-columns: 1fr; gap: 2.5rem; } .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }

/* ===================== ARTIKLER ===================== */

.page-header { padding: 5rem 2rem 3rem; max-width: 1060px; margin: 0 auto; }
.page-header h1 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); color: var(--dark); line-height: 1.2; margin-bottom: 1rem; }
.page-header p { font-size: 1.05rem; color: var(--gray); max-width: 520px; line-height: 1.8; }

.filter-bar { max-width: 1060px; margin: 0 auto 3rem; padding: 0 2rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }
.filter-pill { font-size: 0.82rem; font-weight: 600; padding: 0.4rem 1rem; border-radius: 100px; border: 1.5px solid rgba(173,30,100,0.2); background: transparent; color: var(--gray); cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.filter-pill:hover, .filter-pill.active { background: var(--magenta); color: white; border-color: var(--magenta); }

.featured-wrap { max-width: 1060px; margin: 0 auto; padding: 0 2rem 2rem; }
.featured-card { display: grid; grid-template-columns: 1fr 1fr; border-radius: 20px; overflow: hidden; background: var(--white); border: 1px solid rgba(0,0,0,0.05); text-decoration: none; color: inherit; transition: transform 0.3s, box-shadow 0.3s; margin-bottom: 3rem; cursor: pointer; }
.featured-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(173,30,100,0.1); }
.featured-img { background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 4rem; min-height: 280px; }
.featured-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.featured-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--magenta); margin-bottom: 0.75rem; }
.featured-body h2 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--dark); line-height: 1.35; margin-bottom: 1rem; }
.featured-body p { font-size: 0.95rem; color: var(--gray); line-height: 1.75; margin-bottom: 1.5rem; }
.featured-meta { font-size: 0.8rem; color: var(--gray); opacity: 0.75; }
.read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 600; color: var(--magenta); margin-top: 0.5rem; }

.articles-grid-wrap { max-width: 1060px; margin: 0 auto; padding: 0 2rem 6rem; }
.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.art-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,0.04); text-decoration: none; color: inherit; display: block; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.art-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(173,30,100,0.09); }
.art-card-img { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; }
.ai-1 { background: linear-gradient(135deg, #C56974, #E4A38C); }
.ai-2 { background: linear-gradient(135deg, #1A1A2E, #AD1E64); }
.ai-3 { background: linear-gradient(135deg, #E4A38C, #C56974); }
.art-card-body { padding: 1.3rem 1.3rem 0.5rem; }
.art-card-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--magenta); display: block; margin-bottom: 0.5rem; }
.art-card h3 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 0.5rem; line-height: 1.4; }
.art-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.65; }
.art-card-meta { padding: 0.75rem 1.3rem 1.1rem; font-size: 0.76rem; color: var(--gray); opacity: 0.75; }

@media (max-width: 900px) { .art-grid { grid-template-columns: repeat(2, 1fr); } .featured-card { grid-template-columns: 1fr; } .featured-img { min-height: 180px; } }
@media (max-width: 540px) { .art-grid { grid-template-columns: 1fr; } }

/* ===================== ARTICLE PAGE ===================== */

.art-page-wrap { max-width: 1060px; margin: 0 auto; padding: 4rem 2rem 5rem; display: grid; grid-template-columns: 1fr 280px; gap: 4rem; align-items: start; }
.art-back { display: inline-block; font-size: 0.88rem; color: var(--coral); font-weight: 600; cursor: pointer; margin-bottom: 1.5rem; text-decoration: none; }
.art-back:hover { color: var(--magenta); }
.art-page-tag { display: inline-block; background: var(--rosa); color: var(--magenta); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1rem; }
.art-page-header h1 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--dark); line-height: 1.2; margin-bottom: 1rem; }
.art-page-meta { font-size: 0.85rem; color: var(--gray); padding-bottom: 2rem; border-bottom: 1px solid rgba(173,30,100,0.12); margin-bottom: 2rem; }
.art-body h2 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--dark); margin: 2.5rem 0 0.9rem; padding-left: 1rem; border-left: 3px solid var(--magenta); }
.art-body h3 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--dark); margin: 1.8rem 0 0.7rem; }
.art-body p { font-size: 1.02rem; color: #374151; line-height: 1.9; margin-bottom: 1.2rem; }
.art-highlight { background: var(--rosa); border-left: 3px solid var(--magenta); border-radius: 0 10px 10px 0; padding: 1rem 1.3rem; margin: 1.2rem 0 2rem; font-size: 0.95rem; color: var(--dark); line-height: 1.75; }
.art-passer { background: var(--rosa); border-left: 3px solid var(--magenta); border-radius: 0 10px 10px 0; padding: 0.85rem 1.2rem; margin: 0.8rem 0 2rem; font-size: 0.9rem; color: var(--magenta); font-weight: 500; }
.art-cta { background: var(--grad); border-radius: 16px; padding: 2rem; margin-top: 3rem; text-align: center; color: white; }
.art-cta h3 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.3rem; margin-bottom: 0.6rem; color: white; }
.art-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.2rem; font-size: 0.95rem; }
.art-page-sidebar { position: sticky; top: 90px; }
.sidebar-card { background: var(--white); border-radius: 16px; padding: 1.5rem; border: 1px solid rgba(173,30,100,0.1); }
.sidebar-card h4 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(173,30,100,0.1); }
.sidebar-art { font-size: 0.88rem; color: var(--gray); padding: 0.65rem 0; border-bottom: 1px solid rgba(173,30,100,0.06); text-decoration: none; display: block; transition: color 0.2s; line-height: 1.4; }
.sidebar-art:last-child { border-bottom: none; }
.sidebar-art:hover { color: var(--magenta); }
@media (max-width: 800px) { .art-page-wrap { grid-template-columns: 1fr; } .art-page-sidebar { position: static; } }

/* ===================== PERSONVERN ===================== */

.pv-wrap { max-width: 760px; margin: 0 auto; padding: 5rem 2rem 6rem; }
.pv-wrap h1 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--dark); line-height: 1.2; margin-bottom: 0.75rem; }
.pv-wrap .pv-date { font-size: 0.85rem; color: var(--gray); margin-bottom: 2.5rem; }
.pv-wrap h2 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--dark); margin: 2.5rem 0 0.8rem; padding-left: 1rem; border-left: 3px solid var(--magenta); }
.pv-wrap p { font-size: 1rem; color: #374151; line-height: 1.9; margin-bottom: 1rem; }
.pv-wrap ul { margin: 0.5rem 0 1rem 1.5rem; }
.pv-wrap ul li { font-size: 1rem; color: #374151; line-height: 1.9; margin-bottom: 0.4rem; }
.pv-wrap a { color: var(--magenta); text-decoration: underline; }

/* ===================== 404 PAGE ===================== */

.not-found { min-height: 70vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 4rem 2rem; }
.not-found-code { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: clamp(5rem, 18vw, 9rem); background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 1rem; }
.not-found h1 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--dark); margin-bottom: 0.75rem; }
.not-found p { font-size: 1rem; color: var(--gray); margin-bottom: 2rem; max-width: 400px; }
.not-found-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.not-found-links a { font-size: 0.9rem; font-weight: 600; color: var(--magenta); text-decoration: none; border-bottom: 1.5px solid currentColor; padding-bottom: 1px; }
.not-found-links a.btn-primary { background: var(--grad); color: white; padding: 0.75rem 1.8rem; border-radius: 100px; border: none; }
.not-found-links a.btn-primary:focus-visible { outline-offset: 4px; }

/* ===================== FOOTER ===================== */

.site-footer { padding: 2.5rem 2rem; display: flex; justify-content: space-between; align-items: center; max-width: 900px; margin: 0 auto; border-top: 1px solid rgba(0,0,0,0.05); }
.site-footer .logo { font-size: 1.3rem; }
.footer-right { display: flex; gap: 1.5rem; align-items: center; }
.footer-right a { font-size: 0.78rem; color: #9CA3AF; text-decoration: none; }
.footer-right a:hover { color: var(--coral); }
.footer-right p { font-size: 0.78rem; color: var(--gray); opacity: 0.6; }
@media (max-width: 640px) { .site-footer { flex-direction: column; gap: 0.8rem; text-align: center; } }

/* ===================== MOBILE NAV SCRIPT HELPER ===================== */

body.nav-open { overflow: hidden; }

/* ===================== COOKIE CONSENT ===================== */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#cookie-banner.cookie-hidden {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #D1D5DB;
  min-width: 200px;
}
.cookie-text a { color: var(--salmon); text-decoration: underline; }
.cookie-text a:hover { color: var(--coral); }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.82; }
.cookie-btn-primary { background: var(--grad); color: var(--white); }
.cookie-btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
