:root {
  --forest-950: #09291d;
  --forest-900: #0d3425;
  --forest-800: #123f2c;
  --forest-700: #1d5840;
  --leaf: #82a960;
  --leaf-light: #b8cd9b;
  --cream: #f4f1e8;
  --paper: #fbfaf6;
  --sand: #ded5c1;
  --ink: #213229;
  --muted: #657168;
  --white: #fff;
  --radius: 22px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.story-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid #d3b76f;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--white);
  color: var(--forest-900);
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.scrolled,
.site-header.menu-visible {
  border-color: rgb(26 62 44 / 12%);
  background: rgb(250 248 240 / 94%);
  box-shadow: 0 10px 35px rgb(14 48 34 / 8%);
  backdrop-filter: blur(14px);
}

.site-header.menu-visible {
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  height: 92px;
  margin: 0 auto;
}

.brand {
  position: relative;
  z-index: 3;
  width: 260px;
  height: 62px;
  overflow: hidden;
  padding: 0;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  filter:
    drop-shadow(0 1px 1px rgb(250 248 240 / 90%))
    drop-shadow(0 0 8px rgb(250 248 240 / 52%));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-header.scrolled .main-nav,
.site-header.menu-visible .main-nav {
  color: var(--forest-900);
}

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

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  content: "";
  transition: transform 200ms ease;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 999px;
}

.site-header.scrolled .nav-cta,
.site-header.menu-visible .nav-cta {
  border-color: var(--forest-800);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest-900);
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 760px;
  height: 100svh;
  color: var(--white);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgb(4 30 19 / 78%) 0%, rgb(8 39 26 / 53%) 48%, rgb(5 31 20 / 18%) 78%),
    linear-gradient(0deg, rgb(4 26 17 / 55%) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: clamp(135px, 16vh, 180px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #d8e7c7;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--forest-700);
}

.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
}

.hero-copy {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--paper);
  color: var(--forest-900);
}

.button-primary:hover {
  background: var(--white);
}

.button-quiet {
  border-color: rgb(255 255 255 / 48%);
  color: var(--white);
}

.button-quiet:hover {
  background: rgb(255 255 255 / 12%);
}

.button-green {
  background: var(--forest-800);
  color: var(--white);
}

.button-green:hover {
  background: var(--forest-950);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgb(255 255 255 / 78%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 44px;
  height: 1px;
  background: currentColor;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #c9c1af;
}

.trust-strip div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 13px;
  padding: 30px 20px;
  background: var(--paper);
}

.trust-strip strong {
  color: var(--forest-800);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 58px;
}

.section-heading h2,
.history-copy h2,
.video-copy h2,
.contact-content h2 {
  margin: 0;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.gallery .section-heading {
  max-width: 980px;
}

.gallery .section-heading h2 {
  font-size: clamp(2.25rem, 3.4vw, 3.5rem);
  line-height: 1.08;
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offering-card {
  position: relative;
  overflow: hidden;
  min-height: 550px;
  border-radius: var(--radius);
  background: var(--forest-900);
  color: var(--white);
}

.offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 400ms ease;
}

.offering-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(4 29 19 / 92%) 0%, rgb(4 29 19 / 10%) 68%);
  content: "";
}

.offering-card:hover img {
  transform: scale(1.035);
  opacity: 0.78;
}

.card-number {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  color: rgb(255 255 255 / 72%);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.card-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
}

.card-content h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.card-content p {
  margin: 0;
  color: rgb(255 255 255 / 78%);
}

.video-section {
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(500px, 1.25fr);
  align-items: center;
  gap: 8vw;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  background: var(--forest-900);
  color: var(--white);
}

.video-copy h2,
.values-section h2 {
  color: var(--white);
}

.video-copy > p:last-child {
  margin: 25px 0 0;
  color: rgb(255 255 255 / 67%);
}

.video-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgb(0 0 0 / 24%);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #061c14;
  object-fit: cover;
}

