/* Manavgat Temizlik — Mediterranean freshness */
:root {
  --sea: #0c6b6e;
  --sea-deep: #084a4d;
  --sea-soft: #e8f4f4;
  --aqua: #2a9d9f;
  --foam: #f7fbfb;
  --sand: #e8dfd0;
  --stone: #5c564c;
  --ink: #1a2222;
  --muted: #5a6666;
  --line: rgba(12, 107, 110, 0.14);
  --white: #ffffff;
  --danger: #b42318;
  --ok: #0f7a4c;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(8, 74, 77, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1120px;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--foam);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Nav —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 251, 251, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.3s;
}

.site-header.is-scrolled .logo,
.site-header.header-dark .logo {
  color: var(--sea-deep);
}

.logo span {
  font-weight: 400;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s, opacity 0.2s;
}

.site-header.is-scrolled .nav-links a,
.site-header.header-dark .nav-links a {
  color: var(--stone);
}

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

.site-header.is-scrolled .nav-links a:hover,
.site-header.header-dark .nav-links a:hover {
  color: var(--sea);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.15rem;
  background: var(--white);
  color: var(--sea-deep) !important;
  border-radius: 10px;
  font-weight: 600 !important;
  transition: transform 0.2s, background 0.2s;
}

.site-header.is-scrolled .nav-cta,
.site-header.header-dark .nav-cta {
  background: var(--sea);
  color: var(--white) !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--white);
  margin-inline: auto;
  transition: background 0.3s;
}

.site-header.is-scrolled .nav-toggle span,
.site-header.header-dark .nav-toggle span {
  background: var(--sea-deep);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 50, 52, 0.35) 0%, rgba(8, 50, 52, 0.15) 40%, rgba(8, 50, 52, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 50, 52, 0.45) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 3rem) 0 4.5rem;
  max-width: 38rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.15s ease forwards;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.75rem;
  max-width: 28rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s ease forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation: none;
    transform: none;
  }

  .hero-brand,
  .hero-lead,
  .hero-actions,
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--white);
  color: var(--sea-deep);
}

.btn-primary:hover {
  background: var(--sea-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline {
  background: transparent;
  color: var(--sea-deep);
  border: 1.5px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--sea);
  background: var(--sea-soft);
}

.btn-sea {
  background: var(--sea);
  color: var(--white);
}

.btn-sea:hover {
  background: var(--sea-deep);
}

.btn-full {
  width: 100%;
}

/* —— Sections —— */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(42, 157, 159, 0.08), transparent),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(232, 223, 208, 0.45), transparent),
    var(--foam);
}

.section-sea {
  background: linear-gradient(160deg, var(--sea-deep) 0%, var(--sea) 100%);
  color: var(--white);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--sea-deep);
  margin-bottom: 0.65rem;
}

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

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-sea .section-head p {
  color: rgba(255, 255, 255, 0.82);
}

/* —— Services grid (not cards in hero — interaction containers) —— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-item {
  padding: 1.5rem 1.35rem;
  border-top: 2px solid var(--sea);
  background: transparent;
  transition: background 0.25s;
}

.service-item:hover {
  background: rgba(12, 107, 110, 0.04);
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sea-deep);
  margin-bottom: 0.45rem;
}

.service-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— Why us —— */
.why-list {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.why-visual {
  position: relative;
  min-height: 380px;
  border-radius: 20px;
  overflow: hidden;
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-point h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--sea-deep);
  margin-bottom: 0.3rem;
}

.why-point p {
  color: var(--muted);
}

/* —— Form (interactive) —— */
.form-section {
  position: relative;
}

.form-shell {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
}

.form-progress {
  display: flex;
  background: var(--sea-soft);
  border-bottom: 1px solid var(--line);
}

.form-step-tab {
  flex: 1;
  padding: 1rem 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  position: relative;
  transition: color 0.25s, background 0.25s;
}

.form-step-tab.is-active {
  color: var(--sea-deep);
  background: var(--white);
}

.form-step-tab.is-done {
  color: var(--ok);
}

.form-step-tab span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 0.15rem;
}

.form-body {
  padding: 2rem 1.75rem 1.75rem;
}

.form-panel {
  display: none;
  animation: fadeUp 0.4s ease;
}

.form-panel.is-active {
  display: block;
}

.form-panel h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--sea-deep);
  margin-bottom: 0.35rem;
}

.form-panel > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.type-option {
  position: relative;
}

.type-option input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.type-option label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  min-height: 88px;
}

.type-option label strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.type-option label small {
  color: var(--muted);
  font-size: 0.8rem;
}

.type-option input:checked + label,
.type-option label:hover {
  border-color: var(--sea);
  background: var(--sea-soft);
}

.type-option input:focus-visible + label {
  outline: 2px solid var(--aqua);
  outline-offset: 2px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--stone);
}

.field input,
.field select,
.field textarea {
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--foam);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(42, 157, 159, 0.18);
  background: var(--white);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field .error {
  color: var(--danger);
  font-size: 0.78rem;
  display: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
}

