:root {
  --forest: #0b3b2e;
  --forest-deep: #06271f;
  --forest-soft: #145440;
  --ivory: #f6f1e7;
  --cream: #fbf8f1;
  --paper: #fffdf8;
  --sage: #a8bea7;
  --lime: #c9e86b;
  --ink: #0b211a;
  --muted: #657068;
  --line: rgba(11, 59, 46, 0.16);
  --shadow: 0 30px 80px rgba(6, 39, 31, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --container: min(1280px, calc(100% - 80px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
svg {
  display: block;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.section {
  padding: 132px 0;
  position: relative;
}
.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: 88px;
  border-bottom: 1px solid transparent;
  transition:
    height 0.35s var(--ease),
    background 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(251, 248, 241, 0.9);
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(6, 39, 31, 0.06);
  backdrop-filter: blur(18px);
}
.navbar {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}
.brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.brand span {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 0.22em;
  font-weight: 600;
  line-height: 1;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.4vw, 42px);
}
.nav-menu a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 100%;
  bottom: -8px;
  background: var(--forest);
  transition: right 0.28s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  right: 0;
}
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid var(--forest);
  border-radius: 10px;
  background: var(--forest);
  color: white;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 0.25s var(--ease),
    background 0.25s,
    box-shadow 0.25s;
}
.header-cta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform 0.25s;
}
.header-cta:hover {
  transform: translateY(-2px);
  background: var(--forest-deep);
  box-shadow: 0 14px 28px rgba(6, 39, 31, 0.2);
}
.header-cta:hover svg {
  transform: translate(2px, -2px);
}
.menu-toggle {
  display: none;
}

.hero {
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(0, 50.5%) minmax(0, 49.5%);
  padding-top: 88px;
  background: var(--ivory);
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 86px clamp(42px, 5.2vw, 92px) 30px
    max(40px, calc((100vw - 1280px) / 2));
}
.hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -90px;
  right: -125px;
  width: 250px;
  height: 480px;
  border-radius: 0 0 160px 160px;
  background: var(--ivory);
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 600;
}
.eyebrow.light {
  color: var(--sage);
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  color: var(--forest-deep);
  font-size: clamp(60px, 5.15vw, 88px);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.045em;
}
.hero h1 em {
  color: var(--forest-soft);
  font-weight: 500;
}
.hero-lede {
  max-width: 590px;
  margin: 31px 0 0;
  color: #4e5c55;
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  gap: 16px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s,
    color 0.25s,
    background 0.25s,
    border-color 0.25s;
}
.btn svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform 0.25s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover svg,
.text-link:hover svg {
  transform: translate(3px, -3px);
}
.btn-primary {
  color: white;
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: 0 15px 30px rgba(6, 39, 31, 0.17);
}
.btn-primary:hover {
  background: var(--forest-deep);
  box-shadow: 0 19px 38px rgba(6, 39, 31, 0.24);
}
.btn-outline {
  color: var(--forest);
  border-color: rgba(11, 59, 46, 0.55);
  background: rgba(255, 255, 255, 0.22);
}
.btn-outline:hover {
  background: var(--paper);
  border-color: var(--forest);
}
.btn-lime {
  color: var(--forest-deep);
  background: var(--lime);
}
.btn-lime:hover {
  background: #d7f580;
  box-shadow: 0 18px 36px rgba(201, 232, 107, 0.18);
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: auto;
  padding-top: 52px;
}
.proof-seal {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(11, 59, 46, 0.5);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 22px;
}
.hero-proof p {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  color: #344a40;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 9px;
}
.hero-proof i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--forest);
}
.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  transform: scale(1.035);
  transition: transform 1.4s var(--ease);
}
.hero-visual.is-visible > img {
  transform: scale(1);
}
.visual-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 39, 31, 0.14), transparent 45%),
    linear-gradient(0deg, rgba(6, 39, 31, 0.35), transparent 42%);
}
.commerce-card {
  position: absolute;
  right: clamp(24px, 4vw, 65px);
  bottom: 52px;
  width: 244px;
  padding: 20px 20px 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(19, 38, 31, 0.69);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}
.commerce-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
}
.commerce-card > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 7px;
}
.commerce-card strong {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}
.commerce-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}
.mini-chart {
  width: 100%;
  height: 64px;
  margin-top: 16px;
  overflow: visible;
}
.chart-line {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  transition: stroke-dashoffset 1.8s 0.45s var(--ease);
}
.is-visible .chart-line {
  stroke-dashoffset: 0;
}
.chart-fill {
  fill: rgba(201, 232, 107, 0.12);
}
.floating-tag {
  position: absolute;
  top: 128px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(6, 39, 31, 0.45);
  backdrop-filter: blur(10px);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.floating-tag span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(201, 232, 107, 0.14);
}

