:root {
  --bg: #f7f1e8;
  --bg-soft: #efe5d6;
  --surface: rgba(255, 252, 247, 0.78);
  --surface-strong: #fffaf2;
  --ink: #171412;
  --muted: #665d56;
  --line: rgba(23, 20, 18, 0.12);
  --accent: #cb5f2d;
  --accent-deep: #8f3e18;
  --forest: #17352b;
  --shadow: 0 22px 60px rgba(43, 24, 12, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(203, 95, 45, 0.2), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(23, 53, 43, 0.16), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, #f1e6d7 100%);
  font-family: "Manrope", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand strong,
.hero h1,
.page-hero h1,
.section-head h2,
.section-copy h2,
.cta-band h2 {
  font-family: "Space Grotesk", sans-serif;
}

.brand small {
  display: block;
  color: var(--muted);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent), #ef9b61);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 10px 14px;
}

main {
  display: grid;
  gap: 48px;
  padding-bottom: 56px;
}

.hero,
.page-hero,
.section-grid,
.booking-layout,
.contact-layout,
.story-grid,
.service-list,
.stats-band,
.service-preview,
.portfolio-preview,
.testimonial-strip,
.cta-band,
.faq-list {
  margin-bottom: 8px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  min-height: 72vh;
  padding: 28px 0 12px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-text,
.page-hero p,
.section-copy p,
.service-card p,
.path-card p,
.story-card p,
.testimonial-card p,
.summary-card p,
.contact-form .helper-copy,
.booking-form .helper-copy {
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow,
.panel-kicker,
.path-label,
.service-tag,
.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-deep);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #ee925a);
  box-shadow: 0 16px 30px rgba(203, 95, 45, 0.25);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  border-color: var(--line);
}

.button-block {
  width: 100%;
}

.trust-row,
.check-list,
.detail-list,
.pipeline-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-row li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
}

.glass-card,
.path-card,
.service-card,
.service-detail-card,
.summary-card,
.success-card,
.story-card,
.testimonial-card,
.form-card,
.faq-item,
.crm-panel .summary-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
}

.glass-card,
.summary-card,
.success-card,
.path-card,
.service-card,
.service-detail-card,
.story-card,
.testimonial-card,
.form-card {
  padding: 28px;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0;
}

.price-line strong,
.service-meta strong,
.stats-band strong {
  font-size: 2rem;
  font-family: "Space Grotesk", sans-serif;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li,
.detail-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.check-list li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stats-band article {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 241, 0.8);
  border: 1px solid var(--line);
}

.stats-band span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.dual-path,
.cards-3,
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.path-card-accent {
  background: linear-gradient(180deg, rgba(23, 53, 43, 0.96), rgba(16, 28, 24, 0.96));
  color: white;
}

.path-card-accent p,
.path-card-accent .text-link {
  color: rgba(255, 255, 255, 0.8);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  font-weight: 800;
  color: var(--accent-deep);
}

.service-preview .section-head,
.testimonial-strip .section-head {
  margin-bottom: 20px;
}

.service-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(203, 95, 45, 0.12);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 24px;
}

.portfolio-card,
.review-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
}

.portfolio-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #ead8c6;
}

.portfolio-copy {
  padding: 22px 24px 24px;
}

.portfolio-copy h2,
.portfolio-copy h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.portfolio-card-large {
  grid-column: span 2;
}

.review-card {
  padding: 24px;
}

.review-card strong {
  display: block;
  margin-top: 14px;
  font-family: "Space Grotesk", sans-serif;
}

.review-card span {
  color: var(--muted);
}

.review-card-featured {
  background: linear-gradient(180deg, rgba(23, 53, 43, 0.96), rgba(16, 28, 24, 0.96));
  color: white;
}

.review-card-featured p,
.review-card-featured span {
  color: rgba(255, 255, 255, 0.82);
}

.review-stars {
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.testimonial-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  transform: scale(0.98);
  transition: transform 180ms ease, border-color 180ms ease;
}

.testimonial-card.is-active {
  transform: scale(1);
  border-color: rgba(203, 95, 45, 0.45);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(23, 53, 43, 0.96), rgba(39, 76, 62, 0.96));
  color: white;
}

.cta-band .eyebrow {
  color: rgba(255, 218, 187, 0.86);
}

.page-hero {
  max-width: 880px;
  padding-top: 32px;
}

.service-list,
.story-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 20px;
  align-items: center;
}

.service-tag {
  margin-bottom: 10px;
}

.booking-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.booking-form,
.contact-form {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(203, 95, 45, 0.25);
  border-color: rgba(203, 95, 45, 0.45);
}

.service-options,
.slot-grid {
  display: grid;
  gap: 12px;
}

.service-option,
.slot-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
}

.service-option.is-selected,
.slot-button.is-selected {
  border-color: rgba(203, 95, 45, 0.5);
  background: rgba(203, 95, 45, 0.12);
}

.service-option strong,
.slot-button strong {
  display: block;
}

.booking-summary {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

.compact {
  gap: 10px;
}

.is-hidden {
  display: none;
}

.pipeline-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.pipeline-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  border: 1px solid var(--line);
}

.pipeline-list li.is-active {
  background: rgba(203, 95, 45, 0.14);
  color: var(--accent-deep);
  border-color: rgba(203, 95, 45, 0.35);
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-weight: 800;
}

.faq-item p {
  padding: 0 28px 24px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 48px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 700ms ease forwards;
}

.reveal-delay-1 {
  animation-delay: 120ms;
}

.reveal-delay-2 {
  animation-delay: 220ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .section-grid,
  .booking-layout,
  .contact-layout,
  .service-detail-card,
  .cta-band {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .cards-3,
  .portfolio-grid,
  .review-grid,
  .dual-path,
  .testimonial-rail,
  .stats-band,
  .field-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card-large {
    grid-column: auto;
  }

  .booking-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0 4px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .site-shell {
    width: min(calc(100% - 20px), var(--max));
  }
}
