:root {
  --color-bg: #fdfbf7;
  --color-primary: #7c9a82;
  --color-accent: #c4856a;
  --color-text: #3d3d3d;
  --color-card: #ffffff;
  --color-warm: #e8d5b7;
  --color-muted: #6f6a62;
  --color-line: rgba(124, 154, 130, 0.24);
  --shadow-soft: 0 16px 40px rgba(61, 61, 61, 0.1);
  --shadow-hover: 0 20px 46px rgba(61, 61, 61, 0.14);
  --radius-xl: 1.45rem;
  --radius-lg: 1.1rem;
  --radius-md: 0.85rem;
  --radius-sm: 0.62rem;
  --container: min(100% - 2.6rem, 74rem);
  --transition: 250ms cubic-bezier(0.2, 0.72, 0.2, 1);
  --font-heading: "Nunito", "Trebuchet MS", sans-serif;
  --font-body: "Lato", "Segoe UI", sans-serif;
  --font-accent: "Caveat", "Segoe Script", cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.65;
  text-wrap: pretty;
}

body.is-nav-open,
body.is-internal-nav-open {
  overflow: hidden;
}

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

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

[id] {
  scroll-margin-top: 6.4rem;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.7rem;
  z-index: 1000;
  background: var(--color-primary);
  color: #fff;
  padding: 0.58rem 0.86rem;
  border-radius: 0.4rem;
  font-weight: 700;
}

.skip-link:focus-visible {
  left: 0.7rem;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.08rem;
  height: 1.08rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.72;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.section {
  position: relative;
  overflow: clip;
  padding-block: clamp(3.9rem, 8.4vw, 6.8rem);
}

.section--tint {
  background: linear-gradient(180deg, rgba(124, 154, 130, 0.08), rgba(124, 154, 130, 0.03));
}

.section-label {
  margin: 0 0 0.95rem;
  font-size: 0.79rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
}

.section__header {
  max-width: 40rem;
  margin-bottom: clamp(1.6rem, 3.2vw, 2.5rem);
}

.section__header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.72rem, 4.2vw, 2.6rem);
  line-height: 1.18;
}

.section__intro {
  margin: 1rem 0 0;
  font-size: 1.02rem;
  color: var(--color-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.46rem;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.24rem;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition);
  cursor: pointer;
}

.btn--large {
  min-height: 3rem;
  padding-inline: 1.55rem;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 25px rgba(124, 154, 130, 0.28);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(124, 154, 130, 0.34);
}

.btn--accent {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(196, 133, 106, 0.34);
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 31px rgba(196, 133, 106, 0.4);
}

.text-link {
  font-weight: 700;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}

.text-link::after {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(0.03rem);
  transition: transform var(--transition);
}

.text-link:hover {
  color: #aa6f58;
}

.text-link:hover::after {
  transform: rotate(45deg) translate(0.13rem, -0.03rem);
}

.decor-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.decor-blob path {
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(124, 154, 130, 0.22);
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(10px);
}

.site-header > .container {
  position: relative;
}

.site-nav {
  min-height: 4.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  position: relative;
  z-index: 2;
}

.site-nav__brand {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #506357;
  line-height: 1.08;
  letter-spacing: 0.01em;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}

.site-nav__list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.25rem;
  color: #5f5b55;
}

.site-nav__list a {
  position: relative;
  transition: color var(--transition);
  font-size: 0.95rem;
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(196, 133, 106, 0.9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav__list a:hover {
  color: #4f6457;
}

.site-nav__list a:hover::after {
  transform: scaleX(1);
}

.site-nav__cta {
  display: none;
  white-space: nowrap;
  font-size: 0.93rem;
}

.site-nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  color: #4f6457;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(124, 154, 130, 0.36);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  cursor: pointer;
}

.site-nav__toggle-lines {
  width: 0.84rem;
  height: 0.67rem;
  position: relative;
  display: inline-flex;
}

.site-nav__toggle-lines::before,
.site-nav__toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), top var(--transition), bottom var(--transition);
}

