:root {
  --ink: #123f3a;
  --ink-deep: #082c29;
  --green: #17634f;
  --green-soft: #4d9733;
  --mint: #c8f2e2;
  --mint-pale: #e9faf3;
  --blue: #0878d8;
  --navy: #183b64;
  --cream: #f7f3ea;
  --white: #fff;
  --line: rgba(18, 63, 58, 0.15);
  --shadow: 0 24px 80px rgba(9, 50, 44, 0.12);
  --radius-lg: 2.25rem;
  --radius-md: 1.5rem;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-deep);
  background: var(--cream);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem clamp(1.25rem, 4vw, 4.5rem);
  color: var(--white);
  transition: 250ms ease;
}

.site-header.scrolled,
.site-header.menu-visible {
  color: var(--ink-deep);
  background: rgba(247, 243, 234, 0.93);
  box-shadow: 0 8px 30px rgba(5, 44, 39, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 0.75rem;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand small {
  font-size: 0.57rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 48% 52% 52% 48%;
  background: var(--green);
  transform: rotate(-12deg);
}

.brand-mark i {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.brand-mark i:nth-child(1) {
  top: -0.25rem;
  left: -0.05rem;
  width: 0.95rem;
  height: 0.95rem;
  background: var(--blue);
}

.brand-mark i:nth-child(2) {
  top: -0.1rem;
  right: -0.25rem;
  width: 1.08rem;
  height: 1.08rem;
  background: var(--green-soft);
}

.brand-mark i:nth-child(3) {
  right: -0.15rem;
  bottom: 0.1rem;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -0.35rem;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.site-nav > a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.15rem;
  color: var(--ink-deep);
  background: var(--mint);
  border-radius: 999px;
}

.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  color: inherit;
  font-weight: 700;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-login:hover {
  opacity: 0.78;
  transform: translateY(-1px);
}

.login-icon {
  margin-top: -1px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.35rem auto;
  background: currentColor;
  transition: 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: 8rem clamp(1.25rem, 6vw, 7rem) 4rem;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 40, 36, 0.92) 0%, rgba(6, 40, 36, 0.64) 38%, rgba(6, 40, 36, 0.07) 72%),
    linear-gradient(0deg, rgba(6, 40, 36, 0.45), transparent 40%);
}

.hero-content {
  width: min(720px, 60vw);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--mint);
}

.hero h1,
.section h2,
.message-dialog h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.25rem, 6.3vw, 6.65rem);
}

.hero h1 em {
  display: inline-block;
  color: var(--mint);
  font-weight: 400;
}

.hero-copy {
  max-width: 580px;
  margin: 1.6rem 0 2.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.85rem 1.3rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(8, 120, 216, 0.32);
}

.button-mint {
  color: var(--ink-deep);
  background: var(--mint);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.text-link-light {
  color: var(--white);
}

.scroll-cue {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  font-style: normal;
}

.section {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5rem);
}

.section > * {
  max-width: var(--max);
  margin-inline: auto;
}

.section h2 {
  font-size: clamp(2.7rem, 5.2vw, 5.4rem);
}

.empathy {
  overflow: hidden;
  background: var(--mint-pale);
}