.field.has-error .error {
  display: block;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.summary-box {
  background: var(--sea-soft);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.summary-box dl {
  display: grid;
  gap: 0.65rem;
}

.summary-box dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 600;
}

.summary-box dd {
  font-weight: 600;
  color: var(--sea-deep);
  margin-bottom: 0.35rem;
}

.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.consent input {
  margin-top: 0.25rem;
  accent-color: var(--sea);
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}

.form-success.is-visible {
  display: block;
  animation: fadeUp 0.5s ease;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--sea-deep);
  margin: 1rem 0 0.5rem;
}

.form-success p {
  color: var(--muted);
  max-width: 28rem;
  margin-inline: auto;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--sea-soft);
  display: grid;
  place-items: center;
  color: var(--ok);
}

.success-icon svg {
  width: 32px;
  height: 32px;
}

/* —— Areas —— */
.areas-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.areas-strip li {
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 0.92rem;
}

/* —— Testimonials —— */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quote {
  padding-top: 1rem;
  border-top: 2px solid var(--sand);
}

.quote blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--sea-deep);
  margin-bottom: 1rem;
}

.quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}

/* —— CTA band —— */
.cta-band {
  text-align: center;
  padding: 4rem 0;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.cta-band .btn-primary {
  color: var(--sea-deep);
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--sea-deep);
  margin-bottom: 0.5rem;
}

.contact-info p,
.contact-info a {
  color: var(--muted);
}

.contact-info a:hover {
  color: var(--sea);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  background: var(--sand);
  border: 1px solid var(--line);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* —— Page hero (inner) —— */
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 3rem;
  background:
    linear-gradient(135deg, var(--sea-deep), var(--sea)),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 40%);
  color: var(--white);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.page-hero p {
  opacity: 0.88;
  max-width: 36rem;
  font-size: 1.1rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.footer-regions {
  margin-bottom: 2rem;
  padding-top: 0.25rem;
}

.footer-regions h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.footer-region-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-region-links a {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.footer-region-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

/* —— Reveal on scroll —— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .services-grid,
  .quotes {
    grid-template-columns: 1fr 1fr;
  }

  .why-list,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-visual {
    min-height: 260px;
  }

  .type-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    gap: 1.75rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: var(--foam);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    color: var(--stone) !important;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.75rem;
    justify-content: center;
    background: var(--sea) !important;
    color: var(--white) !important;
  }

  .services-grid,
  .quotes,
  .field-grid,
  .type-grid {
    grid-template-columns: 1fr;
  }

  .form-step-tab span {
    display: none;
  }

  .hero-content {
    padding-bottom: 3rem;
  }

  .hero-brand {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .hero-lead {
    margin-bottom: 1.25rem;
  }

  .form-body {
    padding: 1.5rem 1.15rem;
  }
}

/* —— Logo SVG —— */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.3s;
}

.logo-svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text span {
  font-weight: 400;
  opacity: 0.88;
}

.site-header.is-scrolled .logo,
.site-header.header-dark .logo {
  color: var(--sea-deep);
}

.nav-news {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.2s, transform 0.2s;
}

.nav-news:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-news,
.site-header.header-dark .nav-news {
  background: var(--sea-soft);
  color: var(--sea-deep) !important;
  border-color: var(--line);
}

.nav-news .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e85d4c;
  box-shadow: 0 0 0 0 rgba(232, 93, 76, 0.5);
  animation: pulseDot 1.8s ease infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(232, 93, 76, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(232, 93, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 93, 76, 0); }
}

/* —— Article / service longform —— */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

.prose {
  max-width: 46rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--sea-deep);
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--sea-deep);
  margin: 1.5rem 0 0.5rem;
}

.prose p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.prose ul,
.prose ol {
  margin: 0 0 1.25rem 1.15rem;
  color: var(--muted);
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: 0.45rem;
  line-height: 1.65;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.article-aside {
  position: sticky;
  top: calc(var(--nav-h) + 1.25rem);
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.article-aside h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sea-deep);
  margin-bottom: 0.75rem;
}

.article-aside ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.article-aside a {
  font-size: 0.92rem;
  color: var(--muted);
}

.article-aside a:hover {
  color: var(--sea);
}

.breadcrumb {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.85rem;
}

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

.service-card-link {
  display: block;
  padding: 1.5rem 1.35rem;
  border-top: 2px solid var(--sea);
  transition: background 0.25s;
  color: inherit;
}

.service-card-link:hover {
  background: rgba(12, 107, 110, 0.05);
}

.service-card-link h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sea-deep);
  margin-bottom: 0.45rem;
}

.service-card-link p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.service-card-link .more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sea);
}

/* —— Blog —— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 2px solid var(--sand);
  transition: border-color 0.2s;
}

.blog-card:hover {
  border-color: var(--sea);
}

.blog-card time {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--sea-deep);
  line-height: 1.25;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.blog-card .more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sea);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .article-wrap {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-news {
    justify-content: center;
    margin-top: 0.35rem;
  }
}

.areas-strip a {
  color: inherit;
  text-decoration: none;
}
.areas-strip a:hover {
  text-decoration: underline;
}
.service-item a.more-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sea);
}

/* ===== WhatsApp Kontakt ===== */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  color: #fff;
}

.btn-whatsapp .wa-icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s, background 0.2s;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: #1ebe5b;
}

.wa-float svg {
  width: 30px;
  height: 30px;
}