.site-nav__toggle-lines::before {
  top: 0.08rem;
}

.site-nav__toggle-lines::after {
  bottom: 0.08rem;
}

.site-nav[data-nav-open="true"] .site-nav__toggle-lines::before {
  top: 0.33rem;
  transform: rotate(42deg);
}

.site-nav[data-nav-open="true"] .site-nav__toggle-lines::after {
  bottom: 0.23rem;
  transform: rotate(-42deg);
}

.site-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(61, 61, 61, 0.26);
  border: 0;
  padding: 0;
  z-index: 75;
}

.site-nav__mobile {
  position: absolute;
  top: calc(100% + 0.22rem);
  left: 0;
  right: 0;
  z-index: 80;
  display: grid;
  gap: 0.25rem;
  background: rgba(253, 251, 247, 0.99);
  border: 1px solid rgba(124, 154, 130, 0.28);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  padding: 0.8rem;
  opacity: 0;
  transform: translateY(-7px);
  transition: opacity var(--transition), transform var(--transition);
}

.site-nav[data-nav-open="true"] + .site-nav__backdrop + .site-nav__mobile {
  opacity: 1;
  transform: translateY(0);
}

.site-nav__mobile-link {
  padding: 0.6rem 0.74rem;
  border-radius: 0.6rem;
  color: #4f6457;
  font-weight: 700;
  transition: background-color var(--transition), color var(--transition);
}

.site-nav__mobile-link:hover {
  background: rgba(124, 154, 130, 0.11);
  color: #3e5246;
}

.site-nav__mobile-cta {
  margin-top: 0.38rem;
  width: 100%;
}

.hero {
  padding-top: clamp(2.7rem, 7vw, 5.8rem);
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1.7rem, 5vw, 3.5rem);
  align-items: center;
}

.hero__copy {
  max-width: 35rem;
}

.hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.008em;
  line-height: 1.1;
  font-size: clamp(2.1rem, 6vw, 3.85rem);
}

.hero__subline {
  margin: 1rem 0 0;
  font-size: clamp(1.02rem, 2.2vw, 1.25rem);
  color: #4d4b48;
  max-width: 33rem;
}

.hero__actions {
  margin-top: 1.7rem;
}

.hero__trust {
  margin: 1.08rem 0 0;
  color: #5f5a54;
  font-size: 0.97rem;
}

.hero__media {
  margin: 0;
  position: relative;
}

.hero__media-panel {
  position: relative;
  max-width: 30rem;
  margin-inline: auto;
  border-radius: 1.25rem;
  padding: 0.72rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.hero__image {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
}

.decor-blob--hero-sage {
  color: rgba(124, 154, 130, 0.2);
  width: clamp(13rem, 34vw, 25rem);
  top: 0.3rem;
  right: -3.6rem;
  transform: rotate(15deg);
}

.decor-blob--hero-blush {
  color: rgba(196, 133, 106, 0.17);
  width: clamp(12rem, 27vw, 20rem);
  top: 3rem;
  right: 14%;
  transform: rotate(-16deg);
}

.about {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1.65rem, 4.6vw, 2.7rem);
  align-items: center;
}

.about__media-stack {
  display: grid;
  gap: 0.92rem;
}

.about__media {
  margin: 0;
  position: relative;
}

.about__media img {
  border-radius: 1.12rem;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about__media--secondary img {
  aspect-ratio: 16 / 10;
}

.about__content h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.16;
}

.about__content p {
  margin: 1rem 0 0;
  max-width: 36rem;
}

.decor-blob--about {
  color: rgba(124, 154, 130, 0.12);
  width: clamp(12rem, 26vw, 19rem);
  left: -4.2rem;
  bottom: -5rem;
  transform: rotate(-18deg);
}

.offers-grid {
  display: grid;
  gap: 1.1rem;
}

