@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&family=Montserrat:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --background: hsl(48 29% 96%);
  --background-secondary: hsl(45 17% 91%);
  --foreground: hsl(128 11% 14%);

  --card: hsl(0 0% 100%);
  --border: hsl(33 22% 81%);

  --sage: hsl(135 8% 63%);
  --sage-light: hsl(135 12% 73%);
  --clay: hsl(33 22% 81%);
  --linen: hsl(48 29% 96%);
  --sand: hsl(45 17% 91%);
  --deep: hsl(128 11% 14%);
  --apricot: hsl(30 86% 72%);
  --deep-rgb: 32, 40, 33;
  --clay-rgb: 217, 208, 196;
  --linen-rgb: 248, 247, 242;
  --sand-rgb: 236, 234, 228;
  --sage-rgb: 153, 168, 157;
  --apricot-rgb: 245, 184, 122;

  --deep-80: rgba(var(--deep-rgb), 0.8);
  --deep-75: rgba(var(--deep-rgb), 0.75);
  --deep-72: rgba(var(--deep-rgb), 0.72);
  --deep-70: rgba(var(--deep-rgb), 0.7);
  --deep-68: rgba(var(--deep-rgb), 0.68);
  --deep-65: rgba(var(--deep-rgb), 0.65);
  --deep-62: rgba(var(--deep-rgb), 0.62);
  --deep-60: rgba(var(--deep-rgb), 0.6);
  --deep-45: rgba(var(--deep-rgb), 0.45);
  --deep-42: rgba(var(--deep-rgb), 0.42);
  --deep-40: rgba(var(--deep-rgb), 0.4);
  --deep-35: rgba(var(--deep-rgb), 0.35);
  --deep-28: rgba(var(--deep-rgb), 0.28);
  --deep-27: rgba(var(--deep-rgb), 0.27);
  --deep-24: rgba(var(--deep-rgb), 0.24);
  --deep-20: rgba(var(--deep-rgb), 0.2);

  --clay-96: rgba(var(--clay-rgb), 0.96);
  --clay-84: rgba(var(--clay-rgb), 0.84);
  --clay-75: rgba(var(--clay-rgb), 0.75);
  --clay-65: rgba(var(--clay-rgb), 0.65);
  --clay-60: rgba(var(--clay-rgb), 0.6);
  --clay-50: rgba(var(--clay-rgb), 0.5);

  --sage-15: rgba(var(--sage-rgb), 0.15);
  --sage-14: rgba(var(--sage-rgb), 0.14);
  --sage-10: rgba(var(--sage-rgb), 0.1);
  --sage-52: rgba(var(--sage-rgb), 0.52);
  --sage-65: rgba(var(--sage-rgb), 0.65);

  --apricot-12: rgba(var(--apricot-rgb), 0.12);
  --apricot-20: rgba(var(--apricot-rgb), 0.2);
  --apricot-30: rgba(var(--apricot-rgb), 0.3);
  --apricot-45: rgba(var(--apricot-rgb), 0.45);
  --apricot-70: rgba(var(--apricot-rgb), 0.7);

  --linen-90: rgba(var(--linen-rgb), 0.9);
  --linen-78: rgba(var(--linen-rgb), 0.78);
  --linen-52: rgba(var(--linen-rgb), 0.52);
  --linen-40: rgba(var(--linen-rgb), 0.4);
  --linen-18: rgba(var(--linen-rgb), 0.18);
  --linen-10: rgba(var(--linen-rgb), 0.1);
  --linen-5: rgba(var(--linen-rgb), 0.05);

  --sand-70: rgba(var(--sand-rgb), 0.7);

  --radius: 0.5rem;
  --radius-card: 1rem;
  --radius-control: 0.7rem;
  --radius-button: 999px;
  --base-font-size: 16px;
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Montserrat", "Inter", "Segoe UI", Arial, sans-serif;
  --container: 1200px;
  --shadow-sm: 0 4px 16px rgba(31, 40, 34, 0.06);
  --shadow-md: 0 14px 30px rgba(31, 40, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: var(--base-font-size);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.14;
  color: var(--deep);
}

