/* =========================================================
   AWO Sozialstationen — Design System
   © 2026 TwoPixels GmbH
   ========================================================= */

:root {
  /* Brand */
  --awo-red:        #E2001A;
  --awo-red-700:    #B40015;
  --awo-red-soft:   #FFE9EB;

  /* Tones */
  --ink:            #1A1A1A;
  --ink-2:          #3D3D3D;
  --ink-3:          #6E6E6E;
  --cream:          #FAF7F2;
  --cream-2:        #F2EDE4;
  --paper:          #FFFFFF;
  --border:         #E8E2D8;

  /* Accents */
  --gold:           #C6964A;
  --gold-soft:      #F4E9D2;
  --sage:           #687A6F;
  --sage-soft:      #E3EAE2;
  --navy:           #1A2F4A;

  /* Effects */
  --shadow-sm:      0 1px 2px rgba(26,26,26,.04), 0 1px 1px rgba(26,26,26,.03);
  --shadow:         0 2px 4px rgba(26,26,26,.04), 0 8px 24px rgba(26,26,26,.06);
  --shadow-lg:      0 16px 40px rgba(26,26,26,.10), 0 4px 12px rgba(26,26,26,.06);
  --radius-sm:      8px;
  --radius:         16px;
  --radius-lg:      24px;
  --radius-xl:      32px;

  /* Type */
  --font-sans:      'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:     'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: 'cv11','ss01';
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,h2,h3,h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--font-sans); letter-spacing: -.01em; }
p { margin: 0 0 1em; color: var(--ink-2); }
a { color: var(--awo-red); text-decoration: none; transition: color .15s; }
a:hover { color: var(--awo-red-700); }
img { max-width: 100%; height: auto; display: block; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; text-transform: uppercase;
  letter-spacing: .12em; font-weight: 600;
  color: var(--awo-red);
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 1.5px;
  background: var(--awo-red);
}

.container { width: min(1240px, 92%); margin: 0 auto; }
.container-narrow { width: min(820px, 92%); margin: 0 auto; }

/* =====================  HEADER  ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between;
       padding: 14px 0; gap: 1rem; }
.nav-brand { display: flex; align-items: center; gap: .8rem; color: var(--ink); }
.nav-brand:hover { color: var(--ink); }
.nav-brand .logo { width: 44px; height: 44px; }
.nav-brand .name { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand .name .top { font-family: var(--font-serif); font-weight: 600; font-size: 1.05rem; }
.nav-brand .name .sub { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-menu a { color: var(--ink); padding: 10px 14px; border-radius: 10px;
              font-size: .96rem; font-weight: 500; }
.nav-menu a:hover { background: var(--awo-red-soft); color: var(--awo-red); }
.nav-menu a.active { color: var(--awo-red); }
.nav-cta { display: flex; align-items: center; gap: 8px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600;
  font-size: .95rem; line-height: 1; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .12s, background .15s, color .15s, border-color .15s, box-shadow .2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--awo-red); color: white; }
.btn.primary:hover { background: var(--awo-red-700); color: white; box-shadow: 0 6px 18px rgba(226,0,26,.25); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn.ghost:hover { background: white; border-color: var(--ink); color: var(--ink); }
.btn.light { background: white; color: var(--ink); border-color: var(--border); }
.btn.light:hover { border-color: var(--awo-red); color: var(--awo-red); }
.btn.lg { padding: 16px 28px; font-size: 1rem; }
.btn.sm { padding: 9px 16px; font-size: .87rem; }

.burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger svg { width: 28px; height: 28px; color: var(--ink); }

@media (max-width: 980px) {
  .nav-menu {
    position: fixed;
    top: 76px; left: 0; right: 0;
    height: calc(100dvh - 76px);
    background: var(--cream);
    flex-direction: column; align-items: stretch;
    padding: 24px; gap: 4px;
    transform: translateY(-110%);
    transition: transform .35s ease;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    visibility: hidden;
  }
  .nav-menu.open { transform: translateY(0); visibility: visible; }
  .nav-menu a { padding: 14px 18px; border-radius: 12px; font-size: 1.1rem; }
  .nav-cta { display: none; }
  .burger { display: inline-flex; }
}

/* =====================  HERO  ===================== */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 130px) 0 clamp(80px, 11vw, 160px);
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 88% -10%, rgba(226,0,26,.06), transparent 60%),
    radial-gradient(700px 460px at -10% 90%, rgba(198,150,74,.08), transparent 60%),
    var(--cream);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero h1 .accent { color: var(--awo-red); position: relative; }