.offer-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.offer-card__icon-wrap {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.85rem;
  color: #5f7f66;
  background: rgba(124, 154, 130, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.offer-card h3 {
  margin: 1rem 0 0;
  font-family: var(--font-heading);
  font-size: 1.36rem;
  line-height: 1.26;
}

.offer-card p {
  margin: 0.8rem 0 0;
  color: #55514b;
}

.offer-card__price {
  margin: 1.25rem 0 0.95rem;
  font-family: var(--font-heading);
  font-size: 1.86rem;
  line-height: 1;
  color: #56705c;
}

.stories-grid {
  display: grid;
  gap: 1rem;
}

.story-card {
  margin: 0;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(61, 61, 61, 0.08);
  padding: 1.45rem;
}

.story-card__icon {
  color: #b57a62;
  margin-bottom: 0.7rem;
}

.story-card blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
}

.story-card figcaption {
  margin-top: 1rem;
  color: #5d5953;
  font-size: 0.94rem;
  font-weight: 700;
}

.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.step-card {
  padding: 1.42rem;
  border-radius: var(--radius-lg);
  background: rgba(232, 213, 183, 0.34);
  border: 1px solid rgba(124, 154, 130, 0.2);
}

.step-card__number {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #fff;
  color: #597461;
  font-weight: 800;
  margin-bottom: 0.9rem;
  box-shadow: 0 8px 18px rgba(61, 61, 61, 0.08);
}

.step-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.3;
}

.step-card p {
  margin: 0.72rem 0 0;
  color: #55514b;
}

.resources-grid {
  display: grid;
  gap: 1.2rem;
}

.article-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.article-card__image-link {
  display: block;
  overflow: hidden;
}

.article-card__image-link img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.article-card:hover img {
  transform: scale(1.045);
}

.article-card__body {
  padding: 1.3rem;
}

.article-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.33rem;
  line-height: 1.3;
}

.article-card__title-link {
  transition: color var(--transition);
}

.article-card__title-link:hover {
  color: #5e7a64;
}

.article-card .text-link {
  margin-top: 1rem;
}

.instagram-layout {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

.instagram-copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4.2vw, 2.6rem);
  line-height: 1.2;
}

.instagram-copy p {
  margin: 1rem 0 0;
}

.instagram-copy__handle {
  margin-top: 1rem;
  color: #5d7963;
  font-family: var(--font-heading);
  font-size: 1.28rem;
}

.instagram-copy .text-link {
  margin-top: 1.12rem;
}

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

.instagram-grid__item {
  overflow: hidden;
  border-radius: 0.95rem;
  box-shadow: var(--shadow-soft);
}

.instagram-grid__item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform var(--transition);
}

.instagram-grid__item:hover img {
  transform: scale(1.05);
}

.section--final-cta {
  color: #fff;
  background: linear-gradient(145deg, #6c8b73 0%, #7c9a82 52%, #8da895 100%);
}

.section--final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/sarah-miller/nature-path.jpg") center / cover no-repeat;
  opacity: 0.14;
  mix-blend-mode: multiply;
}

.section--final-cta::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(33, 46, 37, 0), rgba(33, 46, 37, 0.34));
}

.final-cta {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 44rem;
}

.final-cta h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 5vw, 3rem);
  line-height: 1.14;
}

.final-cta p {
  margin: 1.05rem auto 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.06rem;
}

.final-cta .btn {
  margin-top: 1.45rem;
}

.decor-blob--cta {
  color: rgba(255, 255, 255, 0.18);
  width: clamp(11rem, 28vw, 19rem);
  right: -3.8rem;
  top: -1.4rem;
  transform: rotate(20deg);
}

.site-footer {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, #f6efe4 0%, #f4ece0 100%);
  border-top: 1px solid rgba(124, 154, 130, 0.22);
  padding-block: clamp(2.7rem, 6vw, 3.6rem);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  right: -6rem;
  bottom: -8rem;
  background: radial-gradient(circle at center, rgba(124, 154, 130, 0.13), rgba(124, 154, 130, 0));
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.45rem);
}

.site-footer__top {
  max-width: 35rem;
}

