/* Greenway Studios — palette and type straight from the brand deck:
   Oat Cream #E9DCCF · Alpine Forest #366052 · Slate Blue-Grey #546872
   Dusty Clay #C2ADA0 · Pale Alpine Sky · Fraunces / Poppins / Montserrat */

:root {
  --oat: #E9DCCF;
  --oat-light: #F2EBE1;
  --forest: #366052;
  --forest-deep: #2B4B41;
  --slate: #546872;
  --clay: #C2ADA0;
  --clay-soft: #D8C9BD;
  --sage: #BFCFCC;
  --sky: #DEE8E6;
  --ink: #3B4B51;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Poppins", "Helvetica Neue", sans-serif;
  --body: "Montserrat", "Helvetica Neue", sans-serif;
  --shell: 1160px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--oat);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
section { scroll-margin-top: 5rem; }

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- type ---------- */
.section-heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.12;
  color: var(--forest);
  letter-spacing: -0.01em;
  max-width: 18em;
}
.section-heading.light { color: var(--oat); }
.section-sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--slate);
  margin-top: 0.85rem;
}
.kicker {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
}
.body-copy p { margin-bottom: 1em; }
.body-copy p:last-child { margin-bottom: 0; }
.body-copy strong { font-weight: 600; color: var(--forest); }
.body-copy.light { color: #E6EDE9; }
.body-copy.light strong { color: #fff; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.85rem 1.9rem;
  border-radius: 3px;
  border: 1.5px solid var(--forest);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--forest); color: var(--oat); }
.btn-solid:hover { background: var(--forest-deep); }
.btn-ghost { background: transparent; color: var(--forest); }
.btn-ghost:hover { background: rgba(54, 96, 82, 0.08); }
.btn-cream { background: var(--oat); color: var(--forest); border-color: var(--oat); }
.btn-small { padding: 0.55rem 1.3rem; font-size: 0.85rem; }
.btn-big { padding: 1.05rem 2.6rem; font-size: 1.05rem; }

/* ---------- language bar ---------- */
.lang-bar {
  background: var(--forest-deep);
  padding: 0.35rem 0;
}
.lang-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.6rem;
}
.lang-link {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--sage);
  text-decoration: none;
  padding: 0.1rem 0.25rem;
}
.lang-link:hover { color: var(--oat); }
.lang-link.is-active {
  color: var(--oat);
  border-bottom: 1.5px solid var(--clay);
}
.lang-sep { color: var(--slate); font-size: 0.75rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(233, 220, 207, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(84, 104, 114, 0.14);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--forest);
  text-decoration: none;
  margin-right: auto;
}
.site-nav { display: flex; gap: 1.6rem; }
.site-nav a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--slate);
  text-decoration: none;
}
.site-nav a:hover { color: var(--forest); }
/* Phone: nav links move to a second row inside the sticky header. */
@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0 1rem;
    padding-top: 0.7rem;
    padding-bottom: 0.55rem;
  }
  .wordmark { font-size: 1.15rem; }
  .site-nav {
    order: 3;
    width: 100%;
    gap: 1.1rem;
    padding-top: 0.55rem;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { font-size: 0.82rem; white-space: nowrap; }
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-top: clamp(3.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
}
.hero-headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.06;
  color: var(--forest);
  letter-spacing: -0.015em;
  margin: 1.1rem 0 1.4rem;
}
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  max-width: 34em;
  color: var(--ink);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-media { position: relative; }
.hero-photo-link { text-decoration: none; display: block; }
.hero-photo-cta {
  display: block;
  text-align: center;
  margin-top: 0.9rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--slate);
  transition: color 0.2s ease;
}
.hero-photo-link:hover .hero-photo-cta { color: var(--forest); }
.hero-photo-link:hover .hero-photo-frame { transform: rotate(1.4deg) translateY(-3px); }
.hero-photo-frame {
  position: relative;
  border: 1.5px solid var(--slate);
  padding: 0.7rem;
  background: var(--oat-light);
  transform: rotate(2.6deg);
  transition: transform 0.3s ease;
}
.hero-photo-frame img,
.hero-photo-frame video { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.hero-pine {
  position: absolute;
  bottom: -1.6rem;
  left: -2.2rem;
  width: 3.4rem;
  color: var(--forest);
  transform: rotate(-4deg);
}
.hero-mountains {
  color: var(--slate);
  opacity: 0.75;
  margin-top: -2rem;
  padding-bottom: 1.2rem;
}
.hero-mountains svg { width: min(920px, 92vw); margin: 0 auto; display: block; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 420px; }
}