.hero h1 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 14px; background: var(--gold-soft); z-index: -1; transform: translateY(2px) skewX(-8deg);
}
.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-2); max-width: 52ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 2rem; flex-wrap: wrap; }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
              margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); max-width: 520px; }
.hero-trust .item { text-align: left; }
.hero-trust .num { font-family: var(--font-serif); font-size: 1.9rem; color: var(--awo-red); font-weight: 500; line-height: 1; }
.hero-trust .lbl { font-size: .82rem; color: var(--ink-3); margin-top: 4px; }

.hero-visual { position: relative; aspect-ratio: 4/5; max-width: 540px; margin-left: auto; }
.hero-visual .blob {
  position: absolute; inset: -8% -10% auto auto; width: 70%; aspect-ratio: 1;
  background: var(--awo-red-soft); border-radius: 46% 54% 38% 62% / 50% 40% 60% 50%;
  z-index: 0; filter: blur(0px);
}
.hero-visual .blob.gold {
  inset: auto auto -8% -8%; background: var(--gold-soft);
  border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
  width: 60%;
}
.hero-visual .image {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  border-radius: 32px 120px 32px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #ddd;
}
.hero-visual .image img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .badge {
  position: absolute; z-index: 2;
  background: white; padding: 14px 18px; border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
}
.hero-visual .badge .ico { width: 38px; height: 38px; border-radius: 12px;
                          background: var(--awo-red-soft); color: var(--awo-red);
                          display: grid; place-items: center; }
.hero-visual .badge .lbl-top { font-size: .72rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; }
.hero-visual .badge .lbl-mid { font-weight: 600; font-size: .95rem; }
.hero-visual .badge.b1 { top: 8%; left: -18px; }
.hero-visual .badge.b2 { bottom: 18%; right: -22px; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero-visual .badge.b1 { left: -8px; top: 4%; }
  .hero-visual .badge.b2 { right: -8px; }
}

