:root {
  --color-primary: #B5562D;
  --color-accent: #5C2E4D;
  --color-bg: #fbf3ee;
  --color-surface: #ffffff;
  --color-ink: #1f1b17;
  --color-muted: #6a5e55;
  --shadow-glow: 0 0 24px rgba(181, 86, 45, 0.25);
  --radius: 0px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.7;
}

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

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

header {
  position: sticky;
  top: 12px;
  z-index: 10;
  padding: 12px 0;
}

.nav-pill {
  background: var(--color-surface);
  box-shadow: var(--shadow-glow);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.nav-cta {
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
}

main {
  padding-bottom: 80px;
}

.section {
  padding: 64px 20px;
}

.section--tight {
  padding: 48px 20px;
}

.section--wide {
  padding: 80px 20px;
}

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

.container {
  max-width: 980px;
  margin: 0 auto;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0 0 12px;
}

.section-title-small {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 10px;
}

.hero {
  padding: 0;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: auto;
}

.hero-overlay {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 8%;
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  box-shadow: var(--shadow-glow);
}

.hero-overlay h1 {
  font-family: var(--font-display);
  font-size: 40px;
  margin: 0 0 12px;
}

.hero-overlay p {
  margin: 0 0 16px;
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.btn.secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.grid-two {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--color-surface);
  padding: 24px;
  box-shadow: var(--shadow-glow);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  margin: 0;
}

.ordered-services {
  counter-reset: service;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  background: var(--color-surface);
  padding: 20px;
  box-shadow: var(--shadow-glow);
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 6px;
}

.service-price {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.cta-band {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
}

.cta-band .btn {
  background: #fff;
  color: var(--color-primary);
}

.final-cta {
  background: var(--color-surface);
  box-shadow: var(--shadow-glow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d7c7bf;
  border-radius: var(--radius);
  font-family: var(--font-body);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

footer {
  background: #241814;
  color: #f3ebe6;
  padding: 40px 20px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--color-accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-glow);
  font-size: 14px;
  z-index: 20;
}

.inline-link {
  color: var(--color-accent);
  text-decoration: underline;
}

.image-frame {
  box-shadow: var(--shadow-glow);
}

.img-tone-a {
  filter: sepia(0.4) saturate(1.1);
}

.img-tone-b {
  filter: contrast(1.3);
}

.img-tone-c {
  filter: saturate(0.6);
}

.img-tone-d {
  filter: hue-rotate(180deg) saturate(0.8);
}

.img-tone-e {
  filter: grayscale(0.2) sepia(0.4);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--color-surface);
  box-shadow: var(--shadow-glow);
  padding: 16px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.legal {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: 40px;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-top: 28px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  box-shadow: var(--shadow-glow);
}

.table th,
.table td {
  border: 1px solid #e2d7cf;
  padding: 12px;
  text-align: left;
}

@media (min-width: 768px) {
  .grid-two {
    flex-direction: row;
    align-items: center;
  }

  .grid-two.reverse {
    flex-direction: row-reverse;
  }

  .stat-block {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid > div {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
