:root {
  --color-ink: #163448;
  --color-cloud: #fbf9f4;
  --color-mist: #effcff;
  --color-sky: #d6f3ff;
  --color-breath-blue: #2db7f4;
  --color-breath-teal: #34d1c6;
  --color-lift-green: #a7d95e;
  --color-sun-yellow: #ffd54a;
  --color-white: #ffffff;
  --color-muted: rgba(22, 52, 72, 0.74);
  --color-soft: rgba(22, 52, 72, 0.56);
  --color-border: rgba(45, 183, 244, 0.18);
  --color-border-strong: rgba(45, 183, 244, 0.3);
  --color-shadow: rgba(64, 156, 199, 0.14);
  --font-wordmark: "Allura", cursive;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Source Sans 3", sans-serif;
  --container-width: min(1120px, calc(100% - 2rem));
  --section-space: clamp(4.75rem, 8vw, 8rem);
  --radius-large: 2rem;
  --radius-medium: 1.35rem;
  --radius-small: 0.9rem;
  --shadow-soft: 0 24px 60px var(--color-shadow);
  --shadow-card: 0 14px 32px rgba(107, 186, 220, 0.12);
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top left, rgba(255, 213, 74, 0.24), transparent 24rem),
    radial-gradient(circle at top right, rgba(52, 209, 198, 0.22), transparent 26rem),
    linear-gradient(180deg, #f7fdff 0%, #fbf9f4 28%, #f2fbff 52%, #fffaf0 100%);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-breath-blue);
  outline-offset: 3px;
}

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

button {
  border: 0;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-small);
  background: var(--color-breath-blue);
  color: var(--color-ink);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(251, 249, 244, 0.72);
  border-bottom: 1px solid rgba(45, 183, 244, 0.1);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-wordmark,
.footer-wordmark {
  width: clamp(10rem, 18vw, 13rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a,
.footer-copy,
.hero-note,
.hero-summary,
.hero-list,
.section-label,
.eyebrow,
.contact-list,
.offer-type,
.card-label,
.panel-label,
.form-status {
  font-family: var(--font-body);
}

.site-nav a {
  color: var(--color-soft);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

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

.hero-section,
.benefits-section,
.ritual-section,
.contact-section,
.site-footer,
.founder-section {
  position: relative;
  overflow: clip;
}

.hero-section::before,
.benefits-section::before,
.ritual-section::before,
.contact-section::before,
.founder-section::before {
  content: "";
  position: absolute;
  inset: auto auto 0 -8%;
  width: 60%;
  height: 12rem;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.48;
  pointer-events: none;
}

.hero-section::before {
  background: linear-gradient(90deg, rgba(45, 183, 244, 0.16), rgba(167, 217, 94, 0.12));
  transform: translateY(50%) rotate(-8deg);
}

.founder-section::before {
  background: linear-gradient(90deg, rgba(52, 209, 198, 0.12), rgba(255, 213, 74, 0.14));
  transform: translateY(40%) rotate(5deg);
}

.benefits-section::before {
  background: linear-gradient(90deg, rgba(255, 213, 74, 0.12), rgba(45, 183, 244, 0.12));
  transform: translateY(50%) rotate(-5deg);
}

.ritual-section::before {
  background: linear-gradient(90deg, rgba(45, 183, 244, 0.14), rgba(52, 209, 198, 0.14));
  transform: translateY(50%) rotate(7deg);
}

.contact-section::before {
  background: linear-gradient(90deg, rgba(167, 217, 94, 0.14), rgba(255, 213, 74, 0.14));
  transform: translateY(55%) rotate(-3deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0 var(--section-space);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
  animation: fade-rise 720ms ease both;
}

.hero-visual {
  animation-delay: 120ms;
}

.eyebrow,
.section-label,
.card-label,
.offer-type,
.panel-label {
  margin: 0 0 0.9rem;
  color: var(--color-breath-blue);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.offer-card h3,
.timeline-item h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 10.7ch;
  color: var(--color-ink);
  font-size: clamp(3.5rem, 8vw, 6.3rem);
  line-height: 0.93;
}

.hero-summary,
.offer-card p,
.timeline-item p,
.contact-copy p {
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
}

.hero-summary {
  max-width: 35rem;
  margin-top: 1.35rem;
  color: var(--color-muted);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

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

.button-primary {
  background: linear-gradient(135deg, var(--color-breath-blue), var(--color-breath-teal));
  color: var(--color-white);
  box-shadow: 0 14px 28px rgba(45, 183, 244, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 32px rgba(45, 183, 244, 0.26);
}

.button-secondary,
.button-outline {
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-ink);
  border-color: rgba(45, 183, 244, 0.25);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(214, 243, 255, 0.86);
  border-color: rgba(45, 183, 244, 0.45);
}

.hero-list,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-list li,
.contact-list li {
  padding: 0.72rem 1rem;
  border: 1px solid rgba(52, 209, 198, 0.18);
  border-radius: 999px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 24px rgba(146, 221, 236, 0.14);
}

.logo-stage {
  position: relative;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  border: 1px solid rgba(45, 183, 244, 0.18);
  border-radius: clamp(2rem, 3vw, 2.8rem);
  background:
    radial-gradient(circle at top left, rgba(214, 243, 255, 0.95), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 252, 255, 0.92));
  box-shadow: var(--shadow-soft);
}

.logo-stage::before {
  content: "";
  position: absolute;
  inset: -6%;
  background: radial-gradient(circle, rgba(45, 183, 244, 0.12), transparent 62%);
  filter: blur(22px);
  z-index: -1;
}

.logo-stage::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: inherit;
  border: 1px solid rgba(45, 183, 244, 0.08);
  pointer-events: none;
}

.hero-logo {
  width: min(100%, 30rem);
  margin: 0 auto;
}

.hero-note {
  max-width: 24rem;
  margin: 1.2rem auto 0;
  color: var(--color-soft);
  font-size: 1rem;
  text-align: center;
}

.section {
  padding: var(--section-space) 0;
}

.founder-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(239, 252, 255, 0.34));
}

.founder-grid,
.contact-grid,
.ritual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 4.25rem);
  align-items: start;
}

