@font-face {
  font-family: "Li Ador Noirrit";
  src: url("assets/fonts/LiAdorNoirrit-Regular.ttf?v=20260722-brandlogo") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Li Ador Noirrit";
  src: url("assets/fonts/LiAdorNoirrit-SemiBold.ttf?v=20260722-brandlogo") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Li Ador Noirrit";
  src: url("assets/fonts/LiAdorNoirrit-Bold.ttf?v=20260722-brandlogo") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f7fbf8;
  --surface: #ffffff;
  --surface-2: #edf7f0;
  --ink: #13362a;
  --muted: #5f756b;
  --green: #1f6b45;
  --green-2: #2f8a56;
  --teal: #0f5961;
  --gold: #c49335;
  --line: rgba(19, 54, 42, 0.14);
  --shadow: 0 18px 50px rgba(14, 58, 36, 0.14);
  --shadow-strong: 0 24px 70px rgba(14, 58, 36, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-parallax: 0px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Li Ador Noirrit", "Noto Sans Bengali", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold), var(--green-2), var(--teal));
  transition: transform 120ms linear;
}

.site-header {
  position: fixed;
  inset: 16px 20px auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(12, 44, 32, 0.42);
  backdrop-filter: blur(18px);
  animation: headerDrop 720ms var(--ease) both;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

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

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.brand-mark img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(19, 54, 42, 0.16));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  color: currentColor;
  opacity: 0.72;
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  position: relative;
  padding: 8px 11px;
  border-radius: 8px;
  font-size: 16px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 11px 5px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: 0;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 0.55;
  transform: scaleX(1);
}

.site-nav .nav-highlight {
  color: var(--gold);
}

.is-scrolled .site-nav a:hover,
.is-scrolled .site-nav a:focus-visible {
  background: var(--surface-2);
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
  color: #ffffff;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  background-image: url("assets/images/farm-courtyard-hero.jpg?v=20260722-brandlogo");
  background-position: center;
  background-size: cover;
  transform: translate3d(0, var(--hero-parallax), 0) scale(1.08);
  animation: heroBreath 12s var(--ease) both;
  will-change: transform;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 31, 23, 0.88) 0%, rgba(7, 31, 23, 0.62) 44%, rgba(7, 31, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 31, 23, 0.55), rgba(7, 31, 23, 0.1));
}

.hero-portrait {
  position: absolute;
  right: max(-44px, calc((100vw - var(--max)) / 2 - 88px));
  bottom: -10px;
  z-index: 2;
  width: min(45vw, 590px);
  margin: 0;
  pointer-events: none;
  animation: portraitRise 960ms var(--ease) 420ms both;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 2%;
  width: 68%;
  height: 36%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 147, 53, 0.35), rgba(31, 107, 69, 0.18) 46%, transparent 70%);
  filter: blur(18px);
  transform: translateY(10px);
}

.hero-portrait img {
  position: relative;
  width: 100%;
  max-height: min(82vh, 760px);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.34));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1160px;
}

.hero-content > * {
  animation: heroReveal 780ms var(--ease) both;
}

.hero-content > :nth-child(1) {
  animation-delay: 120ms;
}

.hero-content > :nth-child(2) {
  animation-delay: 210ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 300ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 390ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 480ms;
}

.hero-content > :nth-child(6) {
  animation-delay: 570ms;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-weight: 700;
  line-height: 1.08;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 9vw, 112px);
}

.invest-hero {
  min-height: 72vh;
}

.hero-lede {
  max-width: 710px;
  margin: 22px 0 0;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.25;
}

.hero-copy {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.mobile-founder-card {
  display: none;
}

.hero-actions,
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-115%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transition: transform 520ms ease;
}

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

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(115%);
}

.button.primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(18, 80, 48, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 18px 42px rgba(18, 80, 48, 0.28);
}

