* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f2ee;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #2f4f4f;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 26px 0 10px;
  gap: 24px;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #efe2d7;
  padding: 6px 10px;
  border-radius: 16px;
  color: #5b3b2e;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-top: 16px;
}

.hero-text {
  flex: 1;
  padding: 12px 0;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  color: #3a3a3a;
  margin-bottom: 18px;
}

.hero-image {
  flex: 1.1;
  background: #eadfd6;
  border-radius: 18px;
  overflow: hidden;
}

.hero-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: #2f4f4f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
}

.section {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 6px;
}

.split {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .column {
  flex: 1;
}

.image-frame {
  background: #e8dfd7;
  border-radius: 16px;
  overflow: hidden;
}

.note {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.stacked-notes {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.grid-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #2f4f4f;
}

.card button,
.link-button {
  border: none;
  background: #f1c9a5;
  padding: 10px 14px;
  border-radius: 18px;
  cursor: pointer;
  color: #3a2a1d;
  font-weight: 600;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.accent-band {
  background: #efe2d7;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.accent-band .column {
  flex: 1;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7b8ab;
  font-size: 14px;
  background: #fbf8f5;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #2f4f4f;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 22px;
  cursor: pointer;
  font-weight: 600;
}

.inline-link {
  text-decoration: underline;
}

.sidebar-note {
  font-size: 14px;
  color: #4c3e34;
  padding-left: 12px;
  border-left: 3px solid #d7c2b2;
}

.footer {
  margin-top: 80px;
  padding: 30px 0 20px;
  border-top: 1px solid #d7c2b2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.sticky-cta button {
  background: #2f4f4f;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 22px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 600;
}

.accept-btn {
  background: #2f4f4f;
  color: #fff;
}

.reject-btn {
  background: #e8dfd7;
  color: #3a2a1d;
}

.bg-story {
  background: #fdf8f2;
  border-radius: 18px;
  padding: 22px;
}

.bg-workshop {
  background: #efe8e1;
  border-radius: 18px;
  padding: 22px;
}

.taglist {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: #2f4f4f;
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
}

.address-block {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .hero,
  .split,
  .accent-band {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
