@font-face {
  font-family: "Li Ador Noirrit";
  src: url("assets/fonts/LiAdorNoirrit-Regular.ttf?v=20260706-1925") 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=20260706-1925") 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=20260706-1925") 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: 46px;
  height: 46px;
  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);
}

.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=20260706-1925");
  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);
}

.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);
}

.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);
}

.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;
}

.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,
.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,
.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,
.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,
.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;
}

.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;
  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: 92px;
  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-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);
}

.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,
.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,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vision-grid,
  .feature-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;
  }
}

@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;
  }

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

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

  .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 {
    gap: 10px;
    padding: 9px 10px;
  }

  .brand {
    min-width: 0;
  }

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

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

  .hero {
    min-height: 100svh;
    padding-top: 118px;
    padding-bottom: 36px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 31, 23, 0.72) 0%, rgba(7, 31, 23, 0.86) 52%, rgba(7, 31, 23, 0.94) 100%),
      linear-gradient(90deg, rgba(7, 31, 23, 0.72), rgba(7, 31, 23, 0.28));
  }

  .hero-portrait {
    top: 78px;
    right: -118px;
    bottom: auto;
    width: 315px;
    opacity: 0.28;
    animation: none;
  }

  .hero-portrait::before {
    display: none;
  }

  .hero-portrait img {
    max-height: 365px;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.28));
  }

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

  .hero-lede {
    font-size: 22px;
  }

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

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

  .button {
    width: 100%;
  }

  .trust-strip {
    margin-top: 28px;
  }

  .trust-strip div {
    padding: 12px 16px;
  }

  .section h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

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

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

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

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

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

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

  .moment-feature figcaption {
    padding: 72px 20px 22px;
  }

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

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

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

  .message-box {
    padding: 28px;
  }

  .contact-form {
    padding: 18px;
  }

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

  .floating-cta {
    display: none;
  }
}

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

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

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

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

  .hero {
    padding-bottom: 34px;
  }

  .hero-portrait {
    top: 82px;
    right: -128px;
    width: 295px;
    opacity: 0.26;
  }

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

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

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

@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,
  .moment-feature:hover,
  .moment-card:hover,
  .contact-cards a:hover,
  .gallery-grid figure:hover,
  .contact-form:focus-within {
    transform: none;
  }
}
