@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600&display=swap");

:root {
  --ink: #1d1b18;
  --soft-ink: #4a433b;
  --sand: #f5f1ea;
  --cream: #fbf7f0;
  --stone: #e7e0d5;
  --accent: #a0663c;
  --accent-dark: #7a4b2e;
  --forest: #2f3e3b;
  --sky: #eef3f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

header {
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 12px;
  color: var(--soft-ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--stone);
  color: var(--soft-ink);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 64px 0 28px;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 360px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  background-color: var(--stone);
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--forest);
  color: #fff;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 38px);
  margin: 0 0 18px;
}

.split {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
}

.img-wrap {
  background-color: var(--stone);
  border-radius: 22px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.tagline {
  font-size: 14px;
  color: var(--soft-ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-spaced {
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
  color: #fff;
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--accent);
  color: #fff;
}

.link-cta {
  text-decoration: underline;
  color: var(--accent-dark);
}

.link-cta:hover,
.link-cta:focus {
  color: var(--accent);
}

.form-shell {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
  font-size: 14px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 14px;
}

.form-shell button {
  align-self: flex-start;
}

.quote {
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--forest);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  z-index: 50;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #1e2a28;
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 16px;
  display: none;
  z-index: 60;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer {
  background: var(--sand);
  padding: 40px 0;
  font-size: 14px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bg-hero-home {
  background-image: url("https://images.unsplash.com/photo-1706550631437-0ad78e9005d5?w=1400&q=80");
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1777628530456-bb93d3a03faf?w=1400&q=80");
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1552422554-0d5af0c79fc6?w=1400&q=80");
}

.bg-selection {
  background-image: url("https://images.unsplash.com/photo-1764795849755-ab58c8fef307?w=1400&q=80");
}

.bg-hero-about {
  background-image: url("https://images.unsplash.com/photo-1766934587163-186d20bf3d40?w=1400&q=80");
}

.bg-hero-services {
  background-image: url("https://images.unsplash.com/photo-1550998358-08b4f83dc345?w=1400&q=80");
}

.bg-hero-contact {
  background-image: url("https://images.unsplash.com/photo-1693318810553-ae035d7dde94?w=1400&q=80");
}

.bg-hero-legal {
  background-image: url("https://images.unsplash.com/photo-1605732440685-d0654d81aa30?w=1400&q=80");
}

.bg-hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1534233812932-59b8fa1b780c?w=1400&q=80");
}

.bg-hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1777987601677-3059be0e1388?w=1400&q=80");
}

.bg-hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1610548194675-3f7a220b26f5?w=1400&q=80");
}

.bg-hero-terms {
  background-image: url("https://images.unsplash.com/photo-1611937663571-51248fbe6d7a?w=1400&q=80");
}

@media (max-width: 900px) {
  .sticky-cta {
    position: static;
    margin: 20px;
    text-align: center;
  }

  .cookie-banner {
    bottom: 10px;
  }
}
