@font-face {
  font-family: "CI Literata";
  src: url("../fonts/literata-regular.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CI Manrope";
  src: url("../fonts/manrope-variable.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ci-green: #0c5b50;
  --ci-green-dark: #173c34;
  --ci-ivory: #fbf7ef;
  --ci-white: #fffdfc;
  --ci-coral: #ed6548;
  --ci-yellow: #f2be4b;
  --ci-mint: #e7f0eb;
  --ci-peach: #fbe5dc;
  --ci-ink: #25443d;
  --ci-border: #d9e3de;
  --ci-shadow: 0 24px 60px rgba(23, 60, 52, 0.11);
  --ci-radius: 26px;
  --ci-shell: min(1180px, calc(100% - 40px));
  --ci-serif: "CI Literata", Georgia, "Times New Roman", serif;
  --ci-sans: "CI Manrope", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ci-ivory);
  color: var(--ci-ink);
  font-family: var(--ci-sans);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

body, button, input, textarea { font-family: var(--ci-sans); }

a { color: inherit; }

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

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--ci-coral);
  outline-offset: 4px;
}

.ci-shell { width: var(--ci-shell); margin-inline: auto; }
.ci-narrow { max-width: 760px; }
.ci-main { min-height: 55vh; }

.ci-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ci-skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ci-white);
  color: var(--ci-green-dark);
  font-weight: 800;
}

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

.ci-preview {
  min-height: 38px;
  padding: 7px 20px;
  border-bottom: 1px solid rgba(178, 127, 19, 0.3);
  background: #fff1c8;
  color: #62460d;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.ci-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23, 60, 52, 0.1);
  background: rgba(255, 253, 252, 0.96);
  backdrop-filter: blur(14px);
}

.ci-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 28px;
}

.ci-brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 12px;
  color: var(--ci-green-dark);
  text-decoration: none;
}

.ci-brand__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: var(--ci-peach);
  color: var(--ci-coral);
}