.site-footer__brand {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.58rem);
  color: #4b6054;
  line-height: 1.15;
}

.site-footer__tagline {
  margin: 0.62rem 0 0;
  color: #686259;
  max-width: 30rem;
  font-size: 0.96rem;
  line-height: 1.55;
}

.site-footer__middle {
  display: grid;
  gap: 0.72rem;
}

.site-footer__links,
.site-footer__legal,
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.56rem 1.12rem;
  color: #625d54;
}

.site-footer a {
  position: relative;
  transition: color var(--transition);
}

.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.16rem;
  width: 100%;
  height: 1px;
  background: rgba(196, 133, 106, 0.85);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-footer__links a,
.site-footer__legal a {
  color: #58534b;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 154, 130, 0.3);
  background: rgba(255, 255, 255, 0.62);
  color: #5e7763;
}

.site-footer__social-link::after {
  display: none;
}

.site-footer__social-icon {
  width: 1.03rem;
  height: 1.03rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__links a:hover,
.site-footer__legal a:hover {
  color: var(--color-accent);
}

.site-footer__social-link:hover {
  color: var(--color-accent);
  border-color: rgba(196, 133, 106, 0.42);
  background: rgba(255, 255, 255, 0.85);
}

.site-footer__links a:hover::after,
.site-footer__legal a:hover::after {
  transform: scaleX(1);
}

.site-footer__links span {
  color: #6a645b;
}

.site-footer__bottom {
  border-top: 1px solid rgba(124, 154, 130, 0.2);
  padding-top: 0.9rem;
  justify-content: space-between;
}

.site-footer__copyright {
  margin: 0;
  color: #6f685f;
  font-size: 0.89rem;
}

.steadsite-badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.34rem 0.72rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(124, 154, 130, 0.28);
  border-radius: 999px;
  color: #5c7663;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(61, 61, 61, 0.06);
}

.reveal-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms cubic-bezier(0.2, 0.72, 0.2, 1), transform 620ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

[data-hero-reveal] {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-rise 720ms cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
  animation-delay: var(--delay, 0s);
}

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

.internal-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(124, 154, 130, 0.22);
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
}

.internal-header__bar {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.internal-header__brand {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  color: #4f6457;
  font-weight: 800;
}

.internal-header__nav {
  display: none;
  align-items: center;
  gap: 1rem;
}

.internal-header__link {
  color: #5d5953;
  font-size: 0.94rem;
  transition: color var(--transition);
}

.internal-header__link:hover {
  color: #4f6457;
}

.internal-header__cta {
  font-size: 0.9rem;
}

.internal-header__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(124, 154, 130, 0.35);
  border-radius: 999px;
  color: #4f6457;
  font: inherit;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 0.38rem 0.68rem;
  cursor: pointer;
}

.internal-header__toggle-icon {
  width: 0.84rem;
  height: 0.65rem;
  position: relative;
  display: inline-flex;
}

.internal-header__toggle-icon::before,
.internal-header__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), top var(--transition), bottom var(--transition);
}

.internal-header__toggle-icon::before {
  top: 0.08rem;
}

.internal-header__toggle-icon::after {
  bottom: 0.08rem;
}

.internal-header[data-nav-open="true"] .internal-header__toggle-icon::before {
  top: 0.3rem;
  transform: rotate(42deg);
}

.internal-header[data-nav-open="true"] .internal-header__toggle-icon::after {
  bottom: 0.24rem;
  transform: rotate(-42deg);
}

.internal-header__mobile-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  padding: 0;
  z-index: 78;
  background: rgba(61, 61, 61, 0.26);
}

