:root {
  --bg: #fdfaf6;
  --bg-alt: #f7f1eb;
  --card: #ffffff;
  --card-alt: #fef6ed;
  --text: #1f2a37;
  --muted: #5f6c7b;
  --brand: #bf5534;
  --brand-strong: #76331d;
  --accent: #d87f6c;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(172, 134, 96, 0.25);
  --max-width: 1200px;
}


* {
  box-sizing: border-box;
}

body {
  font-family: "Adelle Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at 15% 10%, rgba(222, 138, 70, 0.18), transparent 60%),
    radial-gradient(circle at 90% 0, rgba(139, 178, 139, 0.25), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 60%, #f2ebe3 100%);
  min-height: 100vh;
}


img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
.section-header h2,
.hero h1 {
  font-family: "Adelle Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

a {
  color: var(--brand);
}


.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  z-index: 10;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(208, 187, 166, 0.3);
}

.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 24px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: clamp(30px, 4vw, 44px);
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .brand-logo {
    height: clamp(26px, 8vw, 38px);
  }
}

.brand-name {
  display: block;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.brand-tagline {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.site-nav {
  justify-self: center;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  padding: 0;
  margin: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a.is-active {
  color: var(--brand);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--brand);
}

.nav-toggle {
  display: none;
}

.header-cta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.ghost-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 12px 24px rgba(210, 158, 116, 0.35);
}

.btn.secondary {
  border: 1px solid rgba(194, 155, 114, 0.4);
  color: var(--brand);
  background: #fff7f0;
}

.btn.ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(194, 155, 114, 0.25);
}

.pill {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(222, 138, 70, 0.15);
  color: var(--brand);
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 16px;
}

.section-header p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

.hero {
  padding: 90px 0 60px;
}