.history {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 9vw;
}

.history-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.history-images figure {
  overflow: hidden;
  margin: 0;
  border-radius: 14px;
}

.history-main {
  grid-column: 1 / -1;
}

.history-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.72) sepia(0.12);
}

.history-main img {
  height: 360px;
}

.history-copy > p {
  color: var(--muted);
}

.history-copy .eyebrow {
  color: var(--forest-700);
}

.history-copy blockquote {
  margin: 34px 0 0;
  padding-left: 23px;
  border-left: 2px solid var(--leaf);
  color: var(--forest-800);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
}

.history-open {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 14px 21px;
  border: 1px solid var(--forest-700);
  border-radius: 999px;
  background: transparent;
  color: var(--forest-800);
  font: 750 0.9rem/1 var(--sans);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.history-open:hover {
  transform: translateY(-2px);
  background: var(--forest-800);
  color: var(--white);
}

.history-open b {
  font-size: 1.2rem;
  font-weight: 400;
}

.history-dialog {
  width: min(820px, calc(100% - 32px));
  max-height: min(88vh, 900px);
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 32px 100px rgb(4 29 19 / 34%);
  color: var(--ink);
}

.history-dialog::backdrop {
  background: rgb(5 27 18 / 72%);
  backdrop-filter: blur(7px);
}

.history-dialog-inner {
  position: relative;
  max-height: min(88vh, 900px);
  overflow-y: auto;
  padding: clamp(38px, 7vw, 76px);
  scrollbar-color: var(--leaf) transparent;
}

.history-close {
  position: sticky;
  z-index: 2;
  top: 0;
  float: right;
  display: grid;
  width: 44px;
  height: 44px;
  margin: -16px -16px 0 20px;
  place-items: center;
  border: 1px solid #cbc7bc;
  border-radius: 50%;
  background: rgb(251 250 246 / 94%);
  color: var(--forest-900);
  font: 300 1.8rem/1 var(--sans);
  cursor: pointer;
}

.history-close:hover {
  background: var(--forest-900);
  color: var(--white);
}

.history-dialog-heading {
  padding-bottom: 35px;
  border-bottom: 1px solid #d8d2c4;
}

.history-dialog-heading h2 {
  margin: 0;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.history-dialog-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.history-dialog-body {
  padding-top: 18px;
}

.history-dialog-body p {
  margin: 26px 0;
  color: #435149;
  font-family: var(--serif);
  font-size: clamp(1.04rem, 2vw, 1.18rem);
  line-height: 1.85;
}

.history-dialog-body p:first-child::first-letter {
  float: left;
  margin: 10px 9px 0 0;
  color: var(--forest-700);
  font-size: 4.8rem;
  line-height: 0.68;
}

.history-dialog-body .history-signature {
  margin-top: 40px;
  padding: 28px 0 0;
  border-top: 1px solid #d8d2c4;
  color: var(--forest-800);
  font-size: 1.3rem;
  font-style: italic;
}

.values-section {
  padding: 125px max(24px, calc((100vw - 1180px) / 2));
  background: var(--forest-950);
  color: var(--white);
}

.values-section .section-heading {
  max-width: 850px;
}

.values-section .values-intro {
  color: rgb(255 255 255 / 68%);
}

.principles-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.principle-card {
  appearance: none;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.principle-feature {
  min-height: 330px;
  padding: 38px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 18px;
  background: rgb(255 255 255 / 5%);
}

.principle-feature span,
.values-label {
  color: var(--leaf-light);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.principle-feature h3 {
  max-width: 480px;
  margin: 76px 0 14px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.principle-feature p {
  max-width: 480px;
  margin: 0;
  color: rgb(255 255 255 / 64%);
}

.values-label {
  margin: 0 0 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgb(255 255 255 / 14%);
}

.value {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 32px 28px;
  background: var(--forest-950);
}

.value span {
  color: var(--leaf-light);
  font-family: var(--serif);
}

.value h3 {
  margin: auto 0 12px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.value p {
  margin: 0;
  color: rgb(255 255 255 / 62%);
  font-size: 0.92rem;
}

.principle-card:focus-visible {
  outline: 2px solid var(--leaf-light);
  outline-offset: 4px;
}

.principle-dialog .history-dialog-body p:first-child::first-letter {
  float: none;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-grid figure {
  overflow: hidden;
  margin: 0;
  border-radius: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: var(--paper);
}

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

.contact-content {
  align-self: center;
  max-width: 630px;
  padding: 80px 8vw;
}

.contact-content > p:not(.eyebrow) {
  margin: 25px 0 30px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 0;
  margin: 45px 0 0;
}

.contact-list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid #d9d4c8;
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--forest-900);
  font-size: 0.94rem;
}

.contact-list dd a {
  display: block;
}

.contact-list dd a:hover {
  text-decoration: underline;
}

.contact-list .map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: var(--forest-700);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.contact-list .map-link b {
  font-size: 0.95rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.contact-list .map-link:hover b {
  transform: translate(2px, -2px);
}

.site-footer {
  padding: 70px max(24px, calc((100vw - 1180px) / 2)) 30px;
  background: var(--cream);
  color: var(--muted);
}

.site-footer > img {
  width: min(520px, 100%);
}

.site-footer > p {
  max-width: 500px;
  margin: 18px 0 55px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid #d8d2c4;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--forest-800);
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 19px;
  border-radius: 999px;
  background: #1f8b55;
  box-shadow: 0 12px 32px rgb(9 48 31 / 24%);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 750;
}

.floating-whatsapp b {
  font-size: 1.1rem;
}

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

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

@media (max-width: 980px) {
  .menu-button {
    position: relative;
    z-index: 3;
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    overflow-y: auto;
    padding: 125px 10vw 55px;
    transform: translateY(-105%);
    background: var(--cream);
    color: var(--forest-900);
    font-family: var(--serif);
    font-size: 1.8rem;
    transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .nav-cta {
    margin-top: 15px;
    border-color: var(--forest-800);
    font-family: var(--sans);
    font-size: 0.95rem;
  }

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

  .offering-card {
    min-height: 470px;
  }

  .video-section,
  .history {
    grid-template-columns: 1fr;
  }

  .video-section {
    gap: 50px;
  }

  .history {
    gap: 60px;
  }

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

  .contact-section {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .hero-content,
  .section {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    height: 78px;
  }

  .brand {
    width: 215px;
    height: 54px;
  }

  .brand img {
    height: 100%;
  }

  .hero {
    min-height: 700px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.7rem);
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 360px;
  }

  .scroll-cue {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    justify-content: flex-start;
    padding: 22px 28px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .video-section,
  .values-section {
    padding: 85px 16px;
  }

  .video-section {
    grid-template-columns: 1fr;
  }

  .history-images img {
    height: 150px;
  }

  .history-main img {
    height: 280px;
  }

  .history-dialog {
    width: calc(100% - 18px);
    max-height: 94vh;
    border-radius: 18px;
  }

  .history-dialog-inner {
    max-height: 94vh;
    padding: 38px 24px 45px;
  }

  .history-close {
    margin: -20px -8px 0 12px;
  }

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

  .principles-feature-grid {
    grid-template-columns: 1fr;
    margin-bottom: 44px;
  }

  .principle-feature {
    min-height: 280px;
    padding: 30px 26px;
  }

  .principle-feature h3 {
    margin-top: 54px;
  }

  .value {
    min-height: 230px;
  }

  .value h3 {
    margin-top: 38px;
  }

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

  .gallery-wide {
    grid-column: span 2;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-photo img {
    min-height: 380px;
    max-height: 460px;
  }

  .contact-content {
    padding: 70px 24px;
  }

  .contact-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .site-footer {
    padding: 60px 24px 100px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
  }
}

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

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

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