.internal-header__mobile {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 0;
  right: 0;
  z-index: 79;
  display: grid;
  gap: 0.26rem;
  padding: 0.8rem;
  border-radius: 1rem;
  border: 1px solid rgba(124, 154, 130, 0.3);
  background: rgba(253, 251, 247, 0.99);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.internal-header[data-nav-open="true"] .internal-header__mobile {
  opacity: 1;
  transform: translateY(0);
}

.internal-header__mobile-link {
  padding: 0.62rem 0.7rem;
  border-radius: 0.62rem;
  color: #4f6457;
  font-weight: 700;
  transition: background-color var(--transition);
}

.internal-header__mobile-link:hover {
  background: rgba(124, 154, 130, 0.12);
}

.internal-header__mobile-cta {
  margin-top: 0.38rem;
  width: 100%;
}

.demo-main {
  padding-block: clamp(3rem, 8vw, 5.4rem);
}

.demo-shell {
  max-width: 42rem;
  margin-inline: auto;
  background: var(--color-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.demo-shell__label {
  margin: 0;
  color: #5d7963;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.demo-shell h1 {
  margin: 0.7rem 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  line-height: 1.2;
}

.demo-shell p {
  margin: 1rem 0 0;
  color: #55514b;
}

.demo-shell__article-title {
  margin: 0.9rem 0 0;
  color: #7d756d;
  font-family: var(--font-accent);
  font-size: 1.5rem;
}

.demo-shell__actions {
  margin-top: 1.4rem;
}

.article-main {
  padding-block: clamp(2.6rem, 6vw, 4.8rem);
}

.article-shell {
  width: min(100% - 1.4rem, 68rem);
  margin-inline: auto;
}

.article-hero {
  display: grid;
  gap: clamp(1.2rem, 3.8vw, 2rem);
  margin-bottom: clamp(1.9rem, 4vw, 2.9rem);
}

.article-hero__copy {
  background: rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 3vw, 2rem);
  animation: article-rise 700ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.article-kicker {
  margin: 0;
  color: #5d7963;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.article-title {
  margin: 0.8rem 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.74rem, 4.8vw, 3.02rem);
  line-height: 1.15;
  color: #3e4e43;
}

.article-intro {
  margin: 1rem 0 0;
  max-width: 45rem;
  color: #55514b;
  font-size: clamp(1rem, 2.15vw, 1.15rem);
}

.article-meta {
  margin: 1.1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.article-meta__item {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #4f6457;
  background: rgba(124, 154, 130, 0.15);
  border: 1px solid rgba(124, 154, 130, 0.28);
}

.article-hero__media {
  margin: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
  animation: article-image-reveal 760ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.article-hero__media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-body {
  max-width: 43rem;
  margin-inline: auto;
}

.article-section + .article-section {
  margin-top: 2.05rem;
  padding-top: 2.05rem;
  border-top: 1px solid rgba(124, 154, 130, 0.2);
}

.article-body h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 1.92rem);
  line-height: 1.24;
  color: #415347;
}

.article-body p {
  margin: 0.95rem 0 0;
  color: #4f4c46;
  font-size: clamp(1rem, 1.75vw, 1.08rem);
}

.article-inline-media {
  margin: 1.35rem 0 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.article-inline-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.takeaway-box {
  margin-top: 1.2rem;
  border-radius: 1rem;
  background: rgba(232, 213, 183, 0.37);
  border: 1px solid rgba(124, 154, 130, 0.25);
  padding: clamp(1rem, 2.6vw, 1.4rem);
}

.takeaway-box h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.6vw, 1.46rem);
  line-height: 1.24;
  color: #415347;
}

.takeaway-box p {
  margin-top: 0.78rem;
}

.takeaway-box ul {
  margin: 0.72rem 0 0;
  padding-left: 1.2rem;
}

.takeaway-box li + li {
  margin-top: 0.36rem;
}

.article-subpoints {
  display: grid;
  gap: 0.76rem;
  margin-top: 0.82rem;
}

.article-subpoint {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(124, 154, 130, 0.2);
  border-radius: 0.86rem;
  padding: 0.88rem 0.95rem;
}

.article-subpoint h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.3;
  color: #4b6153;
}

.article-subpoint p {
  margin-top: 0.56rem;
  font-size: 0.98rem;
}