h1 {
  font-size: clamp(1.875rem, 1.2vw + 1.4rem, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 1.2vw + 1.1rem, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.13rem;
  font-weight: 700;
}

p {
  margin: 0;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

button,
input {
  font: inherit;
}

input,
button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin: 0 auto;
}

.max-5xl {
  max-width: 1024px;
}

.max-4xl {
  max-width: 960px;
}

.max-3xl {
  max-width: 768px;
}

.max-2xl {
  max-width: 672px;
}

.section {
  padding: 4rem 0;
}

.cms-section-design {
  background: var(--cms-section-bg, transparent);
  background-image: var(--cms-section-bg-image, none);
  background-position: var(--cms-section-bg-position, center center);
  background-size: var(--cms-section-bg-size, cover);
  background-repeat: var(--cms-section-bg-repeat, no-repeat);
  padding-top: var(--cms-section-pt-desktop, var(--cms-section-pt, 0));
  padding-bottom: var(--cms-section-pb-desktop, var(--cms-section-pb, 0));
}

.section-sand {
  background: var(--sand);
}

.center-text {
  text-align: center;
}

.space-y-2 > * + * {
  margin-top: 0.45rem;
}

.text-sage {
  color: var(--sage);
}

.text-apricot {
  color: var(--apricot);
}

.muted {
  color: var(--deep-62);
}

.card {
  background: var(--card);
  border: 1px solid var(--clay-84);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 2.75rem;
  padding: 0 1.45rem;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn i {
  width: 1rem;
  height: 1rem;
}

.btn:hover {
  transform: scale(1.03);
}

.btn-warm {
  background: var(--apricot);
  border-color: var(--apricot);
  color: var(--deep);
}

.btn-warm:hover {
  background: #e7a565;
  border-color: #e7a565;
}

.btn-outline {
  background: transparent;
  border-color: var(--deep-24);
  color: var(--deep);
}

.btn-outline:hover {
  background: var(--sand);
}

.btn-ghost {
  height: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 500;
}

.btn-ghost:hover {
  transform: none;
  color: #7e8f82;
}

.btn-sm {
  height: 2.45rem;
  padding: 0 1.1rem;
  font-size: 0.875rem;
}

.full {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

[data-cms-align="left"] {
  text-align: left;
}

[data-cms-align="center"] {
  text-align: center;
}

[data-cms-align="right"] {
  text-align: right;
}

.button-row[data-cms-align="center"] {
  justify-content: center;
}

.button-row[data-cms-align="right"] {
  justify-content: flex-end;
}

a.btn[data-cms-align="center"],
button.btn[data-cms-align="center"] {
  margin-left: auto;
  margin-right: auto;
}

a.btn[data-cms-align="right"],
button.btn[data-cms-align="right"] {
  margin-left: auto;
}

.site-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: var(--linen-90);
  border-bottom: 1px solid var(--clay-60);
}

.nav-inner {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--deep);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
}

.logo-image {
  max-height: 2rem;
  width: auto;
}

.logo-text {
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-links a,
.nav-links button,
.mobile-menu a,
.mobile-menu button,
.mobile-sub-toggle {
  border: none;
  padding: 0;
  background: none;
  color: var(--deep-72);
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links button:hover,
.mobile-menu a:hover,
.mobile-menu button:hover,
.mobile-sub-toggle:hover {
  color: var(--deep);
}

.nav-links a.active,
.mobile-menu a.active {
  color: var(--deep);
  font-weight: 500;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-dropdown-toggle i {
  font-size: 0.68rem;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i,
.nav-dropdown.is-open .nav-dropdown-toggle i {
  transform: rotate(90deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  min-width: 15rem;
  display: grid;
  gap: 0.2rem;
  padding: 0.45rem;
  border: 1px solid var(--clay-75);
  border-radius: var(--radius-control);
  background: var(--card);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  width: 100%;
  padding: 0.55rem 0.7rem !important;
  border-radius: calc(var(--radius-control) - 4px);
  font-size: 0.86rem !important;
}

.dropdown-link:hover {
  background: var(--sand);
}

.dropdown-link-parent {
  font-weight: 600;
  border-bottom: 1px solid var(--clay-60);
  margin-bottom: 0.2rem;
  padding-bottom: 0.6rem !important;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--clay-75);
  background: var(--card);
  border-radius: var(--radius-control);
  width: 2.4rem;
  height: 2.4rem;
  color: var(--deep);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle i {
  font-size: 1rem;
}

.mobile-drawer-shell {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 70;
  pointer-events: none;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(var(--deep-rgb), 0.35);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.mobile-drawer {
  position: absolute;
  right: 0;
  top: 0;
  width: min(88vw, 390px);
  height: 100dvh;
  background: var(--card);
  border-left: 1px solid var(--clay-75);
  box-shadow: -12px 0 28px rgba(15, 23, 42, 0.18);
  transform: translateX(102%);
  transition: transform 0.24s ease;
  display: grid;
  grid-template-rows: auto 1fr;
}

.has-mobile-nav-open .mobile-drawer-shell {
  pointer-events: auto;
}

.has-mobile-nav-open .mobile-drawer-backdrop {
  opacity: 1;
}

.has-mobile-nav-open .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer-head {
  height: 3.75rem;
  padding: 0 1rem;
  border-bottom: 1px solid var(--clay-65);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.mobile-drawer-close {
  border: 1px solid var(--clay-75);
  background: var(--card);
  border-radius: var(--radius-control);
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu {
  padding: 0.65rem 0.75rem 1.25rem;
  overflow: auto;
  display: grid;
  gap: 0.35rem;
}

.mobile-nav-item {
  display: grid;
  gap: 0.25rem;
}

.mobile-nav-link,
.mobile-sub-toggle {
  width: 100%;
  min-height: 2.25rem;
  padding: 0 0.5rem !important;
  border-radius: var(--radius-control);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.94rem !important;
}

.mobile-nav-link:hover,
.mobile-sub-toggle:hover {
  background: var(--sand);
}

.mobile-sub-list {
  display: none;
  margin-left: 0.55rem;
  padding-left: 0.55rem;
  border-left: 1px solid var(--clay-65);
}

.mobile-nav-item.is-open > .mobile-sub-list {
  display: grid;
  gap: 0.2rem;
}

.mobile-sub-toggle i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.mobile-nav-item.is-open > .mobile-sub-toggle i {
  transform: rotate(90deg);
}

.has-mobile-nav-open {
  overflow: hidden;
}

.hero-section {
  min-height: calc(100vh - 4rem);
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.5rem;
}

.hero-copy h1 {
  font-size: clamp(1.875rem, 2.6vw + 1rem, 3rem);
  line-height: 1.1;
}

.hero-eyebrow {
  font-size: 0.875rem;
  color: var(--sage);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-subline {
  font-size: clamp(1.125rem, 0.55vw + 0.95rem, 1.25rem);
  color: var(--deep-65);
  max-width: 34rem;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--sage-14);
  color: var(--deep-70);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
}

.hero-badge i {
  width: 1rem;
  height: 1rem;
  color: var(--sage);
}

.hero-image-wrap {
  width: min(100%, 20rem);
  margin-left: auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--clay-60);
}

.hero-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 80 / 104;
  object-fit: cover;
  object-position: top;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.about-copy {
  display: grid;
  gap: 1.25rem;
}

.about-text {
  display: grid;
  gap: 0.85rem;
  color: var(--deep-70);
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-text.small {
  font-size: 0.9rem;
}

.newsletter-card {
  padding: 2rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.inline-form {
  display: flex;
  gap: 0.7rem;
}

.inline-form input {
  flex: 1;
  min-height: 2.75rem;
  height: auto;
  border-radius: var(--radius-button);
  border: 1px solid var(--clay-96);
  background: var(--background);
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  line-height: 1.35;
}

.inline-form input::placeholder {
  color: var(--deep-35);
}

.inline-form input:focus-visible {
  outline: 2px solid var(--apricot-45);
  outline-offset: 1px;
}

.form-feedback {
  min-height: 1.2rem;
  font-size: 0.82rem;
  color: var(--sage);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  margin: 0.9rem auto 0;
  max-width: 34rem;
  font-size: 0.875rem;
  color: var(--deep-60);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.offer-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(31, 40, 34, 0.09);
}

.offer-icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-control);
  background: var(--sage-14);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-icon-wrap i {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
}

.offer-highlights {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.offer-highlights li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--deep-72);
  font-size: 0.88rem;
}

.offer-highlights i {
  width: 0.9rem;
  height: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  line-height: 1;
  color: var(--apricot);
  flex-shrink: 0;
}

.price {
  margin-top: 0.1rem;
  color: var(--sage);
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.offer-detail {
  margin-top: 0.1rem;
  border-radius: var(--radius-control);
  background: var(--sand);
  color: var(--deep-75);
  font-size: 0.88rem;
  line-height: 1.65;
  padding: 0.95rem 0.95rem 0.95rem 1rem;
  position: relative;
  animation: fade-in 0.45s ease forwards;
}

.offer-detail-close {
  border: none;
  background: transparent;
  padding: 0;
  color: var(--deep-45);
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
}

.offer-detail-close i {
  width: 0.95rem;
  height: 0.95rem;
}

.funnel-subline {
  margin: 0.75rem auto 0;
  font-size: 0.875rem;
  color: var(--deep-60);
}

.funnel-shell {
  margin-top: 1.1rem;
}

.funnel-card {
  background: var(--card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: clamp(1rem, 1.7vw, 2rem);
  text-align: left;
}

.progress-track {
  width: 100%;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--clay-50);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: var(--sage);
  transition: width 0.3s ease;
}

.funnel-step {
  margin-top: 0.7rem;
  font-size: 0.74rem;
  color: var(--deep-42);
}

.funnel-question {
  margin-top: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--deep);
}

.funnel-options {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.funnel-option {
  width: 100%;
  text-align: left;
  border-radius: var(--radius-control);
  border: 1px solid var(--clay-75);
  background: var(--card);
  padding: 0.85rem 1rem;
  cursor: pointer;
  color: var(--deep-80);
  font-size: 0.88rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.funnel-option:hover {
  border-color: var(--apricot-70);
  background: var(--apricot-12);
}

.funnel-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  border: 2px solid var(--clay-75);
  margin-right: 0.65rem;
  font-size: 0.76rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--deep-45);
}

.funnel-result-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--apricot);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.funnel-result-head i {
  width: 0.95rem;
  height: 0.95rem;
}

.funnel-result-copy {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.45rem;
}

.funnel-result-copy p {
  color: var(--deep-60);
  font-size: 0.95rem;
  line-height: 1.62;
}

.funnel-result-points {
  margin-top: 0.4rem;
  display: grid;
  gap: 0.45rem;
}

.funnel-result-points li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--deep-65);
  font-size: 0.88rem;
}

.funnel-result-points li::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--apricot);
  flex-shrink: 0;
}

.line-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.line-title > span {
  width: 2.5rem;
  height: 2px;
  border-radius: 999px;
  background: var(--apricot);
}

.point-list {
  display: grid;
  gap: 0.9rem;
}

.point-item {
  padding: 1rem 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.point-item:hover {
  border-color: var(--sage-52);
  box-shadow: 0 8px 18px rgba(31, 40, 34, 0.08);
}

.point-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--apricot-20);
  color: var(--apricot);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-icon i {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
}

.work-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.work-item {
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--deep-80);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.work-item:hover {
  box-shadow: 0 8px 18px rgba(31, 40, 34, 0.09);
  transform: translateY(-1px);
}

.work-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--sage-15);
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.work-icon i {
  width: 1.05rem;
  height: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
}

.contact-perks {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem 1.3rem;
}

.contact-perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--deep-60);
}

