* {
  box-sizing: border-box;
}

:root {
  --bg: #f8f6f2;
  --ink: #1d1b19;
  --muted: #6a625a;
  --accent: #c96a3b;
  --accent-dark: #9b4e2c;
  --panel: #ffffff;
  --soft: #efe9e2;
  --line: #e2ddd6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0 10px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 16px;
  background: var(--soft);
}

.nav-links a:hover {
  background: var(--accent);
  color: #fff;
}

.hero {
  position: relative;
  margin-top: 20px;
  border-radius: 26px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: #d8cfc5;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent 60%);
  color: #fff;
  width: 100%;
}

.hero-content h1 {
  margin: 0 0 10px;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
}

.hero-content p {
  max-width: 520px;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
}

.btn:hover {
  background: var(--accent-dark);
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: var(--soft);
}

.section.panel {
  background: var(--panel);
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card img {
  border-radius: 14px;
  height: 160px;
  width: 100%;
}

.img-frame {
  background: #e7ded5;
  border-radius: 18px;
  overflow: hidden;
}

.img-frame.tall {
  max-height: 360px;
}

.bg-textile {
  background-color: #d8d0c7;
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-workshop {
  background-color: #d6ccc2;
  background-image: url("https://images.unsplash.com/photo-1490474418585-ba9bad8fd0ea?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.quote {
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: #fff8f2;
  border-radius: 12px;
  margin-bottom: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 260px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.price-card h3 {
  margin-top: 0;
}

.price {
  font-size: 1.6rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.form-box {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.field {
  margin-bottom: 16px;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.footer {
  padding: 40px 0 60px;
  background: #141312;
  color: #d9d0c7;
}

.footer a {
  color: #d9d0c7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.disclaimer {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #b8ada3;
}

.banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  z-index: 30;
}

.banner p {
  flex: 1 1 220px;
  margin: 0;
}

.banner button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.banner .accept {
  background: var(--accent);
  color: #fff;
}

.banner .reject {
  background: #eee;
}

.hidden {
  display: none;
}

.muted {
  color: var(--muted);
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.legal-block {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  margin-bottom: 18px;
}

.contact-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

@media (max-width: 768px) {
  .hero-content {
    padding: 32px;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}
