/*
Theme Name: DRK Kreisverband Chemnitz
Theme URI: https://drk-chemnitz.de
Author: DRK Kreisverband Chemnitz e.V.
Author URI: https://drk-chemnitz.de
Description: Offizielles WordPress-Theme für den DRK Kreisverband Chemnitz e.V. – Aus Liebe zum Menschen.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: drk-chemnitz
*/

/* ════════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════════ */
:root {
  --color-red: #E30613;
  --color-red-dark: #B8050F;
  --color-red-light: #FF2D3B;
  --color-red-glow: rgba(227, 6, 19, 0.12);
  --color-white: #FFFFFF;
  --color-offwhite: #F8F7F5;
  --color-grey-100: #F2F1EF;
  --color-grey-200: #E5E3E0;
  --color-grey-400: #A09D98;
  --color-grey-600: #6B6864;
  --color-grey-800: #454240;
  --color-grey-900: #484543;
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-grey-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.8rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.07);
  padding: 0.6rem 2.5rem;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--color-grey-900);
  flex-shrink: 0;
}
.nav-logo { height: 42px; width: auto; transition: height 0.4s; }
.nav-logo-dark { display: none; }
.nav-logo-white { display: block; }
.site-nav.scrolled .nav-logo-dark { display: block; }
.site-nav.scrolled .nav-logo-white { display: none; }
.site-nav.scrolled .nav-logo { height: 36px; }
.nav-brand-text {
  display: flex; flex-direction: column; line-height: 1.15;
  transition: color 0.4s;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.88rem; letter-spacing: -0.01em;
}
.nav-brand-sub {
  font-size: 0.65rem; font-weight: 400;
  color: var(--color-grey-600); letter-spacing: 0.02em;
}
.site-nav:not(.scrolled) .nav-brand-name { color: white; }
.site-nav:not(.scrolled) .nav-brand-sub { color: rgba(255,255,255,0.6); }
.site-nav:not(.scrolled) .nav-center a { color: rgba(255,255,255,0.8); }
.site-nav:not(.scrolled) .nav-center a:hover { color: white; background: rgba(255,255,255,0.1); }
.site-nav:not(.scrolled) .hamburger span { background: white; }

.nav-center { display: flex; gap: 0.3rem; align-items: center; }
.nav-center a {
  text-decoration: none; color: var(--color-grey-800);
  font-size: 0.82rem; font-weight: 500;
  padding: 0.45rem 0.8rem; border-radius: 8px;
  transition: color 0.3s, background 0.3s; white-space: nowrap;
}
.nav-center a:hover { color: var(--color-red); background: var(--color-red-glow); }
.nav-center a.active { color: var(--color-red); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.nav-cta {
  background: var(--color-red);
  color: white !important; padding: 0.55rem 1.2rem;
  border-radius: 50px; font-weight: 600; font-size: 0.82rem;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227,6,19,0.3);
  background: var(--color-red-light);
}
.nav-cta-portal {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: white !important;
  font-size: 0.78rem;
}
.nav-cta-portal:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  box-shadow: 0 8px 25px rgba(227,6,19,0.3);
}
.scrolled .nav-cta-portal,
.nav-subpage .nav-cta-portal {
  background: transparent;
  border-color: var(--color-grey-200);
  color: var(--color-grey-600) !important;
}
.scrolled .nav-cta-portal:hover,
.nav-subpage .nav-cta-portal:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: white !important;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 5px; z-index: 200;
}
.hamburger span {
  width: 26px; height: 2.5px; background: var(--color-grey-900);
  border-radius: 2px; transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-nav {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-white);
  flex-direction: column; justify-content: center; align-items: center;
  gap: 1rem; z-index: 150;
  padding: 4rem 2rem 2rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none; color: var(--color-grey-900);
  font-size: 1.1rem; font-weight: 500;
  padding: 0.5rem 1rem; border-radius: 8px; transition: 0.3s;
  text-align: center;
}
.mobile-nav a:hover { color: var(--color-red); background: var(--color-red-glow); }
.mobile-nav .nav-cta { margin-top: 0.5rem; }
.mobile-nav .nav-cta-portal {
  background: transparent;
  border: 1.5px solid var(--color-grey-200);
  color: var(--color-grey-600) !important;
  font-size: 0.9rem;
}
.mobile-nav .nav-cta-portal:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: white !important;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden; background: var(--color-grey-900); color: white;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(227,6,19,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(227,6,19,0.12) 0%, transparent 50%);
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-cross {
  position: absolute;
  right: 19%;
  top: 12%;
  width: 340px;
  height: 340px;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}
