* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f7f6f4;
  line-height: 1.6;
}

a {
  color: #0f3d2e;
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-nav {
  padding: 18px 0;
  border-bottom: 1px solid #dedbd6;
  background-color: #f7f6f4;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  background-color: #0f3d2e;
  color: #fff;
  padding: 6px 10px;
}

.hero {
  padding: 48px 0;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.hero-title {
  font-size: 2.5rem;
  margin: 0 0 16px;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin: 0 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: none;
  background-color: #0f3d2e;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background-color: #c9b78d;
  color: #1c1c1c;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background-color: #efece6;
}

.section.dark {
  background-color: #1f2a24;
  color: #f7f6f4;
}

.bg-workshop {
  background-color: #1f2a24;
  background-image: url("https://images.pexels.com/photos/8986033/pexels-photo-8986033.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-lab {
  background-color: #1f2a24;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 16px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background-color: #fff;
  padding: 18px;
  border: 1px solid #dedbd6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
}

.img-frame {
  background-color: #d7d4cf;
  overflow: hidden;
}

.img-frame.tall {
  height: 340px;
}

.img-frame.medium {
  height: 260px;
}

.img-frame.small {
  height: 200px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-panel {
  background-color: #fff;
  border: 1px solid #dedbd6;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px;
  border: 1px solid #c9c3ba;
  width: 100%;
  font: inherit;
}

.inline-cta {
  display: inline-block;
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #0f3d2e;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta button {
  background-color: #c9b78d;
  color: #1c1c1c;
  border: none;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  padding: 32px 0;
  border-top: 1px solid #dedbd6;
  background-color: #f7f6f4;
  font-size: 0.9rem;
}

.footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background-color: #fff;
  border: 1px solid #dedbd6;
  padding: 16px;
  z-index: 11;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background-color: #0f3d2e;
  color: #fff;
}

.cookie-actions .reject {
  background-color: #c9b78d;
  color: #1c1c1c;
}

.muted {
  color: #4a4a4a;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
