* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1a1a;
  --muted: #5d5d5d;
  --surface: #f7f3ee;
  --accent: #b46832;
  --accent-dark: #8d4f24;
  --shadow: rgba(17, 17, 17, 0.12);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 24px 6vw 12px;
}

.nav-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #e7e0d9;
  padding-bottom: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1e7dc;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  transform: translateY(-2px);
}

.ad-label {
  max-width: 260px;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  padding: 40px 6vw 70px;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero-card {
  background: var(--surface);
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 20px 50px var(--shadow);
}

.hero-media {
  flex: 1 1 340px;
  position: relative;
  min-height: 320px;
  background: #efe3d7;
  box-shadow: 0 24px 60px var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 60px 6vw;
}

.section.asym {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 300px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 18px 50px var(--shadow);
}

.asym-media {
  flex: 1 1 320px;
  background: #f0e6db;
  transform: translateY(-18px);
}

.asym-media img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-media {
  background: #efe6dc;
  height: 180px;
}

.card-one {
  background: #efe1d4;
}

.card-two {
  background: #eee2d5;
}

.card-three {
  background: #efe7dd;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed #e1d6c8;
  padding-bottom: 6px;
}

.quote-block {
  background: var(--surface);
  padding: 30px;
  border-left: 5px solid var(--accent);
  font-style: italic;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: #1c1a19;
  color: #fff;
  padding: 28px 6vw;
}

.cta-band a {
  color: #fff;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 18px 50px var(--shadow);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d9cfc2;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.notice {
  padding: 10px 12px;
  background: #f6ede3;
  border-radius: 8px;
  display: none;
}

.notice.show {
  display: block;
}

.site-footer {
  padding: 40px 6vw;
  background: #f5efe9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px var(--shadow);
  z-index: 20;
  transition: transform 0.2s ease;
}

.sticky-cta:hover {
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #1f1c1a;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #f2b370;
}

.cookie-reject {
  background: #e5ded6;
}

.hidden {
  display: none;
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-top: 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 16px 40px var(--shadow);
}

.hero-bg {
  background-color: #e7d8ca;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 240px;
}

.bg-heritage {
  background-color: #e5d9cc;
  background-image: url("https://images.unsplash.com/photo-1498579809087-ef1e558fd1da?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-atelier {
  background-color: #e8dfd3;
  background-image: url("https://images.unsplash.com/photo-1525351484163-7529414344d8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 860px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
