* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #151415;
  --muted: #5d5a58;
  --sand: #f7f1ea;
  --ash: #ece4da;
  --noir: #111112;
  --gold: #b8894a;
  --accent: #6a3e87;
  --soft: #fffaf4;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--gold);
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--sand);
}

.section.deep {
  background: var(--noir);
  color: #f9f2ea;
}

.section.border {
  border-top: 1px solid #ded3c5;
  border-bottom: 1px solid #ded3c5;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
}

.hero-media img {
  height: 420px;
  object-fit: cover;
  width: 100%;
}

.floating-note {
  position: absolute;
  bottom: -20px;
  right: 10%;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-size: 0.9rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 300px;
}

.split-text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.split-text p {
  color: var(--muted);
  margin-bottom: 16px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.quote-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  flex: 1 1 180px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #eadfd2;
}

.stat h3 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.stat p {
  color: var(--muted);
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial {
  flex: 1 1 250px;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #eadfd2;
}

.media-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.media-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.media-card h4 {
  font-size: 1.1rem;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.step {
  flex: 1 1 220px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eadfd2;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid #eadfd2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card h4 {
  font-size: 1.2rem;
}

.price-tag {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d8cbbc;
  font-size: 1rem;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #eadfd2;
  border-radius: 12px;
}

.submit-btn {
  align-self: flex-start;
  padding: 12px 26px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.submit-btn:hover {
  background: #542b6d;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.space-top-sm {
  margin-top: 16px;
}

.space-top-md {
  margin-top: 24px;
}

.space-top-lg {
  margin-top: 20px;
}

.ghost-btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #d4c6b8;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--gold);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.footer {
  padding: 40px 0;
  background: var(--noir);
  color: #f9f2ea;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  width: min(360px, 90%);
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: var(--ink);
  color: #fff;
}

.cookie-reject {
  background: #e6dbcf;
  color: var(--ink);
}

.page-hero {
  padding: 70px 0 30px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
}

.simple-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #eadfd2;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 700px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
  }

  .floating-note {
    position: static;
    margin-top: 14px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