.hero .button.primary {
  background: #ffffff;
  color: var(--green);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button.ghost {
  border-color: var(--line);
  background: var(--surface);
  color: var(--green);
}

.button.ebook-coming-soon,
.button:disabled {
  border-color: rgba(196, 147, 53, 0.28);
  background: rgba(196, 147, 53, 0.14);
  color: #85611d;
  box-shadow: none;
  cursor: not-allowed;
}

.button.ebook-coming-soon:hover,
.button.ebook-coming-soon:focus-visible,
.button:disabled:hover,
.button:disabled:focus-visible {
  transform: none;
  box-shadow: none;
}

.inline-button {
  margin-top: 22px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 770px;
  margin: 42px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.trust-strip div {
  padding: 18px;
  transition: background 180ms ease;
}

.trust-strip div:hover {
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-strip dt {
  font-weight: 700;
}

.trust-strip dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.proof-section {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(47, 138, 86, 0.16), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(196, 147, 53, 0.14), transparent 28%),
    linear-gradient(180deg, #edf7f0 0%, #f7fbf8 50%, #ffffff 100%);
  color: var(--ink);
}

.proof-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 47, 36, 0.12), transparent);
}

.proof-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(20px, 3.8vw, 42px);
  border: 1px solid rgba(31, 107, 69, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(14, 58, 36, 0.12);
}

.proof-story {
  padding: 0;
  border-left: 4px solid rgba(196, 147, 53, 0.78);
  padding-left: clamp(18px, 3vw, 28px);
}

.proof-story .eyebrow {
  color: var(--gold);
}

.proof-story h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.2;
}

.proof-story p {
  max-width: 520px;
  margin: 0 0 26px;
  padding-top: 20px;
  color: var(--muted);
  line-height: 1.72;
}

.proof-story .button {
  box-shadow: 0 12px 30px rgba(31, 107, 69, 0.12);
}

.proof-photo-wall {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-template-rows: minmax(170px, 1fr) minmax(170px, 1fr);
  gap: 12px;
  min-height: 390px;
}

.proof-photo {
  position: relative;
  min-height: 170px;
  margin: 0;
  overflow: hidden;
  border: 6px solid #ffffff;
  border-radius: 8px;
  background: #153d2f;
  box-shadow: 0 20px 48px rgba(14, 58, 36, 0.16);
}

.proof-photo-main {
  grid-row: span 2;
}

.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 900ms var(--ease);
}

.proof-photo:hover img {
  transform: scale(1.07);
}

.proof-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(5, 32, 23, 0.72));
}

.proof-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  z-index: 1;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.proof-grid article {
  --proof-image: url("assets/images/farm-courtyard-hero.jpg?v=20260722-brandlogo");
  position: relative;
  min-height: 162px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #0f3a2b;
  box-shadow: 0 18px 46px rgba(12, 62, 40, 0.18);
  isolation: isolate;
}

.proof-grid article:nth-child(2) {
  --proof-image: url("assets/images/visitor-room.jpg?v=20260722-brandlogo");
}

.proof-grid article:nth-child(3) {
  --proof-image: url("assets/images/farm-entrance-gate.jpg?v=20260722-brandlogo");
}

.proof-grid article:nth-child(4) {
  --proof-image: url("assets/images/evening-resort-yard.jpg?v=20260722-brandlogo");
}

.proof-grid article::before,
.proof-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.proof-grid article::before {
  background-image: var(--proof-image);
  background-size: cover;
  background-position: center;
  opacity: 0.42;
  transform: scale(1.04);
  transition: transform 900ms var(--ease);
}

.proof-grid article::after {
  background:
    linear-gradient(135deg, rgba(7, 44, 31, 0.94), rgba(7, 44, 31, 0.62)),
    linear-gradient(180deg, transparent, rgba(7, 44, 31, 0.76));
}

.proof-grid article:hover::before {
  transform: scale(1.1);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--gold);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1;
}

.proof-grid span {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.proof-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-note {
  color: var(--muted);
}

.proof-grid p {
  margin: 4px 0 0;
}

.proof-note {
  margin-top: 18px;
  font-weight: 700;
  text-align: center;
  color: rgba(19, 54, 42, 0.74);
}

.section {
  padding: 96px 0;
  scroll-margin-top: 112px;
}

section[id] {
  scroll-margin-top: 112px;
}

.section h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.section h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.25;
}

.section p {
  margin-top: 0;
}

.split,
.project-layout,
.leadership-panel,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: start;
}

.section-lede,
.section-heading p {
  color: var(--muted);
  font-size: 21px;
}

.copy-stack p,
.project-layout p,
.leadership-panel p,
.message-box p {
  color: #38584b;
}

.value-grid,
.vision-grid,
.feature-grid,
.media-grid,
.book-grid,
.moment-stack,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
}