.contact-perks i {
  width: 0.95rem;
  height: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  line-height: 1;
  color: var(--sage);
}

.booking-card {
  margin-top: 2.2rem;
  padding: 1.8rem 2rem;
}

.booking-card > h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.13rem;
  margin-bottom: 1.4rem;
}

.booking-card > h3 i {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--apricot);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.calendar-shell {
  border-radius: 0.85rem;
  border: 1px solid var(--clay-65);
  padding: 0.85rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}

.calendar-header p {
  margin: 0;
  font-size: 0.89rem;
  font-weight: 600;
  color: var(--deep);
  font-family: "Inter", sans-serif;
}

.calendar-nav {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--deep-20);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--deep-60);
}

.calendar-nav:hover {
  color: var(--deep);
  background: var(--sand-70);
}

.calendar-nav i {
  width: 0.9rem;
  height: 0.9rem;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  margin-bottom: 0.4rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  color: var(--deep-42);
  height: 2rem;
  display: grid;
  place-items: center;
}

.calendar-day {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  margin: 0.1rem auto;
  cursor: pointer;
  font-size: 0.86rem;
  color: var(--deep);
}

.calendar-day:hover {
  background: var(--sand-70);
}

.calendar-day.outside {
  color: var(--deep-27);
}

.calendar-day.disabled {
  color: var(--deep-28);
  cursor: not-allowed;
}