/* =====================  SECTIONS  ===================== */
.section { padding: clamp(60px, 9vw, 130px) 0; }
.section.tight { padding: clamp(48px, 6vw, 80px) 0; }
.section.cream-2 { background: var(--cream-2); }
.section.dark { background: var(--ink); color: #ECECEC; }
.section.dark h1,.section.dark h2,.section.dark h3 { color: white; }
.section.dark .eyebrow { color: var(--gold); }
.section.dark .eyebrow::before { background: var(--gold); }
.section.dark p { color: #C4C4C4; }
.section.red { background: var(--awo-red); color: white; }
.section.red h2 { color: white; }
.section.red .eyebrow { color: rgba(255,255,255,.85); }
.section.red .eyebrow::before { background: rgba(255,255,255,.85); }
.section.red p { color: rgba(255,255,255,.85); }

.section-head { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section-head.left { margin: 0 0 3rem; text-align: left; }
.section-head.row { grid-template-columns: 1.2fr 1fr; max-width: none; align-items: end; text-align: left; }
@media (max-width: 800px) { .section-head.row { grid-template-columns: 1fr; } }

/* =====================  TRUST BAR  ===================== */
.trustbar {
  background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 0; font-size: .88rem;
}
.trustbar .row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  align-items: center;
}
.trustbar .item { display: flex; align-items: center; gap: 12px; color: var(--ink-2); }
.trustbar .ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--awo-red-soft); color: var(--awo-red);
  display: grid; place-items: center;
}
.trustbar .ico svg { width: 18px; height: 18px; }
.trustbar strong { color: var(--ink); display: block; font-size: .96rem; }
.trustbar .item .lbl { line-height: 1.25; }
@media (max-width: 880px) { .trustbar .row { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 480px) { .trustbar .row { grid-template-columns: 1fr; } }

/* =====================  CARDS  ===================== */
.cards { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .cards.three, .cards.four { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cards.three, .cards.two, .cards.four { grid-template-columns: 1fr; } }

.card {
  background: white; border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .ico {
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--awo-red-soft); color: var(--awo-red);
  display: grid; place-items: center; margin-bottom: 1.2rem;
}
.card .ico svg { width: 28px; height: 28px; }
.card.gold .ico { background: var(--gold-soft); color: var(--gold); }
.card.sage .ico { background: var(--sage-soft); color: var(--sage); }
.card h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.card p { font-size: .98rem; margin-bottom: 1.2rem; }
.card .more {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .92rem; color: var(--awo-red);
}
.card .more svg { width: 16px; height: 16px; transition: transform .2s; }
.card .more:hover svg { transform: translateX(4px); }

/* Service mega-card */
.service-card {
  border-radius: var(--radius-lg); overflow: hidden; background: white;
  border: 1px solid var(--border); transition: transform .3s, box-shadow .3s;
  display: grid; grid-template-rows: 220px 1fr;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .media { background: var(--awo-red-soft); position: relative; overflow: hidden; }
.service-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service-card:hover .media img { transform: scale(1.05); }
.service-card .body { padding: 2rem; display: flex; flex-direction: column; }
.service-card .tag {
  position: absolute; top: 18px; left: 18px;
  background: white; color: var(--awo-red); padding: 8px 14px;
  border-radius: 999px; font-size: .76rem; font-weight: 600; letter-spacing: .04em;
}
.service-card h3 { font-size: 1.65rem; margin-bottom: .6rem; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.service-card ul li { padding: 8px 0; display: flex; align-items: center; gap: 12px; font-size: .95rem; color: var(--ink-2); border-bottom: 1px solid var(--border); }
.service-card ul li:last-child { border: 0; }
.service-card ul li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--awo-red); flex: 0 0 6px;
}
.service-card .row { display: flex; gap: 10px; margin-top: auto; }

/* =====================  STATS  ===================== */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; padding: 2.5rem 0;
}
.stat { text-align: center; padding: 1.4rem; }
.stat .num { font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--awo-red); font-weight: 500; line-height: 1; }
.stat .lbl { font-size: .92rem; color: var(--ink-3); margin-top: .6rem; }
@media (max-width: 700px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }

/* =====================  SPLIT  ===================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.split.reverse > div:first-child { order: 2; }
.split .media { aspect-ratio: 5/4; border-radius: 28px 80px 28px 28px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split.alt .media { border-radius: 80px 28px 28px 28px; }
.split h2 { margin-bottom: 1rem; }
.split ul.checks { list-style: none; padding: 0; margin: 1.5rem 0; }
.split ul.checks li { padding: 12px 0 12px 36px; position: relative; border-bottom: 1px dashed var(--border); }
.split ul.checks li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--awo-red); color: white;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center; background-repeat: no-repeat; background-size: 14px;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > div:first-child { order: 0; }
}

/* =====================  TIMELINE  ===================== */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px;
  width: 2px; background: var(--awo-red); opacity: .3;
}
.timeline-item { position: relative; padding-bottom: 2.6rem; }
.timeline-item::before {
  content: ''; position: absolute; left: -2rem; top: 6px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--awo-red); border: 4px solid var(--cream);
}
.timeline-item .t-time { font-size: .85rem; color: var(--awo-red); font-weight: 600; letter-spacing: .04em; }
.timeline-item h4 { margin: .35rem 0 .4rem; font-size: 1.15rem; }
.timeline-item p { font-size: .95rem; margin: 0; }