.article-cta {
  margin-top: clamp(2.2rem, 4vw, 2.9rem);
  border-radius: 1.1rem;
  background: linear-gradient(145deg, rgba(124, 154, 130, 0.2), rgba(196, 133, 106, 0.12));
  border: 1px solid rgba(124, 154, 130, 0.24);
  padding: clamp(1rem, 2.6vw, 1.45rem);
}

.article-cta h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3.2vw, 1.86rem);
  line-height: 1.23;
  color: #425548;
}

.article-cta p {
  margin: 0.74rem 0 0;
}

.article-cta .btn {
  margin-top: 1rem;
}

.article-demo-note {
  margin: 1.4rem 0 0;
  font-size: 0.9rem;
  color: #6a655d;
}

.btn.is-loading {
  opacity: 0.86;
  cursor: wait;
  transform: none;
}

.internal-header__cta--current {
  pointer-events: none;
  opacity: 0.86;
}

.internal-header__mobile-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: rgba(124, 154, 130, 0.17);
  border: 1px solid rgba(124, 154, 130, 0.32);
  color: #4b6153;
  font-size: 0.88rem;
  font-weight: 700;
}

.booking-main {
  padding-block: clamp(2.6rem, 6.6vw, 4.8rem);
}

.booking-hero {
  position: relative;
}

.booking-hero__layout {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.4rem);
  align-items: center;
}

.booking-hero__copy {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 3vw, 2rem);
  max-width: 40rem;
  opacity: 0;
  transform: translateY(18px);
  animation: booking-rise 700ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
  animation-delay: var(--delay, 0s);
}

.booking-hero__copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.88rem, 5.1vw, 3rem);
  line-height: 1.16;
  color: #3f5146;
}

.booking-hero__copy p {
  margin: 0.92rem 0 0;
  color: #55514b;
}

.booking-hero__reassure {
  margin-top: 1rem;
  font-size: 0.96rem;
  color: #5e7863;
  font-weight: 700;
}

.booking-hero__media {
  margin: 0;
  opacity: 0;
  transform: translateY(18px);
  animation: booking-rise 700ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
  animation-delay: var(--delay, 0s);
}

.booking-hero__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(160deg, rgba(124, 154, 130, 0.18), rgba(196, 133, 106, 0.17));
  min-height: 18rem;
}

.booking-hero__image-wrap::before,
.booking-hero__image-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.booking-hero__image-wrap::before {
  width: 13rem;
  height: 13rem;
  background: rgba(124, 154, 130, 0.17);
  top: -3rem;
  right: -2rem;
}

.booking-hero__image-wrap::after {
  width: 12rem;
  height: 12rem;
  background: rgba(196, 133, 106, 0.18);
  bottom: -3.4rem;
  left: -2rem;
}

.booking-hero__image-wrap img {
  aspect-ratio: 16 / 12;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.booking-hero__image-wrap.is-fallback img {
  display: none;
}

.booking-strip {
  margin-top: clamp(1.2rem, 3vw, 1.8rem);
}

.booking-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.68rem;
}

.booking-strip__list li {
  border-radius: 999px;
  border: 1px solid rgba(124, 154, 130, 0.28);
  background: rgba(255, 255, 255, 0.8);
  color: #4d5f53;
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.88rem;
  font-size: 0.93rem;
  font-weight: 700;
}

.booking-interface {
  padding-top: clamp(1.8rem, 4.4vw, 2.6rem);
}

.booking-interface__grid {
  display: grid;
  gap: 1rem;
}

.booking-card {
  background: var(--color-card);
  border-radius: 1.1rem;
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 2.8vw, 1.5rem);
}

.booking-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  line-height: 1.2;
  color: #405247;
}

.booking-card p {
  margin: 0.72rem 0 0;
  color: #58534c;
}

.booking-picker + .booking-picker {
  margin-top: 1.15rem;
}

.booking-picker__label {
  margin: 0;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #60806a;
  font-weight: 700;
}