.calendar-day.disabled:hover {
  background: transparent;
}

.calendar-day.today {
  background: var(--apricot-30);
}

.calendar-day.selected {
  background: var(--sage);
  color: white;
}

.time-shell {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.time-title {
  font-size: 0.9rem;
  color: var(--deep-62);
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.time-slot {
  min-height: 2.65rem;
  border-radius: 0.7rem;
  border: 1px solid var(--clay-75);
  background: transparent;
  color: var(--deep-72);
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.time-slot:hover {
  border-color: var(--sage-65);
  background: var(--sage-10);
  color: var(--deep);
}

.time-slot.active {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
}

.booking-summary {
  padding-top: 0.35rem;
  display: grid;
  gap: 0.7rem;
}

.booking-summary p {
  font-size: 0.9rem;
  color: var(--deep-68);
}

.booking-summary strong {
  color: var(--deep);
  margin-left: 0.35rem;
}

.booking-contact-fields {
  display: grid;
  gap: 0.55rem;
}

.booking-contact-fields label {
  display: grid;
  gap: 0.3rem;
}

.booking-contact-fields label > span {
  font-size: 0.8rem;
  color: var(--deep-58);
}

.booking-contact-fields input,
.booking-contact-fields textarea {
  width: 100%;
  border: 1px solid var(--clay-75);
  border-radius: var(--radius-control);
  background: #fff;
  color: var(--deep);
  font-size: 0.9rem;
  padding: 0.62rem 0.72rem;
  outline: none;
}

.booking-contact-fields textarea {
  resize: vertical;
  min-height: 4.9rem;
}

.booking-contact-fields input:focus,
.booking-contact-fields textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-14);
}

.contact-cta-wrap {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.site-footer {
  margin-top: 0;
  background: var(--deep);
  color: var(--linen-78);
}

.footer-inner {
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 2.2rem;
  margin-bottom: 2rem;
}

.footer-title {
  margin-bottom: 0.6rem;
  color: var(--linen);
  font-family: "Montserrat", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.footer-heading {
  margin-bottom: 0.6rem;
  color: var(--linen);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--linen);
}

.footer-contact-list {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--linen-52);
}

.site-footer .inline-form input {
  border-color: var(--linen-18);
  background: var(--linen-5);
  color: var(--linen);
}

.site-footer .inline-form input::placeholder {
  color: var(--linen-40);
}

.footer-bottom {
  border-top: 1px solid var(--linen-10);
  padding-top: 1.3rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--linen-52);
}

