/*
Theme Name:  Aynur Colpan – Bürgermeisterin
Theme URI:   https://www.aynur-colpan.de
Description: Modernes WordPress Child Theme für Aynur Colpan, Bürgermeisterin der Gemeinde Buchholz (Aller). SPD-Design, animiert, volksnah und innovativ.
Author:      Web-Administrator
Version:     1.0.0
Template:    kadence
Tags:        politics, spd, modern, animated, one-column
Text Domain: aynur-colpan
*/

/* ============================================================
   CUSTOM PROPERTIES
   (Google Fonts werden non-blocking über wp_head geladen)
   ============================================================ */

:root {
  --ac-red:        #e3000f;
  --ac-red-dark:   #b0000a;
  --ac-dark:       #0f0f13;
  --ac-mid:        #1c1c24;
  --ac-card:       #23232e;
  --ac-warm:       #f5f2ed;
  --ac-white:      #ffffff;
  --ac-text:       #1a1a22;
  --ac-muted:      #6b6b7a;
  --ac-border:     rgba(0,0,0,0.07);
  --ac-border-dk:  rgba(255,255,255,0.07);

  --ac-font-serif: 'DM Serif Display', Georgia, serif;
  --ac-font-sans:  'DM Sans', system-ui, sans-serif;

  --ac-radius-sm:  6px;
  --ac-radius-md:  10px;
  --ac-radius-lg:  14px;
  --ac-radius-xl:  20px;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--ac-font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ac-text);
  background-color: var(--ac-warm);
  overflow-x: hidden;
}

a {
  color: var(--ac-red);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--ac-red-dark); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--ac-font-serif);
  line-height: 1.2;
  color: var(--ac-text);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.ac-fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ac-fade-in.ac-visible { opacity: 1; transform: none; }
.ac-fade-in.ac-delay-1 { transition-delay: 0.1s; }
.ac-fade-in.ac-delay-2 { transition-delay: 0.2s; }
.ac-fade-in.ac-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.ac-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(245,242,237,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
  padding: 0 40px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ac-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ac-nav__pulse {
  width: 8px;
  height: 8px;
  background: var(--ac-red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: ac-pulse 2.2s infinite;
}
@keyframes ac-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(1.5); }
}

.ac-nav__name {
  font-family: var(--ac-font-serif);
  font-size: 18px;
  color: var(--ac-text);
  line-height: 1;
}
.ac-nav__sub {
  display: block;
  font-family: var(--ac-font-sans);
  font-size: 11px;
  color: #3d3d45;
  font-weight: 400;
  margin-top: 2px;
}

.ac-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.ac-nav__links a {
  font-size: 13px;
  color: #3d3d45;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.ac-nav__links a:hover { color: var(--ac-red); }
.ac-nav__links a.ac-nav__cta {
  background: var(--ac-red);
  color: #fff !important;
  padding: 7px 18px;
  border-radius: var(--ac-radius-xl);
  font-size: 13px;
  font-weight: 600;
}
.ac-nav__links a.ac-nav__cta:hover {
  background: var(--ac-red-dark);
}

/* Mobile nav toggle */
.ac-nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.ac-nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ac-text);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   NEWS TICKER
   ============================================================ */
.ac-ticker {
  background: var(--ac-red);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.ac-ticker__track {
  display: flex;
  white-space: nowrap;
  animation: ac-ticker-scroll 30s linear infinite;
}
.ac-ticker:hover .ac-ticker__track { animation-play-state: paused; }

.ac-ticker__item {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.4px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ac-ticker__item::before {
  content: '●';
  font-size: 7px;
  opacity: 0.6;
}
@keyframes ac-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HERO
   ============================================================ */
.ac-hero {
  background: var(--ac-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

/* Animated background canvas */
.ac-hero__canvas { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.ac-hero__dotgrid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: ac-dotdrift 20s linear infinite;
}
@keyframes ac-dotdrift {
  from { background-position: 0 0; }
  to   { background-position: 28px 28px; }
}

.ac-hero__scanline {
  position: absolute;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(227,0,15,0.4), transparent);
  animation: ac-scan 5s linear infinite;
}
.ac-hero__scanline:nth-child(2) { top: 22%; animation-delay: 0s; }
.ac-hero__scanline:nth-child(3) { top: 58%; animation-delay: 1.8s; }
.ac-hero__scanline:nth-child(4) { top: 81%; animation-delay: 3.5s; }
@keyframes ac-scan {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.ac-hero__left {
  position: relative;
  z-index: 2;
  padding: 64px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ac-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(227,0,15,0.15);
  border: 0.5px solid rgba(227,0,15,0.35);
  color: #ff5561;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--ac-radius-xl);
  margin-bottom: 28px;
  width: fit-content;
  animation: ac-fadeup 0.8s 0.2s both;
}
.ac-hero__badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--ac-red);
  border-radius: 50%;
}

.ac-hero__title {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
  animation: ac-fadeup 0.8s 0.4s both;
}
.ac-hero__title em { font-style: italic; color: rgba(255,255,255,0.5); }

.ac-hero__desc {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  max-width: 380px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: ac-fadeup 0.8s 0.6s both;
}

.ac-hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: ac-fadeup 0.8s 0.8s both;
}

@keyframes ac-fadeup {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:none; }
}