.hero-cross::before,
.hero-cross::after {
  content: '';
  position: absolute;
  background: var(--color-red);
  border-radius: 8px;
  box-shadow: 0 0 120px rgba(227, 6, 19, 0.4), 0 0 200px rgba(227, 6, 19, 0.15);
}
.hero-cross::before {
  width: 100%;
  height: 33%;
  top: 33.5%;
  left: 0;
}
.hero-cross::after {
  width: 33%;
  height: 100%;
  left: 33.5%;
  top: 0;
}
.hero-skyline {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 0;
  padding-bottom: 22%;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  opacity: 0.4;
  pointer-events: none;
  transition: bottom 0.3s;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 8rem 5rem 14rem; max-width: 780px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(227,6,19,0.15);
  border: 1px solid rgba(227,6,19,0.25);
  padding: 0.45rem 1.1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.7s 0.3s forwards;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-red); animation: pulse 2s ease-in-out infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  line-height: 1.15; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
}
.hero h1 .red { color: var(--color-red-light); }
.hero-text {
  font-size: 1.15rem; line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 540px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.7s 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.9s forwards;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--color-red); color: white;
  padding: 1rem 2rem; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: 0.3s; border: none; cursor: pointer;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(227,6,19,0.4);
  background: var(--color-red-light);
}
.btn-hero svg { transition: transform 0.3s; }
.btn-hero:hover svg { transform: translateX(4px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-weight: 500; font-size: 0.95rem;
  padding: 1rem 1.5rem; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.15); transition: 0.3s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.07); color: white;
}
.hero-quick {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero-quick-item {
  padding: 1.6rem 1.8rem;
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; color: white;
  background: rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s;
  position: relative;
}
.hero-quick-item::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--color-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.hero-quick-item:hover::before { transform: scaleX(1); }
.hero-quick-item:last-child { border-right: none; }
.hero-quick-item:hover {
  background: rgba(227,6,19,0.12);
}
.hero-quick-icon {
  font-size: 1.8rem; flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: background 0.35s;
}
.hero-quick-item:hover .hero-quick-icon {
  background: rgba(227,6,19,0.2);
}
.hero-quick-text {
  flex: 1; min-width: 0;
}
.hero-quick-text strong {
  display: block; font-size: 0.95rem; font-weight: 600;
  margin-bottom: 0.15rem; letter-spacing: -0.01em;
}
.hero-quick-text span {
  display: block; font-size: 0.76rem;
  color: rgba(255,255,255,0.4); line-height: 1.4;
}
.hero-quick-arrow {
  flex-shrink: 0; opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
  color: var(--color-red-light);
}
.hero-quick-item:hover .hero-quick-arrow {
  opacity: 1; transform: translateX(0);
}

/* ════════════════════════════════════════
   SECTION SHARED
   ════════════════════════════════════════ */
.site-section { padding: 6rem 5rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-red); margin-bottom: 0.8rem;
}
.section-tag::before {
  content: ''; width: 24px; height: 2px; background: var(--color-red);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 0.8rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--color-grey-600);
  line-height: 1.7; max-width: 560px;
}

/* ════════════════════════════════════════
   SERVICES – BENTO GRID
   ════════════════════════════════════════ */
