:root {
  --green-deep: #1f5e3b;
  --green: #2f7a57;
  --terracotta: #c26a4a;
  --peach: #e2a38a;
  --cream: #f6f3ee;
  --sand: #e6e1d8;
  --charcoal: #2e2e2e;
  --white: #fff;
  --line: rgba(46, 46, 46, 0.16);
  --page: min(1240px, calc(100vw - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
  --mono: "Courier New", Courier, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--peach);
  color: var(--charcoal);
}

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

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

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

button {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--charcoal);
  color: var(--white);
}

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

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.section {
  padding-block: clamp(84px, 9vw, 132px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--green-deep);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--terracotta);
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 99;
  display: inline-flex;
  min-height: 58px;
  padding: 0 20px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(246, 243, 238, 0.5);
  border-radius: 999px;
  background: #1f7a4d;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(31, 94, 59, 0.28);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: var(--green-deep);
  box-shadow: 0 22px 52px rgba(31, 94, 59, 0.34);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: currentColor;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  color: var(--charcoal);
  transition:
    background 300ms ease,
    color 300ms ease,
    box-shadow 300ms ease,
    transform 400ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(246, 243, 238, 0.92);
  box-shadow: 0 1px 0 rgba(46, 46, 46, 0.1);
  backdrop-filter: blur(16px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  width: min(1380px, calc(100vw - 48px));
  height: 88px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  padding: 3px;
  border-radius: 50%;
  overflow: hidden;
  place-items: center;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  margin-left: auto;
  margin-right: clamp(28px, 4vw, 60px);
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--terracotta);
  content: "";
  transition: transform 300ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: inline-flex;
  padding: 10px 0 10px 10px;
  align-items: center;
  gap: 14px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:first-child {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-icon {
  position: relative;
  display: block;
  width: 30px;
  height: 18px;
}

.menu-icon i {
  position: absolute;
  right: 0;
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
  transition: transform 350ms var(--ease), top 350ms var(--ease);
}

.menu-icon i:first-child {
  top: 4px;
}

.menu-icon i:last-child {
  top: 13px;
  width: 21px;
}

.menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
  top: 9px;
  width: 30px;
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 101;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  background: var(--green-deep);
  color: var(--cream);
  transition:
    clip-path 650ms var(--ease),
    visibility 650ms;
}

.menu-panel.is-open {
  visibility: visible;
  clip-path: inset(0);
}

.menu-panel-inner {
  display: grid;
  width: var(--page);
  min-height: 100%;
  margin-inline: auto;
  padding: 140px 0 54px;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr auto;
}

.menu-eyebrow {
  color: var(--peach);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  display: flex;
  padding: 7px 0;
  align-items: flex-start;
  gap: 22px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.95;
  transition: color 250ms ease, transform 350ms var(--ease);
}

.mobile-nav a span {
  width: 26px;
  padding-top: 8px;
  color: var(--peach);
  font-family: var(--mono);
  font-size: 10px;
}

.mobile-nav a:hover {
  transform: translateX(12px);
  color: var(--peach);
}

.menu-footer {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(246, 243, 238, 0.22);
  padding-top: 25px;
}

.menu-footer p {
  margin: 0;
  color: rgba(246, 243, 238, 0.64);
  font-size: 13px;
}

.menu-footer a {
  border-bottom: 1px solid rgba(246, 243, 238, 0.55);
  font-size: 13px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 118px 0 62px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(230, 225, 216, 0.58) 1px, transparent 1px) center / 25% 100%,
    var(--cream);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  top: 13%;
  left: -9vw;
  width: 23vw;
  height: 23vw;
  border: 1px solid rgba(47, 122, 87, 0.15);
}

.hero-shape-two {
  right: -2vw;
  bottom: -12vw;
  width: 29vw;
  height: 29vw;
  background: rgba(226, 163, 138, 0.2);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
  gap: clamp(48px, 6vw, 88px);
}

