/*
Theme Name:   Garrett Marketing
Version:      1.0.0
Author:       Jim Garrett
Description:  Eigenständiges Block-Theme für garrett-marketing.de
*/

/* ─── DESIGN TOKENS: LIGHT (default) ─────────────────────────────────────── */
:root {
  --gm-content-max:    1200px;
  --gm-top-offset:     clamp(6.5rem, 8vw, 8.25rem);
  /* Grüntöne (primäre Akzentfarben) */
  --wald:              #2d6a3f;
  --gruen:             #4a9e60;
  --gruen-hell:        #6ab878;
  --gruen-zart:        #8ad498;

  /* Terrakotta (sekundärer Akzent) */
  --sand:              #e8a07a;
  --terrakotta-alt:    #c45c32;

  /* Akzent-Tokens (werden überall referenziert) */
  --terracotta:        #4a9e60;
  --terracotta-light:  #6ab878;
  --terracotta-dim:    rgba(74, 158, 96, 0.08);

  --bg:                #faf5ec;
  --bg-2:              #f0e8d8;
  --bg-3:              #e8dfc8;
  --bg-4:              #e0d5bc;
  --text:              rgba(26, 18, 8, 0.88);
  --muted:             rgba(26, 18, 8, 0.42);
  --border:            rgba(26, 18, 8, 0.07);
  --border-hover:      rgba(26, 18, 8, 0.14);
  --card-bg:           #faf5ec;
  --input-bg:          rgba(26, 18, 8, 0.03);
  --input-border:      rgba(26, 18, 8, 0.12);
  --nav-scrolled:      rgba(250, 245, 236, 0.96);
  --nav-shadow:        rgba(26, 18, 8, 0.06);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

/* ─── DESIGN TOKENS: DARK ─────────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    --terracotta-light: #8ad498;
    --terracotta-dim:   rgba(74, 158, 96, 0.15);
    --bg:               #0E0D0B;
    --bg-2:             #161410;
    --bg-3:             #1E1B17;
    --bg-4:             #252118;
    --text:             rgba(255, 255, 255, 0.88);
    --muted:            rgba(255, 255, 255, 0.35);
    --border:           rgba(255, 255, 255, 0.06);
    --border-hover:     rgba(255, 255, 255, 0.12);
    --card-bg:          #161410;
    --input-bg:         rgba(255, 255, 255, 0.03);
    --input-border:     rgba(255, 255, 255, 0.08);
    --nav-scrolled:     rgba(14, 13, 11, 0.96);
    --nav-shadow:       rgba(255, 255, 255, 0.04);
  }
}

/* ─── RESET & BASE ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
}

.wp-site-blocks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wp-site-blocks > main {
  flex: 1 0 auto;
}

body.admin-bar {
  --gm-admin-bar-offset: 32px;
}

/* ─── NOISE OVERLAY ──────────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.6;
}

/* ─── NAV ─────────────────────────────────────────────────────────────────── */
.gm-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: block;
  padding: 0;
  background: linear-gradient(to bottom, var(--nav-scrolled) 0%, transparent 100%);
  backdrop-filter: blur(2px);
  transition: background 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: none;
  margin: 0;
}

.gm-nav-inner {
  width: 100%;
  max-width: var(--gm-content-max);
  margin-inline: auto;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.admin-bar .gm-nav {
  top: var(--gm-admin-bar-offset);
}

.gm-nav.scrolled {
  background: var(--nav-scrolled);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--nav-shadow);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  text-decoration: none;
}

.logo-garrett {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--text);
  margin: 0;
}

.logo-garrett a {
  color: inherit;
  text-decoration: none;
}

