/* cormorant-garamond-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/cormorant-garamond-v21-latin-regular.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/cormorant-garamond-v21-latin-500.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/cormorant-garamond-v21-latin-600.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/cormorant-garamond-v21-latin-700.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/inter-v20-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/inter-v20-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/inter-v20-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/inter-v20-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* allura-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Allura";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/allura-v23-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --radius: 0.5rem;
  --background: oklch(0.985 0.012 60);
  --foreground: oklch(0.25 0.03 20);
  --cream: oklch(0.96 0.018 40);
  --blush: oklch(0.93 0.035 20);
  --rose-deep: oklch(0.52 0.13 8);
  --card: oklch(0.99 0.008 60);
  --card-foreground: oklch(0.25 0.03 20);
  --primary: oklch(0.52 0.13 8);
  --primary-foreground: oklch(0.985 0.012 60);
  --secondary: oklch(0.93 0.035 20);
  --secondary-foreground: oklch(0.32 0.07 12);
  --muted: oklch(0.94 0.02 40);
  --muted-foreground: oklch(0.48 0.03 20);
  --accent: oklch(0.62 0.12 12);
  --border: oklch(0.88 0.02 30);
  --input: oklch(0.88 0.02 30);
  --ring: oklch(0.52 0.13 8);
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-script: "Allura", "Pinyon Script", cursive;
  --font-sans:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --shadow-soft: 0 30px 80px -40px
    color-mix(in oklab, var(--rose-deep) 35%, transparent);
  --shadow-card: 0 20px 60px -30px
    color-mix(in oklab, var(--rose-deep) 25%, transparent);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}

main {
  min-height: 60vh;
}

.container-page {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
}

.header-inner {
  padding-top: 1rem;
}

.header-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 82px;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-radius: 999px;
  background: color-mix(in oklab, var(--background) 85%, transparent);
  padding: 0.75rem 1.25rem;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-card);
}

.logo-link {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-bottom: -1rem;
}

.logo-link img {
  width: auto;
  height: 3rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: color-mix(in oklab, var(--foreground) 75%, transparent);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.75rem;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  font-size: 0.875rem;
}

.header-phone a {
  font-weight: 500;
  transition: color 180ms ease;
}

.header-phone a:hover {
  color: var(--primary);
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
}

.icon-circle svg,
.icon-small {
  width: 1rem;
  height: 1rem;
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
}

.mobile-menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-menu-toggle .close-icon,
.mobile-menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.mobile-nav {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 1.5rem;
  background: color-mix(in oklab, var(--background) 95%, transparent);
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(-0.75rem);
  pointer-events: none;
  visibility: hidden;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-card);

  transition:
    max-height 600ms cubic-bezier(0.16, 1, 0.3, 1),
    margin-top 600ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 600ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 350ms ease,
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 350ms ease,
    visibility 0s linear 600ms;
}

.mobile-nav.is-open {
  max-height: 28rem;
  margin-top: 0.5rem;
  border-color: color-mix(in oklab, var(--border) 60%, transparent);
  padding: 1rem;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;

  transition:
    max-height 600ms cubic-bezier(0.16, 1, 0.3, 1),
    margin-top 600ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 600ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 350ms ease,
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 350ms ease,
    visibility 0s linear 0s;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav .nav-link {
  border-bottom: 1px solid color-mix(in oklab, var(--border) 40%, transparent);
  padding: 0.75rem 0.5rem;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  font-size: 1rem;
}

.mobile-nav .nav-link:last-of-type {
  border-bottom: 0;
}

.mobile-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.section-overflow {
  position: relative;
  overflow: hidden;
}

.hero {
  position: relative;
  overflow: hidden;
}

.botanical {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.botanical-left {
  left: -4rem;
  bottom: 0;
  width: 18rem;
  opacity: 0.7;
}

.botanical-right {
  display: none;
  right: -5rem;
  top: 8rem;
  width: 20rem;
  opacity: 0.5;
  transform: scaleX(-1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.image-card {
  width: min(100%, 34rem);
  margin-inline: auto;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.overline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  display: none;
}

.overline-pill svg {
  width: 0.875rem;
  height: 0.875rem;
}

.overline {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-title {
  margin-top: 1.5rem;
  color: var(--foreground);
  font-size: clamp(2.825rem, 8vw, 4.5rem);
  line-height: 1.05;
  text-wrap: balance;
}

.script {
  color: var(--primary);
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
}

.hero-title .script {
  display: block;
  margin-top: 0.5rem;
  font-size: clamp(3.75rem, 8vw, 5.5rem);
  line-height: 0.85;
}

.lead {
  margin-top: 1.75rem;
  max-width: 36rem;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    gap 180ms ease,
    color 180ms ease;
}

.btn svg,
.link-arrow svg {
  width: 1rem;
  height: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: color-mix(in oklab, var(--primary) 90%, transparent);
}

.btn-secondary {
  border: 1px solid color-mix(in oklab, var(--primary) 30%, transparent);
  color: var(--primary);
}

.btn-secondary:hover {
  background: color-mix(in oklab, var(--primary) 5%, transparent);
}

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

.btn-light:hover {
  transform: translateY(-1px);
}

.stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  font-size: 0.875rem;
}

.stat-number {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 1.875rem;
  line-height: 1;
}

.stat-label {
  margin-top: 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
}

.image-card.soft-card {
  box-shadow: var(--shadow-card);
  display: none;
}

.aspect-4-5 {
  aspect-ratio: 4 / 5;
}

.aspect-5-4 {
  aspect-ratio: 5 / 4;
}

.image-card > img,
.split-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-radius: 1rem;
  background: color-mix(in oklab, var(--background) 85%, transparent);
  padding: 1.25rem;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hero-note-title {
  color: var(--primary);
  font-family: var(--font-script);
  font-size: 1.75rem;
  line-height: 1;
}

.hero-note-text {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.6;
}

.section-pad {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-pad-top {
  padding-top: 6rem;
}

.section-pad-bottom {
  padding-bottom: 6rem;
}

.text-block h2,
.section-heading h2,
.inner-heading,
.page-title {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1.12;
  text-wrap: balance;
}

.page-title {
  font-size: clamp(3rem, 7vw, 3.75rem);
  line-height: 1.05;
}

.page-title .script {
  display: block;
  margin-top: 0.25rem;
}

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

.mx-auto {
  margin-inline: auto;
}

.max-2xl {
  max-width: 42rem;
}

.max-3xl {
  max-width: 48rem;
}

.pillars-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pillar {
  display: flex;
  gap: 1rem;
}

.pillar-icon,
.value-icon,
.contact-icon,
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
}

.pillar-icon {
  width: 2.75rem;
  height: 2.75rem;
}

.pillar-icon svg,
.value-icon svg,
.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.pillar h3 {
  font-size: 1.25rem;
}

.small-text,
.pillar p,
.offering-card p,
.class-card p,
.value-card p,
.package-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}

.pillar p {
  margin-top: 0.25rem;
}

.bg-soft {
  background: color-mix(in oklab, var(--secondary) 40%, transparent);
}

.cards-grid-3,
.cards-grid-2,
.values-grid {
  display: grid;
  gap: 1.5rem;
}

.offerings-grid {
  margin-top: 3.5rem;
}

.card {
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-radius: 1.75rem;
  background: var(--background);
  box-shadow: var(--shadow-card);
}

.offering-card,
.class-card,
.value-card,
.package-card {
  padding: 2rem;
}

.offering-card,
.contact-card {
  transition: transform 180ms ease;
}

.card-tag {
  color: color-mix(in oklab, var(--primary) 80%, transparent);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.offering-card h3,
.class-card h2,
.value-card h3,
.package-card h3 {
  margin-top: 0.75rem;
  font-size: 1.5rem;
}

.offering-card p,
.package-card p {
  margin-top: 0.75rem;
}

.card-line {
  height: 1px;
  margin-top: 1.5rem;
  background: var(--border);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  transition: gap 180ms ease;
}

.link-arrow:hover {
  gap: 0.75rem;
}

.offering-card .link-arrow {
  margin-top: 1.25rem;
  font-size: 0.875rem;
}

.link-wrap {
  margin-top: 3rem;
}

.grid-12,
.grid-2 {
  display: grid;
  gap: 3rem;
}

.testimonial {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem;
}

.testimonial .botanical-testimonial {
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 20rem;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
}

.quote-mark {
  font-family: var(--font-script);
  font-size: 4rem;
  line-height: 0.7;
  opacity: 0.9;
}

.quote-text {
  max-width: 48rem;
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.45;
  text-wrap: balance;
}

.quote-author {
  margin-top: 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.cta-center {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.cta-center h2,
.cta-box h2 {
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1.12;
  text-wrap: balance;
}

.cta-center p {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.cta-center .btn {
  margin-top: 2rem;
}

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

.page-hero.deep {
  padding-bottom: 4rem;
}

.class-card {
  display: flex;
  flex-direction: column;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.meta-row svg {
  width: 0.875rem;
  height: 0.875rem;
}

.class-card p {
  flex: 1;
  margin-top: 1.25rem;
}

.class-card .link-arrow {
  margin-top: 1.5rem;
}

.split-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-radius: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.split-image {
  position: relative;
  min-height: 20rem;
}

.split-image > img {
  position: absolute;
  inset: 0;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--background);
  padding: 2.5rem;
}

.split-content h3 {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  line-height: 1.15;
}

.split-content p {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.bullet-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  background: color-mix(in oklab, var(--primary) 15%, transparent);
}

.check-icon svg {
  width: 0.75rem;
  height: 0.75rem;
}

.bullet p {
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  line-height: 1.55;
}

.package-card {
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

.package-card.featured .card-tag {
  color: color-mix(in oklab, var(--primary-foreground) 70%, transparent);
}

.package-card.featured p {
  color: color-mix(in oklab, var(--primary-foreground) 85%, transparent);
}

.package-list {
  display: grid;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.package-list svg {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  opacity: 0.8;
}

.package-card:not(.featured) .package-list span {
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
}

.package-card.featured .package-list span {
  color: color-mix(in oklab, var(--primary-foreground) 90%, transparent);
}

.cta-box {
  border-radius: 2.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem;
  text-align: center;
}

.cta-box p {
  max-width: 36rem;
  margin: 1rem auto 0;
  opacity: 0.9;
  line-height: 1.65;
}

.cta-box .btn {
  margin-top: 2rem;
}

.values-grid {
  gap: 2rem;
}

.value-icon {
  width: 3rem;
  height: 3rem;
}

.value-card h3 {
  margin-top: 1.25rem;
}

.value-card p {
  margin-top: 0.75rem;
}

.article-narrow {
  max-width: 48rem;
  margin-inline: auto;
}

.article-body {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-info {
  align-self: start;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-radius: 1.5rem;
  background: var(--background);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.contact-icon {
  width: 2.75rem;
  height: 2.75rem;
}

.contact-card-title {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card-line {
  margin-top: 0.25rem;
  color: var(--foreground);
}

.contact-form {
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-radius: 2rem;
  background: var(--background);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.contact-form h2 {
  font-size: 1.875rem;
}

.form-intro {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.form-fields {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-field label {
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  width: 100%;
  margin-top: 0.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-field input {
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--primary) 40%, transparent);
}
.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-error {
  display: none;
  color: var(--primary);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-error.is-visible {
  display: block;
}

.form-submit {
  width: 100%;
}

.success-message {
  display: none;
  margin-top: 2rem;
  border-radius: 1rem;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
  padding: 1.5rem;
}

.success-message.is-visible {
  display: block;
}

.success-message p:first-child {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.success-message p:last-child {
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

.site-footer {
  margin-top: 8rem;
  border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: color-mix(in oklab, var(--secondary) 40%, transparent);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-logo {
  width: auto;
  height: 5rem;
}

.footer-text {
  max-width: 24rem;
  margin-top: 1.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}

.footer-heading {
  color: color-mix(in oklab, var(--foreground) 70%, transparent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-list a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

.footer-cdl {
  transition: 180ms ease;
}

.footer-cdl:hover {
  color: var(--primary);
}

.footer-signature {
  color: color-mix(in oklab, var(--primary) 80%, transparent);
  font-family: var(--font-script);
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .logo-link img {
    height: 3.5rem;
  }

  .hero-grid {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-title .script {
    font-size: 4.5rem;
  }

  .botanical-right {
    display: block;
  }

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

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

  .testimonial {
    padding: 5rem;
  }

  .split-content {
    padding: 3.5rem;
  }

  .cta-box {
    padding: 4rem;
  }

  .contact-form {
    padding: 2.5rem;
  }

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

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

  .footer-bottom-inner {
    flex-direction: row;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-grid {
    gap: 4.5rem;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-image {
    margin-top: 1rem;
    margin-bottom: 0;
  }

  .hero + .section-pad {
    padding-top: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .header-phone {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .hero-copy {
    grid-column: span 6 / span 6;
  }

  .hero-image {
    grid-column: span 6 / span 6;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-title .script {
    font-size: 5.5rem;
  }

  .image-card {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .image-card.soft-card {
    display: block;
  }

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

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

  .col-5 {
    grid-column: span 5 / span 5;
  }

  .col-6 {
    grid-column: span 6 / span 6;
  }

  .col-7 {
    grid-column: span 7 / span 7;
  }

  .lg-order-1 {
    order: 1;
  }

  .lg-order-2 {
    order: 2;
  }

  .lg-pl-10 {
    padding-left: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .contact-info {
    grid-column: span 5 / span 5;
  }

  .contact-form-wrap {
    grid-column: span 7 / span 7;
  }
}

@media (max-width: 767px) {
  .container-page {
    padding-inline: 1.25rem;
  }

  .header-card {
    min-height: 70px;
    padding: 0.625rem 1rem;
  }

  .logo-link img {
    height: 2.75rem;
  }

  .hero-grid,
  .section-pad {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

  .section-pad-bottom {
    padding-bottom: 4rem;
  }

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

  .stats {
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .stat-divider {
    flex: 0 0 auto;
  }

  .testimonial,
  .cta-box,
  .split-content,
  .contact-form,
  .offering-card,
  .class-card,
  .value-card,
  .package-card {
    padding: 1.5rem;
  }

  .site-footer {
    margin-top: 5rem;
  }
}

@media (max-width: 767px) {
  .hero-image {
    margin-bottom: -4rem;
  }
}

@media (min-width: 510px) {
  .overline-pill {
    display: inline-flex;
  }
}