/* ---------- clients marquee ---------- */
.clients {
  background: var(--oat-light);
  border-top: 1px solid rgba(84, 104, 114, 0.12);
  border-bottom: 1px solid rgba(84, 104, 114, 0.12);
  padding: 1.8rem 0 2rem;
}
.clients-heading {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  text-align: center;
  margin-bottom: 1.1rem;
  color: var(--slate);
  opacity: 0.75;
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track {
  display: inline-block;
  animation: marquee 45s linear infinite;
}
.marquee-item {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--forest);
  padding: 0 1.4rem;
}
.marquee-dot { color: var(--clay); font-size: 1.2rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { white-space: normal; text-align: center; }
}
/* Phone: smaller names so several fit on screen, faster loop so long
   names (The Orchards Holiday Park) don't crawl. */
@media (max-width: 760px) {
  .marquee-item { font-size: 0.78rem; padding: 0 0.55rem; }
  .marquee-dot { font-size: 0.72rem; }
  .marquee-track { animation-duration: 24s; }
  .clients { padding: 1.3rem 0 1.5rem; }
  .clients-heading { margin-bottom: 0.8rem; }
}

/* ---------- reality / fix slider ---------- */
.rf { background: var(--sage); padding: clamp(3.25rem, 6.5vw, 5rem) 0; }
.rf-tabs {
  position: relative;
  display: flex;
  width: min(460px, 100%);
  border: 1.5px solid var(--forest);
  background: rgba(242, 235, 225, 0.55);
  border-radius: 3px;
  padding: 4px;
}
.rf-thumb {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.3, 1);
}
.rf-tab {
  position: relative;
  z-index: 1;
  flex: 1;
  border: none;
  background: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--forest);
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.rf-tab.is-active { color: var(--oat); }
.rf-viewport {
  display: grid;
  align-items: start;
  overflow: hidden;
  margin-top: 2.6rem;
  /* JS pins this to the active panel's height so the section stays as
     short as its visible content; falls back to natural height without JS. */
  transition: height 0.55s cubic-bezier(0.22, 0.75, 0.25, 1);
}
.rf-panel {
  grid-area: 1 / 1;
  min-width: 0;
  transition:
    transform 0.6s cubic-bezier(0.22, 0.75, 0.25, 1),
    opacity 0.45s ease,
    visibility 0s linear 0.6s;
}
.rf-panel[data-state="active"] {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.rf-panel[data-state="left"] {
  transform: translateX(-108%);
  opacity: 0;
  visibility: hidden;
}
.rf-panel[data-state="right"] {
  transform: translateX(108%);
  opacity: 0;
  visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .rf-panel, .rf-thumb, .rf-viewport { transition: none; }
}
.reality-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2.6rem;
  margin-bottom: 1.4rem;
  max-width: 62rem;
}
.reality-card {
  position: relative;
  background: var(--oat-light);
  border: 1px solid rgba(84, 104, 114, 0.16);
  padding: 2rem 2rem 2.2rem;
}
/* Media box beside the text cards; grid stretch matches their height,
   the aspect ratio only applies when it wraps to its own row. */
.reality-photo {
  margin: 0;
  border: 1.5px solid var(--slate);
  background: var(--oat-light);
  padding: 0.6rem;
  aspect-ratio: 4 / 3;
  min-height: 0;
}
/* Wide screens: the box shares a row with the text cards, so drop the
   intrinsic ratio and let the grid stretch it to their exact height. */
@media (min-width: 1001px) {
  .reality-photo { aspect-ratio: auto; }
}
.reality-photo img,
.reality-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reality-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 0.9rem;
}
/* Pines straddle the bottom-right corner of the last text card
   (the 10pm panic post), slightly overlapping into the box. */
.rf-pines {
  position: absolute;
  right: -0.6rem;
  bottom: -0.8rem;
  color: var(--forest);
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  pointer-events: none;
}
.rf-pines svg:first-child { width: 2.7rem; opacity: 0.9; }
.rf-pines svg:last-child { width: 3.9rem; }
.reality-card:last-child { padding-bottom: 3.4rem; }

.fix-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.fix-squiggle { color: var(--slate); width: min(280px, 30vw); }
.fix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.8rem, 4vw, 3.5rem);
  margin-top: 2.6rem;
}
.fix-icon { width: 4.2rem; color: var(--slate); margin-bottom: 1.1rem; }
.fix-item h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--forest);
  margin-bottom: 0.7rem;
}