.logo-marketing {
  font-family: var(--sans);
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.logo-line {
  min-width: 100%;
  width: 100%;
  margin: 3px 0 0;
  border: 0;
  opacity: 0.9;
}

.gm-nav-links {
  gap: 2.5rem;
}

.gm-nav-links .wp-block-navigation-item__content {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.gm-nav-links .wp-block-navigation-item__content::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.gm-nav-links .wp-block-navigation-item__content:hover { color: var(--text); }
.gm-nav-links .wp-block-navigation-item__content:hover::after { transform: scaleX(1); }

.gm-nav-links .wp-block-navigation__responsive-container-content {
  align-items: center;
}

.gm-nav-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gm-nav-links li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.gm-nav-links a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.gm-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.gm-nav-links a:hover {
  color: var(--text);
}

.gm-nav-links a:hover::after {
  transform: scaleX(1);
}

.gm-nav-links .wp-block-navigation-item {
  margin: 0;
}

/* Footer Navigation */
.gm-footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gm-footer-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.gm-footer-nav a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.gm-footer-nav a:hover {
  color: var(--text);
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.gm-hero {
  min-height: 100vh;
  width: 100%;
  max-width: var(--gm-content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

body.admin-bar .gm-hero {
  min-height: calc(100vh - var(--gm-admin-bar-offset));
  padding-top: var(--gm-admin-bar-offset);
}

.hero-left {
  padding: 10rem 4rem 6rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  line-height: 1.08;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--terracotta-light);
}

.hero-sub {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-cta {
  margin-top: 3rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.btn-primary .wp-block-button__link {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary .wp-block-button__link:hover {
  background: var(--terracotta-light);
  transform: translateY(-1px);
  color: #fff;
}

.btn-ghost .wp-block-button__link {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  border-bottom: 1px solid var(--border-hover);
  padding-bottom: 2px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  transition: color 0.3s, border-color 0.3s;
}

.btn-ghost .wp-block-button__link:hover { color: var(--text); border-color: var(--terracotta); }

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right,  rgba(74,158,96,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(74,158,96,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-plant {
  position: absolute;
  bottom: 0; right: 0;
  width: 85%; height: 90%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1.4s 0.5s forwards;
}

.hero-plant::before {
  content: "";
  width: 100%;
  height: 100%;
  max-width: 480px;
  display: block;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 520' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M200 500 C200 500 195 380 200 300 C205 220 190 180 200 100' stroke='rgba(74,158,96,0.25)' stroke-width='2' fill='none'/%3E%3Cpath d='M200 320 C160 290 100 270 80 220 C120 215 175 245 200 310' fill='rgba(74,158,96,0.08)' stroke='rgba(74,158,96,0.2)' stroke-width='1'/%3E%3Cpath d='M200 260 C240 230 310 215 330 165 C290 158 235 185 200 255' fill='rgba(74,158,96,0.06)' stroke='rgba(74,158,96,0.15)' stroke-width='1'/%3E%3Cpath d='M200 200 C165 175 120 165 105 130 C140 125 185 148 200 195' fill='rgba(74,158,96,0.07)' stroke='rgba(74,158,96,0.18)' stroke-width='1'/%3E%3Cpath d='M200 155 C225 135 265 128 275 100 C248 96 215 115 200 150' fill='rgba(74,158,96,0.05)' stroke='rgba(74,158,96,0.14)' stroke-width='1'/%3E%3Cpath d='M200 100 C198 70 202 50 200 20' stroke='rgba(74,158,96,0.35)' stroke-width='1.5' fill='none' stroke-dasharray='4 3'/%3E%3Cpath d='M200 60 C210 45 225 38 230 25 C218 22 205 32 200 55' fill='rgba(74,158,96,0.15)' stroke='rgba(74,158,96,0.4)' stroke-width='1'/%3E%3Ccircle cx='200' cy='20' r='3' fill='rgba(74,158,96,0.5)'/%3E%3Ccircle cx='200' cy='20' r='8' fill='rgba(74,158,96,0.08)'/%3E%3Cline x1='120' y1='498' x2='280' y2='498' stroke='rgba(74,158,96,0.15)' stroke-width='1'/%3E%3Cpath d='M200 498 C185 495 170 498 160 492' stroke='rgba(74,158,96,0.1)' stroke-width='1' fill='none'/%3E%3Cpath d='M200 498 C215 495 228 498 240 492' stroke='rgba(74,158,96,0.1)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 3rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}

.scroll-line {
  width: 40px; height: 1px;
  background: var(--terracotta);
  min-width: 40px;
  margin: 0;
  border: 0;
  opacity: 0.6;
}

.hero-scroll-hint p {
  margin: 0;
}

/* ─── SECTION BASE ────────────────────────────────────────────────────────── */
section { position: relative; }

.section-inner {
  max-width: var(--gm-content-max);
  margin: 0 auto;
  padding: 0 3rem;
}

.section-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--terracotta);
  opacity: 0.7;
}

/* ─── PAGE LAYOUTS ───────────────────────────────────────────────────────── */
.gm-blog,
.gm-archive,
.gm-page,
.gm-article {
  padding-top: var(--gm-top-offset);
}

body.admin-bar .gm-blog,
body.admin-bar .gm-archive,
body.admin-bar .gm-page,
body.admin-bar .gm-article {
  padding-top: calc(var(--gm-top-offset) + var(--gm-admin-bar-offset));
}

.gm-blog,
.gm-archive {
  padding-bottom: 7rem;
  background: var(--bg-2);
}

.blog-title,
.archive-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 2.2rem;
}

.archive-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 64ch;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  min-height: 100%;
}

.blog-card-image img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-card-body {
  padding: 1.4rem 1.35rem 1.25rem;
}

.blog-card-cat,
.blog-card-date {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.blog-card-title {
  margin: 0.75rem 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.25;
}

.blog-card-title a {
  color: var(--text);
  text-decoration: none;
}

.blog-card-excerpt {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.wp-block-query-pagination {
  margin-top: 2.25rem;
}

.gm-page,
.gm-article {
  padding-bottom: 6rem;
  background: var(--bg);
}

.page-inner,
.article-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.article-inner {
  max-width: 1200px;
  padding: 0 3rem;
}

.page-title,
.article-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.page-content,
.article-content {
  color: var(--text);
}

.page-content > * + *,
.article-content > * + * {
  margin-top: 1.25rem;
}

.article-meta {
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.article-hero-image {
  margin: 1.6rem 0 2.1rem;
}

.article-footer {
  margin-top: 2rem;
}

.article-divider {
  margin: 2rem 0;
  opacity: 0.35;
}

.article-nav {
  gap: 1rem;
}

.article-nav a {
  color: var(--terracotta);
  text-decoration: none;
}

/* ─── SERVICES ────────────────────────────────────────────────────────────── */
.gm-services {
  padding: 8rem 0;
  background: var(--bg-2);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}

.services-title em { font-style: italic; color: var(--terracotta-light); }

.services-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 42ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--bg-2);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover { background: var(--bg-3); }
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--terracotta-dim);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}

.service-card:hover .service-number { color: rgba(196,92,50,0.4); }

.service-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--text);
}

.service-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}

.service-tags {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  color: var(--terracotta);
  opacity: 0.8;
  margin: 0;
}


/* ─── ABOUT ───────────────────────────────────────────────────────────────── */
.gm-about {
  padding: 8rem 0;
  background: var(--bg);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.about-sticky {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.about-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 2rem;
}

.about-title em { font-style: italic; color: var(--terracotta-light); }

.about-intro {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.about-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}

.values-list { padding-top: 1rem; }

.value-item {
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  transition: padding-left 0.3s;
}

.value-item:hover { padding-left: 0.5rem; }

.value-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 1.1rem;
  opacity: 0.7;
}

.value-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.value-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
.gm-contact {
  padding: 8rem 0 10rem;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.contact-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.contact-title em { font-style: italic; color: var(--terracotta-light); }

.contact-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 42ch;
}

.contact-detail { display: flex; flex-direction: column; gap: 0.8rem; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-row p { margin: 0; }

.contact-row-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  min-width: 4rem;
}

/* Rechte Seite: Mail-CTA */
.contact-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 3.5rem;
  border: 1px solid var(--border-hover);
  background: var(--card-bg);
}

.contact-cta-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.contact-cta-email {
  margin: 0;
}

.contact-cta-email a {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1em;
  transition: color 0.2s;
}

.contact-cta-email a:hover { color: var(--wald); }

.contact-cta-hint {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  opacity: 0.7;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.gm-footer {
  padding: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  width: 100%;
  max-width: var(--gm-content-max);
  margin: 0 auto;
  padding: 2.5rem 3rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  opacity: 0.6;
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.6;
}

/* ─── ANIMATIONS ──────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-layout    { grid-template-columns: 1fr; }
  .about-sticky    { position: static; }
  .services-header { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout  { grid-template-columns: 1fr; gap: 4rem; }
  .blog-grid       { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  body.admin-bar {
    --gm-admin-bar-offset: 46px;
  }

  .gm-nav-inner  { padding: 1.2rem 1.5rem; }
  .gm-hero       { grid-template-columns: 1fr; }
  .hero-left     { padding: 8rem 1.5rem 4rem; }
  .hero-right    { display: none; }
  .section-inner { padding: 0 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; gap: 1rem; }
  .dach-inner    { gap: 2rem; flex-wrap: wrap; }
  .gm-footer     { flex-direction: column; gap: 0.5rem; text-align: center; }
  .gm-nav-links  { gap: 1rem; }
  .article-inner { padding: 0 1.5rem; }
  .gm-blog,
  .gm-archive,
  .gm-page,
  .gm-article { padding-top: calc(var(--gm-top-offset) - 0.4rem); }
}
