@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --ink: #1e1d1a;
  --muted: #5c584f;
  --paper: #f6f2ea;
  --sand: #efe6d6;
  --sage: #cdd7c9;
  --rust: #c65d3d;
  --olive: #6f7b53;
  --stone: #d8d1c5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #fbfaf7;
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 8px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-disclosure {
  font-size: 12px;
  color: var(--muted);
  background: var(--sand);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px 0 48px;
}

.hero-content {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  margin: 0;
}

.hero-media {
  flex: 1 1 380px;
  min-height: 360px;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--stone);
  border-radius: 24px;
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--rust);
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cta-link {
  color: var(--olive);
  font-weight: 600;
}

.magazine-section {
  padding: 32px 0;
}

.magazine-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.col-main {
  flex: 2 1 420px;
  background: var(--paper);
  padding: 24px;
  border-radius: 20px;
}

.col-side {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-card {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--stone);
}

.image-frame {
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
}

.section-slate {
  background: var(--sage);
  padding: 36px 0;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 600;
  color: var(--rust);
}

.split-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.section-kitchen {
  background-image: url("https://images.unsplash.com/photo-1498579809087-ef1e558fd1da?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--stone);
  padding: 48px 0;
  color: #fff;
}

.section-overlay {
  background: rgba(30, 29, 26, 0.58);
  padding: 28px;
  border-radius: 24px;
}

.form-section {
  padding: 40px 0 56px;
}

.form-shell {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-card {
  flex: 1 1 360px;
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--stone);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  background: var(--olive);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  background: var(--paper);
  padding: 32px 0 48px;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--stone);
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--stone);
  padding: 16px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--stone);
  background: var(--sand);
  cursor: pointer;
}

.muted {
  color: var(--muted);
}

.page-hero {
  padding: 30px 0;
  background: var(--sand);
}

.page-hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
}

.wide-image {
  border-radius: 20px;
  overflow: hidden;
  background: var(--stone);
}

.service-listing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--stone);
}

.service-row .price {
  margin-left: auto;
}

.reference-list a {
  text-decoration: underline;
}

.hidden {
  display: none;
}