.ac-btn-primary {
  background: var(--ac-red);
  color: #fff;
  border: none;
  padding: 13px 26px;
  border-radius: var(--ac-radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--ac-font-sans);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.ac-btn-primary:hover {
  background: var(--ac-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227,0,15,0.35);
  color: #fff;
}

.ac-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 0.5px solid rgba(255,255,255,0.2);
  padding: 13px 26px;
  border-radius: var(--ac-radius-sm);
  font-size: 14px;
  font-family: var(--ac-font-sans);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, color 0.2s;
}
.ac-btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  color: #fff;
}

.ac-btn-outline-red {
  background: transparent;
  color: var(--ac-red);
  border: 1.5px solid var(--ac-red);
  padding: 11px 24px;
  border-radius: var(--ac-radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--ac-font-sans);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, color 0.2s;
}
.ac-btn-outline-red:hover {
  background: var(--ac-red);
  color: #fff;
}

.ac-hero__right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px 0 0;
  overflow: hidden;
}

.ac-hero__photo-outer {
  position: relative;
  animation: ac-fadeup 0.9s 0.3s both;
}

.ac-hero__photo {
  width: 340px;
  height: 440px;
  border-radius: 170px 170px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.ac-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.ac-hero__photo-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(227,0,15,0.2), rgba(0,0,0,0.8));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  text-align: center;
}
.ac-hero__photo-placeholder svg { opacity: 0.2; }

.ac-hero__spd-pill {
  position: absolute;
  top: 28px;
  right: -18px;
  z-index: 3;
  background: var(--ac-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--ac-radius-sm);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(227,0,15,0.35);
  animation: ac-float 3.5s ease-in-out infinite;
}
@keyframes ac-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.ac-stats {
  background: var(--ac-dark);
  border-top: 0.5px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-around;
  padding: 24px 40px;
}
.ac-stats__item { text-align: center; }
.ac-stats__num {
  font-family: var(--ac-font-serif);
  font-size: 28px;
  color: #e3b200;
  line-height: 1;
  display: block;
}
.ac-stats__label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.ac-section { padding: 72px 40px; }
.ac-section--white { background: var(--ac-white); }
.ac-section--warm  { background: var(--ac-warm);  }
.ac-section--dark  { background: var(--ac-dark);  }

.ac-section__eyebrow {
  font-family: var(--ac-font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--ac-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ac-section__eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(227,0,15,0.18);
  max-width: 120px;
}
.ac-section--dark .ac-section__eyebrow { color: #ff6670; }
.ac-section--dark .ac-section__eyebrow::after { background: rgba(255,102,112,0.2); }

.ac-section__title {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ac-text);
  margin-bottom: 8px;
}
.ac-section--dark .ac-section__title { color: #fff; }

.ac-section__sub {
  font-size: 15px;
  color: var(--ac-muted);
  margin-bottom: 40px;
  max-width: 500px;
}
.ac-section--dark .ac-section__sub { color: rgba(255,255,255,0.45); }

/* ============================================================
   FEATURED ARTICLE (aktuellster Beitrag)
   ============================================================ */
.ac-featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ac-featured__img-wrap {
  position: relative;
  border-radius: var(--ac-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  min-height: 340px;
  cursor: pointer;
  background: #1a1a2e;
}
.ac-featured__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.4s ease;
}
.ac-featured__img-wrap:hover img { transform: scale(1.04); }

.ac-featured__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
}

.ac-featured__new {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--ac-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--ac-radius-xl);
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ac-featured__new::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: ac-pulse 1.5s infinite;
}