/* ---------- about ---------- */
.about { background: var(--forest); padding: var(--section-y) 0; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.about-media { position: sticky; top: 6rem; }
.about-photo-frame {
  border: 1.5px solid rgba(233, 220, 207, 0.6);
  padding: 0.7rem;
  background: rgba(233, 220, 207, 0.06);
  transform: rotate(-1.2deg);
}
.about-photo-frame img,
.about-photo-frame video { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }

/* Rotating portrait stage. The pause affordance is deliberately hidden,
   the whole photo is the (unlabelled) button. */
.about-stage {
  display: block;
  width: 100%;
  position: relative;
  font: inherit;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
}
.about-stage.is-static { cursor: default; }
.about-stage:focus-visible { outline: 2px solid var(--oat); outline-offset: 4px; }
/* Flip-book: frames swap instantly at 0.25s, so no crossfade (a fade
   would still be mid-flight when the next frame arrives). */
.about-slide {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
}
.about-stage { display: grid; }
.about-stage > .about-slide { width: 100%; }
.about-slide.is-active { opacity: 1; }
.about-paused {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 2;
  background: rgba(43, 75, 65, 0.92);
  color: var(--oat);
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.45;
  text-align: center;
  padding: 0.7rem 0.8rem;
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.about-stage.is-paused .about-paused { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .about-paused { transition: none; }
}
.about-media figcaption { margin-top: 1.1rem; text-align: center; }
.about-name {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--oat);
}
.about-role {
  display: block;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-top: 0.2rem;
}
.about-copy .section-heading { margin-bottom: 1.6rem; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { position: static; max-width: 340px; }
}

/* ---------- mission ---------- */
.mission { background: var(--sky); padding: var(--section-y) 0; }
.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.mission-icon { width: 5rem; color: var(--slate); margin-bottom: 1rem; }
.mission-body { font-size: 1.04rem; }
@media (max-width: 860px) { .mission-grid { grid-template-columns: 1fr; } }

/* ---------- possibilities ---------- */
.possibilities { background: var(--oat); padding: var(--section-y) 0; }
.possibilities-intro {
  margin-top: 1.4rem;
  max-width: 44em;
  color: var(--ink);
}
.poss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: 3rem;
}
.poss-item {
  border-top: 1.5px solid var(--clay);
  padding-top: 1.3rem;
}
.poss-number {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  color: var(--clay);
  letter-spacing: 0.05em;
}
.poss-item h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--forest);
  margin: 0.5rem 0 0.6rem;
}
.poss-item .body-copy { font-size: 0.95rem; }

/* ---------- services ---------- */
.services { background: var(--oat-light); padding: var(--section-y) 0; }
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: clamp(1.6rem, 3vw, 2.5rem);
  margin-top: 3rem;
  padding-top: 1.4rem;
  align-items: stretch;
}
/* Push each card's CTA (and the tip below it) to the bottom so cards
   sharing a row line up. */
.package { display: flex; flex-direction: column; }
/* The note sits straight under the bullets; a flexible spacer before the
   CTA makes the button land at the same height on every card in the row. */
.package .package-bullets { margin-bottom: 1.4rem; }
.package .package-note { margin-bottom: 1.4rem; }
/* Equal-height cards: the spacer above the CTA soaks up the difference in
   copy length, so every button in the row lands on the same line. A card
   with no tip note reserves the same space below its CTA as one that has
   a tip, otherwise its button would sit lower than its neighbour's. */
.package-spacer { flex: 1 1 auto; min-height: 0.4rem; }
.package:not(.package-has-tip) { padding-bottom: calc(clamp(1.8rem, 3vw, 2.6rem) + 7.2rem); }
.package .btn { align-self: flex-start; margin-top: 0; }
/* The tip hangs below the CTA. Take it out of the flow so it can't push
   its own card's button up relative to a card without a tip. */
.package { position: relative; }
/* The tip stays in normal flow below the CTA. The spacer above the CTA is
   what equalises button height, so nothing here needs to be absolute. */
