* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1e1f1c;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 6vw 16px;
  background: #f1ede4;
  border-bottom: 1px solid #d6d1c6;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: #6b6257;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-bottom-color: #7b6a54;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw 56px;
  background: #f7f1e6;
}

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1 1 340px;
  background: #d9d3c7;
  padding: 12px;
  border-radius: 16px;
}

.hero-image img {
  width: 100%;
  height: 380px;
  border-radius: 12px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: #2c2d27;
  color: #f7f4ef;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  border: 1px solid #2c2d27;
  color: #2c2d27;
}

.section {
  padding: 52px 6vw;
}

.offset {
  margin-left: 8vw;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.story-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.story-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(30, 31, 28, 0.08);
}

.image-frame {
  background: #d9d3c7;
  padding: 10px;
  border-radius: 16px;
  flex: 1 1 320px;
}

.image-frame img {
  width: 100%;
  height: 260px;
  border-radius: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
}

.card {
  flex: 1 1 220px;
  background: #fffaf2;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background: #d9d3c7;
  padding: 8px;
  border-radius: 14px;
}

.card-image img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
}

.floating-note {
  background: #2c2d27;
  color: #f7f4ef;
  padding: 26px;
  border-radius: 18px;
}

.highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.highlight-text {
  flex: 1 1 300px;
}

.highlight-bg {
  background-image: url("https://images.unsplash.com/photo-1525253086316-d0c936c814f8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  flex: 1 1 320px;
  min-height: 280px;
}

.form-section {
  background: #f1ede4;
  border-top: 1px solid #d6d1c6;
  border-bottom: 1px solid #d6d1c6;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 26px rgba(30, 31, 28, 0.08);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c6c0b3;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #d6d1c6;
  padding-bottom: 8px;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 6vw 24px auto;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #d6d1c6;
  box-shadow: 0 12px 24px rgba(30, 31, 28, 0.12);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #2c2d27;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #f7f4ef;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(30, 31, 28, 0.12);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.simple-header {
  padding: 32px 6vw 20px;
  background: #f1ede4;
  border-bottom: 1px solid #d6d1c6;
}

.content {
  padding: 32px 6vw 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 26px rgba(30, 31, 28, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice {
  background: #fffaf2;
  border-radius: 16px;
  padding: 16px 20px;
}

@media (max-width: 720px) {
  .offset {
    margin-left: 0;
  }

  .sticky-cta {
    margin: 0 6vw 18px;
  }
}