.value-card,
.vision-grid article,
.feature-grid article,
.media-card,
.book-card,
.moment-feature,
.moment-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
  will-change: transform;
}

.value-card:hover,
.vision-grid article:hover,
.feature-grid article:hover,
.media-card:hover,
.book-card:hover,
.moment-feature:hover,
.moment-card:hover,
.contact-cards a:hover,
.gallery-grid figure:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 138, 86, 0.32);
  box-shadow: var(--shadow);
}

.value-card {
  padding: 24px;
}

.value-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 700;
  transition: transform 220ms var(--ease);
}

.value-card:hover span {
  transform: translateY(-4px);
}

.value-card p,
.vision-grid p,
.feature-grid p,
.media-card p,
.book-card p,
.moment-feature p {
  margin: 0;
  color: var(--muted);
}

.vision-section {
  background:
    radial-gradient(circle at top right, rgba(47, 138, 86, 0.16), transparent 36%),
    var(--surface);
}

.section-heading {
  max-width: 800px;
  text-align: center;
}

.vision-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 44px;
}

.vision-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #f3faf5);
}

.vision-grid article::before,
.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(196, 147, 53, 0.14), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.vision-grid article:hover::before,
.media-card:hover::before {
  opacity: 1;
}

.project-section {
  background: var(--bg);
}

.project-layout {
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 16px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 380ms var(--ease), box-shadow 380ms ease, filter 380ms ease;
}

.image-stack img:last-child {
  height: 330px;
  margin-bottom: -38px;
}

.image-stack:hover img:first-child {
  transform: translateY(-8px) rotate(-0.6deg);
  box-shadow: var(--shadow-strong);
}

.image-stack:hover img:last-child {
  transform: translateY(8px) rotate(0.8deg);
  filter: saturate(1.06);
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
}

.feature-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-top: 4px solid var(--green-2);
}

.feature-grid article::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 260ms var(--ease);
}

.feature-grid article:hover::after {
  transform: scaleY(1);
}

.leadership-section {
  background: #123729;
  color: #ffffff;
}

.leadership-panel {
  align-items: center;
}

.leadership-panel .eyebrow {
  color: #d9b467;
}

.leadership-panel p,
.leadership-panel .copy-stack p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-block {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.quote-block::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 18px;
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: var(--gold);
}

.quote-block p {
  margin: 34px 0 0;
  font-size: clamp(27px, 3.4vw, 43px);
  font-weight: 700;
  line-height: 1.22;
}

.principle-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.principle-list li {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms var(--ease), background 180ms ease;
}

.principle-list li:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.13);
}

.faq-section {
  background: var(--surface);
}

.faq-list {
  max-width: 890px;
  margin-top: 38px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 132px;
  transition: border-color 180ms ease;
}

.faq-item.is-open {
  border-color: rgba(31, 107, 69, 0.32);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-size: 22px;
  font-weight: 700;
}

.faq-item b {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--surface-2);
  transition: background 180ms ease, transform 180ms var(--ease);
}

.faq-item b::before,
.faq-item b::after {
  content: "";
  position: absolute;
  inset: 13px 8px auto;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
}

.faq-item b::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item button[aria-expanded="true"] b::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  max-width: 760px;
  padding: 0;
  color: var(--muted);
  opacity: 0;
  transition: grid-template-rows 260ms var(--ease), opacity 220ms ease, padding 260ms var(--ease);
}

.faq-answer > * {
  min-height: 0;
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 0 24px;
  opacity: 1;
}

.faq-item.is-open b {
  background: rgba(31, 107, 69, 0.12);
  transform: rotate(180deg);
}

.media-section {
  background:
    linear-gradient(180deg, #f7fbf8, #edf7f0);
}

.media-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(31, 107, 69, 0.04), rgba(15, 89, 97, 0.1)),
    #ffffff;
}

.media-card span {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.books-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(196, 147, 53, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff, #f3faf5);
}

.books-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: end;
}

.books-header h2 {
  max-width: 620px;
}

.books-header p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.book-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.book-card {
  overflow: hidden;
  background: #ffffff;
}

.book-card figure {
  margin: 0;
  padding: 18px 18px 0;
  background:
    linear-gradient(180deg, rgba(31, 107, 69, 0.08), rgba(196, 147, 53, 0.08)),
    #f7fbf8;
}