.hero-copy {
  padding-top: 28px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(50px, 5.2vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.hero h1 em,
.section-heading h2 em,
.method-heading h2 em,
.contact-copy h2 em {
  color: var(--terracotta);
  font-weight: 400;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(46, 46, 46, 0.72);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 250ms ease,
    color 250ms ease,
    border-color 250ms ease,
    transform 250ms var(--ease);
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.button-primary {
  background: var(--green-deep);
  color: var(--cream);
}

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

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
}

.text-link span,
.arrow-link span {
  transition: transform 250ms var(--ease);
}

.text-link:hover span {
  transform: translateY(4px);
}

.arrow-link:hover span {
  transform: translate(3px, -3px);
}

.hero-highlights {
  display: flex;
  margin: clamp(42px, 5vw, 62px) 0 0;
  padding: 20px 0 0;
  gap: clamp(20px, 3vw, 44px);
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-highlights li {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.hero-highlights span {
  margin-right: 8px;
  color: var(--terracotta);
  font-family: var(--mono);
  font-size: 9px;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 440px);
}

.hero-photo-frame {
  position: relative;
  aspect-ratio: 0.75;
  overflow: hidden;
  border-radius: 220px 220px 10px 10px;
  background: var(--sand);
}

.hero-photo-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: inherit;
  content: "";
}

.hero-photo-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  transform: scale(1.025) translate3d(var(--photo-x, 0), var(--photo-y, 0), 0);
  transition: transform 800ms var(--ease);
}

.hero-stamp {
  position: absolute;
  top: 9%;
  left: -64px;
  z-index: 2;
  display: grid;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  place-items: center;
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 18px 45px rgba(46, 46, 46, 0.18);
}

.stamp-text {
  position: absolute;
  inset: 7px;
  width: 114px;
  height: 114px;
  animation: stamp-spin 24s linear infinite;
}

.stamp-text text {
  fill: currentColor;
  font-family: var(--mono);
  font-size: 9.4px;
  font-weight: 700;
  letter-spacing: 0;
}

.stamp-leaf {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

@keyframes stamp-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-caption {
  position: absolute;
  right: -28px;
  bottom: 28px;
  margin: 0;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
  color: var(--green-deep);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.scroll-cue span {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: var(--terracotta);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  50%,
  100% {
    transform: translateX(100%);
  }
}

.manifesto {
  background: var(--sand);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(48px, 8vw, 112px);
}

.section-number {
  color: rgba(46, 46, 46, 0.2);
  font-family: var(--serif);
  font-size: clamp(72px, 8vw, 112px);
  line-height: 1;
}

.manifesto-copy h2 {
  max-width: 900px;
  margin-bottom: 35px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.manifesto-copy > p {
  max-width: 770px;
  margin-bottom: 36px;
  color: rgba(46, 46, 46, 0.72);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.arrow-link {
  color: var(--green-deep);
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--cream);
}

.about::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  border-left: 1px solid rgba(246, 243, 238, 0.12);
  content: "";
}

.about-accent {
  position: absolute;
  top: -17vw;
  right: -13vw;
  width: 38vw;
  height: 38vw;
  border: 1px solid rgba(226, 163, 138, 0.25);
  border-radius: 50%;
}

.about-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(58px, 7vw, 100px);
}

.about-media {
  position: relative;
}

.about-media::before {
  position: absolute;
  top: -24px;
  right: 25px;
  bottom: 24px;
  left: -24px;
  border: 1px solid rgba(226, 163, 138, 0.42);
  content: "";
}

.about-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84);
}

.about-media picture {
  display: block;
}

