* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1e1e;
  background: #f6f5f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-label {
  font-size: 0.85rem;
  color: #5b5750;
  border: 1px solid #cbc4b7;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fefbf6;
}

.hero {
  background: #111010;
  color: #fdfaf3;
  border-radius: 28px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0;
}

.hero-copy {
  font-size: 1.05rem;
  color: #f0eae0;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #1e1e1e;
  background: #f9f1dd;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary {
  background: transparent;
  border-color: #f9f1dd;
  color: #f9f1dd;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/37426135/pexels-photo-37426135.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.38;
}

.section {
  padding: 70px 0;
}

.section-tight {
  padding: 40px 0;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 18px;
}

.section-subtitle {
  margin: 0 0 24px;
  color: #4b4a44;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.img-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #d9d3c7;
  padding: 8px;
}

.story-block {
  background: #fefaf2;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pill {
  border: 1px solid #cbbfae;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  background: #fffaf2;
}

.highlight {
  background: #21211d;
  color: #f9f1dd;
  border-radius: 24px;
  padding: 50px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}

.card img {
  border-radius: 12px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #e1dad0;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2b2a24;
}

.form-wrap {
  background: #fefaf2;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfc7ba;
  background: #fffdf9;
  font-size: 0.95rem;
}

.footer {
  padding: 50px 0 70px;
  background: #1e1d1a;
  color: #f2ede2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer small {
  color: #c8c1b3;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: #f9f1dd;
  border: 1px solid #1e1e1e;
  padding: 16px;
  border-radius: 16px;
  max-width: 240px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #d2c9bc;
  border-radius: 14px;
  padding: 16px;
  width: min(640px, 92%);
  display: none;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.section-bg {
  background-size: cover;
  background-position: center;
  color: #1e1e1e;
  border-radius: 26px;
  padding: 52px;
}

.bg-tools {
  background-image: url("https://images.pexels.com/photos/16135853/pexels-photo-16135853.jpeg");
  background-color: #d1c9be;
}

.bg-workshop {
  background-image: url("https://images.pexels.com/photos/32126030/pexels-photo-32126030.jpeg");
  background-color: #d7cbbd;
}

.bg-focus {
  background-image: url("https://images.pexels.com/photos/14637833/pexels-photo-14637833.jpeg");
  background-color: #dcd2c7;
}

.bg-detail {
  background-image: url("https://images.pexels.com/photos/9607048/pexels-photo-9607048.jpeg");
  background-color: #e2d8cc;
}

.meta-note {
  font-size: 0.92rem;
  color: #4f4c45;
}

.inline-link {
  text-decoration: underline;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 280px;
}

.simple-header {
  padding: 50px 0 20px;
}

.legal-text {
  background: #fffdf9;
  border: 1px solid #e2d9cc;
  border-radius: 16px;
  padding: 24px;
}

.contact-box {
  background: #fffdf9;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e2d9cc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plain-list {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 720px) {
  .hero {
    padding: 40px 28px;
  }

  .section-bg {
    padding: 36px;
  }

  .sticky-cta {
    position: static;
    max-width: 100%;
  }
}