.package .package-tip { flex: none; }
.package {
  background: var(--oat);
  border: 1px solid rgba(84, 104, 114, 0.18);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  position: relative;
}
.package h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--forest);
  line-height: 1.2;
}
.package-price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--slate);
  margin: 0.5rem 0 1.2rem;
}
.package-bullets { list-style: none; margin: 1.4rem 0 1.8rem; }
.package-bullets li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.55rem;
  font-size: 0.97rem;
}
.package-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--clay);
}
.package-featured { background: var(--forest); border-color: var(--forest); color: #E6EDE9; }
.package-featured h3 { color: var(--oat); }
.package-featured .package-price { color: var(--sage); }
.package-featured .body-copy strong { color: #fff; }
.package-featured .package-bullets li::before { background: var(--sage); }
.package-tag {
  position: absolute;
  top: -0.9rem;
  left: clamp(1.8rem, 3vw, 2.6rem);
  background: var(--clay);
  color: #fff;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
}
/* Angled tip note at the foot of a package card, like a sticky note. */
.package-tip {
  display: block;
  width: min(17rem, 88%);
  margin: 2rem 0 0.4rem;
  background: var(--sage);
  color: var(--forest-deep);
  border: 1.5px solid var(--forest);
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.45;
  padding: 0.7rem 0.9rem;
  transform: rotate(-2deg);
  box-shadow: 0 6px 16px rgba(43, 75, 65, 0.16);
  transition: transform 0.3s ease;
}
.package:hover .package-tip { transform: rotate(-0.5deg) translateY(-2px); }

/* Small note chip above the button, echoing the featured tag. */
.package-note {
  display: inline-block;
  background: var(--clay);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
  max-width: 30rem;
}

@media (max-width: 760px) {
  .package-tip { width: auto; transform: rotate(-1.2deg); }
}

.other-services { margin-top: clamp(3rem, 6vw, 4.5rem); }
.other-heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--forest);
  margin-bottom: 1.8rem;
}
.other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.other-card {
  background: var(--oat);
  border: 1px solid rgba(84, 104, 114, 0.18);
  padding: 1.6rem 1.6rem 1.8rem;
}
.other-card h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest);
}
/* Desktop: the toggle is an inert wrapper that looks like plain heading text. */
.other-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: default;
}
.other-toggle:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; }
.other-chevron { display: none; }

/* Phone: cards collapse to tappable rows, details slide open. */
@media (max-width: 760px) {
  .other-grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .other-card { padding: 0; }
  .other-toggle { cursor: pointer; padding: 1.05rem 1.2rem; }
  .other-chevron {
    display: block;
    flex: none;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 1.5px solid var(--slate);
    border-bottom: 1.5px solid var(--slate);
    transform: rotate(45deg) translate(-1px, -1px);
    transition: transform 0.3s ease;
  }
  .other-card.is-open .other-chevron { transform: rotate(225deg); }
  .other-detail {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
  }
  .other-detail-inner {
    overflow: hidden;
    min-height: 0;
    padding: 0 1.2rem 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .other-card.is-open .other-detail { grid-template-rows: 1fr; }
  .other-card.is-open .other-detail-inner { opacity: 1; padding-bottom: 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .other-detail, .other-detail-inner, .other-chevron { transition: none; }
}
.other-price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clay);
  margin: 0.3rem 0 0.8rem;
  letter-spacing: 0.03em;
}
.other-card .body-copy { font-size: 0.92rem; }

/* ---------- testimonials (case-study cards) ---------- */
.tm-head { background: var(--sage); padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem); }
.tm-head-inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}
.tm-intro { margin-top: 1.3rem; max-width: 34em; }
.tm-feature {
  margin: 0;
  border: 1.5px solid var(--slate);
  background: var(--oat-light);
  padding: 0.55rem;
  max-width: 350px;
  justify-self: end;
  transform: rotate(-1deg);
}
/* width:100% so the frame's max-width governs the size, rather than the
   file's intrinsic width (SVGs without width/height attrs report ~120px). */
.tm-feature { width: 100%; }
.tm-feature img,
.tm-feature video { width: 100%; height: auto; display: block; }

.tm-list { background: var(--oat); padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5.5rem); }
.tm-card {
  background: var(--oat-light);
  border: 1px solid rgba(84, 104, 114, 0.2);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: clamp(1.2rem, 2.5vw, 1.8rem);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.tm-card:last-child { margin-bottom: 0; }
.tm-card.is-open {
  border-color: rgba(54, 96, 82, 0.5);
  box-shadow: 0 10px 30px rgba(43, 75, 65, 0.09);
}
.tm-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.tm-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; }
.tm-client {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--forest);
}
.tm-tag {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--sage);
  border: 1px solid rgba(54, 96, 82, 0.3);
  padding: 0.28rem 0.65rem;
  border-radius: 2px;
}
.tm-index {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--clay);
  letter-spacing: 0.06em;
  flex: none;
}
.tm-quote {
  border-left: 2px solid var(--clay);
  padding-left: 1.4rem;
  margin: 0;
}
.tm-quote .body-copy { font-size: 1.02rem; }
.tm-quote cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest);
}
.tm-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.3rem;
  padding: 0.5rem 0.95rem;
  background: none;
  border: 1.5px solid var(--forest);
  border-radius: 3px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--forest);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.tm-toggle:hover { background: var(--forest); color: var(--oat); }