.section-intro {
  max-width: 850px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-intro .lead {
  max-width: 720px;
  margin: 1.2rem auto 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.parent-thoughts {
  display: grid;
  max-width: 1080px;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.thought {
  position: relative;
  min-height: 195px;
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 99, 79, 0.11);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(23, 99, 79, 0.05);
  transition: transform 220ms ease;
}

.thought:hover {
  transform: translateY(-5px) rotate(0deg);
}

.thought span {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  color: var(--green);
  background: var(--mint);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.thought p {
  max-width: 430px;
  margin: 1.8rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.22;
}

.thought-1,
.thought-4 {
  transform: rotate(-1deg);
}

.thought-2,
.thought-3 {
  transform: rotate(1deg);
}

.empathy-note {
  margin-top: 3.5rem;
  text-align: center;
}

.connection {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  background: var(--cream);
}

.connection > * {
  max-width: none;
  margin: 0;
}

.connection-photo {
  position: relative;
}

.connection-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.photo-caption {
  position: absolute;
  right: -1.2rem;
  bottom: 2rem;
  width: 180px;
  padding: 1rem;
  color: var(--white);
  background: var(--green);
  border-radius: 1.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.connection-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.6rem 0 2.2rem;
  color: #47645f;
  font-size: 1.08rem;
}

.method-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.method-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.method-list li > span {
  color: var(--green-soft);
  font-size: 0.75rem;
  font-weight: 800;
}

.method-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.method-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.method-list small {
  color: #60736f;
}

.experiences {
  max-width: none;
  color: var(--white);
  background: var(--ink-deep);
}

.experiences-heading {
  display: grid;
  margin-bottom: 3.5rem;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 2rem;
}

.experiences-heading h2 {
  max-width: 850px;
}

.experiences-heading > p {
  max-width: 420px;
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.experience-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius-md);
  isolation: isolate;
}

.experience-card-large {
  grid-column: 1 / -1;
  min-height: 650px;
}

.experience-card > img,
.card-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
}

.experience-card > img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.experience-card:hover > img {
  transform: scale(1.035);
}

.card-wash {
  z-index: -1;
  background: linear-gradient(0deg, rgba(5, 36, 32, 0.92), rgba(5, 36, 32, 0.02) 72%);
}

.experience-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.service-number {
  float: right;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 0.75rem;
}

.service-type {
  margin: 0 0 0.4rem;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-content h3 {
  margin: 0 0 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.experience-content > p:not(.service-type) {
  max-width: 580px;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.experience-content a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 800;
}

.purpose-shop {
  max-width: none;
  overflow: hidden;
  background: var(--white);
}

.purpose-shop > p:last-child {
  display: none;
}

.purpose-shop-heading {
  display: grid;
  margin-bottom: 3.2rem;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.purpose-shop-heading h2 {
  max-width: 900px;
}

.purpose-shop-heading > p {
  max-width: 500px;
  margin: 0 0 0.45rem;
  color: #526a66;
  font-size: 1.08rem;
}

.purpose-tabs {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.purpose-tablist {
  display: grid;
  padding: 0.65rem;
  background: var(--ink-deep);
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.purpose-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.15rem 1.5rem;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 1.2rem;
  cursor: pointer;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.purpose-tab span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.68rem;
}

.purpose-tab:hover {
  color: var(--white);
}

.purpose-tab[aria-selected="true"] {
  color: var(--ink-deep);
  background: var(--mint);
}

.purpose-tab:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.purpose-panel {
  padding: clamp(1.5rem, 4vw, 4rem);
}

.purpose-panel[hidden] {
  display: none;
}

.purpose-kicker,
.product-link {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promotion-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.promotion-copy h3,
.product-intro h3 {
  margin: 0.5rem 0 1.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.promotion-copy > p:not(.purpose-kicker),
.product-intro > p:not(.purpose-kicker) {
  max-width: 640px;
  margin-bottom: 1.7rem;
  color: #526a66;
}

.promotion-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
}

.promotion-route > div {
  display: flex;
  min-height: 245px;
  padding: 1.4rem;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius-md);
  flex-direction: column;
}

.promotion-route > div:nth-of-type(2) {
  color: var(--ink-deep);
  background: var(--mint);
}

.promotion-route > div:nth-of-type(3) {
  background: var(--blue);
}

.promotion-route span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.68rem;
}

.promotion-route strong {
  margin: 1rem 0 0.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

.promotion-route small {
  opacity: 0.76;
  line-height: 1.4;
}

.promotion-route > i {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.purpose-disclaimer {
  margin: 2rem 0 0;
  color: #60736f;
  font-size: 0.78rem;
  text-align: right;
}

.product-intro {
  max-width: 860px;
  margin-bottom: 2.5rem;
}

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

.product-card {
  display: flex;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  flex-direction: column;
}

.product-visual {
  position: relative;
  height: 190px;
  margin-bottom: 1.4rem;
  overflow: hidden;
  background: var(--mint-pale);
  border-radius: 1.1rem;
}

.product-visual span {
  position: absolute;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 12px 25px rgba(8, 44, 41, 0.13);
  transform: rotate(-8deg);
}

.product-visual span:nth-child(1) {
  top: 34px;
  left: 17%;
  width: 34%;
  height: 115px;
  background: var(--blue);
}

.product-visual span:nth-child(2) {
  top: 23px;
  right: 16%;
  width: 34%;
  height: 115px;
  background: var(--mint);
  transform: rotate(9deg);
}

.product-visual span:nth-child(3) {
  right: 15%;
  bottom: 22px;
  width: 54px;
  height: 54px;
  background: var(--green-soft);
  border-radius: 50%;
  transform: none;
}

.product-visual-courage {
  background: #eef6e8;
}

.product-visual-courage span:nth-child(1) {
  background: var(--green);
}

.product-visual-courage span:nth-child(2) {
  background: #dff0ad;
}

.product-visual-courage span:nth-child(3) {
  background: var(--blue);
}

.product-visual-connect {
  background: #edf5fb;
}

.product-visual-connect span:nth-child(1) {
  background: var(--navy);
}

.product-visual-connect span:nth-child(2) {
  background: #b7e4d6;
}

.product-card .product-link {
  margin: 0 0 0.6rem;
  letter-spacing: 0.07em;
}

.product-card h4 {
  margin: 0 0 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.05;
}

.product-card > p:not(.product-link) {
  color: #526a66;
}

.product-card ul {
  padding-left: 1.2rem;
  color: #526a66;
  font-size: 0.88rem;
}

.product-card > a {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--green);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.method-value {
  display: grid;
  margin-top: 1rem;
  padding: 1.4rem 1.6rem;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: 1.2rem;
  grid-template-columns: 0.5fr 1.5fr;
  align-items: center;
  gap: 1.5rem;
}

.method-value span {
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-value p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.achievement {
  display: grid;
  max-width: none;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  background: var(--mint);
}

.achievement > * {
  max-width: none;
  margin: 0;
}

.achievement-copy > p:not(.eyebrow) {
  margin: 1.5rem 0;
  color: #375e57;
  font-size: 1.08rem;
}

.achievement-copy blockquote {
  margin: 2rem 0 0;
  padding-left: 1.4rem;
  border-left: 3px solid var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.achievement-photo {
  position: relative;
}

.achievement-photo img {
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.achievement-badge {
  position: absolute;
  right: -1.2rem;
  bottom: -1.2rem;
  display: flex;
  padding: 1.15rem 1.4rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 1.2rem;
  flex-direction: column;
  box-shadow: 0 14px 30px rgba(8, 120, 216, 0.25);
}

.achievement-badge span {
  font-size: 0.78rem;
}

.families {
  display: grid;
  max-width: none;
  padding-top: 0;
  padding-bottom: 0;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: var(--blue);
}

.families > * {
  max-width: none;
  margin: 0;
}

.families-photo img {
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.families-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
  flex-direction: column;
}

.families-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.families-copy ul {
  padding: 0;
  margin: 1.2rem 0 2rem;
  list-style: none;
}

.families-copy li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.85rem 0;
}

.families-copy li span {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  color: var(--blue);
  background: var(--mint);
  border-radius: 50%;
  font-size: 0.75rem;
}

.welcome {
  display: grid;
  max-width: none;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  background: var(--cream);
}

.welcome > * {
  max-width: none;
  margin: 0;
}

.welcome-copy p:not(.eyebrow) {
  margin: 1.4rem 0 2rem;
  color: #526a66;
  font-size: 1.06rem;
}

.welcome-photo img {
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.real-space {
  color: var(--white);
  background: var(--green);
}

.real-space-heading {
  display: grid;
  margin-bottom: 3rem;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 2rem;
}

.real-space-heading .eyebrow {
  color: var(--mint);
}

.space-gallery {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  grid-template-rows: 1fr 0.65fr;
  gap: 1rem;
}

.space-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.space-gallery img {
  height: 100%;
  object-fit: cover;
}

.space-main {
  grid-row: 1 / 3;
}

.space-quote {
  display: grid;
  min-height: 220px;
  padding: 2rem;
  place-items: center;
  color: var(--ink-deep);
  background: var(--mint);
}

.space-quote blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.1;
}

.faq {
  display: grid;
  max-width: none;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--cream);
}

.faq > * {
  max-width: none;
  margin: 0;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--green);
  font-family: "Segoe UI", sans-serif;
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -0.4rem 0 1.5rem;
  color: #58706b;
}

.contact {
  background: var(--cream);
}

.contact-card {
  display: grid;
  padding: clamp(2rem, 5vw, 5rem);
  color: var(--white);
  background: var(--ink-deep);
  border-radius: var(--radius-lg);
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

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

.contact-form label {
  display: flex;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 700;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea,
.message-dialog textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.85rem;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(200, 242, 226, 0.12);
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.full-field {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.site-footer {
  display: grid;
  padding: 3rem clamp(1.25rem, 5vw, 5rem);
  color: var(--white);
  background: var(--ink-deep);
  grid-template-columns: 1.2fr 1fr 1fr auto;
  align-items: end;
  gap: 2rem;
}

.brand-footer {
  color: var(--white);
}

.site-footer > p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  font-size: 0.85rem;
}

.site-footer > small {
  color: rgba(255, 255, 255, 0.45);
}

.message-dialog {
  width: min(600px, calc(100vw - 2rem));
  padding: 2rem;
  color: var(--ink-deep);
  background: var(--cream);
  border: 0;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.message-dialog::backdrop {
  background: rgba(5, 36, 32, 0.7);
  backdrop-filter: blur(6px);
}

.message-dialog textarea {
  margin: 1rem 0;
  color: var(--ink-deep);
  background: var(--white);
  border-color: var(--line);
}

.dialog-close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--ink-deep);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 980px) {
  .menu-toggle {
    z-index: 102;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 7rem 1.5rem 2rem;
    color: var(--ink-deep);
    background: var(--cream);
    transform: translateX(100%);
    transition: transform 280ms ease;
    flex-direction: column;
    align-items: stretch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .nav-login {
    margin-top: auto;
    font-family: "Segoe UI", sans-serif;
    font-size: 1rem;
    justify-content: center;
    border: 1px solid rgba(5, 44, 39, 0.22);
    border-radius: 999px;
    padding: 0.75rem 1.15rem;
    color: var(--ink-deep);
  }

  .nav-cta {
    margin-top: 0.75rem;
    justify-content: center;
    font-family: "Segoe UI", sans-serif;
    font-size: 1rem;
  }

  .hero-content {
    width: min(680px, 83vw);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 40, 36, 0.92), rgba(6, 40, 36, 0.42) 75%),
      linear-gradient(0deg, rgba(6, 40, 36, 0.55), transparent 50%);
  }

  .connection,
  .achievement,
  .welcome,
  .faq {
    grid-template-columns: 1fr;
  }

  .connection-photo {
    max-width: 740px;
  }

  .connection-photo img {
    aspect-ratio: 1.2 / 1;
  }

  .experiences-heading,
  .real-space-heading {
    grid-template-columns: 1fr;
  }

  .families {
    grid-template-columns: 1fr;
  }

  .families-photo img {
    min-height: 520px;
    max-height: 680px;
  }

  .achievement-photo {
    order: -1;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .hero {
    align-items: end;
    padding: 7rem 1.15rem 6rem;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(6, 40, 36, 0.98) 0%, rgba(6, 40, 36, 0.62) 58%, rgba(6, 40, 36, 0.12));
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.3rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    width: max-content;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 4.5rem 1.15rem;
  }

  .section h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .parent-thoughts,
  .experience-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .thought {
    min-height: 170px;
  }

  .photo-caption {
    right: 0.8rem;
  }

  .method-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .experience-card,
  .experience-card-large {
    min-height: 530px;
    grid-column: auto;
  }

  .experience-card > img {
    object-position: 57% center;
  }

  .achievement-photo img {
    aspect-ratio: 0.9 / 1;
    object-position: 55% center;
  }

  .achievement-badge {
    right: 0.8rem;
  }

  .families-photo img {
    min-height: 480px;
    object-position: 60% center;
  }

  .families-copy {
    padding: 4.5rem 1.15rem;
  }

  .welcome-photo img {
    aspect-ratio: 1 / 1;
    object-position: 55% center;
  }

  .space-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .space-main {
    grid-row: auto;
  }

  .space-gallery figure {
    min-height: 280px;
  }

  .contact-card {
    padding: 2rem 1.15rem;
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .site-nav {
    gap: 0.8rem;
    font-size: 0.76rem;
  }

  .nav-cta {
    padding-inline: 0.85rem;
  }
}

@media (max-width: 980px) {
  .purpose-shop-heading,
  .promotion-feature {
    grid-template-columns: 1fr;
  }

  .purpose-shop-heading > p {
    max-width: 720px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: grid;
    grid-template-columns: 0.65fr 1fr;
    column-gap: 1.5rem;
  }

  .product-visual {
    height: 100%;
    min-height: 270px;
    margin: 0;
    grid-row: 1 / 7;
  }
}

@media (max-width: 680px) {
  .purpose-tab {
    padding: 0.9rem 0.55rem;
    gap: 0.4rem;
    font-size: 0.78rem;
  }

  .purpose-tab span {
    display: none;
  }

  .promotion-route {
    grid-template-columns: 1fr;
  }

  .promotion-route > div {
    min-height: 190px;
  }

  .promotion-route > i {
    text-align: center;
    transform: rotate(90deg);
  }

  .purpose-disclaimer {
    text-align: left;
  }

  .product-card {
    display: flex;
  }

  .product-visual {
    height: 190px;
    min-height: 0;
    margin-bottom: 1.4rem;
  }

  .method-value {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

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

.inner-page {
  background: var(--white);
}

.inner-page .site-header {
  color: var(--ink-deep);
  background: rgba(247, 243, 234, 0.96);
  box-shadow: 0 8px 30px rgba(5, 44, 39, 0.08);
  backdrop-filter: blur(18px);
}

.resources-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  padding: clamp(9rem, 14vw, 12rem) clamp(1.25rem, 5vw, 5rem) clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.resources-hero::before {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -180px;
  bottom: -220px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.resources-hero > * {
  position: relative;
  z-index: 1;
}

.resources-hero-copy {
  max-width: 860px;
}

.resources-hero h1 {
  margin: 1rem 0 1.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.resources-hero-copy > p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
}

.back-link {
  display: inline-flex;
  margin-bottom: 3rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 800;
}

.resources-hero-art {
  position: relative;
  min-height: 420px;
}

.resources-hero-art span {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.resources-hero-art span:nth-child(1) {
  width: 310px;
  height: 310px;
  top: 40px;
  left: 5%;
  background: var(--green);
}

.resources-hero-art span:nth-child(2) {
  width: 210px;
  height: 210px;
  top: 0;
  right: 0;
  background: var(--mint);
}

.resources-hero-art span:nth-child(3) {
  width: 155px;
  height: 155px;
  right: 8%;
  bottom: 0;
  background: var(--blue);
}

.resources-hero-art span:nth-child(4) {
  width: 100px;
  height: 100px;
  left: 0;
  bottom: 10px;
  background: var(--green-soft);
}

.resources-hero-art strong {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  color: var(--ink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 0.95;
  transform: translate(-50%, -50%) rotate(-5deg);
}

.purpose-shop-page {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.resources-cta {
  padding-top: 0;
  background: var(--white);
}

.resources-cta-card {
  padding: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius-lg);
  text-align: center;
}

.resources-cta-card h2 {
  max-width: 950px;
  margin-inline: auto;
}

.resources-cta-card > p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.2rem auto 2rem;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .resources-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .resources-hero-art {
    width: min(100%, 520px);
    min-height: 340px;
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .resources-hero {
    padding-top: 7.5rem;
    padding-bottom: 3.5rem;
    gap: 2rem;
  }

  .resources-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .back-link {
    margin-bottom: 2rem;
  }

  .resources-hero-art {
    min-height: 260px;
  }

  .resources-hero-art span:nth-child(1) { width: 210px; height: 210px; }
  .resources-hero-art span:nth-child(2) { width: 140px; height: 140px; }
  .resources-hero-art span:nth-child(3) { width: 105px; height: 105px; }
  .resources-hero-art span:nth-child(4) { width: 70px; height: 70px; }

  .purpose-shop-page {
    padding-inline: 1rem;
  }

  .purpose-panel {
    padding: 1.1rem;
  }

  .purpose-tablist {
    position: sticky;
    z-index: 5;
    top: 4.9rem;
  }

  .promotion-copy .button,
  .resources-cta-card .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .product-card {
    padding: 1rem;
  }
}

/* Checkout, agenda y ayuda opcional */
.product-buy {
  align-self: flex-start;
  margin-top: auto;
  padding: 1rem 0 0.2rem;
  color: var(--green);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-weight: 800;
}

.product-buy:hover {
  color: var(--blue);
}

.commerce-dialog {
  width: min(1040px, calc(100vw - 2rem));
  max-height: calc(100vh - 3rem);
  max-height: calc(100dvh - 3rem);
  padding: 0;
  overflow: hidden;
  color: var(--ink-deep);
  background: var(--cream);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 100px rgba(5, 36, 32, 0.28);
}

.commerce-dialog::backdrop {
  background: rgba(5, 36, 32, 0.82);
  backdrop-filter: blur(8px);
}

.commerce-close {
  position: absolute;
  z-index: 20;
  top: 1.5rem;
  right: 1.5rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: all 0.25s ease;
}

.commerce-close:hover {
  color: var(--ink-deep);
  background: var(--white);
  transform: rotate(90deg);
}

.commerce-container {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 620px;
  max-height: calc(100vh - 3rem);
  max-height: calc(100dvh - 3rem);
  overflow: hidden;
}

/* Columna Izquierda - Sidebar */
.commerce-sidebar {
  display: flex;
  padding: 3rem 2.2rem;
  color: var(--white);
  background: var(--ink-deep);
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow-y: auto;
}

.commerce-sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(23, 99, 79, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.commerce-brand {
  display: flex;
  margin-bottom: 3.5rem;
  align-items: center;
  gap: 0.6rem;
}

.commerce-brand .brand-mark {
  transform: scale(0.85);
}

.commerce-brand strong {
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  font-weight: 800;
}

.commerce-summary-info {
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.commerce-type-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  color: var(--ink-deep);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-sidebar h2 {
  margin: 1.2rem 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
}

.commerce-sidebar .commerce-workshop {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.45;
}

.commerce-price-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.commerce-price-block .price-label {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.commerce-sidebar .commerce-price {
  display: block;
  margin-top: 0.25rem;
  color: var(--mint);
  font-size: 1.6rem;
  font-weight: 800;
}

/* Columna Derecha - Content */
.commerce-content {
  padding: 3rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  background: var(--cream);
}

.commerce-section {
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--line);
  animation: fadeInSection 0.4s ease forwards;
}

@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.commerce-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.commerce-section h3 {
  margin: 0 0 0.6rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink-deep);
}

.commerce-section p {
  margin: 0 0 1.2rem 0;
  color: #526a66;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 620px;
}

.action-btn-wrapper {
  display: flex;
  margin-top: 1rem;
}

.commerce-payment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.payment-note-text {
  margin-top: 0.8rem !important;
  color: #7b9490 !important;
  font-size: 0.82rem !important;
}

/* Calendario y su wrapper */
.calendar-wrapper {
  margin-top: 1.2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(5, 36, 32, 0.03);
  overflow: hidden;
  border: 1px solid var(--line);
}

.calendar-placeholder {
  display: flex;
  padding: 2.5rem 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--mint-pale);
}

.calendar-placeholder-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.calendar-placeholder strong {
  display: block;
  color: var(--green);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.calendar-placeholder span {
  font-size: 0.88rem;
  color: #60736f;
  max-width: 440px;
  line-height: 1.45;
}

.calendar-frame {
  width: 100%;
  height: 480px;
  border: 0;
  background: var(--white);
  display: block;
}

.calendar-external {
  display: inline-flex;
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 800;
}

/* Botón WhatsApp */
.whatsapp-btn {
  display: inline-flex;
  padding: 0.85rem 1.6rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  background: #187b54;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(24, 123, 84, 0.2);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.whatsapp-btn:hover {
  background: #1e9666;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(24, 123, 84, 0.3);
}

.whatsapp-btn:active {
  transform: translateY(0);
}

.whatsapp-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Comportamiento Dinámico Colapsable */
.calendar-section.is-collapsed .calendar-wrapper,
.calendar-section.is-collapsed p[data-calendar-subheading] {
  display: none;
}

.calendar-section.is-collapsed {
  padding-bottom: 1.2rem;
}

.calendar-toggle-btn {
  background: none;
  border: 1px solid rgba(23, 99, 79, 0.3);
  color: var(--green);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  transition: all 0.2s ease;
}

.calendar-toggle-btn:hover {
  background: var(--mint-pale);
  border-color: var(--green);
}

/* Responsive */
@media (max-width: 768px) {
  .commerce-dialog {
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
    border-radius: 0;
    overflow-y: auto;
  }

  .commerce-close {
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.35);
  }
  
  .commerce-close:hover {
    background: rgba(0, 0, 0, 0.6);
  }

  .commerce-container {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .commerce-sidebar {
    padding: 3.5rem 1.5rem 2rem;
    min-height: auto;
  }

  .commerce-brand {
    margin-bottom: 2rem;
  }

  .commerce-sidebar h2 {
    font-size: 1.8rem;
  }

  .commerce-price-block {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .commerce-content {
    padding: 2rem 1.5rem;
    overflow-y: visible;
  }
  
  .commerce-payment-btn,
  .whatsapp-btn,
  .calendar-toggle-btn {
    width: 100%;
    justify-content: center;
  }
  
  .calendar-frame {
    height: 420px;
  }
}