.ci-brand__icon svg { width: 24px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.ci-brand strong { display: block; font-family: var(--ci-serif); font-size: 21px; line-height: 1.1; }
.ci-brand small { display: block; margin-top: 4px; font-size: 11px; }

.ci-nav { display: flex; align-items: center; gap: 8px; }

.ci-nav__link {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 12px;
  color: #365750;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.ci-nav__link::after {
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 2px;
  background: var(--ci-coral);
  content: "";
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.ci-nav__link:hover::after, .ci-nav__link.is-current::after { transform: scaleX(1); }

.ci-nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ci-border);
  border-radius: 999px;
  background: var(--ci-white);
  color: var(--ci-green-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.ci-nav-toggle svg { width: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2; }

.ci-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 2px solid var(--ci-green);
  border-radius: 999px;
  background: var(--ci-green);
  box-shadow: 0 12px 26px rgba(12, 91, 80, 0.18);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.ci-button:hover { background: #084a42; border-color: #084a42; box-shadow: 0 16px 34px rgba(12, 91, 80, 0.24); transform: translateY(-2px); }
.ci-button svg { width: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.ci-button--small { min-height: 48px; padding: 10px 20px; }
.ci-button--light { border-color: #fff; background: #fff; box-shadow: none; color: var(--ci-green-dark); }
.ci-button--light:hover { border-color: var(--ci-mint); background: var(--ci-mint); color: var(--ci-green-dark); }

.ci-text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  color: var(--ci-green-dark);
  font-weight: 850;
  text-decoration-color: var(--ci-coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.ci-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--ci-green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ci-eyebrow::before { width: 30px; height: 3px; background: var(--ci-coral); content: ""; }

h1, h2, h3, .ci-heading {
  margin-top: 0;
  color: var(--ci-green-dark);
  font-family: var(--ci-serif);
  text-wrap: balance;
}

h1 { margin-bottom: 28px; font-size: clamp(3.15rem, 6vw, 6rem); line-height: 0.98; letter-spacing: -0.05em; }
h2 { margin-bottom: 22px; font-size: clamp(2.25rem, 4.4vw, 4.2rem); line-height: 1.04; letter-spacing: -0.035em; }
h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.2; }
p { margin: 0 0 1.2em; }

.ci-lead { max-width: 660px; font-size: clamp(1.08rem, 1.8vw, 1.3rem); line-height: 1.7; }
.ci-muted { color: #58716c; }
.ci-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 30px; }

.ci-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 124px) 0 clamp(66px, 8vw, 112px);
  background: var(--ci-ivory);
}

.ci-hero::before, .ci-hero::after, .ci-page-hero::before {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.ci-hero::before { top: -180px; left: -160px; width: 460px; height: 460px; background: #fff0c9; }
.ci-hero::after { right: -150px; bottom: -180px; width: 500px; height: 500px; background: var(--ci-mint); opacity: 0.72; }

.ci-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
}

.ci-hero__copy { max-width: 700px; }

.ci-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 66% 28%, rgba(242, 190, 75, 0.62) 0 14%, transparent 15%),
    linear-gradient(145deg, #dce9df 0 45%, #f6d8cc 46% 100%);
  box-shadow: var(--ci-shadow);
}

.ci-media--portrait {
  width: min(430px, 100%);
  min-height: 0;
  aspect-ratio: 3 / 4;
  justify-self: end;
}

.ci-media::before {
  content: none;
}

.ci-media__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center center;
}

.ci-media__label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 9px;
  background: rgba(23, 60, 52, 0.94);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.ci-media__message {
  position: absolute;
  right: auto;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  max-width: calc(100% - 36px);
  padding: 12px 15px;
  border-radius: 14px;
  background: rgba(255, 253, 252, 0.96);
  box-shadow: 0 8px 24px rgba(23, 60, 52, 0.12);
  color: var(--ci-green-dark);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.4;
}

.ci-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 600px; margin-top: 46px; }
.ci-stat { padding: 0 24px; border-left: 1px solid var(--ci-border); }
.ci-stat:first-child { padding-left: 0; border-left: 0; }
.ci-stat strong { display: block; color: #a83925; font-family: var(--ci-serif); font-size: 28px; line-height: 1.1; }
.ci-stat span { display: block; margin-top: 5px; color: var(--ci-green-dark); font-size: 12px; font-weight: 800; }

.ci-proofbar { background: var(--ci-green); color: #fff; }
.ci-proofbar__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.ci-proof { display: flex; min-height: 120px; align-items: center; justify-content: center; gap: 16px; padding: 26px 34px; border-left: 1px solid rgba(255,255,255,.16); }
.ci-proof:first-child { border-left: 0; }
.ci-proof__icon { display: grid; width: 42px; height: 42px; place-items: center; color: var(--ci-yellow); }
.ci-proof__icon svg { width: 30px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.ci-proof strong, .ci-proof span { display: block; }
.ci-proof strong { font-size: 15px; }
.ci-proof span { color: #d7ede8; font-size: 13px; }

.ci-section { position: relative; padding: clamp(72px, 9vw, 128px) 0; }
.ci-section--ivory { background: var(--ci-ivory); }
.ci-section--white { background: var(--ci-white); }
.ci-section--mint { background: var(--ci-mint); }
.ci-section--peach { background: var(--ci-peach); }
.ci-section--green { background: var(--ci-green); color: #edf7f4; }
.ci-section--green h2, .ci-section--green h3, .ci-section--green .ci-eyebrow { color: #fff; }
.ci-section--green .ci-eyebrow::before { background: var(--ci-yellow); }

.ci-two-col { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .8fr); align-items: center; gap: clamp(44px, 8vw, 106px); }
.ci-two-col--reverse > :first-child { order: 2; }
.ci-copy { max-width: 660px; }

.ci-placeholder {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(23, 60, 52, .12);
  border-radius: var(--ci-radius);
  background:
    linear-gradient(135deg, transparent 0 52%, rgba(237, 101, 72, .12) 53% 62%, transparent 63%),
    radial-gradient(circle at 30% 30%, #fff0c9 0 18%, transparent 19%),
    var(--ci-white);
  box-shadow: var(--ci-shadow);
  color: var(--ci-green-dark);
  text-align: center;
}

.ci-placeholder::after { position: absolute; inset: 20px; border: 2px dashed rgba(12, 91, 80, .25); border-radius: 18px; content: ""; }
.ci-placeholder span { position: relative; z-index: 1; max-width: 280px; font-weight: 800; }

.ci-photo {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 60, 52, .12);
  border-radius: var(--ci-radius);
  background: var(--ci-white);
  box-shadow: var(--ci-shadow);
}

.ci-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.ci-photo--portrait { aspect-ratio: 4 / 5; }
.ci-photo--portrait img { object-position: center 54%; }
.ci-photo--landscape { aspect-ratio: 4 / 3; }
.ci-photo--landscape img { object-position: center 52%; }

.ci-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 253, 252, .92);
  color: var(--ci-green-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.ci-visual-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(23, 60, 52, .1);
  border-radius: 28px;
  box-shadow: var(--ci-shadow);
}

.ci-visual-card::after {
  position: absolute;
  right: -74px;
  bottom: -86px;
  width: 210px;
  height: 210px;
  border: 32px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  content: "";
}

.ci-visual-card > * { position: relative; z-index: 1; }
.ci-visual-card--home { background: #f7d8ce; }
.ci-visual-card--activity { background: #dfece6; }
.ci-visual-card--call { background: #fff0c9; }

.ci-visual-card__icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 24px;
  background: rgba(255, 253, 252, .78);
  color: var(--ci-coral);
}

.ci-visual-card__icon svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ci-visual-card h3 { max-width: 390px; font-size: clamp(2rem, 4vw, 3.2rem); }
.ci-visual-card p { max-width: 430px; }
.ci-check-list { display: grid; gap: 12px; padding: 0; margin: 26px 0 0; list-style: none; }
.ci-check-list li { position: relative; padding-left: 30px; font-weight: 700; }
.ci-check-list li::before { position: absolute; top: .56em; left: 0; width: 16px; height: 8px; border-bottom: 2px solid var(--ci-green); border-left: 2px solid var(--ci-green); content: ""; transform: rotate(-45deg); }

.ci-section-heading { max-width: 760px; margin-bottom: clamp(38px, 5vw, 62px); }
.ci-section-heading--wide { max-width: 900px; }

.ci-moments {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ci-moments::before {
  position: absolute;
  top: 39px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: rgba(12, 91, 80, .17);
  content: "";
}

.ci-moment {
  position: relative;
  z-index: 1;
  min-height: 310px;
  padding: 0 22px 30px;
  border: 1px solid rgba(23, 60, 52, .1);
  border-radius: 24px;
  background: rgba(255, 253, 252, .88);
  box-shadow: 0 14px 34px rgba(23, 60, 52, .05);
}

.ci-moment:nth-child(even) { margin-top: 30px; }

.ci-moment__number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: -18px 0 24px;
  border: 7px solid var(--ci-ivory);
  border-radius: 50%;
  background: var(--ci-coral);
  color: #fff;
  font-family: var(--ci-serif);
  font-size: 18px;
  font-weight: 800;
}

.ci-moment__time {
  margin-bottom: 9px;
  color: #a83925;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ci-moment h3 { font-size: clamp(1.35rem, 2vw, 1.65rem); }
.ci-moment p:last-child { margin-bottom: 0; }
.ci-routine__link { margin-top: 34px; }

.ci-life { overflow: hidden; }
.ci-life::before {
  position: absolute;
  top: 28px;
  right: -105px;
  width: 260px;
  height: 260px;
  border: 44px solid rgba(242, 190, 75, .34);
  border-radius: 50%;
  content: "";
}

.ci-album {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(5, 88px);
  gap: 16px;
}

.ci-album__item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--ci-white);
  border-radius: 22px;
  background: var(--ci-white);
  box-shadow: var(--ci-shadow);
}

.ci-album__item img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.ci-album__item figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 252, .94);
  color: var(--ci-green-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.ci-album__item--garden { grid-column: 1 / 7; grid-row: 1 / 6; transform: rotate(-1.2deg); }
.ci-album__item--garden img { object-position: center 58%; }
.ci-album__item--workshop { grid-column: 7 / 10; grid-row: 1 / 4; transform: rotate(1.5deg); }
.ci-album__item--workshop img { object-position: center 58%; }
.ci-album__item--craft { grid-column: 10 / 13; grid-row: 1 / 4; transform: rotate(-1deg); }
.ci-album__item--craft img { object-position: center; }
.ci-album__item--outside { grid-column: 7 / 13; grid-row: 4 / 6; transform: rotate(.6deg); }
.ci-album__item--outside img { object-position: center 51%; }

.ci-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ci-grid--two { grid-template-columns: repeat(2, 1fr); }
.ci-grid--four { grid-template-columns: repeat(4, 1fr); }

.ci-card {
  height: 100%;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(23, 60, 52, .11);
  border-radius: 22px;
  background: var(--ci-white);
  box-shadow: 0 14px 34px rgba(23, 60, 52, .06);
}

.ci-card__number { display: block; margin-bottom: 18px; color: var(--ci-coral); font-family: var(--ci-serif); font-size: 34px; font-weight: 800; }
.ci-card p:last-child { margin-bottom: 0; }

.ci-note { margin-top: 34px; padding: 24px 28px; border-left: 4px solid var(--ci-coral); border-radius: 0 16px 16px 0; background: var(--ci-white); }
.ci-note strong { color: var(--ci-green-dark); }

.ci-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 138px) 0 clamp(64px, 8vw, 110px);
  background: var(--ci-ivory);
}

.ci-page-hero::before { top: -210px; right: -130px; width: 500px; height: 500px; background: var(--ci-mint); }
.ci-page-hero .ci-shell { position: relative; z-index: 1; }
.ci-page-hero h1 { max-width: 930px; }

.ci-steps { counter-reset: ci-step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.ci-step { position: relative; min-height: 250px; padding: 38px 30px 30px; border-radius: 24px; background: var(--ci-white); }
.ci-step::before { counter-increment: ci-step; display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 24px; border-radius: 50%; background: var(--ci-peach); color: #a83925; content: counter(ci-step); font-family: var(--ci-serif); font-size: 22px; font-weight: 800; }

.ci-faq { display: grid; gap: 12px; margin-top: 34px; }
.ci-faq details { border: 1px solid var(--ci-border); border-radius: 16px; background: var(--ci-white); }
.ci-faq summary { position: relative; min-height: 58px; padding: 17px 56px 17px 20px; color: var(--ci-green-dark); cursor: pointer; font-weight: 800; list-style: none; }
.ci-faq summary::-webkit-details-marker { display: none; }
.ci-faq summary::after { position: absolute; top: 14px; right: 18px; display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: var(--ci-mint); content: "+"; font-size: 22px; }
.ci-faq details[open] summary::after { content: "−"; }
.ci-faq details p { padding: 0 20px 20px; margin: 0; }

.ci-contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 76px);
  border-radius: 30px;
  background: var(--ci-green);
  color: #edf7f4;
}
.ci-contact-panel::after { position: absolute; right: -90px; bottom: -120px; width: 310px; height: 310px; border: 38px solid rgba(242, 190, 75, .28); border-radius: 50%; content: ""; }
.ci-contact-panel > * { position: relative; z-index: 1; }
.ci-contact-panel h2 { max-width: 720px; color: #fff; }
.ci-contact-panel p { max-width: 670px; }

html.ci-motion-ready .ci-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 320ms ease-out var(--ci-reveal-delay, 0ms),
    transform 320ms cubic-bezier(.22, 1, .36, 1) var(--ci-reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.ci-motion-ready .ci-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (hover: hover) and (pointer: fine) {
  .ci-card,
  .ci-step,
  .ci-photo,
  .ci-moment,
  .ci-visual-card {
    transition: transform 220ms ease-out, box-shadow 220ms ease-out;
  }

  .ci-card:hover,
  .ci-step:hover,
  .ci-photo:hover,
  .ci-visual-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(23, 60, 52, .1);
  }

  html.ci-motion-ready .ci-card.ci-reveal.is-visible:hover,
  html.ci-motion-ready .ci-step.ci-reveal.is-visible:hover,
  html.ci-motion-ready .ci-photo.ci-reveal.is-visible:hover,
  html.ci-motion-ready .ci-visual-card.ci-reveal.is-visible:hover {
    transform: translate3d(0, -3px, 0);
  }
}

.ci-button:active { transform: scale(.98); }

.ci-footer { padding: 72px 0 24px; background: #103f38; color: #d7e8e4; }
.ci-share { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 54px; padding: 26px 30px; border: 1px solid rgba(255,255,255,.15); border-radius: 24px; background: rgba(255,255,255,.075); }
.ci-share__eyebrow { color: #b9d7d0; font-size: 13px; font-weight: 750; letter-spacing: .025em; }
.ci-share__title { margin-top: 3px; color: #fff; font-family: var(--ci-serif); font-size: clamp(1.55rem, 3vw, 2.1rem); font-weight: 750; line-height: 1.1; }
.ci-share__action { position: relative; flex: 0 0 auto; }
.ci-share__button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.26); border-radius: 999px; background: #fff; color: #103f38; font: inherit; font-weight: 850; cursor: pointer; transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease; }
.ci-share__button:hover { background: #f4e9dc; box-shadow: 0 10px 24px rgba(0,0,0,.14); transform: translateY(-2px); }
.ci-share__button:active { transform: scale(.98); }
.ci-share__button:focus-visible { outline: 3px solid #ffc9b5; outline-offset: 4px; }
.ci-share__status { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.ci-footer__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.ci-footer__brand { margin-bottom: 4px; color: #fff; font-family: var(--ci-serif); font-size: 28px; font-weight: 750; }
.ci-footer p { margin-bottom: 0; }
.ci-footer__action a { color: #fff; font-weight: 850; text-underline-offset: 5px; }
.ci-footer__action p { margin-top: 10px; font-size: 13px; }
.ci-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: 12px; }
.ci-footer__legal { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.ci-footer__legal a { color: #d7e8e4; text-underline-offset: 4px; }
.ci-footer__legal a:hover { color: #fff; }

.ci-legal__layout { display: grid; grid-template-columns: minmax(190px, .382fr) minmax(0, .618fr); gap: clamp(46px, 8vw, 104px); align-items: start; }
.ci-legal__nav { position: sticky; top: 108px; display: grid; gap: 4px; padding: 24px; border: 1px solid var(--ci-border); border-radius: 20px; background: var(--ci-ivory); }
.ci-legal__nav-title { margin: 0 0 10px; color: var(--ci-green-dark); font-weight: 850; }
.ci-legal__nav a { min-height: 44px; display: flex; align-items: center; padding: 8px 10px; border-radius: 10px; color: var(--ci-text); text-decoration: none; }
.ci-legal__nav a:hover { background: var(--ci-mint); color: var(--ci-green-dark); }
.ci-legal__nav a:focus-visible { outline: 3px solid var(--ci-coral); outline-offset: 2px; }
.ci-legal__content { min-width: 0; }
.ci-legal__section { scroll-margin-top: 112px; padding: 0 0 46px; margin: 0 0 46px; border-bottom: 1px solid var(--ci-border); }
.ci-legal__section:last-of-type { margin-bottom: 24px; }
.ci-legal__section h2 { margin-bottom: 22px; font-size: clamp(2rem, 4vw, 3.25rem); }
.ci-legal__section p, .ci-legal__address { max-width: 720px; }
.ci-legal__address { padding: 20px 22px; margin: 22px 0; border-left: 4px solid var(--ci-coral); border-radius: 0 14px 14px 0; background: var(--ci-ivory); color: var(--ci-text); font-style: normal; line-height: 1.8; }
.ci-legal__content a { font-weight: 750; text-underline-offset: 4px; }
.ci-legal__updated { color: var(--ci-muted); font-size: 14px; }

.elementor, .elementor-section-wrap, .elementor-element, .elementor-widget-container { min-width: 0; }
.elementor-widget-html, .elementor-widget-html > .elementor-widget-container { width: 100%; }
.elementor-section.elementor-section-boxed > .elementor-container { max-width: none; }
.elementor-column-gap-default > .elementor-column > .elementor-element-populated { padding: 0; }

@media (max-width: 1024px) {
  .ci-hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 46px; }
  .ci-media:not(.ci-media--portrait) { min-height: 470px; }
  .ci-grid--four { grid-template-columns: repeat(2, 1fr); }
  .ci-moments { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .ci-moments::before { display: none; }
  .ci-moment:nth-child(even) { margin-top: 0; }
}

@media (max-width: 900px) {
  .ci-header__inner { min-height: 76px; }
  .ci-nav-toggle { display: inline-flex; }
  .ci-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--ci-border);
    border-radius: 20px;
    background: var(--ci-white);
    box-shadow: var(--ci-shadow);
  }
  .ci-nav.is-open { display: grid; }
  .ci-nav__link { padding-inline: 16px; }
  .ci-nav__link::after { right: auto; left: 16px; width: 34px; }
  .ci-nav .ci-button { margin-top: 6px; }
  .ci-hero__grid, .ci-two-col { grid-template-columns: 1fr; }
  .ci-two-col--reverse > :first-child { order: initial; }
  .ci-hero__copy { max-width: 760px; }
  .ci-media { width: min(560px, 100%); }
  .ci-media:not(.ci-media--portrait) { min-height: 510px; }
  .ci-media--portrait { width: min(430px, 100%); justify-self: start; }
  .ci-proofbar__grid { grid-template-columns: 1fr; }
  .ci-proof { justify-content: flex-start; min-height: 92px; border-top: 1px solid rgba(255,255,255,.16); border-left: 0; }
  .ci-proof:first-child { border-top: 0; }
  .ci-grid { grid-template-columns: repeat(2, 1fr); }
  .ci-album { grid-template-rows: repeat(8, 82px); }
  .ci-album__item--garden { grid-column: 1 / 13; grid-row: 1 / 4; }
  .ci-album__item--workshop { grid-column: 1 / 7; grid-row: 4 / 7; }
  .ci-album__item--craft { grid-column: 7 / 13; grid-row: 4 / 7; }
  .ci-album__item--outside { grid-column: 1 / 13; grid-row: 7 / 9; }
  .ci-footer__grid { grid-template-columns: 1fr 1fr; }
	.ci-legal__layout { grid-template-columns: 1fr; }
	.ci-legal__nav { position: static; }
}

@media (max-width: 640px) {
  :root { --ci-shell: min(100% - 30px, 1180px); }
  body { font-size: 16px; }
  .ci-preview { padding-inline: 14px; font-size: 12px; }
  .ci-brand__icon { width: 44px; height: 44px; border-radius: 14px; }
  .ci-brand strong { font-size: 18px; }
  .ci-brand small { display: none; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .ci-hero { padding-top: 58px; }
  .ci-hero::before { width: 340px; height: 340px; }
  .ci-actions { align-items: stretch; }
  .ci-actions .ci-button { width: 100%; }
  .ci-media:not(.ci-media--portrait) { min-height: 390px; }
  .ci-stats { grid-template-columns: 1fr; gap: 18px; margin-top: 38px; }
  .ci-stat { padding: 0 0 18px; border-bottom: 1px solid var(--ci-border); border-left: 0; }
  .ci-stat:last-child { border-bottom: 0; }
  .ci-grid, .ci-grid--two, .ci-grid--four, .ci-steps, .ci-footer__grid { grid-template-columns: 1fr; }
	.ci-share { align-items: stretch; flex-direction: column; padding: 24px 22px; }
	.ci-share__button { width: 100%; }
  .ci-moments { grid-template-columns: 1fr; gap: 36px; }
  .ci-card, .ci-step { padding: 26px 22px; }
  .ci-placeholder { min-height: 330px; }
  .ci-visual-card { min-height: 0; }
  .ci-album { display: grid; grid-template-columns: 1fr; grid-template-rows: none; gap: 18px; }
  .ci-album__item,
  .ci-album__item--garden,
  .ci-album__item--workshop,
  .ci-album__item--craft,
  .ci-album__item--outside { grid-column: 1; grid-row: auto; min-height: 270px; transform: none; }
  .ci-album__item--workshop { min-height: 360px; }
  .ci-footer__bottom { flex-direction: column; }
	.ci-footer__legal { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0s !important; animation-iteration-count: 1 !important; transition-duration: 0s !important; }
  html.ci-motion-ready .ci-reveal { opacity: 1; transform: none; }
}