.booking-chip-grid,
.booking-time-grid {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.booking-chip,
.booking-time {
  font: inherit;
  color: #4f6054;
  background: rgba(124, 154, 130, 0.1);
  border: 1px solid rgba(124, 154, 130, 0.25);
  border-radius: 999px;
  padding: 0.54rem 0.82rem;
  min-height: 2.35rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}

.booking-chip:hover,
.booking-time:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 154, 130, 0.46);
  background: rgba(124, 154, 130, 0.14);
}

.booking-chip.is-selected,
.booking-time.is-selected {
  color: #fff;
  background: linear-gradient(160deg, #7c9a82, #6f8a75);
  border-color: #6b8771;
  box-shadow: 0 8px 18px rgba(124, 154, 130, 0.28);
}

.booking-selection {
  margin-top: 0.95rem;
  font-size: 0.9rem;
  color: #5f7864;
  font-weight: 700;
}

.booking-form {
  display: grid;
  gap: 0.92rem;
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field label {
  color: #4f4c46;
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--color-text);
  background: #fff;
  border: 1px solid rgba(124, 154, 130, 0.28);
  border-radius: 0.75rem;
  min-height: 2.72rem;
  padding: 0.62rem 0.78rem;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

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

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 0;
  border-color: #6f8a75;
  box-shadow: 0 0 0 3px rgba(124, 154, 130, 0.18);
}

.field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  border-radius: 0.82rem;
  background: rgba(124, 154, 130, 0.06);
  border: 1px solid rgba(124, 154, 130, 0.17);
  padding: 0.7rem 0.78rem;
}

.field--checkbox input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.12rem;
  accent-color: #7c9a82;
}

.field--checkbox span {
  font-size: 0.89rem;
  line-height: 1.5;
  color: #53504a;
}

.field--checkbox--aligned {
  align-items: center;
}

.field--checkbox--aligned input {
  margin-top: 0;
}

.booking-form__submit {
  margin-top: 0.16rem;
}

.booking-form__support {
  margin: 0;
  font-size: 0.88rem;
  color: #676258;
}

.booking-form__error {
  margin: 0;
  min-height: 1.3rem;
  color: #9b4d42;
  font-size: 0.88rem;
  font-weight: 700;
}

.booking-support {
  padding-top: clamp(1.2rem, 2.9vw, 1.8rem);
}

.booking-support__card {
  border-radius: 1rem;
  border: 1px solid rgba(124, 154, 130, 0.26);
  background: rgba(232, 213, 183, 0.28);
  padding: clamp(1rem, 2.5vw, 1.4rem);
  max-width: 43rem;
}

.booking-support__card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  color: #44574b;
}

.booking-support__card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
}

.booking-support__card li + li {
  margin-top: 0.4rem;
}

.offer-main {
  padding-block: clamp(2.6rem, 6.2vw, 4.8rem);
}

.offer-hero__layout {
  display: grid;
  gap: clamp(1.2rem, 3.8vw, 2.3rem);
  align-items: center;
}

.offer-hero__copy {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 3vw, 2rem);
  max-width: 41rem;
}

.offer-hero__copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  line-height: 1.15;
  color: #3f5246;
}

.offer-hero__copy p {
  margin: 0.9rem 0 0;
  color: #55514b;
}

.offer-hero__reassure {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #5e7863;
  font-weight: 700;
}

.offer-hero__media {
  margin: 0;
}

.offer-hero__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(160deg, rgba(124, 154, 130, 0.2), rgba(196, 133, 106, 0.2));
  min-height: 17rem;
}

.offer-hero__image-wrap::before,
.offer-hero__image-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.offer-hero__image-wrap::before {
  width: 12rem;
  height: 12rem;
  right: -2.3rem;
  top: -2.8rem;
  background: rgba(124, 154, 130, 0.17);
}

.offer-hero__image-wrap::after {
  width: 11rem;
  height: 11rem;
  left: -2.4rem;
  bottom: -3.2rem;
  background: rgba(196, 133, 106, 0.2);
}

