* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1c1a;
  --muted: #5b5b55;
  --sand: #f4f1ea;
  --stone: #e6e0d6;
  --accent: #3e5c59;
  --accent-dark: #2c3f3d;
  --highlight: #f1e7d4;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.wrap {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

header {
  padding: 28px 0 18px;
  border-bottom: 1px solid var(--stone);
}

.nav-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.ad-label {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--highlight);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.95rem;
}

main {
  padding: 32px 0 60px;
}

section {
  padding: 42px 0;
}

.section-tight {
  padding: 22px 0;
}

.section-sand {
  background: var(--sand);
}

.section-stone {
  background: var(--stone);
}

.section-photo-1 {
  background-color: #d2cbc0;
  background-image: url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.overlay-panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--stone);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
}

.hero-visual {
  flex: 0.9;
  background: #d4d0c6;
  padding: 12px;
  border-radius: 18px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Georgia", serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  margin: 0 0 18px;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin: 0 0 16px;
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.mag-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.mag-col {
  flex: 1 1 280px;
}

.mag-wide {
  flex: 2 1 520px;
}

.card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card figure {
  margin: 0;
  background: #d7d2c7;
  border-radius: 12px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
}

.btn:hover,
.btn-outline:hover,
button:hover {
  filter: brightness(0.96);
}

.quote {
  border-left: 3px solid var(--accent-dark);
  padding-left: 14px;
  color: var(--muted);
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip figure {
  margin: 0;
  flex: 1 1 200px;
  background: #d8d3c8;
  border-radius: 14px;
  overflow: hidden;
}

.image-strip img {
  width: 100%;
  height: 160px;
}

.form-panel {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 18px;
  padding: 22px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c3b7;
  font-size: 1rem;
  width: 100%;
}

.sticky-cta {
  position: sticky;
  top: 22px;
  align-self: flex-start;
  background: var(--highlight);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--stone);
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 999px;
  font-size: 0.8rem;
}

.bg-split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.bg-photo {
  flex: 1;
  background: #cfc7ba;
  border-radius: 18px;
  overflow: hidden;
}

.bg-photo img {
  width: 100%;
  height: 320px;
}

.footer {
  border-top: 1px solid var(--stone);
  padding: 30px 0 40px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #6b6761;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--stone);
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.hidden {
  display: none;
}

.secondary-hero {
  display: flex;
  gap: 24px;
  align-items: center;
}

.secondary-hero figure {
  margin: 0;
  background: #d6d1c6;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
}

.secondary-hero img {
  width: 100%;
  height: 260px;
}

.page-title {
  margin: 0 0 8px;
}

.contact-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 18px;
}

.small-image {
  background: #d4cfc5;
  border-radius: 14px;
  overflow: hidden;
}

.small-image img {
  width: 100%;
  height: 180px;
}

.note-box {
  background: var(--highlight);
  border: 1px solid var(--stone);
  padding: 16px;
  border-radius: 12px;
}
