:root {
  --ivory: #f6f1e7;
  --paper: #fffdf8;
  --ink: #1b261d;
  --olive: #425c3f;
  --olive-deep: #243526;
  --sage: #cbd4be;
  --clay: #b76548;
  --sand: #ded2bf;
  --line: rgba(27, 38, 29, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--paper);
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--page);
  height: 98px;
  margin: 0 auto;
  color: #fff;
}

.site-header.is-scrolled {
  position: fixed;
  width: 100%;
  height: 74px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: var(--ink);
  background: rgba(246, 241, 231, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  animation: header-in 320ms ease both;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand__hero {
  display: flex;
  gap: 12px;
  align-items: center;
}

.brand__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  padding: 6px;
  background: rgba(246, 241, 231, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(18, 28, 20, 0.14);
  backdrop-filter: blur(10px);
}

.brand__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__eyebrow {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.brand__name {
  margin-top: 5px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.brand__full {
  display: none;
  width: 160px;
  height: auto;
}

.site-header.is-scrolled .brand__hero,
.site-header--light .brand__hero {
  display: none;
}

.site-header.is-scrolled .brand__full,
.site-header--light .brand__full {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

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

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

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--ink);
  background: var(--paper);
}

.is-scrolled .nav-cta {
  color: #fff;
  background: var(--olive-deep);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--olive-deep);
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.035);
  animation: hero-image 1.7s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes hero-image {
  from { opacity: 0; transform: scale(1.11); }
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(18, 28, 20, 0.82) 0%, rgba(18, 28, 20, 0.46) 43%, rgba(18, 28, 20, 0.08) 72%),
    linear-gradient(0deg, rgba(18, 28, 20, 0.34), transparent 44%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: var(--page);
  height: 100%;
  margin: 0 auto;
  padding-top: 92px;
}

.hero__content > * {
  width: min(610px, 47vw);
  animation: hero-copy 750ms cubic-bezier(.2,.7,.2,1) both;
}

.hero__content > :nth-child(1) { animation-delay: 220ms; }
.hero__content > :nth-child(2) { animation-delay: 320ms; }
.hero__content > :nth-child(3) { animation-delay: 430ms; }
.hero__content > :nth-child(4) { animation-delay: 540ms; }

@keyframes hero-copy {
  from { opacity: 0; transform: translateY(24px); }
}

.kicker {
  margin: 0 0 22px;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.3rem, 6.4vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

h1 em,
h2 em {
  font-weight: 400;
}

.hero__copy {
  max-width: 500px;
  margin: 30px 0 0;
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

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

.button--light {
  color: var(--ink);
  background: var(--paper);
}

.button--light:hover {
  color: #fff;
  background: var(--clay);
}

.button--dark {
  color: #fff;
  background: var(--olive-deep);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

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

.hero__note {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 88px;
  z-index: 2;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.25;
  text-align: right;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.8fr;
  align-items: stretch;
  color: #fff;
  background: var(--olive-deep);
}

.proof p {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 20px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.proof span {
  margin-top: 7px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof .proof__statement {
  border-right: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 136px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12vw;
  align-items: start;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.6vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.intro__copy {
  padding-top: 56px;
}

.lead {
  margin-top: 0;
  font-family: var(--serif);
  font-size: 1.62rem;
  line-height: 1.35;
}

.intro__copy > p:not(.lead) {
  color: rgba(27, 38, 29, 0.7);
}

.intro__copy .text-link {
  margin-top: 20px;
}

.services {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  align-items: start;
  margin-bottom: 76px;
}

.section-heading .kicker {
  padding-top: 12px;
}

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

.service {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px 6px;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.service:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(203, 212, 190, 0.2);
}

.service__number,
.service__mark {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 800;
}

.service h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  font-weight: 400;
}

.service p {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(27, 38, 29, 0.65);
}

.service__mark {
  font-size: 1.25rem;
}

.services__types {
  margin: 46px 0 0 104px;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

.work {
  padding: 130px 0 160px;
  overflow: hidden;
  color: #fff;
  background: var(--olive-deep);
}

.work__header {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 10vw;
  align-items: end;
  padding-top: 0;
  padding-bottom: 88px;
}

.work__header > p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.68);
}

.story {
  position: relative;
  width: var(--page);
  margin: 0 auto;
}

.story img {
  height: 100%;
  object-fit: cover;
}

.story--garden {
  display: grid;
  grid-template-columns: 1.4fr 0.52fr;
  grid-template-rows: 1fr 300px;
  gap: 32px;
  min-height: 720px;
}

.story__primary {
  grid-row: 1 / 3;
  height: 100%;
  margin: 0;
}

.story__primary img {
  object-position: center;
}

.story__caption {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  padding: 0 0 28px;
}

.story__type {
  margin: 0 0 16px;
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story__caption h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 0.95;
}

.story__caption > p:last-child {
  max-width: 360px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.66);
}

.story__secondary {
  grid-column: 2;
  grid-row: 2;
  height: 300px;
  margin: 0;
}

.story--details {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr;
  grid-template-rows: auto 560px;
  grid-template-areas:
    "wide caption"
    "wide portrait";
  gap: 32px;
  margin-top: 160px;
}

.story__wide {
  grid-area: wide;
  height: 100%;
  margin: 0;
}

.story__portrait {
  grid-area: portrait;
  height: 100%;
  margin: 0;
}

.story__caption--right {
  position: static;
  grid-area: caption;
  width: auto;
  padding: 0 0 42px;
}

.photo-note {
  width: var(--page);
  margin: 80px auto 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
}

.work__action {
  width: var(--page);
  margin: 34px auto 0;
}

.process__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process__list li {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 28px 34px 24px 0;
  border-right: 1px solid var(--line);
}

.process__list li + li {
  padding-left: 34px;
}

.process__list li:last-child {
  border-right: 0;
}

.process__list span {
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 800;
}

.process__list h3 {
  margin: 58px 0 14px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.process__list p {
  margin: auto 0 0;
  color: rgba(27, 38, 29, 0.65);
}

.site-header--light {
  color: var(--ink);
}

.site-header--light .nav-cta {
  color: #fff;
  background: var(--olive-deep);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.portfolio-hero {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 9vw;
  align-items: end;
  padding-top: 190px;
  padding-bottom: 92px;
}

.portfolio-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.portfolio-hero__intro {
  margin: 0 0 8px;
  color: rgba(27, 38, 29, 0.68);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.4;
}

.portfolio-lead {
  position: relative;
  width: var(--page);
  height: min(72vh, 780px);
  min-height: 560px;
  margin: 0 auto 140px;
}

.portfolio-lead img,
.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-lead img {
  object-position: center 43%;
}

.portfolio-lead figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(18, 28, 20, 0.7);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-project {
  padding: 132px 0 150px;
}

.portfolio-project--dark {
  color: #fff;
  background: var(--olive-deep);
}

.portfolio-project--light {
  background: var(--sand);
}

.portfolio-project--recent {
  color: #fff;
  background: var(--olive);
}

.portfolio-project__header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 9vw;
  align-items: end;
  padding: 0 0 78px;
}

.portfolio-project__header > p {
  max-width: 440px;
  margin: 0 0 8px;
  opacity: 0.68;
}

.portfolio-project__header h2 {
  font-size: clamp(3.7rem, 6.2vw, 6.6rem);
}

.portfolio-grid {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  gap: 28px;
}

.portfolio-grid figure {
  margin: 0;
  overflow: hidden;
}

.portfolio-grid--wedding {
  grid-template-columns: 0.72fr 1.28fr;
  grid-template-rows: 330px 390px;
}

.portfolio-grid__tall {
  grid-row: 1 / 3;
}

.portfolio-grid__wide {
  grid-column: 2;
  grid-row: 1;
}

.portfolio-grid__small {
  grid-column: 2;
  grid-row: 2;
  width: calc(42% - 14px);
}

.portfolio-grid__stage {
  grid-column: 2;
  grid-row: 2;
  width: calc(58% - 14px);
  justify-self: end;
}

.portfolio-grid--garden {
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 310px 390px;
}

.portfolio-grid__garden-main {
  grid-row: 1 / 3;
}

.portfolio-grid__garden-detail {
  grid-column: 2;
  grid-row: 1;
}

.portfolio-grid__garden-portrait {
  grid-column: 2;
  grid-row: 2;
}

.portfolio-grid--recent {
  grid-template-columns: 1.22fr 0.78fr;
  grid-template-rows: 340px 340px;
}

.portfolio-grid__recent-main {
  grid-row: 1 / 3;
}

.portfolio-grid__recent-couple {
  grid-column: 2;
  grid-row: 1;
}

.portfolio-grid__recent-bride {
  grid-column: 2;
  grid-row: 2;
}

.portfolio-cta {
  display: grid;
  justify-items: center;
  max-width: 900px;
  text-align: center;
}

.portfolio-cta > p:not(.kicker) {
  max-width: 560px;
  margin: 32px 0;
  color: rgba(27, 38, 29, 0.68);
}

.team-hero {
  position: relative;
  display: flex;
  min-height: 780px;
  height: 92svh;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--olive-deep);
}

.team-hero__image,
.team-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.team-hero__image {
  object-fit: cover;
  object-position: center;
  animation: hero-image 1.7s cubic-bezier(.2,.7,.2,1) both;
}

.team-hero__veil {
  background: linear-gradient(90deg, rgba(18, 28, 20, 0.78), rgba(18, 28, 20, 0.18) 70%), linear-gradient(0deg, rgba(18, 28, 20, 0.55), transparent 60%);
}

.team-hero__content {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin: 0 auto;
  padding-bottom: 104px;
}

.team-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 7.7vw, 8.1rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.team-hero__content > p:last-child {
  max-width: 520px;
  margin: 30px 0 0;
  font-size: 1.08rem;
}

.team-founder {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 9vw;
  align-items: center;
}

.team-founder__mark {
  display: flex;
  aspect-ratio: 4 / 5;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--clay);
}

.team-founder__mark span {
  font-family: var(--serif);
  font-size: clamp(7rem, 14vw, 13rem);
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.team-founder__mark small {
  margin-top: 34px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.team-founder__copy {
  max-width: 620px;
}

.team-founder__copy .lead {
  margin: 44px 0 18px;
}

.team-founder__copy > p:last-child {
  color: rgba(27, 38, 29, 0.67);
}

.team-values {
  color: #fff;
  background: var(--olive-deep);
}

.team-values__header {
  padding-bottom: 82px;
}

.team-values__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0;
  list-style: none;
}

.team-values__list li {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 32px 38px 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.team-values__list li + li {
  padding-left: 38px;
}

.team-values__list li:last-child {
  border-right: 0;
}

.team-values__list span {
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 800;
}

.team-values__list h3 {
  margin: 70px 0 16px;
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 400;
}

.team-values__list p {
  margin: auto 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.team-directory__heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 9vw;
  align-items: end;
  margin-bottom: 72px;
}

.team-directory__heading > p {
  margin: 0 0 10px;
  color: rgba(27, 38, 29, 0.65);
}

.team-directory__preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.team-profile-placeholder {
  display: flex;
  aspect-ratio: 3 / 4;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: rgba(27, 38, 29, 0.58);
  background: var(--sand);
}

.team-profile-placeholder:nth-child(2) {
  background: var(--sage);
}

.team-profile-placeholder:nth-child(3) {
  color: rgba(255, 255, 255, 0.72);
  background: var(--olive);
}

.team-profile-placeholder span {
  font-size: 0.67rem;
  font-weight: 800;
}

.team-profile-placeholder p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.team-cta {
  position: relative;
  display: grid;
  min-height: 700px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.team-cta > img,
.team-cta__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.team-cta > img {
  object-fit: cover;
}

.team-cta__veil {
  background: rgba(18, 28, 20, 0.56);
}

.team-cta__content {
  position: relative;
  z-index: 1;
  width: var(--page);
}

.team-cta h2 {
  margin-bottom: 38px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: var(--sand);
}

.about__image {
  min-height: 760px;
  overflow: hidden;
}

.about__image img {
  height: 100%;
  object-fit: cover;
}

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  padding: 90px clamp(42px, 7vw, 110px);
}

.about__content h2 {
  font-size: clamp(3rem, 4.7vw, 5.4rem);
}

.about__content .lead {
  margin: 48px 0 16px;
}

.about__content > p:not(.kicker, .lead, .about__area) {
  color: rgba(27, 38, 29, 0.67);
}

.about__area {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(27, 38, 29, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials {
  overflow: hidden;
  padding: 120px 0 108px;
  background: var(--sage);
}

.testimonials__header {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 390px);
  gap: 8vw;
  align-items: end;
  padding-top: 0;
  padding-bottom: 64px;
}

.testimonials__header h2 {
  font-size: clamp(3.1rem, 5.2vw, 5.8rem);
}

.testimonials__header > p {
  margin: 0 0 8px;
  color: rgba(27, 38, 29, 0.66);
  line-height: 1.75;
}

.testimonials__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.testimonials__track {
  display: flex;
  width: max-content;
  animation: testimonials-scroll 42s linear infinite;
  will-change: transform;
}

.testimonials__viewport:hover .testimonials__track {
  animation-play-state: paused;
}

.testimonials__group {
  display: flex;
  flex: none;
  gap: clamp(42px, 5vw, 84px);
  padding-right: clamp(42px, 5vw, 84px);
}

.testimonial-quote {
  display: grid;
  grid-template-rows: 1fr auto;
  width: clamp(310px, 36vw, 520px);
  min-height: 300px;
  margin: 0;
  padding: 10px clamp(28px, 3.5vw, 56px) 12px;
  border-left: 1px solid rgba(27, 38, 29, 0.28);
}

.testimonial-quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.55vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.testimonial-quote footer {
  display: grid;
  gap: 7px;
  margin-top: 42px;
}

.testimonial-quote strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
}

.testimonial-quote span {
  color: rgba(27, 38, 29, 0.58);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonials__action {
  padding-top: 54px;
  padding-bottom: 0;
  text-align: right;
}

@keyframes testimonials-scroll {
  to { transform: translateX(-50%); }
}

.consultation {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  padding: 130px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--olive);
}

.consultation__intro {
  align-self: start;
  position: sticky;
  top: 110px;
}

.consultation__intro h2 {
  font-size: clamp(3rem, 4.8vw, 5.3rem);
}

.consultation__intro > p:not(.kicker) {
  max-width: 430px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.7);
}

.consultation__contact {
  display: grid;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
  font-size: 0.72rem;
}

.consultation__contact span {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.consultation__contact a {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.booking-form {
  min-height: 650px;
  padding: clamp(30px, 5vw, 64px);
  color: var(--ink);
  background: var(--paper);
}

.form-step__heading {
  margin-bottom: 42px;
}

.form-step__heading span {
  color: var(--clay);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-step__heading h3 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.3vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 8px;
}

.field > span,
.time-slots legend {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 2px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(27, 38, 29, 0.35);
  border-radius: 0;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--clay);
  outline: none;
}

.field.is-invalid input,
.field.is-invalid select {
  border-color: #a32620;
}

.form-hint,
.prototype-note {
  margin: 30px 0 22px;
  color: rgba(27, 38, 29, 0.58);
  font-size: 0.76rem;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
}

.text-button {
  padding: 8px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.time-slots {
  margin: 0;
  padding: 0;
  border: 0;
}

.time-slots legend {
  margin-bottom: 14px;
}

.time-slots label {
  position: relative;
  display: inline-block;
  width: calc(33.333% - 8px);
  margin-right: 8px;
  cursor: pointer;
}

.time-slots input {
  position: absolute;
  opacity: 0;
}

.time-slots span {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  font-size: 0.74rem;
  transition: color 180ms ease, background 180ms ease;
}

.time-slots strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.time-slots input:checked + span {
  color: #fff;
  background: var(--olive-deep);
  border-color: var(--olive-deep);
}

.time-slots input:focus-visible + span {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 32px;
  color: rgba(27, 38, 29, 0.7);
  font-size: 0.78rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--olive-deep);
}

.form-message {
  margin-top: 32px;
  padding: 20px;
  color: var(--olive-deep);
  background: var(--sage);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 50px;
  align-items: start;
  padding: 74px max(24px, calc((100vw - 1180px) / 2)) 38px;
  color: #fff;
  background: var(--olive-deep);
}

.site-footer__brand {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1;
}

.site-footer__brand > span {
  display: grid;
}

.site-footer__brand strong {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 0.67rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
}

.site-footer__logo {
  width: 72px;
  height: 72px;
  padding: 8px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 50%;
}

.site-footer > p {
  justify-self: center;
  margin: 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.2;
}

.site-footer__links {
  display: grid;
  justify-self: end;
  justify-items: end;
  gap: 8px;
  text-align: right;
  font-size: 0.78rem;
}

.site-footer small {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

[hidden] {
  display: none !important;
}

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

  .site-header,
  .site-header.is-scrolled {
    height: 76px;
    padding: 0;
  }

  .site-header.is-scrolled {
    width: 100%;
    padding: 0 18px;
  }

  .brand {
    position: relative;
    z-index: 2;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-button__line {
    position: relative;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: background 160ms ease;
  }

  .menu-button__line::before,
  .menu-button__line::after {
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 220ms ease;
  }

  .menu-button__line::before {
    transform: translateY(-7px);
  }

  .menu-button__line::after {
    transform: translateY(7px);
  }

  .menu-button[aria-expanded="true"] .menu-button__line {
    background: transparent;
  }

  .menu-button[aria-expanded="true"] .menu-button__line::before {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button__line::after {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(92px + env(safe-area-inset-top)) 24px calc(32px + env(safe-area-inset-bottom));
    color: #fff;
    background: var(--olive-deep);
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    opacity: 0;
    text-transform: none;
    overscroll-behavior: contain;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav .nav-cta,
  .is-scrolled .site-nav .nav-cta {
    margin-top: 18px;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 0.72rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__veil {
    background: linear-gradient(0deg, rgba(18, 28, 20, 0.86), rgba(18, 28, 20, 0.1) 78%);
  }

  .hero__content > * {
    width: min(500px, 68vw);
  }

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

  .hero__note {
    display: none;
  }

  .proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof .proof__statement {
    grid-column: 1 / -1;
    min-height: 95px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .intro,
  .work__header,
  .consultation {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 20px;
  }

  .intro__copy {
    max-width: 570px;
    padding-top: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-heading .kicker {
    padding: 0;
  }

  .story--garden {
    grid-template-columns: 1fr 0.7fr;
    grid-template-rows: 1fr 220px;
    min-height: 570px;
  }

  .story__primary {
    height: 100%;
  }

  .story__secondary {
    height: 220px;
  }

  .story--details {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto 460px;
    margin-top: 120px;
  }

  .story__wide {
    height: 100%;
  }

  .story__portrait {
    height: 100%;
    margin-top: 0;
  }

  .story__caption--right {
    width: auto;
  }

  .portfolio-hero,
  .portfolio-project__header {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .portfolio-hero {
    padding-top: 150px;
  }

  .portfolio-hero__intro {
    max-width: 620px;
  }

  .portfolio-grid--wedding {
    grid-template-rows: 280px 340px;
  }

  .portfolio-grid--garden {
    grid-template-rows: 260px 330px;
  }

  .team-founder {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 7vw;
  }

  .team-directory__heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .about__image {
    min-height: 540px;
  }

  .about__content {
    max-width: 700px;
  }

  .consultation__intro {
    position: static;
    margin-bottom: 20px;
  }
}

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

  .hero__content {
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 82px;
  }

  .hero__content > * {
    width: 100%;
    margin-left: 0;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16vw, 5.4rem);
    line-height: 0.92;
  }

  .hero__copy {
    max-width: 340px;
    margin-top: 22px;
    font-size: 0.95rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }

  .hero__scroll {
    display: none;
  }

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

  .proof p {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .proof .proof__statement {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
    text-align: left;
  }

  .section {
    padding: 92px 0;
  }

  h2 {
    font-size: clamp(2.85rem, 13vw, 4.6rem);
  }

  .lead {
    font-size: 1.4rem;
  }

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

  .service {
    grid-template-columns: 42px 1fr;
    padding: 24px 0;
  }

  .service__mark {
    display: none;
  }

  .service p {
    font-size: 0.9rem;
  }

  .services__types {
    margin-left: 0;
  }

  .work {
    padding: 92px 0 110px;
  }

  .work__header {
    gap: 34px;
    padding-bottom: 56px;
  }

  .story--garden,
  .story--details {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story__primary {
    grid-column: 1;
    grid-row: auto;
    height: 490px;
  }

  .story__primary img {
    object-position: 58% center;
  }

  .story__caption {
    grid-column: 1;
    grid-row: auto;
    padding: 20px 0 34px;
  }

  .story__secondary {
    grid-column: 1;
    grid-row: auto;
    height: 320px;
  }

  .story--details {
    grid-template-areas:
      "caption"
      "wide"
      "portrait";
    grid-template-rows: auto 340px 560px;
    margin-top: 92px;
  }

  .story__wide {
    height: 100%;
  }

  .story__portrait {
    height: 100%;
    margin-top: 0;
  }

  .story__caption--right {
    position: static;
    width: auto;
    padding-top: 0;
    order: initial;
  }

  .photo-note {
    margin-top: 50px;
  }

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

  .process__list li,
  .process__list li + li {
    min-height: 0;
    padding: 28px 0 38px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .process__list h3 {
    margin-top: 24px;
  }

  .about__image {
    min-height: 420px;
  }

  .about__content {
    padding: 78px 24px;
  }

  .testimonials {
    padding: 82px 0 76px;
  }

  .testimonials__header {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 48px;
  }

  .testimonials__header > p {
    max-width: 420px;
  }

  .testimonial-quote {
    width: min(82vw, 390px);
    min-height: 280px;
  }

  .testimonials__action {
    padding-top: 42px;
    text-align: left;
  }

  .consultation {
    gap: 48px;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .booking-form {
    min-height: 0;
    padding: 28px 20px 34px;
  }

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

  .field--wide {
    grid-column: auto;
  }

  .time-slots label {
    display: block;
    width: 100%;
    margin: 0 0 10px;
  }

  .time-slots span {
    display: flex;
    justify-content: space-between;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
    justify-items: center;
    text-align: center;
  }

  .site-footer__brand {
    justify-content: center;
    text-align: center;
  }

  .site-footer > p,
  .site-footer__links {
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .site-footer small {
    grid-column: auto;
    width: 100%;
    margin-top: 14px;
    text-align: center;
  }

  .brand__icon {
    width: 48px;
    height: 48px;
    padding: 5px;
  }

  .brand__eyebrow {
    font-size: 1.08rem;
  }

  .brand__full {
    width: 140px;
  }

  .team-hero {
    min-height: 700px;
    height: 100svh;
  }

  .team-hero__content {
    padding-bottom: 76px;
  }

  .team-hero h1 {
    font-size: clamp(3.4rem, 15vw, 5.3rem);
  }

  .team-founder {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .team-founder__mark {
    max-width: 420px;
  }

  .team-values__header {
    padding-bottom: 54px;
  }

  .team-values__list,
  .team-directory__preview {
    grid-template-columns: 1fr;
  }

  .team-values__list li,
  .team-values__list li + li {
    min-height: 0;
    padding: 28px 0 38px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .team-values__list h3 {
    margin-top: 32px;
  }

  .team-values__list p {
    margin-top: 18px;
  }

  .team-profile-placeholder {
    aspect-ratio: 4 / 3;
  }

  .team-cta {
    min-height: 620px;
  }

  .portfolio-hero {
    padding-top: 124px;
    padding-bottom: 62px;
  }

  .portfolio-hero h1 {
    font-size: clamp(3.35rem, 15vw, 5.2rem);
  }

  .portfolio-lead {
    width: 100%;
    height: 520px;
    min-height: 0;
    margin-bottom: 0;
  }

  .portfolio-lead figcaption {
    right: 16px;
    bottom: 16px;
  }

  .portfolio-project {
    padding: 92px 0 100px;
  }

  .portfolio-project__header {
    padding-bottom: 52px;
  }

  .portfolio-grid--wedding,
  .portfolio-grid--garden,
  .portfolio-grid--recent {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 18px;
  }

  .portfolio-grid__tall,
  .portfolio-grid__wide,
  .portfolio-grid__small,
  .portfolio-grid__stage,
  .portfolio-grid__garden-main,
  .portfolio-grid__garden-detail,
  .portfolio-grid__garden-portrait,
  .portfolio-grid__recent-main,
  .portfolio-grid__recent-couple,
  .portfolio-grid__recent-bride {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    height: 380px;
  }

  .portfolio-grid__tall,
  .portfolio-grid__garden-main,
  .portfolio-grid__recent-main {
    height: 540px;
  }
}

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

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