/* Base */
:root {
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --brand: #2a6d8f;
  --accent: #f0b429;
  --soft: #f6f3ef;
  --paper: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 28px 0 18px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  border: 1px solid #ded6cc;
  padding: 6px 10px;
  border-radius: 20px;
  background: #f9f6f1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

nav a,
.ghost-link {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid transparent;
}

nav a:hover,
.ghost-link:hover {
  border-color: #d7d1c9;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 30px;
  padding: 32px 0 50px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 38px;
  margin: 0 0 18px;
}

.hero-text p {
  color: var(--muted);
  margin: 0 0 18px;
}

.hero-card {
  flex: 0.9;
  background: var(--soft);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 14px 30px var(--shadow);
}

.image-frame {
  background-color: #e6e0d8;
  border-radius: 14px;
  overflow: hidden;
}

.hero-card img {
  border-radius: 14px;
  width: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
  background: var(--brand);
  color: white;
}

.btn.alt {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.split-section {
  display: flex;
  gap: 30px;
  padding: 46px 0;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background: var(--paper);
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 8px 22px var(--shadow);
}

.panel h2 {
  margin-top: 0;
}

.offset-block {
  flex: 0.8;
  background: #fdf7ef;
  border-radius: 18px;
  padding: 20px;
  margin-top: 22px;
}

.offset-block img {
  border-radius: 14px;
}

.story-band {
  background: #faf4ec;
  padding: 36px 0;
}

.story-grid {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.story-card {
  flex: 1;
  padding: 18px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 6px 18px var(--shadow);
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px 18px 18px;
}

.card-body h3 {
  margin-top: 6px;
}

.accent-strip {
  background: var(--brand);
  color: white;
  padding: 36px 0;
}

.accent-strip .container {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.quote {
  font-style: italic;
  color: #3c3c3c;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.pricing {
  padding: 46px 0;
}

.pricing .cards {
  margin-top: 20px;
}

.price-tag {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
}

.form-shell {
  background: #f4f7f8;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 10px 26px var(--shadow);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-size: 14px;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfcfcf;
  font-family: inherit;
}

.form-shell textarea {
  min-height: 110px;
  resize: vertical;
}

.aside-note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 34px 0 40px;
  background: #faf7f2;
}

.footer .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a {
  text-decoration: underline;
}

.disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 24px var(--shadow);
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  z-index: 20;
}

.banner.hidden {
  display: none;
}

.banner p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 20px;
  background: #1f1f1f;
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 15;
  box-shadow: 0 8px 18px var(--shadow);
}

.sticky-cta button {
  background: var(--accent);
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.background-panel {
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 220px;
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?w=800&q=80");
  background-color: #e6e0d8;
}

.page-title {
  font-size: 32px;
  margin: 0 0 16px;
}

.simple-section {
  padding: 40px 0;
}

.simple-section ul {
  padding-left: 18px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 16px var(--shadow);
}

.legal-block {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 6px 18px var(--shadow);
  margin-bottom: 16px;
}

.inline-link {
  color: var(--brand);
  text-decoration: underline;
}

@media (max-width: 920px) {
  .hero,
  .split-section,
  .story-grid {
    flex-direction: column;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .sticky-cta {
    left: 18px;
    right: auto;
  }
}
