:root {
  --green-950: #052f2c;
  --green-900: #073b37;
  --green-800: #0d4f49;
  --green-700: #17655d;
  --gold: #d4af37;
  --gold-light: #ecd879;
  --ivory: #f7f5ef;
  --paper: #fffefb;
  --ink: #10201e;
  --muted: #697572;
  --line: rgba(13, 79, 73, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--green-950);
  background: var(--gold-light);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 1.35rem;
  left: 50%;
  width: min(94%, 1400px);
  min-height: 4.75rem;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  color: white;
  background: rgba(4, 39, 36, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  position: relative;
  overflow: visible;
  display: block;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.brand-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-name {
  display: grid;
  line-height: 1;
}

.brand-name strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-name small {
  margin-top: 0.32rem;
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.desktop-nav {
  padding: 0.35rem;
  display: flex;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
}

.desktop-nav a {
  padding: 0.68rem 1rem;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-size: 0.79rem;
  transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav .is-active {
  color: white;
  background: rgba(255, 255, 255, 0.11);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.language-switch {
  height: 2.65rem;
  padding: 0.25rem 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.language-switch span {
  width: 1px;
  height: 0.8rem;
  background: rgba(255, 255, 255, 0.2);
}

.language-option {
  padding: 0;
  color: rgba(255, 255, 255, 0.45);
  background: none;
  border: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.language-option.is-active {
  color: var(--gold-light);
}

.header-cta {
  min-height: 3.25rem;
  padding: 0 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-950);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.menu-toggle {
  width: 3.15rem;
  height: 3.15rem;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.1rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 15;
  inset: 0;
  padding: 8rem 1.5rem 2rem;
  display: none;
  color: white;
  background: rgba(5, 47, 44, 0.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu a {
  padding: 1rem 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 11vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  padding: clamp(8.5rem, 14vh, 11rem) max(5vw, calc((100vw - 1360px) / 2)) 9rem;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(20rem, 0.86fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 7rem);
  isolation: isolate;
  color: white;
  background: var(--green-950);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 17% 35%, rgba(23, 101, 93, 0.75), transparent 35%),
    linear-gradient(115deg, rgba(5, 47, 44, 0.25), rgba(5, 47, 44, 0.88));
}

.hero-city {
  position: absolute;
  z-index: -3;
  inset: 0;
  background: url("assets/tirana-city.jpg") center 48% / cover no-repeat;
  filter: grayscale(0.2) saturate(0.65);
  opacity: 0.24;
}

.hero-grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.009) 0 1px, transparent 1px 5px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 50rem;
}

.eyebrow,
.section-kicker,
.principle-label {
  margin: 0 0 1.4rem;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.experience h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.91;
}

.hero h1 {
  max-width: 49rem;
  font-size: clamp(4.35rem, 7.4vw, 8.4rem);
}

.hero h1 span,
.hero h1 em,
.experience h2 span,
.experience h2 em {
  display: block;
}

.hero h1 em,
.experience h2 em {
  color: var(--gold-light);
  font-weight: 500;
}

.hero-intro {
  max-width: 39rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.button {
  min-height: 3.9rem;
  padding: 0 0.65rem 0 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 1.3rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.button-gold {
  color: var(--green-950);
  background: var(--gold);
  transition: background 180ms ease, transform 180ms ease;
}

.button-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.button-arrow {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  background: rgba(5, 47, 44, 0.1);
  border-radius: 50%;
  font-size: 1.1rem;
}

.text-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.text-link {
  color: rgba(255, 255, 255, 0.76);
}

.text-link span:last-child {
  color: var(--gold-light);
}

.hero-proof {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.3rem max(5vw, calc((100vw - 1360px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(4, 39, 36, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.hero-proof div {
  padding: 0 2rem;
  display: grid;
  gap: 0.35rem;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-proof div:first-child {
  padding-left: 0;
}

.hero-proof div:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-proof strong {
  color: white;
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  line-height: 1.45;
}

.hero-portrait-wrap {
  width: min(100%, 33rem);
  justify-self: end;
  position: relative;
  padding: 1rem 1rem 0 0;
}

.portrait-line {
  position: absolute;
  z-index: -1;
  top: -1.2rem;
  right: -1.2rem;
  width: 80%;
  height: 88%;
  border-top: 1px solid rgba(212, 175, 55, 0.75);
  border-right: 1px solid rgba(212, 175, 55, 0.75);
  border-radius: 0 11rem 0 0;
}

.hero-portrait {
  aspect-ratio: 0.74;
  margin: 0;
  overflow: hidden;
  position: relative;
  background: var(--green-800);
  border-radius: 14rem 14rem 1rem 1rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 47, 44, 0.42), transparent 40%);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(0.82) contrast(1.04);
}

.portrait-card {
  position: absolute;
  z-index: 2;
  right: -1rem;
  bottom: 3.9rem;
  min-width: 17rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  color: var(--green-950);
  background: rgba(255, 254, 251, 0.94);
  border-radius: 0.85rem;
  box-shadow: 0 1rem 2.8rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.portrait-card div {
  display: grid;
  gap: 0.28rem;
}

.portrait-card strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.portrait-card div span {
  color: var(--muted);
  font-size: 0.68rem;
}

.portrait-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  right: 1.7rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.hero-scroll span {
  width: 3rem;
  height: 1px;
  background: var(--gold);
}

.hero-scroll small {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience {
  padding: clamp(5.5rem, 10vw, 9.5rem) max(5vw, calc((100vw - 1360px) / 2));
  background: var(--ivory);
}

.experience-heading {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 2rem;
  align-items: start;
}

.section-kicker {
  padding-top: 0.9rem;
  color: var(--green-700);
}

.experience h2 {
  max-width: 66rem;
  color: var(--green-950);
  font-size: clamp(3.4rem, 6.5vw, 7.4rem);
}

.experience h2 em {
  color: var(--green-700);
}

.experience-intro {
  margin: clamp(2.4rem, 5vw, 4.7rem) 0 0 calc(25% + 1rem);
  padding-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
  border-top: 1px solid var(--line);
}

.experience-intro p {
  max-width: 48rem;
  margin: 0;
  color: #50615e;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.8;
}

.inline-link {
  padding-bottom: 0.55rem;
  color: var(--green-800);
  border-bottom: 1px solid var(--gold);
  white-space: nowrap;
}

.principles-grid {
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 31rem;
  padding: 1.5rem clamp(1.5rem, 3vw, 2.75rem) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.principle-number {
  color: var(--green-700);
  font-family: var(--serif);
  font-size: 1rem;
}

.principle-label {
  margin-bottom: 1rem;
  color: var(--green-700);
}

.principle h3 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: clamp(2.15rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.principle p:not(.principle-label) {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.principle-featured {
  background: var(--paper);
}

.principle-leca {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--green-800);
}

.principle-leca::before {
  content: "LECA";
  position: absolute;
  right: -0.45rem;
  bottom: -1.25rem;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--serif);
  font-size: 7.8rem;
  font-weight: 600;
}

.principle-leca .principle-number,
.principle-leca .principle-label {
  color: var(--gold-light);
}

.principle-leca h3 {
  color: white;
}

.principle-leca p:not(.principle-label) {
  color: rgba(255, 255, 255, 0.64);
}

.principle-leca a {
  position: relative;
  z-index: 1;
  margin-top: 1.6rem;
  padding-bottom: 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(236, 216, 121, 0.5);
  font-size: 0.76rem;
  font-weight: 600;
}

.practice-list {
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
}

.practice-list li {
  padding: 0.56rem 0.72rem;
  color: var(--green-800);
  background: rgba(13, 79, 73, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.67rem;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 8vw, 6.5rem);
  }

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

  .principle-leca {
    grid-column: 1 / -1;
    min-height: 25rem;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0.75rem;
    width: calc(100% - 1rem);
    min-height: 4.15rem;
    padding: 0.4rem 0.45rem 0.4rem 0.65rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-mark {
    width: 2.85rem;
    height: 2.85rem;
  }

  .brand-mark img {
    width: 100%;
    height: 100%;
  }

  .brand-name strong {
    font-size: 1.03rem;
  }

  .brand-name small {
    font-size: 0.5rem;
  }

  .header-cta {
    display: none;
  }

  .language-switch {
    height: 2.4rem;
    padding-inline: 0.45rem;
  }

  .menu-toggle {
    width: 2.85rem;
    height: 2.85rem;
  }

  .hero {
    min-height: 100svh;
    padding: clamp(7.25rem, 15vh, 8.5rem) 1.1rem 7.3rem;
    display: block;
  }

  .hero-city {
    background-position: center bottom;
    opacity: 0.33;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 47, 44, 0.42) 0%, rgba(5, 47, 44, 0.72) 52%, rgba(5, 47, 44, 0.58) 100%),
      radial-gradient(circle at 18% 26%, rgba(23, 101, 93, 0.48), transparent 52%);
  }

  .hero-copy {
    position: relative;
    z-index: 3;
  }

  .eyebrow {
    margin-bottom: 1rem;
    font-size: 0.62rem;
    line-height: 1.5;
  }

  .hero h1 {
    max-width: 7.2ch;
    font-size: clamp(4rem, 19.5vw, 5.4rem);
    line-height: 0.86;
  }

  .hero-intro {
    display: none;
  }

  .hero-buttons {
    margin-top: 1.35rem;
  }

  .button {
    min-height: 3.5rem;
    padding-left: 1.15rem;
  }

  .text-link {
    display: none;
  }

  .hero-proof {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0.9rem 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: rgba(4, 39, 36, 0.88);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-proof div {
    padding: 0 0.55rem;
    display: grid;
    border-top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-proof div:first-child {
    padding-left: 0;
  }

  .hero-proof div:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .hero-proof strong {
    font-size: clamp(1.05rem, 4.6vw, 1.35rem);
  }

  .hero-proof span {
    font-size: clamp(0.48rem, 1.9vw, 0.58rem);
    line-height: 1.35;
  }

  .hero-portrait-wrap {
    position: absolute;
    z-index: 1;
    right: -2.25rem;
    bottom: 0;
    width: 64%;
    height: 54%;
    padding: 0;
  }

  .portrait-line {
    display: none;
  }

  .hero-portrait {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 11rem 0 0 0;
    box-shadow: -1.2rem 0 4rem rgba(0, 0, 0, 0.18);
  }

  .hero-portrait::after {
    background:
      linear-gradient(to top, rgba(5, 47, 44, 0.45), transparent 38%),
      linear-gradient(to right, rgba(5, 47, 44, 0.55), transparent 42%);
  }

  .portrait-card {
    display: none;
  }

  .portrait-note {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .experience {
    padding: 5rem 1.1rem;
  }

  .experience-heading {
    display: block;
  }

  .section-kicker {
    padding: 0;
  }

  .experience h2 {
    font-size: clamp(3.15rem, 15.8vw, 4.7rem);
    line-height: 0.94;
  }

  .experience-intro {
    margin: 2.25rem 0 0;
    padding-top: 1.5rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .experience-intro p {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .inline-link {
    width: fit-content;
  }

  .principles-grid {
    margin-top: 3.5rem;
    display: block;
  }

  .principle {
    min-height: 27rem;
    padding: 1.25rem 1.25rem 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle h3 {
    font-size: 2.65rem;
  }

  .principle-leca {
    min-height: 29rem;
  }
}

@media (max-width: 390px) {
  .brand-name {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 18.8vw, 4.4rem);
  }

  .hero-buttons {
    display: block;
  }
}

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

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

/* Complete site */
.services,
.founder,
.media,
.commitment,
.contact,
.site-footer {
  position: relative;
}

.services {
  overflow: hidden;
  padding: clamp(6rem, 10vw, 10rem) max(5vw, calc((100vw - 1360px) / 2));
  color: white;
  background:
    radial-gradient(circle at 86% 12%, rgba(23, 101, 93, 0.62), transparent 34%),
    var(--green-950);
}

.services::after {
  content: "";
  position: absolute;
  top: 0;
  right: max(5vw, calc((100vw - 1360px) / 2));
  width: min(36vw, 33rem);
  aspect-ratio: 1;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  transform: translate(28%, -50%);
  pointer-events: none;
}

.services-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(16rem, 0.45fr);
  align-items: end;
  gap: clamp(2.5rem, 7vw, 8rem);
}

.section-kicker-light {
  color: var(--gold-light);
}

.services h2,
.founder h2,
.media h2,
.commitment h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6.6vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.services h2 span,
.services h2 em,
.founder h2 span,
.founder h2 em,
.media h2 span,
.media h2 em,
.commitment h2 span,
.commitment h2 em,
.contact h2 span,
.contact h2 em {
  display: block;
}

.services h2 em,
.commitment h2 em {
  color: var(--gold-light);
  font-weight: 500;
}

.services-header > p {
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.75;
}

.service-list {
  position: relative;
  z-index: 1;
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.service-item summary {
  min-height: clamp(5.8rem, 8vw, 7.5rem);
  padding: 1.2rem 0;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) 3.5rem;
  align-items: center;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
}

.service-item summary::-webkit-details-marker {
  display: none;
}

.service-index {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.95rem;
}

.service-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.service-toggle {
  width: 3.1rem;
  height: 3.1rem;
  position: relative;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: background 180ms ease, border-color 180ms ease;
}

.service-toggle::before,
.service-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 1px;
  background: var(--gold-light);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.service-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-item[open] .service-toggle {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.48);
}

.service-item[open] .service-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-content {
  max-width: 52rem;
  margin-left: 5rem;
  padding: 0 0 2.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.service-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.75;
}

.service-content > span {
  color: var(--gold-light);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.founder {
  padding: clamp(6rem, 10vw, 10rem) max(5vw, calc((100vw - 1360px) / 2));
  display: grid;
  grid-template-columns: minmax(19rem, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(3.5rem, 8vw, 9rem);
  background: var(--paper);
}

.founder-image {
  min-height: 0;
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  border-radius: 9rem 9rem 1.2rem 1.2rem;
  background: var(--green-900);
}

.founder-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 47, 44, 0.5), transparent 45%);
}

.founder-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

.founder h2,
.media h2,
.contact h2 {
  color: var(--green-950);
}

.founder h2 em,
.media h2 em,
.contact h2 em {
  color: var(--green-700);
  font-weight: 500;
}

.founder-lead {
  max-width: 40rem;
  margin: 2.2rem 0 0;
  color: #53635f;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.8;
}

.founder-values {
  margin: 2.7rem 0 2.4rem;
  border-top: 1px solid var(--line);
}

.founder-values > div {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: minmax(8rem, 0.45fr) 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.founder-values strong {
  color: var(--green-800);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.founder-values span {
  align-self: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.media {
  overflow: hidden;
  padding: clamp(6rem, 10vw, 10rem) max(5vw, calc((100vw - 1360px) / 2));
  background: #eeeae0;
}

.media-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(16rem, 0.4fr);
  column-gap: clamp(2.5rem, 8vw, 9rem);
}

.media-heading .section-kicker {
  grid-column: 1 / -1;
}

.media-heading > p:last-child {
  margin: 0 0 0.5rem;
  align-self: end;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.media-grid {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
}

.media-card {
  min-height: 31rem;
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--green-900);
  border-radius: 1rem;
}

.media-card-large {
  grid-row: span 2;
  min-height: 45rem;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 47, 44, 0.92), transparent 62%);
}

.media-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.media-card:hover img {
  transform: scale(1.025);
}

.media-card > div {
  position: absolute;
  z-index: 1;
  right: 1.7rem;
  bottom: 1.7rem;
  left: 1.7rem;
}

.media-card span {
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-card h3 {
  max-width: 34rem;
  margin: 0.7rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.media-card:not(.media-card-large) h3 {
  font-size: clamp(1.8rem, 2.4vw, 2.65rem);
}

.media-card:not(.media-card-large) {
  min-height: 22rem;
}

.archive-experience {
  margin-top: clamp(4.5rem, 8vw, 7rem);
  padding-top: clamp(2.8rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(15rem, 0.78fr) repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 1rem;
  border-top: 1px solid rgba(5, 47, 44, 0.16);
}

.archive-copy {
  padding: 0 clamp(1rem, 2vw, 2rem) 0.4rem 0;
}

.archive-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 3.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.archive-copy h3 span,
.archive-copy h3 em {
  display: block;
}

.archive-copy h3 em {
  color: var(--green-700);
  font-weight: 500;
}

.archive-copy > p:last-child {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.75;
}

.archive-experience figure {
  margin: 0;
}

.archive-experience figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0.85rem;
  filter: saturate(0.82) contrast(1.02);
}

.archive-experience figcaption {
  margin-top: 0.7rem;
  color: var(--green-700);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.commitment {
  min-height: 45rem;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 9rem) max(5vw, calc((100vw - 1360px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
  color: white;
  background:
    radial-gradient(circle at 18% 50%, rgba(23, 101, 93, 0.75), transparent 36%),
    var(--green-950);
}

.commitment-mark {
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(8rem, 20vw, 19rem);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.44);
}

.commitment h2 {
  max-width: 52rem;
}

.commitment-copy > p:not(.section-kicker) {
  max-width: 38rem;
  margin: 2rem 0 2.2rem;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.95rem;
  line-height: 1.8;
}

.button-outline-light {
  width: fit-content;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-outline-light:hover {
  color: var(--green-950);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button-outline-light .button-arrow {
  background: rgba(255, 255, 255, 0.1);
}

.contact {
  padding: clamp(6rem, 10vw, 10rem) max(5vw, calc((100vw - 1360px) / 2));
  background: var(--paper);
}

.contact-heading {
  max-width: 64rem;
}

.contact-heading > p:last-child {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.contact-actions {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.contact-actions > a {
  min-height: 7.5rem;
  padding: 1.4rem 0;
  display: grid;
  grid-template-columns: 0.4fr minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, color 180ms ease, background 180ms ease;
}

.contact-actions > a:hover {
  padding-right: 1rem;
  padding-left: 1rem;
  color: white;
  background: var(--green-800);
}

.contact-actions span {
  color: var(--green-700);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-actions > a:hover span {
  color: var(--gold-light);
}

.contact-actions strong {
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.contact-actions i {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: var(--green-800);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
}

.contact-actions > a:hover i {
  color: var(--gold-light);
  border-color: rgba(236, 216, 121, 0.42);
}

.site-footer {
  padding: 4.5rem max(5vw, calc((100vw - 1360px) / 2)) 1.5rem;
  color: white;
  background: #032825;
}

.footer-main {
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.6fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.footer-brand {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.footer-brand span {
  display: grid;
  gap: 0.25rem;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
}

.footer-brand small {
  color: var(--gold-light);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-main > p {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
  line-height: 1.75;
}

.footer-main nav {
  display: grid;
  gap: 0.85rem;
}

.footer-main nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.footer-main nav a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.6rem;
  line-height: 1.5;
}

.footer-bottom a {
  color: var(--gold-light);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 980px) {
  .services-header,
  .media-heading,
  .commitment {
    grid-template-columns: 1fr;
  }

  .services-header > p,
  .media-heading > p:last-child {
    max-width: 38rem;
  }

  .founder {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
  }

  .founder-image {
    min-height: 0;
  }

  .commitment {
    gap: 1rem;
  }

  .commitment-mark {
    font-size: 10rem;
  }

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

  .footer-main nav {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .services,
  .founder,
  .media,
  .commitment,
  .contact {
    padding: 5.5rem 1.1rem;
  }

  .services h2,
  .founder h2,
  .media h2,
  .commitment h2,
  .contact h2 {
    font-size: clamp(3.25rem, 15.8vw, 4.7rem);
    line-height: 0.92;
  }

  .services-header,
  .media-heading {
    display: block;
  }

  .services-header > p,
  .media-heading > p:last-child {
    margin-top: 1.75rem;
    font-size: 0.86rem;
  }

  .service-item summary {
    min-height: 5.5rem;
    grid-template-columns: 2.2rem minmax(0, 1fr) 2.7rem;
    gap: 0.65rem;
  }

  .service-item h3 {
    font-size: clamp(1.85rem, 8.5vw, 2.5rem);
  }

  .service-toggle {
    width: 2.55rem;
    height: 2.55rem;
  }

  .service-content {
    margin-left: 2.85rem;
    padding-bottom: 1.6rem;
    display: block;
  }

  .service-content p {
    font-size: 0.82rem;
  }

  .service-content > span {
    margin-top: 1rem;
    display: block;
    white-space: normal;
  }

  .founder {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
  }

  .founder-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 3 / 2;
    border-radius: 8rem 8rem 0.8rem 0.8rem;
  }

  .founder-lead {
    margin-top: 1.6rem;
    font-size: 0.92rem;
  }

  .founder-values {
    margin: 2rem 0;
  }

  .founder-values > div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .media-grid {
    display: block;
  }

  .media-card,
  .media-card-large {
    min-height: 30rem;
    margin-bottom: 1rem;
  }

  .media-card:not(.media-card-large) {
    min-height: 24rem;
  }

  .media-card h3,
  .media-card:not(.media-card-large) h3 {
    font-size: 2.35rem;
  }

  .archive-experience {
    margin-top: 4rem;
    padding-top: 3rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .archive-copy {
    padding: 0;
  }

  .archive-copy h3 {
    font-size: 3rem;
  }

  .archive-experience figure img {
    aspect-ratio: 4 / 3;
  }

  .commitment {
    min-height: auto;
    display: block;
  }

  .commitment-mark {
    margin-bottom: 3rem;
    font-size: 8rem;
  }

  .commitment-copy > p:not(.section-kicker) {
    font-size: 0.88rem;
  }

  .contact-actions > a {
    min-height: 8rem;
    grid-template-columns: 1fr auto;
    gap: 0.7rem 1rem;
  }

  .contact-actions span {
    grid-column: 1;
  }

  .contact-actions strong {
    grid-column: 1;
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .contact-actions i {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .site-footer {
    padding: 4rem 1.1rem 1.25rem;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 2rem;
  }

  .footer-main nav {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .reveal,
  .motion-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