.ac-featured__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ac-featured__tag {
  background: rgba(227,0,15,0.1);
  color: var(--ac-red);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--ac-radius-xl);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ac-featured__date {
  font-size: 12px;
  color: var(--ac-muted);
}
.ac-featured__title {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 14px;
}
.ac-featured__excerpt {
  font-size: 15px;
  color: var(--ac-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ============================================================
   NEWS CARD GRID
   ============================================================ */
.ac-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.ac-news__card {
  background: var(--ac-white);
  border-radius: var(--ac-radius-lg);
  overflow: hidden;
  border: 0.5px solid rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.ac-news__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.1);
}

.ac-news__card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #2a2a3e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-news__card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.35s;
}
.ac-news__card:hover .ac-news__card-img img { transform: scale(1.06); }

.ac-news__card-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ac-news__card-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--ac-red);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.ac-news__card-title {
  font-family: var(--ac-font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ac-text);
  line-height: 1.4;
  margin-bottom: 6px;
}
.ac-news__card-excerpt {
  font-size: 12px;
  color: var(--ac-muted);
  line-height: 1.55;
  flex: 1;
}
.ac-news__card-date {
  font-size: 11px;
  color: rgba(0,0,0,0.3);
  margin-top: 12px;
}

.ac-news__more { text-align: center; margin-top: 36px; }

/* ============================================================
   YOUTUBE SECTION
   ============================================================ */
