*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #FBF5EE;
  --cream-dark: #EFE3D4;
  --cream-mid: #F5EADC;
  --text: #2C2017;
  --text-light: #6B5744;
  --primary: #B5451B;
  --primary-dark: #8F3414;
  --primary-light: #D4613A;
  --sage: #5C7A4E;
  --sage-light: #8FAF80;
  --white: #FFFFFF;
  --border: #DDD0C2;
  --shadow: 0 2px 20px rgba(44, 32, 23, 0.08);
  --shadow-strong: 0 8px 40px rgba(44, 32, 23, 0.14);
  --radius: 4px;
  --radius-lg: 8px;

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--text);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 16px;
  color: var(--text);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 48px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(181, 69, 27, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text);
  font-weight: normal;
  letter-spacing: -0.01em;
}

.nav-logo span {
  color: var(--primary);
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--text);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 24px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-form {
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 420px;
  box-shadow: var(--shadow-strong);
}

.hero-form p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
  font-style: italic;
}

.forwhom {
  background: var(--white);
}

.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.forwhom-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream-mid);
  transition: box-shadow 0.2s;
}

.forwhom-card:hover {
  box-shadow: var(--shadow);
}

.forwhom-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.forwhom-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.forwhom-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: var(--font-serif);
}

.forwhom-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.55;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.howworks {
  background: var(--cream-dark);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  counter-reset: steps;
}

.step {
  padding: 32px 28px;
  position: relative;
  counter-increment: steps;
}

.step::before {
  content: counter(steps);
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--cream-dark);
  position: absolute;
  top: 16px;
  left: 20px;
  line-height: 1;
  opacity: 0;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.55;
}

.outcomes-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.outcomes-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.outcomes-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.outcomes-list {
  list-style: none;
}

.outcomes-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
  line-height: 1.5;
}

.outcomes-list li:last-child {
  border-bottom: none;
}

.check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check-icon svg {
  width: 12px;
  height: 12px;
  fill: white;
}

.faq {
  background: var(--white);
}

.faq-list {
  max-width: 680px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.25s;
  margin-right: 4px;
  margin-bottom: 4px;
}

.faq-item.open .faq-arrow {
  transform: rotate(-135deg);
  margin-bottom: 0;
  margin-top: 4px;
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

.leadform-section {
  background: var(--text);
  padding: 80px 0;
}

.leadform-section .section-title {
  color: var(--white);
}

.leadform-section .section-lead {
  color: rgba(255,255,255,0.7);
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-text h2 {
  color: var(--white);
}

.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
  background: var(--white);
}

.form-input::placeholder {
  color: #B8A89A;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.form-consent {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-consent a {
  color: var(--primary);
}

.footer {
  background: #1C150E;
  padding: 48px 0 32px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.footer-brand span {
  color: var(--primary-light);
}

.footer-tagline {
  font-size: 0.85rem;
  max-width: 240px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-legal {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #2C2017;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 24px;
  display: none;
}

.cookie-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  min-width: 260px;
}

.cookie-text a {
  color: var(--primary-light);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 10px 22px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.2s;
}

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-decline {
  padding: 10px 18px;
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.92rem;
  transition: color 0.2s, border-color 0.2s;
}

.cookie-decline:hover {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.success-box {
  max-width: 480px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--sage);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  fill: white;
}

.success-box h1 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.success-box p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.legal-page {
  padding: 60px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin-top: 36px;
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.legal-page p, .legal-page li {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-page ul, .legal-page ol {
  padding-left: 24px;
}

@media (max-width: 900px) {
  .outcomes-wrap {
    grid-template-columns: 1fr;
  }

  .outcomes-img {
    display: none;
  }

  .form-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .forwhom-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .nav-cta {
    display: none;
  }
}
