/* Base */
:root {
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --paper: #f6f2ec;
  --accent: #9a2f2f;
  --accent-soft: #e8c9c2;
  --sky: #dfe9f2;
  --stone: #ece7e1;
  --shadow: rgba(23, 23, 23, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 80px;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 0 12px;
}

.brand-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.3em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--paper);
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-intro h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0;
}

.hero-intro p {
  color: var(--muted);
  margin: 0;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-media {
  display: flex;
  gap: 18px;
  position: relative;
}

.hero-media img {
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
}

.hero-media .float-card {
  position: absolute;
  right: 10%;
  bottom: -20px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 10px 30px var(--shadow);
  max-width: 240px;
  font-size: 14px;
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--sky);
  padding: 32px;
  border-radius: 26px;
}

.offset-row .note {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 20px var(--shadow);
}

.stacked-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stacked-gallery img {
  border-radius: 20px;
}

.asym-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.asym-card {
  background: var(--stone);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid #e8e3dd;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.service-row strong {
  font-size: 18px;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.highlight-band {
  background: var(--accent);
  color: #fff;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-band a {
  color: #fff;
  text-decoration: underline;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 4px 12px var(--shadow);
}

.form-shell {
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d0c7;
  font-size: 14px;
  font-family: inherit;
}

.form-shell button {
  align-self: flex-start;
}

.footer {
  background: #111;
  color: #fff;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  box-shadow: 0 12px 30px var(--shadow);
  padding: 18px;
  border-radius: 16px;
  width: min(320px, 90%);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 28px;
  left: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 9;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.subtle {
  color: var(--muted);
}

.page-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0 0 8px;
}

.info-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--sky);
  padding: 22px;
  border-radius: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  border: 1px solid #d2c6b9;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

@media (min-width: 840px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-media {
    flex: 1;
    justify-content: flex-end;
  }

  .hero-intro {
    flex: 1;
  }

  .section-split {
    flex-direction: row;
    align-items: stretch;
  }

  .section-split.reverse {
    flex-direction: row-reverse;
  }

  .offset-row {
    flex: 1.2;
  }

  .stacked-gallery {
    flex: 0.8;
  }

  .asym-grid {
    flex-direction: row;
  }

  .asym-card {
    flex: 1;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-row {
    flex: 1 1 calc(50% - 18px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