.tm-toggle:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; }
.tm-chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.3s ease;
}
.tm-card.is-open .tm-chevron { transform: rotate(225deg); }
/* max-height rather than 0fr/1fr: the detail contains a nested grid with
   margins, which makes the fr-based collapse resolve to 0 in some engines. */
.tm-detail {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}
.tm-detail-inner {
  opacity: 0;
  transition: opacity 0.35s ease;
}
.tm-card.is-open .tm-detail { max-height: 2400px; }
.tm-card.is-open .tm-detail-inner { opacity: 1; }
.tm-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  padding-top: 1.6rem;
  margin-top: 1.6rem;
  border-top: 1px solid rgba(84, 104, 114, 0.2);
}
.tm-detail-copy .body-copy { font-size: 0.95rem; }
.tm-highlights {
  list-style: none;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.5rem;
}
.tm-highlights li {
  position: relative;
  padding-left: 1.4rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--slate);
}
.tm-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--clay);
}
.tm-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--clay);
}
.tm-link:hover { color: var(--forest-deep); }
/* Proof-of-work images sit at ~80% of their original size: big enough to
   read as real work, small enough that the written detail still leads. */
.tm-samples {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  justify-items: start;
  max-width: 390px;
}
.tm-samples-two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 390px; }
.tm-sample {
  margin: 0;
  border: 1.5px solid var(--slate);
  background: var(--oat);
  padding: 0.4rem;
  width: 100%;
}
.tm-sample img,
.tm-sample video { width: 100%; display: block; }

@media (prefers-reduced-motion: reduce) {
  .tm-detail, .tm-detail-inner, .tm-chevron, .tm-card { transition: none; }
}
@media (max-width: 860px) {
  .tm-head-inner { grid-template-columns: 1fr; }
  .tm-feature { justify-self: start; }
  .tm-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .tm-quote { padding-left: 1rem; }
  /* Keep two-up side by side on phones: at this size stacking them
     would leave each sample smaller than a thumbnail. */
  .tm-samples-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- contact ---------- */
.contact { background: var(--oat); padding: var(--section-y) 0; }
.contact-head { max-width: 46rem; }
.contact-intro { margin-top: 1.4rem; }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 3.5rem 0 0;
  position: relative;
}
.step { position: relative; padding-top: 1.7rem; }
.step::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  right: -2rem;
  height: 1.5px;
  background: var(--slate);
  opacity: 0.5;
}
.step:last-child::before { right: 0; }
.step-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--forest);
}
.step h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.step .body-copy { font-size: 0.95rem; }
.contact-cta { text-align: center; margin-top: clamp(3rem, 6vw, 4.5rem); }
.contact-envelope { width: 5.2rem; color: var(--slate); margin: 0 auto 1.4rem; }
.contact-email { margin-top: 1.2rem; font-family: var(--sans); font-weight: 500; }
.contact-email a { color: var(--forest); text-decoration: none; border-bottom: 1px solid var(--clay); }
.contact-location {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--slate);
  letter-spacing: 0.06em;
}

/* ---------- footer ---------- */
.site-footer { background: var(--forest-deep); color: var(--sage); padding: 3rem 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--oat);
}
.footer-tagline { font-size: 0.9rem; margin-top: 0.2rem; }
.footer-right { text-align: right; font-size: 0.92rem; }
.footer-right a { color: var(--oat); text-decoration: none; display: inline-block; margin-left: 1.2rem; }
.footer-right a:hover { text-decoration: underline; }
.footer-smallprint { margin-top: 0.7rem; font-size: 0.8rem; opacity: 0.8; }
.footer-admin { opacity: 0.55; font-size: 0.78rem; }
@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
  .footer-right a { margin-left: 0; margin-right: 1.2rem; }
}

/* ---------- standalone pages (about, reviews) ---------- */
.page-hero { padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.light-kicker { color: var(--sage); margin-bottom: 1rem; }
.page-cta {
  background: var(--oat);
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.page-cta-inner { text-align: center; }
.page-cta-mountains {
  color: var(--slate);
  opacity: 0.7;
  max-width: 620px;
  margin: 0 auto 2.2rem;
}
.page-cta-back { margin-top: 1.5rem; font-family: var(--sans); font-size: 0.9rem; }
.page-cta-back a { color: var(--slate); text-decoration: none; }
.page-cta-back a:hover { color: var(--forest); }

/* ---------- icons ---------- */
.icon { display: block; width: 100%; height: auto; }