/* =====================  TEAM  ===================== */
.team-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.team-card .photo { aspect-ratio: 4/5; background: var(--cream-2); overflow: hidden; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.team-card:hover .photo img { transform: scale(1.04); }
.team-card .body { padding: 1.4rem; }
.team-card h4 { margin-bottom: .2rem; font-size: 1.1rem; }
.team-card .role { font-size: .85rem; color: var(--awo-red); letter-spacing: .05em; text-transform: uppercase; font-weight: 600; }
.team-card .contact { display: flex; gap: 10px; margin-top: 1rem; flex-wrap: wrap; }
.team-card .contact a { font-size: .85rem; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; }
.team-card .contact a:hover { color: var(--awo-red); }
.team-card .contact svg { width: 14px; height: 14px; }

/* =====================  LOCATION CARDS  ===================== */
.loc-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.loc-card .media { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-2); }
.loc-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.loc-card:hover .media img { transform: scale(1.05); }
.loc-card .body { padding: 1.8rem; display: flex; flex-direction: column; flex: 1; }
.loc-card h3 { font-size: 1.4rem; margin-bottom: .8rem; }
.loc-card .meta { color: var(--ink-3); font-size: .92rem; margin-bottom: 1.4rem; }
.loc-card .meta div { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; }
.loc-card .meta svg { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 3px; color: var(--awo-red); }
.loc-card .actions { display: flex; gap: 8px; margin-top: auto; flex-wrap: wrap; }

