/* ============================================
   socials by georgia — Website Grundgerüst
   Basierend auf Brand Guide, Stand September 2026
   ============================================ */

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/bricolage-grotesque-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/bricolage-grotesque-latin-800-normal.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Karla';
  src: url('../fonts/karla-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Karla';
  src: url('../fonts/karla-latin-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Karla';
  src: url('../fonts/karla-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --anthrazit: #26241F;
  --weinrot: #6B1F2A;
  --terrakotta: #C0603C;
  --gold: #C9A227;
  --creme: #F3EDE1;
  --creme-dunkler: #E8DFCC;
  --weiss: #FFFFFF;

  --font-head: 'Bricolage Grotesque', Georgia, serif;
  --font-body: 'Karla', Arial, sans-serif;

  --max-width: 1080px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--anthrazit);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--anthrazit);
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--weinrot);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-bottom: 0.6em;
}

.lead {
  font-size: 1.15rem;
  color: #4a463d;
}

/* ---------- Logo (typografisch, kein Bild) ---------- */
.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 2px;
}
.logo .logo-main {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--anthrazit);
}
.logo .logo-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--weinrot);
}
.logo.reversed .logo-main { color: var(--creme); }
.logo.reversed .logo-sub { color: var(--gold); }

/* ---------- Header / Nav ---------- */
header.site {
  padding: 22px 0;
  border-bottom: 1px solid var(--creme-dunkler);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
nav.main-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
nav.main-nav a {
  text-decoration: none;
  font-size: 0.98rem;
  color: var(--anthrazit);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] {
  border-bottom-color: var(--gold);
}
.nav-cta {
  background: var(--weinrot);
  color: var(--creme) !important;
  padding: 14px 28px !important;
  border-radius: 999px;
  border-bottom: none !important;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1rem !important;
  line-height: 1;
}
.nav-cta:hover { background: #5a1922; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--anthrazit);
}
.btn-primary:hover { background: #b8931f; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--creme);
  border-color: var(--creme);
}
.btn-secondary:hover { background: rgba(243,237,225,0.1); }
.btn-outline {
  background: transparent;
  color: var(--weinrot);
  border-color: var(--weinrot);
}
.btn-outline:hover { background: var(--weinrot); color: var(--creme); }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.tight { padding: 48px 0; }

.section-dark {
  background: var(--anthrazit);
  color: var(--creme);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--creme); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .lead { color: #d8d2c4; }

.section-wine {
  background: var(--weinrot);
  color: var(--creme);
}
.section-wine h1, .section-wine h2, .section-wine h3 { color: var(--creme); }
.section-wine .eyebrow { color: var(--gold); }
.section-wine .card h3 { color: var(--anthrazit); }
.section-wine .card p, .section-wine .card .small { color: var(--anthrazit); }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 80px;
}
.hero .wrap { max-width: 780px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--gold);
  line-height: 1;
}
.stat .label {
  font-size: 0.92rem;
  color: #d8d2c4;
  margin-top: 4px;
}

/* ---------- Cards / Grid ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Content-Galerie (Case Studies) ---------- */
.content-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 676px;
}
.content-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.instagram-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid var(--weinrot);
  color: var(--weinrot);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.instagram-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.instagram-badge:hover { background: var(--weinrot); color: var(--creme); }

.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.video-tile video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  background: var(--anthrazit);
}
@media (max-width: 700px) {
  .content-gallery { grid-template-columns: repeat(3, 1fr); max-width: 420px; }
}

/* ---------- PDF-Galerie (LinkedIn-Carousels etc.) ---------- */
.pdf-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 760px;
}
.pdf-tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--anthrazit);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pdf-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.pdf-tile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.pdf-tile .pdf-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.62);
  color: var(--creme);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 11px;
  border-radius: 999px;
}

.card {
  background: var(--weiss);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--creme-dunkler);
}

/* ---------- Pricing ---------- */
.price-card {
  background: var(--weiss);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--creme-dunkler);
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--gold);
  position: relative;
}
.price-card .badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--gold);
  color: var(--anthrazit);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-card .price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--weinrot);
  margin: 10px 0 2px;
}
.price-card .price small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--anthrazit);
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  flex-grow: 1;
}
.price-card ul li {
  padding: 7px 0 7px 26px;
  position: relative;
  border-bottom: 1px solid var(--creme-dunkler);
  font-size: 0.96rem;
}
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--terrakotta);
  font-weight: 700;
}
.retainer-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 0.95rem;
}
.retainer-table th, .retainer-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--creme-dunkler);
}
.retainer-table th { font-family: var(--font-body); font-weight: 700; }
.retainer-table tr.highlight td {
  background: rgba(201, 162, 39, 0.12);
  font-weight: 700;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}
.retainer-table .pill-recommend {
  display: inline-block;
  background: var(--gold);
  color: var(--anthrazit);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---------- Testimonial ---------- */
blockquote.testimonial {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  quotes: none;
}
blockquote.testimonial::before { content: "\201C"; color: var(--gold); }
blockquote.testimonial::after { content: "\201D"; color: var(--gold); }
.testimonial-attr {
  margin-top: 16px;
  font-style: italic;
  color: var(--weinrot);
  font-size: 0.95rem;
}
.section-dark .testimonial-attr,
.section-wine .testimonial-attr { color: var(--gold); }
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.testimonial-person .testimonial-attr { margin-top: 0; }
.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 12px;
}
.step .step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

/* ---------- Footer ---------- */
footer.site {
  background: var(--anthrazit);
  color: #cfc9bb;
  padding: 56px 0 28px;
  margin-top: 0;
}
footer.site a { color: var(--creme); text-decoration: none; }
footer.site a:hover { color: var(--gold); }
footer.site .footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #423e34;
}
footer.site .footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
footer.site .footer-bottom {
  padding-top: 24px;
  font-size: 0.85rem;
  color: #8d886f;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Forms ---------- */
form.contact-form {
  display: grid;
  gap: 18px;
  max-width: 560px;
}
form.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
form.contact-form input,
form.contact-form textarea,
form.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #c9c0a8;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--weiss);
  color: var(--anthrazit);
}
form.contact-form textarea { min-height: 140px; resize: vertical; }
form.contact-form input:focus,
form.contact-form textarea:focus,
form.contact-form select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

/* ---------- Legal pages ---------- */
.legal h2 { margin-top: 1.6em; font-size: 1.25rem; }
.legal p, .legal li { color: #4a463d; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 0.88rem; color: #6b6656; }
.divider {
  border: none;
  border-top: 1px solid var(--creme-dunkler);
  margin: 48px 0;
}

@media (max-width: 640px) {
  header.site .wrap { flex-direction: column; align-items: flex-start; gap: 16px; }
  nav.main-nav { gap: 16px 22px; }
  section { padding: 52px 0; }
  .hero { padding: 60px 0 50px; }
}