.hero-shell {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero-desktop {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: stretch;
}

.hero-story {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 12px 0 12px;
}

.hero-proof article {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 1px solid rgba(194, 155, 114, 0.2);
  box-shadow: 0 18px 34px rgba(199, 169, 135, 0.25);
}

.hero-proof strong {
  display: block;
  font-size: 1.4rem;
  color: var(--brand-strong);
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.hero-benefits li {
  display: flex;
  gap: 10px;
  line-height: 1.4;
}

.hero-benefits li::before {
  content: "•";
  color: var(--accent);
  margin-right: 4px;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-bar {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: var(--muted);
}

.trust-bar .logos {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 600;
  color: var(--brand);
}

.hero-form-card {
  background: var(--card);
  padding: 28px;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 25px 60px rgba(199, 167, 129, 0.35);
  border: 1px solid rgba(194, 155, 114, 0.2);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-form-card .form-title {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.visual-teaser {
  padding: 80px 0;
}

.value-section {
  padding: 80px 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.value-grid article {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(194, 155, 114, 0.2);
  padding: 24px 26px;
  box-shadow: 0 15px 35px rgba(199, 167, 129, 0.18);
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.teaser-copy {
  background: linear-gradient(135deg, #ffffff, #fff2e6);
  padding: 32px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(194, 155, 114, 0.25);
  box-shadow: 0 25px 50px rgba(199, 167, 129, 0.25);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.teaser-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.teaser-steps li {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--muted);
}

.teaser-steps strong {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(194, 155, 114, 0.12);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.teaser-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.teaser-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  position: relative;
}

.preview-card {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.preview-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.preview-card span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  font-weight: 600;
}

.teaser-callout {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: 18px 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(194, 155, 114, 0.15);
  max-width: 220px;
}

.teaser-callout strong {
  display: block;
  color: var(--brand-strong);
  font-size: 1.2rem;
}

.visual-hero {
  padding: 60px 0 20px;
}

.visual-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
  align-items: center;
}

.visual-hero .pill {
  width: fit-content;
}

.visual-hero ul {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.visual-hero .hero-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 16px;
}

.visual-page {
  padding-top: 20px;
}

.hero-mobile {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(194, 155, 114, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(199, 167, 129, 0.35);
}

.mobile-proof {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mobile-proof li {
  flex: 1 1 100px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid rgba(194, 155, 114, 0.2);
  text-align: center;
}

.mobile-proof strong {
  display: block;
  color: var(--brand-strong);
}

.mobile-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mobile-form-card {
  background: #fff;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(194, 155, 114, 0.2);
  padding: 20px;
  box-shadow: 0 16px 35px rgba(199, 169, 135, 0.3);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-form-card h3 {
  margin: 0;
}

.mobile-sticky-bar {
  display: none;
}

.visualizer {
  padding: 80px 0;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  background: linear-gradient(135deg, #ffffff, #fdf0e3);
  border: 1px solid rgba(194, 155, 114, 0.3);
  border-radius: calc(var(--radius) + 8px);
  padding: 40px;
  box-shadow: 0 30px 60px rgba(205, 184, 166, 0.4);
}

.visual-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visual-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.visual-copy li {
  display: flex;
  gap: 8px;
}

.visual-copy li::before {
  content: "•";
  color: var(--brand);
  margin-right: 10px;
}

.visual-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(194, 155, 114, 0.25);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 35px rgba(205, 184, 166, 0.35);
}

.visual-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.upload-preview {
  border: 1px dashed rgba(31, 42, 55, 0.2);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 500;
}

.upload-preview img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(205, 184, 166, 0.4);
}

.style-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.style-block p {
  margin: 0;
  font-weight: 600;
}

.style-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.style-card {
  border: 1px solid rgba(31, 42, 55, 0.15);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fffaf4;
}

.style-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.style-card h3 {
  margin: 0 0 6px;
}

.style-card p {
  margin: 4px 0 0;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.9rem;
}

.style-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 2px 10px;
  background: rgba(194, 155, 114, 0.2);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 600;
}

.style-card.active {
  border-color: var(--brand);
  box-shadow: 0 12px 24px rgba(205, 184, 166, 0.4);
}

.visual-form input,
.visual-form select,
.visual-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(31, 42, 55, 0.15);
  padding: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}

.visual-form textarea {
  resize: vertical;
  min-height: 90px;
}

.visual-form input[type="file"] {
  padding: 10px;
  background: #fff9f4;
}

.visual-form input:focus,
.visual-form select:focus,
.visual-form textarea:focus {
  outline: 2px solid rgba(194, 155, 114, 0.5);
}

.visual-form .visual-submit {
  width: 100%;
  text-align: center;
}

.visual-status {
  min-height: 24px;
  font-weight: 600;
}

.visual-preview {
  background: #fff;
  border-radius: var(--radius);
  border: 1px dashed rgba(31, 42, 55, 0.2);
  padding: 18px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.visual-preview img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 40px rgba(205, 184, 166, 0.45);
}

.preview-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 10px;
}

.preview-controls button {
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(252, 245, 238, 0.9);
  color: var(--brand);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(205, 184, 166, 0.4);
}

.preview-controls button:hover {
  background: #fff;
}

.preview-placeholder {
  text-align: center;
  color: var(--muted);
}

.visual-progress {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.visual-progress strong {
  display: block;
  font-size: 1.4rem;
}

.progress-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(194, 155, 114, 0.3);
  border-top-color: var(--brand);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.badges {
  padding: 50px 0;
}

.badges .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.badge {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(194, 155, 114, 0.2);
  background: #fff;
  box-shadow: 0 12px 28px rgba(205, 184, 166, 0.25);
}

.badge strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.services {
  padding: 70px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

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

.service-list article {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(194, 155, 114, 0.2);
  padding: 22px;
  box-shadow: 0 10px 25px rgba(18, 18, 18, 0.08);
}

.service-list h3 {
  margin-top: 0;
}

.footnote {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 18px;
}

.service-card {
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fef9f4);
  padding: 28px;
  border: 1px solid rgba(194, 155, 114, 0.15);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(214, 192, 170, 0.25);
}

.service-card h3 {
  margin: 0;
  color: var(--text);
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.process {
  padding: 70px 0;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.timeline li {
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(194, 155, 114, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(214, 192, 170, 0.25);
}

.timeline li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(222, 138, 70, 0.12), transparent 65%);
  pointer-events: none;
}

.timeline h3 {
  margin: 0 0 8px;
}

.timeline h3 span {
  font-size: 0.85rem;
  color: var(--brand);
  margin-left: 8px;
}

.projects {
  padding: 70px 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.project-card {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(194, 155, 114, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(205, 184, 166, 0.25);
}

.project-image {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(194, 155, 114, 0.15);
}

.project-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.project-location {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(31, 42, 55, 0.6);
}

.project-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.project-link {
  margin-top: auto;
  text-decoration: none;
  color: var(--brand-strong);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.project-link::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.project-link:hover::after {
  transform: translateX(3px);
}

.partners {
  padding: 80px 0;
}

.partner-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.partner-track {
  display: flex;
  gap: 60px;
  animation: partner-scroll 45s linear infinite;
  width: max-content;
}

.partner-logo {
  width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.partner-logo:hover {
  opacity: 1;
}

@keyframes partner-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.legal-note {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.85rem;
}

.testimonials {
  padding: 70px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.testimonial-grid article {
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(194, 155, 114, 0.2);
  min-height: 220px;
  position: relative;
  box-shadow: 0 12px 32px rgba(214, 192, 170, 0.3);
}

.testimonial-grid article::before {
  content: "\201C";
  font-size: 48px;
  color: rgba(194, 155, 114, 0.35);
  position: absolute;
  top: 12px;
  left: 16px;
}

.testimonial-grid p {
  margin-top: 24px;
  color: var(--muted);
}

.faq {
  padding: 70px 0;
}

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

.faq-grid article {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(194, 155, 114, 0.2);
  padding: 20px 22px;
  box-shadow: 0 12px 28px rgba(18, 18, 18, 0.08);
}

.cta {
  padding: 80px 0;
}

.cta .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding: 40px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(130deg, #ffffff, #fdf3ea);
  border: 1px solid rgba(194, 155, 114, 0.25);
  box-shadow: 0 18px 40px rgba(205, 184, 166, 0.35);
}

.cta-copy h2 {
  margin-top: 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.cta-points {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.cta-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: 10px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-details a {
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid rgba(194, 155, 114, 0.3);
  padding-bottom: 8px;
}

.contact-details span {
  color: var(--muted);
  display: block;
  font-size: 14px;
}

.lead-form,
.cta-form {
  display: grid;
  gap: 18px;
}

.form-step {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.form-step.is-active {
  display: flex;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-callout {
  font-weight: 600;
  color: var(--brand);
  margin-top: 18px;
}

.lead-form label,
.cta-form label {
  font-size: 0.95rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.cta-form input,
.cta-form select,
.cta-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--text);
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: 2px solid rgba(222, 138, 70, 0.4);
}

.consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.consent input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.form-feedback {
  min-height: 24px;
  color: var(--brand-strong);
}

.will-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid rgba(194, 155, 114, 0.2);
  background: #fff;
  text-align: center;
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--brand);
  text-decoration: none;
}


@media (max-width: 960px) {
  .site-header .container {
    grid-template-columns: 1fr auto;
  }

  .site-nav ul {
    position: absolute;
    top: 70px;
    right: 24px;
    background: #fff;
    padding: 18px 24px;
    border-radius: var(--radius);
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav ul.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 155, 114, 0.15);
    border-radius: 999px;
    padding: 8px 16px;
    border: none;
    color: var(--brand);
    cursor: pointer;
  }

  .hero-desktop {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header .container {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }

  .header-cta {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: flex;
  }

  .teaser-preview {
    grid-template-columns: 1fr;
  }

  .teaser-callout {
    position: static;
    margin-top: 12px;
    width: 100%;
    max-width: none;
  }

  .cta .grid {
    padding: 24px;
  }

  .mobile-proof {
    flex-direction: column;
  }

  .mobile-actions {
    flex-direction: column;
  }

  .mobile-sticky-bar {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    z-index: 15;
  }

  .mobile-sticky-bar a {
    color: #fff;
    text-decoration: none;
  }

  .mobile-sticky-bar .btn.primary {
    flex: 1;
    justify-content: center;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.top-bar {
  background: #76331d;
  color: #fff;
  font-size: 0.95rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
}

.top-bar__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-bar__actions a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.top-bar__actions .link-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