.about-media-note {
  position: absolute;
  right: -25px;
  bottom: -25px;
  display: flex;
  padding: 18px 22px;
  gap: 18px;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-media-note span + span::before {
  margin-right: 18px;
  color: rgba(246, 243, 238, 0.55);
  content: "•";
}

.about-copy h2 {
  max-width: 680px;
  margin-bottom: 32px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.about-copy h2 em {
  color: var(--peach);
  font-weight: 400;
}

.about-copy > p {
  max-width: 670px;
  color: rgba(246, 243, 238, 0.68);
}

.about-copy .about-lead {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.5;
}

.about-values {
  display: grid;
  margin: 44px 0 42px;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.about-values article {
  padding-top: 18px;
  border-top: 1px solid rgba(246, 243, 238, 0.25);
}

.about-values span {
  color: var(--peach);
  font-family: var(--mono);
  font-size: 9px;
}

.about-values h3 {
  margin: 10px 0 7px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.about-values p {
  margin: 0;
  color: rgba(246, 243, 238, 0.6);
  font-size: 13px;
}

.button-light {
  border-color: rgba(246, 243, 238, 0.65);
  color: var(--cream);
}

.button-light:hover {
  border-color: var(--peach);
  background: var(--peach);
  color: var(--charcoal);
}

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

.section-heading {
  display: grid;
  margin-bottom: clamp(52px, 6vw, 78px);
  align-items: end;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 60px;
}

.section-heading h2 {
  max-width: 840px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: rgba(46, 46, 46, 0.66);
  font-size: 15px;
}

.service-list {
  border-top: 1px solid var(--charcoal);
}

.service-item {
  border-bottom: 1px solid var(--line);
}

.service-item button {
  display: grid;
  width: 100%;
  padding: 28px 0;
  align-items: center;
  grid-template-columns: 90px 1fr auto;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.service-index {
  color: var(--terracotta);
  font-family: var(--mono);
  font-size: 10px;
}

.service-name {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.service-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 250ms ease, transform 350ms var(--ease);
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--charcoal);
  content: "";
}

.service-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 300ms var(--ease);
}

.service-item.is-open .service-icon {
  transform: rotate(180deg);
  background: var(--terracotta);
}

.service-item.is-open .service-icon::after {
  transform: translate(-50%, -50%);
}

.service-item.is-open .service-icon::before,
.service-item.is-open .service-icon::after {
  background: var(--cream);
}

.service-content {
  display: grid;
  max-height: 0;
  padding: 0 84px 0 90px;
  overflow: hidden;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  opacity: 0;
  transition:
    max-height 500ms var(--ease),
    padding 500ms var(--ease),
    opacity 350ms ease;
}

.service-item.is-open .service-content {
  max-height: 280px;
  padding-bottom: 38px;
  opacity: 1;
}

.service-content p {
  max-width: 640px;
  margin: 0;
  color: rgba(46, 46, 46, 0.7);
  font-size: 16px;
}

.service-content ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
  list-style: none;
}

.service-content li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.principles-heading {
  display: grid;
  margin-bottom: clamp(52px, 6vw, 78px);
  align-items: end;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 60px;
}

.principles-heading h2 {
  max-width: 740px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.principles-heading h2 em {
  color: var(--terracotta);
  font-weight: 400;
}

.principles-heading > p {
  max-width: 440px;
  margin: 0 0 5px;
  color: rgba(46, 46, 46, 0.68);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--charcoal);
}

.principles-grid article {
  min-height: 285px;
  padding: 28px 30px 32px;
  border-right: 1px solid var(--line);
}

.principles-grid article:first-child {
  padding-left: 0;
}

.principles-grid article > span {
  color: var(--terracotta);
  font-family: var(--mono);
  font-size: 10px;
}

.principles-grid h3 {
  max-width: 270px;
  margin: 82px 0 14px;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.18;
}

.principles-grid article p {
  margin: 0;
  color: rgba(46, 46, 46, 0.64);
  font-size: 14px;
}

.principles-grid blockquote {
  display: flex;
  min-height: 285px;
  margin: 0;
  padding: 30px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--terracotta);
  color: var(--cream);
}

.principles-grid blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.18;
}

.principles-grid blockquote footer {
  color: rgba(246, 243, 238, 0.76);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method {
  background:
    radial-gradient(circle at 92% 5%, rgba(226, 163, 138, 0.2) 0 180px, transparent 181px),
    var(--sand);
}

.method-heading {
  display: grid;
  margin-bottom: clamp(52px, 6vw, 78px);
  grid-template-columns: 0.55fr 1.45fr;
}

.method-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.method-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--charcoal);
  list-style: none;
}

.method-steps li {
  min-height: 265px;
  padding: 26px 26px 8px;
  border-right: 1px solid var(--line);
}

.method-steps li:first-child {
  padding-left: 0;
}

.method-steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.method-steps > li > span {
  color: var(--terracotta);
  font-family: var(--mono);
  font-size: 10px;
}

.method-steps div {
  margin-top: 72px;
}

.method-steps h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.2;
}

.method-steps p {
  margin: 0;
  color: rgba(46, 46, 46, 0.65);
  font-size: 13px;
}

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

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 8vw, 112px);
}

.faq-heading h2 {
  max-width: 520px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.faq-heading > p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(46, 46, 46, 0.66);
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 16px;
  height: 1px;
  transform: translateY(-50%);
  background: var(--charcoal);
  content: "";
  transition: transform 250ms var(--ease);
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%);
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