.services { background: var(--color-offwhite); }
.services-header { margin-bottom: 3.5rem; }
.bento {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto); gap: 1.25rem;
}
.bento-card {
  background: var(--color-white);
  border-radius: var(--radius); padding: 2.2rem;
  position: relative; overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid var(--color-grey-200);
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: default; text-decoration: none; color: var(--color-grey-900);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.bento-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--color-red);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.bento-card:hover::before { transform: scaleX(1); }
.bento-featured { grid-column: span 2; grid-row: span 2; }
.bento-tall { grid-row: span 2; }
.bento-icon {
  font-size: 2.2rem; margin-bottom: 1.2rem;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px; background: var(--color-red-glow);
}
.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.bento-featured h3 { font-size: 1.6rem; }
.bento-card p { font-size: 0.9rem; line-height: 1.65; color: var(--color-grey-600); }
.bento-featured p { font-size: 1rem; max-width: 420px; }
.bento-label {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 1.2rem; color: var(--color-red);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
}
.bento-label svg { transition: transform 0.3s; }
.bento-card:hover .bento-label svg { transform: translateX(4px); }
.bento-featured {
  background: linear-gradient(135deg, var(--color-grey-900) 0%, #2c2a28 100%);
  color: white; border: none;
}
.bento-featured p { color: rgba(255,255,255,0.55); }
.bento-featured .bento-icon { background: rgba(227,6,19,0.2); }
.bento-featured .bento-label { color: var(--color-red-light); }
.bento-featured::after {
  content: ''; position: absolute;
  top: -50%; right: -30%; width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,6,19,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.ehrenamt-subs { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.ehrenamt-chip {
  background: rgba(227,6,19,0.08); color: var(--color-red-dark);
  font-size: 0.75rem; font-weight: 600;
  padding: 0.35rem 0.9rem; border-radius: 50px; letter-spacing: 0.02em;
}

/* ════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════ */
.about { background: var(--color-white); }
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-top: 3.5rem;
}
.about-visual { position: relative; height: 500px; }
.about-visual-cross {
  position: absolute; width: 320px; height: 320px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: rotateSlow 30s linear infinite; opacity: 0.06;
}
.about-visual-cross::before, .about-visual-cross::after {
  content: ''; position: absolute;
  background: var(--color-red); border-radius: 8px;
}
.about-visual-cross::before { width: 100%; height: 33%; top: 33.5%; }
.about-visual-cross::after { width: 33%; height: 100%; left: 33.5%; }
.about-float-card {
  position: absolute; background: white;
  border-radius: 18px; padding: 1.4rem 1.6rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--color-grey-200); z-index: 2;
}
.float-card-1 { top: 8%; left: 8%; animation: float 6s ease-in-out infinite; }
.float-card-1 .num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700; color: var(--color-red);
}
.float-card-1 span { display: block; font-size: 0.78rem; color: var(--color-grey-600); margin-top: 0.2rem; }
.float-card-2 {
  top: 18%; right: 5%;
  display: flex; align-items: center; gap: 0.75rem;
  animation: float 6s ease-in-out infinite 2s;
}
.float-card-2 .avatar-group { display: flex; }
.float-card-2 .avatar-circle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; margin-left: -8px;
}
.float-card-2 .avatar-circle:first-child { margin-left: 0; }
.avatar-c1 { background: #fce4ec; } .avatar-c2 { background: #e8f5e9; }
.avatar-c3 { background: #fff3e0; } .avatar-c4 { background: #e3f2fd; }
.float-card-2 .meta strong { display: block; font-size: 0.85rem; }
.float-card-2 .meta span { font-size: 0.75rem; color: var(--color-grey-400); }
.float-card-3 {
  bottom: 15%; left: 0;
  display: flex; align-items: center; gap: 0.7rem;
  animation: float 6s ease-in-out infinite 4s;
}
.float-card-3 .badge-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--color-red-glow);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.float-card-3 span { font-size: 0.85rem; font-weight: 600; }
.float-card-4 {
  bottom: 8%; right: 8%;
  animation: float 6s ease-in-out infinite 1s; text-align: center;
}
.float-card-4 .stars { font-size: 1rem; margin-bottom: 0.3rem; }
.float-card-4 .rating {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; color: var(--color-grey-900);
}
.float-card-4 span { display: block; font-size: 0.72rem; color: var(--color-grey-400); margin-top: 0.15rem; }
.about-blob {
  position: absolute; width: 340px; height: 340px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, rgba(227,6,19,0.08), rgba(227,6,19,0.03));
  animation: blobMorph 10s ease-in-out infinite; z-index: 1;
}
.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; margin-bottom: 0.8rem; margin-top: 1.8rem;
}
.about-text p { color: var(--color-grey-600); line-height: 1.8; margin-bottom: 0.8rem; font-size: 0.98rem; }
.principles {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem;
}
.principle {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--color-offwhite);
  padding: 0.7rem 1rem; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500;
}
.principle-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-red); flex-shrink: 0; }

