@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --ink: #1d1b1b;
  --muted: #6b6464;
  --accent: #b86a77;
  --accent-dark: #8f4c57;
  --bg: #f7f2f1;
  --sand: #f3e7e4;
  --light: #ffffff;
  --shadow: 0 18px 40px rgba(28, 20, 20, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a {
  color: var(--muted);
}

.hero {
  background: linear-gradient(110deg, rgba(247, 242, 241, 0.9), rgba(247, 242, 241, 0.6)),
    url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  padding: 72px 0;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--light);
}

.section.sand {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(36px, 5vw, 54px);
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--light);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.btn.ghost {
  border-color: transparent;
  color: var(--accent-dark);
  background: rgba(184, 106, 119, 0.12);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(184, 106, 119, 0.12);
  color: var(--accent-dark);
  font-size: 13px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 260px;
  background: var(--light);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 16px;
  margin-bottom: 16px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.quote {
  font-style: italic;
  color: var(--ink);
}

.form-shell {
  background: var(--light);
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.form-grid label {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(29, 27, 27, 0.2);
  font-family: inherit;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.service-option {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(29, 27, 27, 0.1);
  background: rgba(247, 242, 241, 0.6);
}

.service-option input {
  margin-top: 6px;
}

.footer {
  padding: 30px 0 50px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: var(--shadow);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--light);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.muted {
  color: var(--muted);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-list .line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(29, 27, 27, 0.12);
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mini-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 16px;
  border-radius: 16px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(184, 106, 119, 0.2);
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