.faq-list details p {
  max-width: 720px;
  margin: -3px 52px 25px 0;
  color: rgba(46, 46, 46, 0.68);
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--terracotta);
  color: var(--cream);
}

.contact-orbit {
  position: absolute;
  border: 1px solid rgba(246, 243, 238, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.contact-orbit-one {
  top: -260px;
  left: -200px;
  width: 620px;
  height: 620px;
}

.contact-orbit-two {
  right: -150px;
  bottom: -300px;
  width: 700px;
  height: 700px;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(64px, 8vw, 112px);
}

.contact-copy h2 {
  max-width: 650px;
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.contact-copy h2 em {
  color: var(--green-deep);
}

.contact-copy > p {
  max-width: 520px;
  color: rgba(246, 243, 238, 0.78);
}

.contact-note {
  display: flex;
  margin-top: 54px;
  align-items: center;
  gap: 18px;
}

.contact-note > span {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(246, 243, 238, 0.52);
  border-radius: 50%;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
}

.contact-note p {
  display: grid;
  margin: 0;
  color: rgba(246, 243, 238, 0.7);
  font-size: 12px;
}

.contact-note strong {
  color: var(--cream);
  font-size: 14px;
}

.contact-card {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  background: var(--cream);
  color: var(--charcoal);
}

.contact-card::before {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(31, 94, 59, 0.2);
  border-radius: 50%;
  content: "";
}

.contact-card-kicker {
  margin: 0 0 20px;
  color: var(--terracotta);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card h3 {
  max-width: 460px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.contact-card > p:not(.contact-card-kicker) {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(46, 46, 46, 0.68);
  font-size: 15px;
}

.button-dark {
  width: 100%;
  margin-top: 6px;
  background: var(--green-deep);
  color: var(--cream);
  cursor: pointer;
}

.button-dark:hover {
  background: var(--charcoal);
}

.contact-secondary {
  display: inline-flex;
  margin-top: 24px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(46, 46, 46, 0.38);
  padding-bottom: 4px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
}

.contact-secondary span {
  transition: transform 220ms var(--ease);
}

.contact-secondary:hover span {
  transform: translate(3px, -3px);
}

.site-footer {
  padding-top: 72px;
  background: var(--charcoal);
  color: var(--cream);
}

.footer-main {
  display: grid;
  padding-bottom: 65px;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
}

.brand-footer .brand-copy small {
  color: var(--peach);
}

.brand-footer .brand-mark {
  background: var(--cream);
}

.footer-main > p {
  max-width: 320px;
  margin: 0 auto;
  color: rgba(246, 243, 238, 0.55);
  font-family: var(--serif);
  font-size: 16px;
  text-align: center;
}

.back-to-top {
  justify-self: end;
  border-bottom: 1px solid rgba(246, 243, 238, 0.4);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  padding: 22px 0;
  justify-content: space-between;
  border-top: 1px solid rgba(246, 243, 238, 0.12);
  color: rgba(246, 243, 238, 0.64);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

[data-reveal] {
  transform: translateY(36px);
  opacity: 0;
  transition:
    transform 900ms var(--ease),
    opacity 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 60px;
  }

  .hero-stamp {
    left: -50px;
    width: 120px;
    height: 120px;
  }

  .stamp-text {
    inset: 5px;
    width: 110px;
    height: 110px;
  }

  .hero-caption {
    display: none;
  }

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

  .principles-grid article {
    border-bottom: 1px solid var(--line);
  }

  .principles-grid article:first-child {
    padding-left: 30px;
  }

  .principles-grid article:nth-child(2) {
    border-right: 0;
  }

  .principles-grid blockquote {
    grid-column: 2;
  }

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

  .method-steps li {
    min-height: 270px;
    border-bottom: 1px solid var(--line);
  }

  .method-steps li:nth-child(2) {
    border-right: 0;
  }

  .method-steps li:nth-child(3) {
    padding-left: 0;
    border-bottom: 0;
  }

  .method-steps li:nth-child(4) {
    border-bottom: 0;
  }

  .method-steps div {
    margin-top: 70px;
  }
}

@media (max-width: 860px) {
  :root {
    --page: min(100% - 36px, 680px);
  }

  .desktop-nav {
    display: none;
  }

  .header-inner {
    width: calc(100vw - 36px);
  }

  .menu-panel-inner {
    display: flex;
    padding-top: 120px;
    flex-direction: column;
  }

  .menu-eyebrow {
    margin-bottom: 38px;
  }

  .mobile-nav {
    margin-bottom: auto;
  }

  .mobile-nav a {
    font-size: clamp(38px, 8vw, 58px);
  }

  .menu-footer {
    margin-top: 60px;
  }

  .hero {
    padding-top: 135px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 0;
  }

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

  .hero-visual {
    width: min(78vw, 480px);
    margin: 10px 20px 40px 0;
  }

  .hero-stamp {
    left: -56px;
  }

  .scroll-cue {
    display: none;
  }

  .manifesto-grid,
  .about-grid,
  .section-heading,
  .principles-heading,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid {
    gap: 40px;
  }

  .section-number {
    display: none;
  }

  .about-grid {
    gap: 90px;
  }

  .about-media {
    width: min(84%, 500px);
  }

  .about-copy {
    max-width: 650px;
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading > p,
  .principles-heading > p {
    max-width: 580px;
  }

  .principles-heading {
    gap: 28px;
  }

  .method-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-grid {
    gap: 60px;
  }

  .contact-copy {
    max-width: 670px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    row-gap: 45px;
  }

  .footer-main > p {
    margin: 0;
    text-align: left;
  }

  .back-to-top {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  :root {
    --page: calc(100vw - 32px);
  }

  .section {
    padding-block: 72px;
  }

  .header-inner {
    width: calc(100vw - 32px);
    height: 76px;
  }

  .brand-copy {
    display: none;
  }

  .menu-toggle > span:first-child {
    display: none;
  }

  .menu-footer {
    display: block;
  }

  .menu-footer p {
    margin-bottom: 18px;
  }

  .hero {
    padding-top: 116px;
    background: var(--cream);
  }

  .whatsapp-float {
    width: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(34px, 8.7vw, 44px);
    letter-spacing: 0;
    line-height: 1;
  }

  .hero-intro {
    max-width: 34ch;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-visual {
    width: calc(100% - 28px);
    margin-top: 16px;
  }

  .hero-photo-frame {
    border-radius: 180px 180px 6px 6px;
  }

  .hero-stamp {
    top: 11%;
    left: 10px;
    width: 100px;
    height: 100px;
  }

  .stamp-text {
    width: 90px;
    height: 90px;
  }

  .stamp-text text {
    font-size: 8.5px;
    letter-spacing: 0;
  }

  .stamp-leaf {
    width: 32px;
  }

  .manifesto-copy h2,
  .about-copy h2,
  .section-heading h2,
  .principles-heading h2,
  .method-heading h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .about-media {
    width: calc(100% - 18px);
    margin-left: 18px;
  }

  .about-media::before {
    top: -18px;
    right: 18px;
    bottom: 18px;
    left: -18px;
  }

  .about-media-note {
    right: -9px;
    bottom: -28px;
    padding: 14px 12px;
    gap: 8px;
    font-size: 7px;
  }

  .about-media-note span + span::before {
    margin-right: 8px;
  }

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

  .service-item button {
    padding: 25px 0;
    grid-template-columns: 40px 1fr auto;
  }

  .service-name {
    font-size: 25px;
  }

  .service-icon {
    width: 34px;
    height: 34px;
  }

  .service-content {
    padding-inline: 40px 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-item.is-open .service-content {
    max-height: 430px;
    padding-bottom: 30px;
  }

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

  .principles-grid article,
  .principles-grid article:first-child {
    min-height: 0;
    padding: 26px 0 30px;
    border-right: 0;
  }

  .principles-grid h3 {
    margin-top: 38px;
  }

  .principles-grid blockquote {
    min-height: 260px;
    grid-column: auto;
  }

  .faq-list summary {
    padding-block: 21px;
    font-size: 21px;
  }

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

  .method-steps li,
  .method-steps li:first-child,
  .method-steps li:nth-child(3),
  .method-steps li:last-child {
    display: grid;
    min-height: 0;
    padding: 25px 0 28px;
    grid-template-columns: 40px 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-steps li:last-child {
    border-bottom: 0;
  }

  .method-steps div {
    margin: 0;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .footer-main {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-footer .brand-copy {
    display: grid;
  }

  .back-to-top {
    align-self: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

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

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

  [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