/* ════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════ */
.contact {
  background: var(--color-grey-900); color: white;
  position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute;
  width: 800px; height: 800px; top: -400px; right: -200px;
  background: radial-gradient(circle, rgba(227,6,19,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.contact .section-tag { color: var(--color-red-light); }
.contact .section-tag::before { background: var(--color-red-light); }
.contact .section-title { color: white; }
.contact .section-subtitle { color: rgba(255,255,255,0.45); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; margin-top: 3rem; position: relative; z-index: 2;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* Contact Form 7 Styling */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form .form-row { display: flex; gap: 1.1rem; }
.contact-form .form-group { flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.contact-form label,
.contact-form .form-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select,
.contact-form .wpcf7-form-control:not([type="submit"]) {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem; color: white;
  font-family: var(--font-body); font-size: 0.92rem;
  transition: 0.3s; outline: none; width: 100%;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.contact-form .wpcf7-form-control:focus {
  border-color: var(--color-red); background: rgba(255,255,255,0.08);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.25); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form select option { background: var(--color-grey-900); }

/* CF7 labels */
.contact-form .wpcf7-form label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block; margin-bottom: 0.35rem;
}
/* CF7 field spacing */
.contact-form .wpcf7-form p {
  margin-bottom: 0.8rem;
}
/* CF7 submit button */
.contact-form input[type="submit"],
.contact-form .wpcf7-submit,
.form-submit {
  align-self: flex-start; background: var(--color-red);
  color: white !important; border: none;
  padding: 0.95rem 2.2rem; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  cursor: pointer; transition: 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.contact-form input[type="submit"]:hover,
.contact-form .wpcf7-submit:hover,
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(227,6,19,0.35);
  background: var(--color-red-light);
}
/* CF7 validation messages */
.contact-form .wpcf7-not-valid-tip {
  color: var(--color-red-light);
  font-size: 0.78rem;
  margin-top: 0.3rem;
}
.contact-form .wpcf7-response-output {
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  margin: 1rem 0 0 !important;
  color: rgba(255,255,255,0.7);
}
.contact-form .wpcf7-mail-sent-ok {
  border-color: #4CAF50 !important;
  color: #4CAF50;
}
/* CF7 spinner */
.contact-form .wpcf7-spinner {
  margin-left: 0.5rem;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
  background: var(--color-grey-900);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem 5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  color: rgba(255,255,255,0.3); font-size: 0.82rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-brand img { height: 28px; width: auto; }
.footer-brand span {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.7);
}
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,0.35); text-decoration: none;
  font-size: 0.82rem; transition: color 0.3s;
}
.footer-links a:hover { color: white; }

/* ════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
  25% { border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%; }
  50% { border-radius: 50% 50% 40% 60% / 45% 55% 50% 50%; }
  75% { border-radius: 55% 45% 60% 40% / 50% 45% 55% 50%; }
}
@keyframes rotateSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.reveal { opacity: 0; transform: translateY(35px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1200px) { .nav-center a { font-size: 0.78rem; padding: 0.4rem 0.55rem; } }
@media (max-width: 1100px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-featured { grid-column: span 2; grid-row: span 1; }
  .bento-tall { grid-row: span 1; }
}
@media (max-width: 1024px) {
  .site-section { padding: 5rem 3rem; }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-quick { grid-template-columns: repeat(2, 1fr); }
  .nav-center { display: none; }
  .hamburger { display: flex; }
  .hero-cross { width: 260px; height: 260px; right: 5%; opacity: 0.3; }
}
@media (max-width: 768px) {
  .site-nav { padding: 0.6rem 1rem; }
  .site-nav.scrolled { padding: 0.5rem 1rem; }
  .nav-brand { gap: 0.4rem; }
  .nav-logo { height: 32px !important; }
  .site-nav.scrolled .nav-logo { height: 30px !important; }
  .nav-brand-name { font-size: 0.75rem; }
  .nav-brand-sub { font-size: 0.58rem; }
  .nav-right { gap: 0.4rem; }
  .nav-cta { padding: 0.4rem 0.8rem; font-size: 0.72rem; }
  .nav-cta-portal { font-size: 0.68rem; padding: 0.35rem 0.7rem; }
  .site-section { padding: 3.5rem 1.5rem; }
  .hero-content { padding: 6rem 1.5rem 12rem; }
  .hero h1 { font-size: 2rem; }
  .hero-text { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .hero-cross { width: 160px; height: 160px; right: 5%; opacity: 0.25; }
  .hero-quick { grid-template-columns: 1fr 1fr; }
  .hero-quick-item { padding: 1.1rem 1rem; }
  .hero-quick-icon { width: 40px; height: 40px; font-size: 1.4rem; border-radius: 10px; }
  .hero-quick-text strong { font-size: 0.85rem; }
  .hero-quick-text span { font-size: 0.7rem; }
  .hero-quick-arrow { display: none; }
  .hero-skyline { padding-bottom: 14%; }
  .bento { grid-template-columns: 1fr; }
  .bento-featured { grid-column: span 1; }
  .contact-form .form-row { flex-direction: column; }
  .about-visual { height: 300px; }
  .about-blob { width: 200px; height: 200px; }
  .about-visual-cross { width: 180px; height: 180px; }
  .about-float-card { padding: 0.8rem 1rem; border-radius: 12px; }
  .float-card-1 { top: 5%; left: 3%; }
  .float-card-1 .num { font-size: 1.5rem; }
  .float-card-1 span { font-size: 0.65rem; }
  .float-card-2 { top: 5%; right: 2%; padding: 0.6rem 0.8rem; }
  .float-card-2 .avatar-circle { width: 28px; height: 28px; font-size: 0.7rem; }
  .float-card-2 .meta strong { font-size: 0.72rem; }
  .float-card-2 .meta span { font-size: 0.62rem; }
  .float-card-3 { bottom: 10%; left: 2%; }
  .float-card-3 .badge-icon { width: 30px; height: 30px; font-size: 0.9rem; }
  .float-card-3 span { font-size: 0.72rem; }
  .float-card-4 { bottom: 3%; right: 3%; }
  .float-card-4 .stars { font-size: 0.8rem; }
  .float-card-4 .rating { font-size: 1.2rem; }
  .float-card-4 span { font-size: 0.6rem; }
  .principles { grid-template-columns: 1fr; }
  .site-footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 480px) {
  .site-nav { padding: 0.5rem 0.8rem; }
  .nav-brand-text { display: none; }
  .nav-logo { height: 34px !important; }
  .nav-right { gap: 0.3rem; }
  .nav-cta { padding: 0.35rem 0.7rem; font-size: 0.7rem; }
  .nav-cta-portal { padding: 0.3rem 0.6rem; font-size: 0.65rem; }
  .hero-content { padding: 5rem 1.2rem 10rem; }
  .hero h1 { font-size: 1.6rem; }
  .hero-text { font-size: 0.88rem; margin-bottom: 1.5rem; }
  .btn-hero { font-size: 0.85rem; padding: 0.7rem 1.5rem; }
  .btn-ghost { font-size: 0.82rem; }
  .hero-quick { grid-template-columns: 1fr; }
  .hero-quick-item { padding: 0.9rem 1rem; }
  .hero-cross { width: 120px; height: 120px; top: 15%; right: 5%; }
  .about-visual { height: 250px; }
  .about-float-card { padding: 0.6rem 0.8rem; border-radius: 10px; }
  .float-card-2 .meta { display: none; }
  .section-title { font-size: 1.5rem; }
}