.offer-hero__image-wrap img {
  position: relative;
  z-index: 2;
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.offer-hero__image-wrap.is-fallback img {
  display: none;
}

[data-offer-reveal] {
  opacity: 0;
  transform: translateY(18px);
  animation: booking-rise 700ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
  animation-delay: var(--delay, 0s);
}

.offer-section {
  padding-top: clamp(1.6rem, 4.2vw, 2.5rem);
}

.offer-section--tint .offer-section__shell {
  background: linear-gradient(180deg, rgba(124, 154, 130, 0.08), rgba(124, 154, 130, 0.02));
}

.offer-section__shell {
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 2.7vw, 1.45rem);
}

.offer-section__shell h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.38rem, 3.1vw, 1.86rem);
  line-height: 1.23;
  color: #3f5246;
}

.offer-point-grid {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.offer-point-grid li {
  border: 1px solid rgba(124, 154, 130, 0.23);
  background: rgba(255, 255, 255, 0.84);
  border-radius: 0.95rem;
  padding: 0.78rem 0.9rem;
  color: #534f49;
}

.offer-message {
  border-radius: 1rem;
  background: rgba(232, 213, 183, 0.3);
  border: 1px solid rgba(124, 154, 130, 0.22);
  padding: clamp(0.95rem, 2.4vw, 1.2rem);
}

.offer-message p {
  margin: 0.78rem 0 0;
  color: #544f48;
}

.offer-section--form .offer-section__shell {
  background: rgba(255, 255, 255, 0.92);
}

.offer-form-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.1vw, 1.92rem);
  line-height: 1.2;
  color: #405247;
}

.offer-form {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.92rem;
}

.offer-form__submit {
  margin-top: 0.16rem;
}

.offer-form__support {
  margin: 0;
  font-size: 0.88rem;
  color: #676258;
}

.offer-form__error {
  margin: 0;
  min-height: 1.3rem;
  color: #9b4d42;
  font-size: 0.88rem;
  font-weight: 700;
}

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

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

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

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

@keyframes article-image-reveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

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

.legal-page .demo-shell h2 {
  margin: 1.5rem 0 0;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.3;
}

.legal-page .demo-shell ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.legal-page .demo-shell li + li {
  margin-top: 0.45rem;
}

.focus-outline:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(124, 154, 130, 0.9);
  outline-offset: 2px;
}

@media (max-width: 28rem) {
  .container {
    width: min(100% - 1.6rem, 74rem);
  }

  .btn--large {
    width: 100%;
  }

  .hero__actions {
    width: 100%;
  }

  .site-footer__bottom {
    align-items: flex-start;
  }
}

@media (min-width: 42rem) {
  .offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

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

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

@media (min-width: 55rem) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  }

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

  .instagram-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.1rem;
  }

  .site-footer__middle {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
  }

  .site-footer__legal {
    justify-content: flex-end;
  }

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

  .booking-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  }

  .booking-interface__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
  }

  .offer-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  }
}

@media (min-width: 68rem) {
  .site-nav {
    gap: 1.4rem;
  }

  .site-nav__list {
    display: flex;
  }

  .site-nav__cta {
    display: inline-flex;
  }

  .site-nav__toggle,
  .site-nav__mobile,
  .site-nav__backdrop {
    display: none;
  }

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

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

  .story-card:nth-child(2) {
    transform: translateY(0.45rem);
  }

  .internal-header__nav {
    display: inline-flex;
  }

  .internal-header__toggle,
  .internal-header__mobile,
  .internal-header__mobile-backdrop {
    display: none;
  }

  .booking-strip__list li {
    min-height: 2.52rem;
  }

  .site-footer__bottom {
    flex-wrap: nowrap;
  }

  .steadsite-badge {
    margin-left: auto;
  }

  .offer-section__shell {
    padding: 1.45rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-section {
    opacity: 1;
    transform: none;
  }

  [data-hero-reveal] {
    opacity: 1;
    transform: none;
  }

  .booking-hero__copy,
  .booking-hero__media {
    opacity: 1;
    transform: none;
    animation: none;
  }

  [data-offer-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
