* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1a1a;
  --muted: #5a5f66;
  --surface: #f7f4ef;
  --accent: #0f6f6b;
  --accent-dark: #0b4f4d;
  --highlight: #f3c87b;
  --shadow: rgba(20, 20, 20, 0.1);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfaf7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 230px;
  background: #fff;
  padding: 24px 18px;
  border-right: 1px solid #ece8df;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 500;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--surface);
}

.sidebar-cta {
  margin-top: auto;
  padding: 12px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  text-align: left;
}

.sidebar-cta span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.85;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 32px 6vw 80px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 32px var(--shadow);
}

.hero {
  background: linear-gradient(140deg, #fff, #f1f0ea);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.hero .hero-media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--highlight);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split img {
  border-radius: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accent-block {
  background: var(--accent);
  color: #fff;
}

.accent-block a {
  color: #fff;
  text-decoration: underline;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: #fdf8f1;
  border: 1px solid #efe2d3;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gallery-card {
  flex: 1 1 180px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #e8e2d8;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric {
  background: #fff6e8;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
}

.form-section {
  background: #f5f0e7;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9d2c6;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-cta {
  display: inline-flex;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-dark);
  align-items: center;
}

.quote {
  font-style: italic;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

footer {
  padding: 30px 6vw 50px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(15, 111, 107, 0.3);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 30px var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #ece6db;
  color: var(--ink);
}

.notice {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #eee4d4;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ece8df;
    flex-direction: row;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    margin-top: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .sidebar-cta {
    display: none;
  }
}

@media (min-width: 981px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero {
    flex-direction: row;
  }

  .hero .hero-copy {
    flex: 1.1;
  }

  .hero .hero-media {
    flex: 0.9;
    align-items: flex-end;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 16px);
  }

  .gallery-row {
    flex-wrap: nowrap;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
  }
}