.book-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 18px 40px rgba(14, 58, 36, 0.18);
  transition: transform 520ms var(--ease), filter 260ms ease;
}

.book-card:hover img {
  transform: translateY(-5px) scale(1.02);
  filter: saturate(1.06);
}

.book-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.book-tag {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.book-card h3 {
  margin-bottom: 0;
}

.book-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.book-actions .button {
  min-height: 44px;
  padding-inline: 14px;
}

.two-book-grid {
  max-width: 880px;
}

.ebook-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(31, 107, 69, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(196, 147, 53, 0.15), transparent 34%),
    linear-gradient(135deg, #ffffff, #eef8f2);
  box-shadow: var(--shadow);
}

.ebook-copy h2 {
  max-width: 650px;
}

.ebook-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.ebook-ideas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ebook-ideas span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(31, 107, 69, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: var(--green);
  font-weight: 700;
}

.ebook-topic-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(31, 107, 69, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(14, 58, 36, 0.12);
}

.ebook-topic-card label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.ebook-topic-card textarea {
  width: 100%;
  resize: vertical;
  min-height: 130px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  color: var(--ink);
  background: #fbfdfb;
  outline: 0;
}

.ebook-topic-card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 107, 69, 0.12);
}

.movement-grid article {
  display: grid;
  gap: 14px;
}

.movement-grid .button,
.writing-grid .button {
  width: fit-content;
  margin-top: 6px;
}

.testimonials-section,
.writing-section,
.team-section {
  background: var(--surface);
}

.testimonial-card {
  min-height: 230px;
}

.testimonial-card p {
  color: #38584b;
  font-size: 21px;
  line-height: 1.45;
}

.testimonial-card strong {
  display: block;
  margin-top: 22px;
}

.compact-gallery {
  margin-top: 56px;
}

.mini-form,
.newsletter-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-form input,
.newsletter-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfb;
  outline: 0;
}

.mini-form input:focus,
.newsletter-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 107, 69, 0.12);
}

.newsletter-section {
  background: #eaf6ee;
}

.newsletter-box {
  display: grid;
  gap: 14px;
}

.newsletter-form {
  grid-template-columns: minmax(0, 1fr) auto;
}

.team-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  margin-top: 42px;
}

.team-card p + p {
  margin-top: 10px;
}

.moments-section {
  background:
    radial-gradient(circle at 9% 8%, rgba(196, 147, 53, 0.16), transparent 32%),
    linear-gradient(180deg, #f8fbf8, #ffffff);
}

.moments-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: end;
}

.moments-header h2 {
  max-width: 610px;
}

.moments-header p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.moments-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  margin-top: 44px;
}

.moment-feature,
.moment-card {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.moment-feature img,
.moment-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 260ms ease;
}

.moment-feature:hover img,
.moment-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.moment-feature {
  min-height: 640px;
  background: #143c2e;
}

.moment-feature img {
  height: 640px;
  object-position: center top;
}

.moment-feature figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 86px 28px 28px;
  color: #ffffff;
  background: linear-gradient(180deg, transparent, rgba(7, 31, 23, 0.88));
}

.moment-feature span,
.moment-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.moment-feature strong,
.moment-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.2;
}

.moment-feature p {
  max-width: 430px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

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

.moment-card {
  min-height: 310px;
}

.moment-card img {
  height: 230px;
}

.moment-card figcaption {
  padding: 16px 18px 18px;
  background: #ffffff;
}

.moment-card:nth-child(2) img {
  object-position: center 28%;
}

.moment-card:nth-child(3) img {
  object-position: center top;
}

.gallery-section {
  background: var(--surface);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease), box-shadow 240ms ease;
}

.gallery-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 280ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.06);
}

.gallery-grid figcaption {
  padding: 16px 18px 18px;
  font-weight: 700;
}

.message-section {
  background: #eaf6ee;
}

.message-box {
  max-width: 920px;
  padding: 52px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.message-box h2 {
  max-width: 780px;
}

.contact-section {
  background: var(--bg);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.contact-cards a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
}

.contact-cards span,
.contact-cards strong {
  display: block;
}

.contact-cards span {
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 15px;
  scroll-margin-top: 112px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.contact-form:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfb;
  outline: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 107, 69, 0.12);
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  padding: 46px 0 24px;
  background: #0f2f24;
  color: #ffffff;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
}