.credibility {
  color: white;
  background: var(--forest-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.credibility-track {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}
.credibility span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 10px;
  font-weight: 500;
}
.credibility i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
}

.studio {
  background: var(--paper);
}
.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  column-gap: clamp(70px, 10vw, 160px);
  row-gap: 100px;
}
.section-intro h2,
.section-heading h2,
.process-copy h2,
.growth-copy h2,
.portfolio-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.studio-copy .lead {
  margin: 0 0 24px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.15;
}
.studio-copy > p:not(.lead) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 31px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-size: 13px;
  font-weight: 600;
}
.studio-stat {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}
.studio-stat strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(76px, 8vw, 126px);
  font-weight: 500;
  line-height: 0.7;
  letter-spacing: -0.05em;
}
.studio-stat sup {
  color: var(--forest-soft);
  font-size: 0.35em;
}
.studio-stat span {
  max-width: 190px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.studio-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 18px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}
.studio-principles span {
  color: #7a857f;
  font-size: 10px;
}
.studio-principles b {
  display: block;
  margin-top: 32px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}

.services {
  color: white;
  background: var(--forest-deep);
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -220px;
  top: -250px;
  border: 1px solid rgba(201, 232, 107, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(201, 232, 107, 0.025),
    0 0 0 160px rgba(201, 232, 107, 0.018);
}
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 72px;
}
.services .section-heading h2 {
  color: white;
}
.section-heading > p {
  max-width: 510px;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.56);
}
.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.service-row {
  display: grid;
  grid-template-columns: 48px 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  min-height: 170px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    padding 0.35s var(--ease),
    background 0.35s;
}
.service-row:hover {
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.025);
}
.service-number {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(201, 232, 107, 0.25);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(201, 232, 107, 0.04);
}
.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
}
.service-row h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.1;
}
.service-row p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}
.service-tag {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 8px;
}

.process {
  background: var(--ivory);
}
.process-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(70px, 10vw, 150px);
}
.process-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}
.process-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 30px 0 34px;
  color: var(--muted);
}
.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.process-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
}
.process-steps li > span {
  color: #799080;
  font-size: 11px;
}
.process-steps h3 {
  margin: 0 0 7px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
}
.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.growth {
  background: var(--paper);
}
.growth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(70px, 10vw, 145px);
  align-items: center;
}
.growth-panel {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 4px 210px 4px 4px;
  color: white;
  background: var(--forest);
  box-shadow: var(--shadow);
}
.growth-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 68% 28%,
      rgba(201, 232, 107, 0.2),
      transparent 25%
    ),
    linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.03));
}
.growth-orbit {
  position: absolute;
  inset: 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.growth-orbit::before,
.growth-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}
.growth-orbit::before {
  inset: 55px;
}
.growth-orbit::after {
  inset: 112px;
}
.growth-orbit span,
.growth-orbit i,
.growth-orbit b {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 8px rgba(201, 232, 107, 0.1);
}
.growth-orbit span {
  top: 35%;
  left: -4px;
}
.growth-orbit i {
  top: -4px;
  left: 55%;
}
.growth-orbit b {
  right: 7%;
  bottom: 18%;
}
.growth-metric {
  position: absolute;
  z-index: 2;
  width: 188px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(15px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.14);
}
.growth-metric span,
.growth-metric small {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.growth-metric strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--lime);
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 600;
  line-height: 1;
}
.metric-one {
  top: 95px;
  left: 55px;
  transform: rotate(-3deg);
}
.metric-two {
  right: 50px;
  bottom: 90px;
  transform: rotate(3deg);
}
.growth-panel > p {
  position: absolute;
  z-index: 2;
  left: 56px;
  bottom: 55px;
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.2;
}
.growth-panel > p strong {
  color: var(--lime);
  font-weight: 500;
}
.growth-copy h2 {
  font-size: clamp(52px, 5vw, 76px);
}
.growth-copy > p:not(.eyebrow) {
  margin: 30px 0;
  color: var(--muted);
}
.growth-copy ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 25px 0;
  border-block: 1px solid var(--line);
  list-style: none;
}
.growth-copy li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #3d5148;
  font-size: 14px;
}
.growth-copy li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.6;
}

