/* Base */
:root {
  --bg: #f8f6f2;
  --ink: #1f1d1a;
  --muted: #5b5750;
  --accent: #2e5f44;
  --accent-2: #c46a3b;
  --soft: #efe9e2;
  --line: #ddd3c8;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 28px 80px;
}

.shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 22px;
  width: 260px;
  background: var(--panel);
  border-right: 1px solid var(--line);
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-list a {
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--soft);
}

.nav-list a:hover {
  background: #e2dbd1;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

.cta-primary,
.cta-secondary,
.cta-link,
.sticky-cta button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cta-primary {
  background: var(--accent);
  color: #fff;
}

.cta-secondary {
  background: var(--accent-2);
  color: #fff;
}

.cta-link {
  background: transparent;
  color: var(--accent);
  padding: 0;
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-link:hover {
  opacity: 0.9;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px;
  border-radius: 28px;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-floral {
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 29, 26, 0.55);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.section-row.reverse {
  flex-direction: row-reverse;
}

.panel {
  background: var(--panel);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background: #e7ded2;
  border-radius: 22px;
  overflow: hidden;
  min-width: 280px;
  flex: 1;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: #fdfbf8;
  border: 1px solid var(--line);
  width: calc(50% - 9px);
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ece3d8;
  font-size: 12px;
  color: var(--muted);
}

.highlight {
  background: var(--soft);
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--panel);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-bg {
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-seasonal {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 29, 26, 0.45);
}

.section-bg > * {
  position: relative;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0 40px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 420px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #cfc3b4;
  color: var(--ink);
}

.note {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .shell {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: column;
  }

  .section-row,
  .section-row.reverse {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