.section-heading h2 {
  max-width: 11ch;
  color: var(--color-ink);
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 0.96;
}

.section-heading > p:not(.section-label),
.contact-copy p {
  color: var(--color-muted);
}

.founder-copy > p {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.credential-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1.75rem 0 0;
  list-style: none;
}

.credential-list li {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(45, 183, 244, 0.16);
  border-radius: var(--radius-medium);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(239, 252, 255, 0.75));
  color: var(--color-ink);
  font-weight: 600;
  box-shadow: var(--shadow-card);
}

.mission-line {
  margin: 1.6rem 0 0;
  color: var(--color-breath-teal);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-note {
  margin-top: 0.85rem;
  color: var(--color-muted);
}

.founder-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 43rem;
}

.photo-frame {
  padding: 0.75rem;
  border: 1px solid rgba(45, 183, 244, 0.16);
  border-radius: 1.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(239, 252, 255, 0.74));
  box-shadow: var(--shadow-soft);
}

.photo-frame-primary {
  width: min(100%, 27rem);
}

.photo-frame-secondary {
  position: absolute;
  left: 0;
  bottom: 2rem;
  width: min(46%, 14rem);
}

.founder-photo {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
}

.founder-photo-primary,
.founder-photo-secondary {
  aspect-ratio: 4 / 5;
}

.offerings-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
}

.benefits-section {
  background:
    radial-gradient(circle at top left, rgba(255, 213, 74, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(214, 243, 255, 0.28));
}

.offering-heading {
  max-width: 43rem;
}

.offering-heading h2 {
  max-width: 12ch;
}

.offering-heading > p:last-child {
  max-width: 36rem;
  margin-top: 1rem;
  color: var(--color-muted);
  font-size: 1.1rem;
}

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

.offer-card,
.contact-form,
.ritual-panel {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(45, 183, 244, 0.16);
  border-radius: var(--radius-large);
}

.offer-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem;
  min-height: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 213, 74, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 252, 255, 0.84));
  box-shadow: var(--shadow-card);
}

.offer-card h3,
.timeline-item h3 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1.06;
}

.offer-card p:not(.offer-type) {
  color: var(--color-muted);
}

.offer-type {
  color: var(--color-breath-blue);
}