.portfolio {
  background: var(--ivory);
}
.portfolio-heading {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 66px;
}
.portfolio-heading h2 {
  max-width: 760px;
}
.portfolio-heading h2 em {
  color: var(--forest-soft);
  font-weight: 500;
}
.portfolio-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 25px;
}
.portfolio-card {
  min-width: 0;
}
.portfolio-image {
  position: relative;
  aspect-ratio: 1.34;
  overflow: hidden;
  border: 1px solid rgba(11, 59, 46, 0.09);
  background: #e8e6df;
  box-shadow: 0 18px 50px rgba(6, 39, 31, 0.08);
}
.portfolio-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition:
    border-color 0.4s,
    background 0.4s;
}
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.75s var(--ease),
    filter 0.5s;
}
.portfolio-card:hover .portfolio-image img {
  transform: scale(1.035);
  filter: saturate(1.04);
}
.portfolio-card:hover .portfolio-image::after {
  border-color: rgba(201, 232, 107, 0.55);
  background: rgba(6, 39, 31, 0.03);
}
.portfolio-image > span {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: white;
  background: rgba(6, 39, 31, 0.7);
  backdrop-filter: blur(8px);
  font-size: 9px;
}
.portfolio-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid transparent;
}
.portfolio-meta small {
  color: #758078;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 8px;
}
.portfolio-meta h3 {
  margin: 5px 0 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}
.portfolio-meta b {
  padding-bottom: 3px;
  color: #7c867f;
  text-align: right;
  font-size: 9px;
  font-weight: 500;
}

.testimonials {
  color: white;
  background: var(--forest);
  overflow: hidden;
}
.testimonials::after {
  content: "R";
  position: absolute;
  right: -30px;
  top: -100px;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: 620px;
  line-height: 1;
}
.testimonial-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 60px;
}
.testimonial-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.testimonial-intro .eyebrow {
  grid-column: 1/-1;
}
.rating {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 3px 13px;
  text-align: right;
}
.rating .stars {
  grid-column: 1/-1;
  color: var(--lime);
  letter-spacing: 0.13em;
  font-size: 13px;
}
.rating strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}
.rating small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}
.testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  margin: 0;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s,
    background 0.35s;
}
.testimonial-card.featured {
  background: var(--ivory);
  color: var(--forest-deep);
  transform: translateY(-18px);
}
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 232, 107, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.testimonial-card.featured:hover {
  transform: translateY(-25px);
  background: var(--paper);
}
.testimonial-card > svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.2;
}
.testimonial-card.featured > svg {
  stroke: var(--forest);
}
.testimonial-card blockquote {
  margin: 40px 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
}
.testimonial-card figcaption {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.testimonial-card.featured figcaption {
  border-color: var(--line);
}
.testimonial-card figcaption strong,
.testimonial-card figcaption span {
  display: block;
}
.testimonial-card figcaption strong {
  font-size: 12px;
}
.testimonial-card figcaption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}
.testimonial-card.featured figcaption span {
  color: var(--muted);
}

.contact {
  background: var(--forest-deep);
  padding-top: 0;
}
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0 0 110px 0;
  background: #0d352a;
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.2);
}
.contact-copy {
  padding: clamp(50px, 6vw, 90px);
  color: white;
  background: radial-gradient(
    circle at 15% 100%,
    rgba(201, 232, 107, 0.12),
    transparent 35%
  );
}
.contact-copy h2 {
  color: white;
  font-size: clamp(52px, 5vw, 78px);
}
.contact-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 28px 0 42px;
  color: rgba(255, 255, 255, 0.58);
}
.contact-direct {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.contact-direct a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  background: #0d352a;
  transition: color 0.25s;
}
.contact-direct a:hover {
  color: var(--lime);
}
.contact-direct span {
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 8px;
}
.contact-direct strong {
  font-size: 12px;
  font-weight: 500;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding: clamp(50px, 6vw, 90px);
  background: var(--ivory);
}
.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: block;
}
.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #4d5e55;
  font-size: 10px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(11, 59, 46, 0.25);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  padding: 10px 0 13px;
  font-size: 13px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--forest);
  box-shadow: 0 1px var(--forest);
}
.contact-form .has-error {
  border-color: #b33636;
}
.contact-form .btn {
  align-self: flex-start;
  margin-top: 7px;
  border: 0;
}
.form-status {
  min-height: 24px;
  margin: -8px 0 0;
  color: var(--forest);
  font-size: 11px;
}