.page-top {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.eyebrow {
  margin-bottom: 0.7rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.max-w-text {
  max-width: 42rem;
}

.lead {
  margin-top: 1rem;
  color: var(--deep-60);
  font-size: 1rem;
  line-height: 1.75;
}

.stack-lg {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.text-link {
  color: #dd9a53;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.offer-list-item {
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2rem;
}

.offer-list-item > div {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.offer-list-item h2 {
  font-size: 1.25rem;
  line-height: 1.35;
}

.offer-list-item .muted {
  font-size: 0.875rem;
}

.offer-list-item p {
  color: var(--deep-70);
  line-height: 1.7;
}

.offer-list-item .check-list {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

.offer-list-item .check-list li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.87rem;
  color: var(--deep-65);
}

.offer-list-item .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--apricot);
}

.blog-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.blog-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.blog-card h2 {
  font-size: 1.02rem;
  line-height: 1.35;
}

.blog-card p {
  color: var(--deep-60);
  font-size: 0.88rem;
}

.tag {
  width: fit-content;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  background: var(--apricot-20);
  color: #dd9a53;
  font-family: "Montserrat", sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.3rem;
}

.blog-meta span {
  font-size: 0.75rem;
  color: var(--deep-40);
}

.profile-layout {
  margin-top: 2.1rem;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: start;
}

.text-block {
  display: grid;
  gap: 1rem;
  color: var(--deep-75);
}

.profile-image-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--clay-60);
}

