/* frisch-wind-web.de — nordisch/maritim, unaufgeregt */

:root {
  --color-deep: #1B3A4B;
  --color-deep-dark: #142c39;
  --color-mist: #E8EEF1;
  --color-sand: #D8C3A5;
  --color-white: #FFFFFF;
  --color-ink: #2B2B2B;
  --font-sans: "Inter", "Source Sans Pro", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max-width: 880px;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-deep);
}

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

/* ---------- Header / Nav ---------- */

.site-header {
  background: var(--color-deep);
  color: var(--color-white);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.brand svg {
  flex-shrink: 0;
}

.site-nav a {
  color: var(--color-mist);
  text-decoration: none;
  font-size: 0.95rem;
  margin-left: 24px;
}

.site-nav a:hover {
  color: var(--color-white);
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--color-deep) 0%, var(--color-deep-dark) 100%);
  color: var(--color-white);
  padding: 72px 0 0;
}

.hero .wrap {
  text-align: center;
  padding-bottom: 56px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero p.lead {
  font-size: 1.2rem;
  color: var(--color-mist);
  max-width: 40em;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--color-sand);
  color: var(--color-deep-dark);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  margin-bottom: -2px;
}

.wave-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Sections ---------- */

section {
  padding: 64px 0;
}

section.alt {
  background: var(--color-mist);
}

section.dark {
  background: var(--color-deep);
  color: var(--color-mist);
}

section.dark h2 {
  color: var(--color-white);
}

section.has-wave-bottom {
  padding-bottom: 0;
}

section.has-wave-bottom > .wrap {
  padding-bottom: 56px;
}

h2 {
  font-size: 1.8rem;
  margin: 0 0 28px;
  color: var(--color-deep);
  text-align: center;
}

.section-intro {
  text-align: center;
  max-width: 42em;
  margin: -12px auto 32px;
  color: #555;
}

/* ---------- Über mich ---------- */

.about {
  max-width: 60em;
  margin: 0 auto;
  font-size: 1.05rem;
}

#ueber-mich-kontakt .wrap + .wrap {
  margin-top: 56px;
}

/* ---------- Leistungen ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--color-white);
  border: 1px solid #dfe6ea;
  border-radius: var(--radius);
  padding: 26px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-card .icon {
  color: var(--color-deep);
  margin-bottom: 14px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--color-deep);
}

.service-card p {
  margin: 0;
  color: #444;
  font-size: 0.96rem;
}

/* ---------- Beispiele (Platzhalter) ---------- */

.examples-placeholder {
  text-align: center;
  border: 2px dashed var(--color-sand);
  border-radius: var(--radius);
  padding: 48px 24px;
  max-width: 40em;
  margin: 0 auto;
  color: #555;
}

.examples-placeholder .icon {
  color: var(--color-sand);
  margin-bottom: 12px;
}

/* ---------- Ablauf ---------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.steps li {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid #dfe6ea;
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.steps .icon {
  color: var(--color-deep);
  margin-bottom: 14px;
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--color-deep);
  text-align: center;
}

.steps p {
  margin: 0;
  color: #444;
  font-size: 0.95rem;
}

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 50em;
  margin: 0 auto;
}

@media (max-width: 620px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

@media (max-width: 620px) {
  .contact-list li {
    justify-content: center;
  }
}

.contact-list .icon {
  color: var(--color-deep);
  flex-shrink: 0;
}

.contact-list a {
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 500;
}

.contact-list a:hover {
  color: var(--color-deep);
}

.qr-box {
  background: var(--color-white);
  border: 2px solid var(--color-sand);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  display: block;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.qr-box:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.qr-box img {
  margin: 0 auto 12px;
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.qr-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--color-deep-dark);
  color: var(--color-mist);
  padding: 32px 0;
  font-size: 0.9rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
}

.site-footer a {
  color: var(--color-mist);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-white);
}

.footer-links a {
  margin-right: 20px;
}

/* ---------- Legal pages (Impressum/Datenschutz) ---------- */

.legal {
  max-width: 42em;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.legal h1 {
  color: var(--color-deep);
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal h2 {
  text-align: left;
  font-size: 1.25rem;
  margin: 36px 0 12px;
}

.legal p {
  margin: 0 0 14px;
}

.legal a.back {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: var(--color-deep);
}