.legal {
  padding: 50px 0 80px;
  background: var(--forest-deep);
  color: white;
}
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.legal details {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.legal summary {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.legal summary::-webkit-details-marker {
  display: none;
}
.legal summary span {
  color: var(--lime);
  transition: transform 0.25s;
}
.legal details[open] summary span {
  transform: rotate(45deg);
}
.legal details div {
  padding: 0 0 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.legal details p {
  margin: 0;
}
.site-footer {
  color: white;
  background: #031c16;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 50px;
  padding: 65px 0;
}
.footer-brand img {
  filter: brightness(0) invert(1);
}
.footer-brand span {
  font-size: 23px;
}
.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
}
.footer-top nav {
  justify-self: end;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 36px;
}
.footer-top nav a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}
.footer-top nav a:hover {
  color: var(--lime);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.34);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 8px;
}

.floating-contact-dock {
  position: fixed;
  z-index: 84;
  right: 22px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.floating-contact-dock a {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  transition:
    transform 0.25s var(--ease),
    filter 0.25s;
}
.floating-contact-dock a:hover {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 8px 10px rgba(6, 39, 31, 0.18));
}
.floating-contact-dock img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.floating-contact-dock a:last-child img {
  width: 26px;
  height: 26px;
}
.floating-contact-dock a::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 10px);
  padding: 5px 8px;
  border-radius: 5px;
  color: white;
  background: var(--forest-deep);
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  font-size: 9px;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.floating-contact-dock a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.back-to-top {
  position: fixed;
  z-index: 83;
  right: 24px;
  bottom: 188px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(11, 59, 46, 0.25);
  border-radius: 50%;
  color: var(--forest);
  background: rgba(251, 248, 241, 0.88);
  backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.back-to-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.service-row:nth-child(2),
.portfolio-card:nth-child(2),
.testimonial-card:nth-child(2) {
  transition-delay: 0.08s;
}
.service-row:nth-child(3),
.portfolio-card:nth-child(3),
.testimonial-card:nth-child(3) {
  transition-delay: 0.16s;
}
.service-row:nth-child(4),
.portfolio-card:nth-child(5) {
  transition-delay: 0.08s;
}
.portfolio-card:nth-child(6) {
  transition-delay: 0.16s;
}

@media (max-width: 1120px) {
  :root {
    --container: min(100% - 56px, 1080px);
  }
  .hero {
    min-height: 820px;
    grid-template-columns: 53% 47%;
  }
  .hero h1 {
    font-size: clamp(56px, 6vw, 72px);
  }
  .hero-copy {
    padding-left: 34px;
    padding-right: 42px;
  }
  .hero-proof p strong {
    font-size: 8px;
  }
  .hero-proof {
    gap: 14px;
  }
  .hero-proof p {
    gap: 10px;
  }
  .navbar {
    grid-template-columns: auto 1fr auto;
  }
  .nav-menu {
    gap: 24px;
  }
  .studio-grid,
  .growth-grid {
    gap: 70px;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 54px 24px;
  }
  .contact-copy,
  .contact-form {
    padding: 60px 45px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 40px, 760px);
  }
  .section {
    padding: 96px 0;
  }
  .site-header,
  .site-header.scrolled {
    height: 70px;
  }
  .navbar {
    grid-template-columns: 1fr auto;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    place-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--forest);
    transition:
      transform 0.3s,
      width 0.3s;
  }
  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }
  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 90px max(30px, calc((100% - 720px) / 2));
    background: var(--ivory);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.3s,
      visibility 0.3s,
      transform 0.3s;
  }
  .menu-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-menu a {
    font-family: var(--serif);
    font-size: 42px;
    line-height: 1.1;
  }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .hero-copy {
    min-height: 680px;
    padding: 100px 40px 42px;
  }
  .hero-copy::after {
    display: none;
  }
  .hero-visual {
    min-height: 590px;
  }
  .hero h1 {
    font-size: clamp(58px, 10vw, 82px);
    max-width: 720px;
  }
  .hero-lede {
    max-width: 620px;
  }
  .hero-proof {
    margin-top: 65px;
  }
  .credibility-track {
    min-height: 68px;
    gap: 18px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .credibility-track::-webkit-scrollbar {
    display: none;
  }
  .studio-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .studio-stat {
    margin-top: 15px;
  }
  .studio-principles {
    margin-top: -15px;
  }
  .section-heading,
  .portfolio-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .section-heading {
    margin-bottom: 54px;
  }
  .service-row {
    grid-template-columns: 38px 55px 1fr;
  }
  .service-tag {
    display: none;
  }
  .process-shell {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .process-copy {
    position: static;
  }
  .process-copy > p:not(.eyebrow) {
    max-width: 650px;
  }
  .growth-grid {
    grid-template-columns: 1fr;
  }
  .growth-panel {
    min-height: 560px;
    order: 2;
  }
  .growth-copy {
    order: 1;
  }
  .testimonial-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .rating {
    justify-self: start;
    text-align: left;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card,
  .testimonial-card.featured {
    min-height: auto;
    transform: none;
  }
  .testimonial-card:hover,
  .testimonial-card.featured:hover {
    transform: translateY(-5px);
  }
  .contact-shell {
    grid-template-columns: 1fr;
    border-radius: 0 0 80px 0;
  }
  .contact-copy,
  .contact-form {
    padding: 65px 45px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top > p {
    grid-row: 2;
  }
  .footer-top nav {
    grid-row: 1/3;
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  :root {
    --container: calc(100% - 32px);
  }
  .section {
    padding: 78px 0;
  }
  .brand span {
    font-size: 23px;
  }
  .brand img {
    width: 25px;
    height: 25px;
  }
  .hero-copy {
    min-height: 660px;
    padding: 80px 24px 34px;
  }
  .hero h1 {
    font-size: clamp(50px, 14.5vw, 69px);
  }
  .hero-lede {
    margin-top: 25px;
    font-size: 15px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .btn {
    width: 100%;
    min-height: 54px;
  }
  .hero-proof {
    align-items: flex-start;
  }
  .hero-proof p {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .hero-proof i {
    display: none;
  }
  .hero-visual {
    min-height: 500px;
  }
  .hero-visual > img {
    object-position: 61% center;
  }
  .floating-tag {
    top: 24px;
    left: 18px;
  }
  .commerce-card {
    right: 18px;
    bottom: 24px;
    width: 215px;
  }
  .section-intro h2,
  .section-heading h2,
  .process-copy h2,
  .growth-copy h2,
  .portfolio-heading h2,
  .contact-copy h2 {
    font-size: clamp(45px, 13vw, 61px);
  }
  .studio-grid {
    gap: 46px;
  }
  .studio-principles {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .studio-principles span {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
  }
  .studio-principles b {
    margin: 0;
    font-size: 20px;
  }
  .service-row {
    grid-template-columns: 34px 1fr;
    gap: 18px;
    min-height: 0;
    padding: 30px 0;
  }
  .service-icon {
    display: none;
  }
  .service-row h3 {
    font-size: 27px;
  }
  .service-row p {
    font-size: 13px;
  }
  .process-steps li {
    grid-template-columns: 38px 1fr;
    gap: 16px;
  }
  .process-steps h3 {
    font-size: 27px;
  }
  .growth-panel {
    min-height: 480px;
    border-radius: 4px 120px 4px 4px;
  }
  .growth-orbit {
    inset: 42px 15px;
  }
  .growth-metric {
    width: 160px;
  }
  .metric-one {
    top: 65px;
    left: 24px;
  }
  .metric-two {
    right: 18px;
    bottom: 95px;
  }
  .growth-panel > p {
    left: 25px;
    bottom: 28px;
    font-size: 21px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .portfolio-image {
    aspect-ratio: 1.36;
  }
  .portfolio-meta h3 {
    font-size: 28px;
  }
  .testimonial-intro h2 {
    font-size: 50px;
  }
  .testimonial-card {
    padding: 28px;
  }
  .testimonial-card blockquote {
    font-size: 22px;
  }
  .contact {
    padding-bottom: 0;
  }
  .contact-shell {
    width: 100%;
    border-inline: 0;
    border-radius: 0 0 55px 0;
  }
  .contact-copy,
  .contact-form {
    padding: 55px 24px;
  }
  .form-pair {
    grid-template-columns: 1fr;
    gap: 21px;
  }
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .legal details + details {
    border-top: 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-top > p,
  .footer-top nav {
    grid-row: auto;
    grid-column: auto;
  }
  .footer-top nav {
    justify-self: start;
  }
  .footer-bottom {
    gap: 20px;
    flex-direction: column;
  }
  .floating-contact-dock {
    right: 9px;
    bottom: 18px;
    gap: 8px;
  }
  .floating-contact-dock a {
    width: 35px;
    height: 35px;
  }
  .floating-contact-dock img {
    width: 25px;
    height: 25px;
  }
  .floating-contact-dock a::before {
    display: none;
  }
  .back-to-top {
    right: 11px;
    bottom: 155px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .chart-line {
    stroke-dashoffset: 0;
  }
}