.profile-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.blog-article-shell {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.blog-article-meta {
  margin-top: -0.25rem;
}

.blog-article-image {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--clay-60);
}

.blog-article-image img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
}

.blog-article-content {
  gap: 0.85rem;
}

.text-image-layout {
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.text-image-layout.is-media-left {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.text-image-copy {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.text-image-media {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--clay-60);
}

.text-image-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.faq-list {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  padding: 1rem 1.2rem;
}

.faq-item summary {
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--deep-70);
  line-height: 1.7;
}

.ebook-layout {
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.8rem;
  align-items: center;
}

.ebook-copy {
  display: grid;
  gap: 0.9rem;
}

.ebook-check-list {
  margin-top: 0.35rem;
}

.ebook-cover {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--clay-60);
}

.ebook-cover img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  padding: 0.6rem;
  display: grid;
  gap: 0.55rem;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.7rem;
  object-fit: cover;
}

.gallery-item figcaption {
  font-size: 0.78rem;
  color: var(--deep-55);
}

.about-details-layout {
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.about-details-copy {
  display: grid;
  gap: 0.9rem;
}

.about-details-image-wrap {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--clay-60);
}

.about-details-image-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.about-stat {
  padding: 0.85rem;
  display: grid;
  gap: 0.2rem;
  align-content: center;
}

.about-stat strong {
  font-size: 1.2rem;
  line-height: 1.2;
}

.about-stat span {
  font-size: 0.76rem;
  color: var(--deep-55);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.legal {
  max-width: 768px;
}

.legal > * + * {
  margin-top: 1rem;
}

.legal h2 {
  margin-top: 1.2rem;
  font-size: 1.12rem;
}

.legal p {
  color: var(--deep-75);
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(var(--sand-rgb), 0.75);
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .hero-section {
    padding: 6rem 0;
  }

  .page-top {
    padding-top: 9rem;
    padding-bottom: 6rem;
  }
}

.not-found .card {
  width: min(440px, 100%);
  text-align: center;
  padding: 2rem;
  display: grid;
  gap: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (max-width: 1024px) {
  .container {
    width: calc(100% - 2.4rem);
  }

  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .blog-grid,
  .work-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-image-wrap {
    margin-left: 0;
    width: min(100%, 22rem);
  }

  .text-image-layout,
  .ebook-layout,
  .about-details-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .cms-section-design {
    padding-top: var(--cms-section-pt-mobile, var(--cms-section-pt-desktop, var(--cms-section-pt, 0)));
    padding-bottom: var(--cms-section-pb-mobile, var(--cms-section-pb-desktop, var(--cms-section-pb, 0)));
  }

  .nav-links {
    display: none;
  }

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

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .two-col,
  .offer-list-item,
  .text-image-layout,
  .ebook-layout,
  .about-details-layout {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .hero-section {
    padding-top: 4rem;
  }

  .container {
    width: calc(100% - 1.5rem);
  }

  .offer-grid,
  .blog-grid,
  .work-grid,
  .gallery-grid,
  .time-slots {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .newsletter-card,
  .booking-card,
  .offer-list-item,
  .blog-card,
  .funnel-card,
  .blog-article-shell,
  .text-image-layout,
  .ebook-layout,
  .about-details-layout {
    padding: 1.3rem;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .button-row,
  .inline-form {
    flex-direction: column;
  }

  .btn,
  .inline-form .btn {
    width: 100%;
  }

  .contact-perks {
    justify-content: flex-start;
  }

  .calendar-day {
    width: 2.1rem;
    height: 2.1rem;
  }
}