.ac-yt__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.ac-yt__main {
  border-radius: var(--ac-radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}
/* When no src, show placeholder */
.ac-yt__main iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.ac-yt__placeholder {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #1a0000, #2e0000);
}
.ac-yt__play {
  width: 64px; height: 64px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ac-float 2.8s ease-in-out infinite;
  cursor: pointer;
  border: none;
  transition: transform 0.15s;
}
.ac-yt__play:hover { transform: scale(1.1); }
.ac-yt__play svg { margin-left: 4px; }
.ac-yt__placeholder-label {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}

.ac-yt__sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ac-yt__side-card {
  background: var(--ac-mid);
  border-radius: var(--ac-radius-md);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  border: 0.5px solid var(--ac-border-dk);
  text-decoration: none;
  transition: border-color 0.2s;
}
.ac-yt__side-card:hover { border-color: rgba(255,77,77,0.35); }
.ac-yt__thumb {
  width: 72px; height: 50px;
  background: #333;
  border-radius: var(--ac-radius-sm);
  flex-shrink: 0;
  overflow: hidden;
}
.ac-yt__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ac-yt__side-title {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 4px;
}
.ac-yt__side-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.ac-yt__note {
  text-align: center;
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.ac-insta__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.ac-insta__profile {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ac-insta__logo {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(240,148,51,0.2);
}
.ac-insta__logo svg { color: #fff; }
.ac-insta__name { font-size: 15px; font-weight: 600; color: var(--ac-text); display: block; }
.ac-insta__handle { font-size: 12px; color: var(--ac-muted); }

.ac-insta__follow {
  background: linear-gradient(135deg, #f09433, #bc1888);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--ac-radius-xl);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ac-font-sans);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ac-insta__follow:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(188,24,136,0.3);
}

/* Smash Balloon wrapper – the plugin outputs inside this */
.ac-insta__feed-wrap {
  /* Smash Balloon shortcode [instagram-feed] goes here */
}

/* Fallback grid shown when plugin not yet connected */
.ac-insta__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.ac-insta__post {
  aspect-ratio: 1;
  border-radius: var(--ac-radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #eee;
}
.ac-insta__post img { width: 100%; height: 100%; object-fit: cover; }
.ac-insta__post-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(240,148,51,0.85), rgba(188,24,136,0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: var(--ac-radius-md);
}
.ac-insta__post:hover .ac-insta__post-overlay { opacity: 1; }
.ac-insta__post-overlay span { color: #fff; font-size: 12px; font-weight: 600; }

.ac-insta__cta {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--ac-muted);
}

/* ============================================================
   TERMINE
   ============================================================ */
.ac-termine__list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }

.ac-termin {
  background: var(--ac-white);
  border-radius: var(--ac-radius-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 0.5px solid rgba(0,0,0,0.06);
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.ac-termin:hover {
  box-shadow: 0 6px 22px rgba(0,0,0,0.07);
  border-color: rgba(227,0,15,0.2);
}

.ac-termin__date {
  width: 52px; height: 52px;
  background: var(--ac-red);
  border-radius: var(--ac-radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ac-termin__day {
  font-family: var(--ac-font-serif);
  font-size: 22px;
  color: #fff;
  line-height: 1;
}
.ac-termin__month {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ac-termin__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ac-text);
  margin-bottom: 3px;
}
.ac-termin__info { font-size: 13px; color: var(--ac-muted); }
.ac-termin__arrow { margin-left: auto; color: var(--ac-muted); font-size: 18px; }

/* ============================================================
   CONTACT
   ============================================================ */
.ac-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.ac-contact__left-title {
  font-size: clamp(26px, 3vw, 36px);
  color: #fff;
  margin-bottom: 16px;
}
.ac-contact__left-text {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.ac-contact__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.ac-contact__icon {
  width: 38px; height: 38px;
  background: rgba(227,0,15,0.15);
  border-radius: var(--ac-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ac-red);
}
.ac-contact__icon svg { width: 18px; height: 18px; }
.ac-contact__row-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2px;
}
.ac-contact__row-val { font-size: 13px; color: rgba(255,255,255,0.4); }

.ac-contact__form { display: flex; flex-direction: column; gap: 12px; }
.ac-contact__row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.ac-contact__form input,
.ac-contact__form select,
.ac-contact__form textarea {
  background: var(--ac-mid);
  border: 0.5px solid var(--ac-border-dk);
  border-radius: var(--ac-radius-md);
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--ac-font-sans);
  color: #fff;
  transition: border-color 0.2s;
  resize: none;
  width: 100%;
}
.ac-contact__form input:focus,
.ac-contact__form select:focus,
.ac-contact__form textarea:focus {
  outline: none;
  border-color: rgba(227,0,15,0.45);
}
.ac-contact__form ::placeholder { color: rgba(255,255,255,0.3); }
.ac-contact__form textarea { height: 110px; }
.ac-contact__form select option { background: var(--ac-mid); }

.ac-contact__submit {
  background: var(--ac-red);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--ac-radius-md);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--ac-font-sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.ac-contact__submit:hover {
  background: var(--ac-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227,0,15,0.35);
}

/* ============================================================
   SOCIAL BAR
   ============================================================ */
.ac-social-bar {
  background: #0a0a0f;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 0.5px solid rgba(255,255,255,0.04);
}
.ac-social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.ac-social-link:hover { color: rgba(255,255,255,0.8); }
.ac-social-link svg { width: 18px; height: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.ac-footer {
  background: #07070a;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 0.5px solid rgba(255,255,255,0.04);
}
.ac-footer__brand {
  font-family: var(--ac-font-serif);
  font-size: 17px;
  color: rgba(255,255,255,0.55);
}
.ac-footer__brand span {
  display: block;
  font-family: var(--ac-font-sans);
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  margin-top: 2px;
}
.ac-footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.ac-footer__links a { font-size: 11px; color: rgba(255,255,255,0.2); text-decoration: none; }
.ac-footer__links a:hover { color: rgba(255,255,255,0.5); }
.ac-footer__spd {
  background: var(--ac-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--ac-radius-xl);
  letter-spacing: 1.5px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .ac-nav { padding: 0 20px; }
  .ac-nav__links { display: none; }
  .ac-nav__links.ac-nav__open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 62px; left: 0; right: 0;
    background: rgba(245,242,237,0.97);
    padding: 20px;
    gap: 16px;
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
    backdrop-filter: blur(12px);
    z-index: 100;
  }
  .ac-nav__burger { display: block; }

  .ac-hero { grid-template-columns: 1fr; }
  .ac-hero__right {
    display: flex;
    padding: 0 24px 40px;
    order: 2;
  }
  .ac-hero__left { padding: 48px 24px 24px; order: 1; }
  .ac-hero__photo {
    width: 220px;
    height: 280px;
    border-radius: 110px 110px 0 0;
  }
  .ac-hero__spd-pill {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    padding: 6px 14px;
    animation: none;
  }
  .ac-hero__photo-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ac-featured__grid { grid-template-columns: 1fr; }
  .ac-news__grid { grid-template-columns: 1fr 1fr; }
  .ac-yt__grid { grid-template-columns: 1fr; }
  .ac-insta__grid { grid-template-columns: repeat(3, 1fr); }
  .ac-contact__grid { grid-template-columns: 1fr; }
  .ac-section { padding: 52px 24px; }
  .ac-stats { flex-wrap: wrap; gap: 20px; }
  .ac-footer { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .ac-news__grid { grid-template-columns: 1fr; }
  .ac-insta__grid { grid-template-columns: repeat(2, 1fr); }
  .ac-contact__row-2 { grid-template-columns: 1fr; }
  .ac-hero__title { font-size: 32px; }
  .ac-insta__header { flex-direction: column; gap: 14px; align-items: flex-start; }
}