/* =====================  CTA STRIP  ===================== */
.cta-strip {
  background: linear-gradient(135deg, var(--awo-red) 0%, var(--awo-red-700) 100%);
  color: white; border-radius: var(--radius-xl);
  padding: clamp(2.4rem, 5vw, 4rem);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem;
  align-items: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-strip::after {
  content: ''; position: absolute; right: 80px; bottom: -80px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-strip h2 { color: white; margin-bottom: .6rem; }
.cta-strip p { color: rgba(255,255,255,.9); margin-bottom: 0; max-width: 50ch; }
.cta-strip .actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-strip .btn.primary { background: white; color: var(--awo-red); }
.cta-strip .btn.primary:hover { background: var(--cream); }
.cta-strip .btn.ghost { color: white; border-color: rgba(255,255,255,.4); }
.cta-strip .btn.ghost:hover { background: rgba(255,255,255,.1); color: white; border-color: white; }
@media (max-width: 800px) {
  .cta-strip { grid-template-columns: 1fr; }
  .cta-strip .actions { justify-content: flex-start; }
}

/* =====================  TESTIMONIALS  ===================== */
.quote-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2.4rem; border: 1px solid var(--border);
  position: relative;
}
.quote-card::before {
  content: '"'; position: absolute; left: 24px; top: -28px;
  font-family: var(--font-serif); font-size: 8rem;
  color: var(--awo-red); opacity: .15; line-height: 1;
}
.quote-card .text { font-family: var(--font-serif); font-size: 1.2rem; line-height: 1.5; color: var(--ink); }
.quote-card .by { margin-top: 1.4rem; display: flex; align-items: center; gap: 12px; }
.quote-card .by img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.quote-card .by strong { display: block; font-size: .96rem; }
.quote-card .by span { font-size: .82rem; color: var(--ink-3); }

/* =====================  FAQ  ===================== */
.faq { display: grid; gap: .8rem; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem 1.6rem; transition: border-color .15s;
}
.faq-item[open] { border-color: var(--awo-red); }
.faq-item summary {
  cursor: pointer; list-style: none; font-weight: 600;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.6rem; color: var(--awo-red); font-weight: 300; transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a { color: var(--ink-2); padding-top: 1rem; }
.faq-item .a p { margin: 0 0 .8em; }

/* =====================  STICKY MOBILE BAR  ===================== */
.mobile-call {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 60; background: var(--awo-red); color: white;
  padding: 14px 18px; border-radius: 999px;
  box-shadow: 0 12px 28px rgba(226,0,26,.35);
  font-weight: 600; align-items: center; justify-content: center; gap: 10px;
  text-decoration: none;
}
.mobile-call:hover { color: white; }
.mobile-call svg { width: 20px; height: 20px; }
@media (max-width: 880px) { .mobile-call { display: flex; } body { padding-bottom: 70px; } }

/* =====================  FOOTER  ===================== */
.site-footer { background: var(--ink); color: #C9C9C9; padding: 5rem 0 2rem; position: relative; }
.site-footer h4 { color: white; font-size: 1rem; margin-bottom: 1.2rem; letter-spacing: .04em; text-transform: uppercase; }
.site-footer a { color: #C9C9C9; }
.site-footer a:hover { color: white; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.foot-brand .logo { width: 56px; height: 56px; }
.foot-brand .desc { font-size: .9rem; color: #9c9c9c; margin: 1rem 0 1.4rem; max-width: 38ch; }
.foot-socials { display: flex; gap: 10px; }
.foot-socials a { width: 38px; height: 38px; border: 1px solid #2d2d2d;
                  border-radius: 50%; display: grid; place-items: center; }
.foot-socials a:hover { background: var(--awo-red); border-color: var(--awo-red); }
.foot-socials svg { width: 16px; height: 16px; }
.foot-list { list-style: none; padding: 0; margin: 0; }
.foot-list li { margin-bottom: .6rem; font-size: .9rem; }
.foot-contact { font-size: .9rem; line-height: 1.8; }
.foot-bottom { padding-top: 2rem; border-top: 1px solid #2d2d2d; display: flex; justify-content: space-between;
               flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: #777; }
.foot-bottom a { color: #777; }
@media (max-width: 980px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .foot-grid { grid-template-columns: 1fr; } }

/* =====================  FORMS  ===================== */
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1/-1; }
.form-field { display: flex; flex-direction: column; }
.form-field label { font-size: .88rem; font-weight: 500; margin-bottom: .4rem; color: var(--ink); }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 12px; background: white;
  transition: border-color .15s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { outline: none; border-color: var(--awo-red); }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field .hint { font-size: .8rem; color: var(--ink-3); margin-top: .35rem; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* =====================  PROCESS  ===================== */
.process { display: grid; gap: 2rem; grid-template-columns: repeat(4, 1fr); position: relative; }
.process::before {
  content: ''; position: absolute; left: 5%; right: 5%; top: 32px;
  height: 2px; background: linear-gradient(to right, var(--awo-red-soft), var(--awo-red), var(--awo-red-soft));
  z-index: 0; opacity: .5;
}
.process-step { background: var(--cream); position: relative; z-index: 1; text-align: center; padding: 0 .5rem; }
.process-step .num {
  width: 64px; height: 64px; border-radius: 50%;
  background: white; border: 2px solid var(--awo-red);
  color: var(--awo-red); margin: 0 auto 1rem;
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500;
}
.process-step h4 { margin-bottom: .5rem; }
.process-step p { font-size: .92rem; }
@media (max-width: 880px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process::before { display: none; }
}
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

/* =====================  GALLERY  ===================== */
.gallery { display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
.gallery > div { overflow: hidden; border-radius: 16px; background: var(--cream-2); }
.gallery > div img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery > div:hover img { transform: scale(1.05); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery .wide { grid-column: span 1; } }

/* =====================  PILL TAGS  ===================== */
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  background: var(--awo-red-soft); color: var(--awo-red);
  padding: 6px 14px; border-radius: 999px;
  font-size: .82rem; font-weight: 500;
}
.pill.gold { background: var(--gold-soft); color: var(--gold); }
.pill.sage { background: var(--sage-soft); color: var(--sage); }

/* =====================  BREADCRUMBS  ===================== */
.breadcrumb { font-size: .82rem; color: var(--ink-3); padding: 1.4rem 0 0; }
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--awo-red); }
.breadcrumb span { margin: 0 .4rem; opacity: .5; }

/* =====================  PAGE HEAD  ===================== */
.page-head {
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(3rem, 5vw, 5rem);
  background:
    radial-gradient(900px 400px at 90% 0%, rgba(226,0,26,.06), transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--border);
}
.page-head .eyebrow { margin-bottom: 1rem; }
.page-head h1 { margin-bottom: .5rem; }
.page-head p.lead { font-size: 1.2rem; color: var(--ink-2); max-width: 60ch; }

/* =====================  ANIMATIONS  ===================== */
[data-aos] { opacity: 0; transition: opacity .8s ease, transform .8s ease; transform: translateY(20px); }
[data-aos].in { opacity: 1; transform: translateY(0); }

/* =====================  UTILITY  ===================== */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mt-4 { margin-top: 4rem; }
.center { text-align: center; }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.text-red { color: var(--awo-red); }
.text-muted { color: var(--ink-3); }
.bg-cream-2 { background: var(--cream-2); }

/* Print */
@media print {
  .nav, .site-footer, .mobile-call, .cta-strip { display: none !important; }
}