.ritual-section {
  background:
    radial-gradient(circle at top right, rgba(52, 209, 198, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(239, 252, 255, 0.38), rgba(255, 249, 244, 0.24));
}

.ritual-grid {
  align-items: center;
}

.section-heading-dark h2,
.ritual-copy .section-label,
.timeline-item h3 {
  color: var(--color-ink);
}

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(45, 183, 244, 0.16);
}

.timeline-item p {
  color: var(--color-muted);
}

.timeline-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(45, 183, 244, 0.14), rgba(255, 213, 74, 0.22));
  color: var(--color-breath-blue);
  font-weight: 700;
}

.ritual-panel {
  padding: clamp(1.7rem, 4vw, 2.4rem);
  background:
    radial-gradient(circle at top left, rgba(214, 243, 255, 0.9), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 252, 255, 0.9));
  box-shadow: var(--shadow-soft);
}

.panel-label {
  color: var(--color-soft);
}

.badge-link {
  display: inline-flex;
  margin-top: 0.4rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(45, 183, 244, 0.18);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.9);
}

.certification-badge {
  width: min(100%, 15rem);
  height: auto;
}

.panel-copy {
  margin: 1rem 0 0;
  max-width: 28rem;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.script-line {
  margin: 1.35rem 0 0;
  font-family: var(--font-wordmark);
  font-size: clamp(2.8rem, 6vw, 4.35rem);
  line-height: 0.98;
  color: var(--color-breath-teal);
}

.contact-section {
  background:
    radial-gradient(circle at right top, rgba(167, 217, 94, 0.18), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 249, 244, 0.34));
}

.contact-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.contact-copy p {
  max-width: 32rem;
}

.contact-list li {
  border-color: rgba(45, 183, 244, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-ink);
}

.pricing-note {
  max-width: 34rem;
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 213, 74, 0.28);
  border-radius: var(--radius-medium);
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.86), rgba(214, 243, 255, 0.55));
  box-shadow: var(--shadow-card);
}

.pricing-note p:last-child {
  margin: 0;
  color: var(--color-muted);
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 2rem);
  background:
    radial-gradient(circle at top right, rgba(214, 243, 255, 0.84), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 252, 255, 0.88));
  box-shadow: var(--shadow-soft);
}

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

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--color-ink);
  font-weight: 700;
}

.field span {
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(45, 183, 244, 0.18);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-ink);
  padding: 0.9rem 1rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-breath-blue);
  box-shadow: 0 0 0 4px rgba(45, 183, 244, 0.12);
  background: var(--color-white);
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-button {
  width: 100%;
  margin-top: 0.5rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  color: var(--color-breath-blue);
}

.site-footer {
  padding: 1.8rem 0 2.4rem;
  background: linear-gradient(180deg, rgba(239, 252, 255, 0.24), rgba(251, 249, 244, 0.62));
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 183, 244, 0.14);
}

.footer-copy {
  margin: 0;
  max-width: 25rem;
  color: var(--color-soft);
  font-size: 0.98rem;
  text-align: right;
}

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

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

@media (max-width: 960px) {
  .header-bar,
  .hero-grid,
  .founder-grid,
  .contact-grid,
  .ritual-grid,
  .benefits-grid,
  .footer-bar,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .header-bar,
  .footer-bar {
    display: grid;
    justify-items: start;
  }

  .header-cta {
    display: none;
  }

  .hero-copy h1,
  .section-heading h2,
  .offering-heading h2 {
    max-width: 100%;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 1rem 1.2rem;
  }

  .hero-visual {
    max-width: 34rem;
  }

  .founder-media {
    min-height: 0;
    justify-content: flex-start;
    padding-top: 1rem;
  }

  .photo-frame-primary {
    width: min(100%, 26rem);
  }

  .photo-frame-secondary {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 1rem;
    width: min(60%, 14rem);
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, 100%);
  }

  .header-bar {
    padding: 0.95rem 0;
  }

  .hero-grid {
    padding: 1.3rem 0 var(--section-space);
  }

  .hero-actions,
  .hero-list,
  .contact-list {
    gap: 0.65rem;
  }

  .button {
    width: 100%;
  }

  .site-nav {
    font-size: 0.96rem;
  }

  .hero-note {
    margin-left: 0;
    text-align: left;
  }

  .photo-frame-secondary {
    width: min(72%, 14rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