.site-footer strong {
  display: block;
  font-size: 24px;
}

.footer-logo {
  width: 112px;
  height: auto;
  margin: 0 0 12px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.26));
}

.site-footer p,
.footer-note {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-button {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-note {
  width: min(var(--max), calc(100% - 40px));
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  font-weight: 700;
  box-shadow: var(--shadow-strong);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms var(--ease), background 180ms ease;
}

.floating-cta:hover,
.floating-cta:focus-visible {
  background: var(--teal);
  outline: 0;
  transform: translateY(-2px);
}

body.has-scrolled .floating-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-cta {
  background: #1f8f54;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms var(--ease) var(--reveal-delay, 0ms);
}

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

.value-card.reveal.is-visible:hover,
.vision-grid article.reveal.is-visible:hover,
.feature-grid article.reveal.is-visible:hover,
.media-card.reveal.is-visible:hover,
.book-card.reveal.is-visible:hover,
.moment-feature.reveal.is-visible:hover,
.moment-card.reveal.is-visible:hover,
.contact-cards a.reveal.is-visible:hover,
.gallery-grid figure.reveal.is-visible:hover {
  transform: translateY(-6px);
}

.contact-form.reveal.is-visible:focus-within {
  transform: translateY(-4px);
}

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

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

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes heroBreath {
  from {
    filter: saturate(0.92) contrast(0.96);
    transform: translate3d(0, var(--hero-parallax), 0) scale(1.04);
  }

  to {
    filter: saturate(1.04) contrast(1.02);
    transform: translate3d(0, var(--hero-parallax), 0) scale(1.08);
  }
}

@keyframes portraitRise {
  from {
    opacity: 0;
    transform: translate3d(26px, 34px, 0) scale(0.96);
  }

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

@media (max-width: 1040px) {
  .site-nav a {
    padding-inline: 8px;
    font-size: 15px;
  }

  .hero-portrait {
    right: -82px;
    width: min(50vw, 520px);
  }

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

  .proof-showcase {
    grid-template-columns: 1fr;
  }

  .proof-story h2 {
    max-width: 16ch;
  }

  .ebook-panel {
    grid-template-columns: 1fr;
  }

  .vision-grid,
  .feature-grid,
  .book-grid,
  .team-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .project-layout,
  .leadership-panel,
  .contact-layout {
    gap: 38px;
  }

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

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .site-header {
    inset: 10px 12px auto;
    width: calc(100% - 24px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 12px auto;
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 180ms ease, transform 180ms var(--ease);
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
    padding-bottom: clamp(280px, 42vw, 360px);
  }

  .hero-portrait {
    right: 14px;
    width: min(55vw, 390px);
    opacity: 0.92;
  }

  .hero-portrait img {
    max-height: 390px;
  }

  .proof-photo-wall {
    min-height: 340px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .trust-strip,
  .split,
  .project-layout,
  .leadership-panel,
  .books-header,
  .moments-header,
  .moments-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .books-header,
  .moments-header {
    gap: 18px;
  }

  .moment-feature {
    min-height: 520px;
  }

  .moment-feature img {
    height: 520px;
  }

  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:last-child {
    height: 300px;
    margin-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    inset: 8px 10px auto;
    width: calc(100% - 20px);
    gap: 10px;
    padding: 9px 10px;
  }

  .site-nav {
    inset: 66px 14px auto;
    padding: 8px;
  }

  .site-nav a {
    padding: 9px 12px;
    line-height: 1.25;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-mark img {
    width: 42px;
    height: 42px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding-top: 104px;
    padding-bottom: 30px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 31, 23, 0.74) 0%, rgba(7, 31, 23, 0.88) 48%, rgba(7, 31, 23, 0.96) 100%),
      linear-gradient(90deg, rgba(7, 31, 23, 0.82), rgba(7, 31, 23, 0.48));
  }

  .hero-portrait {
    display: none;
  }

  .hero-content > * {
    animation-duration: 520ms;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .proof-section {
    padding: 46px 0 56px;
    background:
      radial-gradient(circle at 10% 0%, rgba(47, 138, 86, 0.15), transparent 36%),
      radial-gradient(circle at 86% 18%, rgba(196, 147, 53, 0.12), transparent 30%),
      linear-gradient(180deg, #edf7f0 0%, #f7fbf8 54%, #ffffff 100%);
  }

  .proof-story {
    padding: 0 0 0 18px;
  }

  .proof-story h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.24;
  }

  .proof-story p {
    margin: 0 0 22px;
    padding-top: 16px;
    line-height: 1.68;
  }

  .proof-photo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 210px 150px;
    gap: 10px;
    min-height: 0;
  }

  .proof-photo-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .proof-photo figcaption {
    right: 12px;
    bottom: 10px;
    left: 12px;
    font-size: 14px;
  }

  .proof-grid {
    gap: 12px;
  }

  .proof-grid article {
    min-height: 154px;
  }

  .hero-lede {
    margin-top: 14px;
    font-size: 21px;
  }

  .hero-copy {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.55;
  }

  .mobile-founder-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
  }

  .mobile-founder-photo {
    display: block;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
  }

  .mobile-founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .mobile-founder-card strong,
  .mobile-founder-card small {
    display: block;
    line-height: 1.25;
  }

  .mobile-founder-card strong {
    font-weight: 700;
  }

  .mobile-founder-card small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
  }

  .hero-actions,
  .project-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 11px 16px;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }

  .trust-strip div {
    padding: 10px 8px;
  }

  .trust-strip div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-strip dt {
    font-size: 14px;
    line-height: 1.25;
  }

  .trust-strip dd {
    font-size: 12px;
    line-height: 1.25;
  }

  .section {
    padding: 58px 0;
  }

  .section h2 {
    font-size: clamp(29px, 9vw, 39px);
  }

  .section-lede,
  .section-heading p {
    font-size: 18px;
  }

  .value-grid,
  .proof-grid,
  .vision-grid,
  .feature-grid,
  .media-grid,
  .book-grid,
  .moment-stack,
  .team-grid,
  .gallery-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

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

  .proof-section {
    padding: 46px 0 56px;
    background:
      radial-gradient(circle at 10% 0%, rgba(47, 138, 86, 0.15), transparent 36%),
      radial-gradient(circle at 86% 18%, rgba(196, 147, 53, 0.12), transparent 30%),
      linear-gradient(180deg, #edf7f0 0%, #f7fbf8 54%, #ffffff 100%);
  }

  .proof-grid article {
    padding: 18px;
    min-height: 142px;
  }

  .proof-grid strong {
    font-size: 38px;
  }

  .book-grid,
  .moments-layout {
    margin-top: 32px;
  }

  .books-header p,
  .moments-header p {
    font-size: 18px;
  }

  .ebook-panel {
    padding: 22px;
  }

  .ebook-copy p {
    font-size: 18px;
  }

  .ebook-topic-card {
    padding: 18px;
  }

  .book-copy {
    padding: 18px;
  }

  .book-actions {
    grid-template-columns: 1fr;
  }

  .movement-grid .button,
  .writing-grid .button {
    width: 100%;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .value-grid {
    margin-top: 34px;
  }

  .value-card span {
    margin-bottom: 14px;
  }

  .moment-feature {
    min-height: 400px;
  }

  .moment-feature img {
    height: 400px;
  }

  .moment-feature figcaption {
    padding: 64px 18px 20px;
  }

  .moment-feature strong,
  .moment-card strong {
    font-size: 21px;
  }

  .moment-card {
    min-height: auto;
  }

  .moment-card img {
    height: 220px;
  }

  .message-box {
    padding: 28px;
  }

  .contact-form {
    padding: 18px;
  }

  .gallery-grid img,
  .image-stack img,
  .image-stack img:last-child {
    height: 230px;
  }

  .floating-cta {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    max-width: 165px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-actions,
  .project-actions {
    margin-top: 24px;
  }

  .hero {
    padding-top: 98px;
  }

  .value-card,
  .vision-grid article,
  .feature-grid article,
  .media-card {
    padding: 20px;
  }

  .book-card figure {
    padding: 14px 14px 0;
  }

  .moment-feature img {
    height: 380px;
  }

  .moment-card img {
    height: 205px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-bg,
  .button:hover,
  .button:focus-visible,
  .value-card:hover,
  .vision-grid article:hover,
  .feature-grid article:hover,
  .media-card:hover,
  .book-card:hover,
  .moment-feature:hover,
  .moment-card:hover,
  .contact-cards a:hover,
  .gallery-grid figure:hover,
  .contact-form:focus-within {
    transform: none;
  }
}






