/* ============================================================
   VERROW — Architectural Editorial design system
   Bone canvas · concrete grey · graphite ink · deep ink-blue accent
   ============================================================ */

:root {
  --bone:      #F5F4F1;
  --bone-2:    #EDEBE5;
  --ink:       #17191E;
  --ink-soft:  #3B3E44;
  --grey:      #63665F;   /* concrete text — AA on bone */
  --line:      #DCD9D1;
  --blue:      #1F3050;   /* the one accent — deep architectural ink-blue */
  --white:     #FBFAF8;

  --font-g: 'Archivo', system-ui, sans-serif;
  --font-s: 'Newsreader', Georgia, serif;

  --track-caps: .26em;
  --ease: cubic-bezier(.22,.61,.21,1);
  --wrap: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-g);
  font-weight: 300;
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

::selection { background: var(--blue); color: var(--white); }

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

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

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }

/* ---------- type utilities ---------- */

.eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--grey);
}

/* ============================================================
   HEADER
   ============================================================ */

.site-head {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 64px);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}

.site-head.solid {
  background: rgba(245, 244, 241, .92);
  backdrop-filter: blur(12px);
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0 1px 0 var(--line);
}

.wordmark {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .42em;
  color: var(--white);
  transition: color .5s var(--ease);
}
.site-head.solid .wordmark { color: var(--ink); }

.head-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 40px); }

.head-nav a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(251, 250, 248, .85);
  transition: color .35s var(--ease);
}
.head-nav a:hover { color: var(--white); }
.site-head.solid .head-nav a { color: var(--ink-soft); }
.site-head.solid .head-nav a:hover { color: var(--ink); }

.head-cta {
  border: 1px solid rgba(251, 250, 248, .45);
  padding: 10px 22px;
  transition: border-color .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.head-cta:hover { background: var(--white); color: var(--ink) !important; border-color: var(--white); }
.site-head.solid .head-cta { border-color: var(--ink); }
.site-head.solid .head-cta:hover { background: var(--ink); color: var(--bone) !important; }

/* mobile nav */
.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 34px;
  position: relative; z-index: 70;
}
.nav-toggle span {
  display: block; height: 1px; background: var(--white);
  margin: 7px 8px; transition: transform .4s var(--ease), background .4s var(--ease);
}
.site-head.solid .nav-toggle span, .nav-toggle.open span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 55; /* below .site-head so the toggle X stays clickable */
  background: var(--bone);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .45s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 28px; text-align: center; }
.mobile-menu a {
  font-size: 22px; font-weight: 300; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
}
.mobile-menu .mm-cta {
  margin-top: 14px; border: 1px solid var(--ink);
  padding: 14px 30px; font-size: 14px;
}

@media (max-width: 820px) {
  .head-nav { display: none; }
  .nav-toggle { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}

.hero-media, .hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media img {
    animation: heroDrift 14s var(--ease) both;
  }
  @keyframes heroDrift {
    from { transform: scale(1.07); }
    to   { transform: scale(1); }
  }
}

.hero-scrim { /* deepened for AA over any photo */
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10, 12, 16, .84) 0%, rgba(10, 12, 16, .38) 34%, rgba(10, 12, 16, 0) 60%),
    linear-gradient(to bottom, rgba(10, 12, 16, .38) 0%, rgba(10, 12, 16, 0) 22%);
}

.hero-overlay {
  position: absolute;
  left: clamp(20px, 5vw, 64px);
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(64px, 12vh, 128px);
  color: var(--white);
}

.hero-eyebrow {
  color: rgba(251, 250, 248, .93);
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(44px, 7.4vw, 104px);
  font-weight: 200;
  line-height: 1.04;
  letter-spacing: -.012em;
}

.hero-sub {
  margin-top: 26px;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 300;
  color: rgba(251, 250, 248, .93);
  line-height: 1.75;
}

.hero-caption {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 26px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(251, 250, 248, .88);
}

/* entrance */
@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow, .hero-title, .hero-sub {
    opacity: 0; transform: translateY(26px);
    animation: heroUp 1.1s var(--ease) forwards;
  }
  .hero-title { animation-delay: .15s; }
  .hero-sub   { animation-delay: .32s; }
  @keyframes heroUp { to { opacity: 1; transform: none; } }
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 0;
  width: 1px; height: 72px;
  overflow: hidden;
}
.scroll-cue span {
  position: absolute; left: 0; top: 0;
  width: 1px; height: 100%;
  background: rgba(251, 250, 248, .6);
  transform-origin: top;
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue span { animation: cueDrop 2.6s var(--ease) infinite; }
  @keyframes cueDrop {
    0%   { transform: translateY(-100%); }
    55%  { transform: translateY(0); }
    100% { transform: translateY(102%); }
  }
}

@media (max-width: 700px) {
  .br-desk { display: none; }
}

/* ============================================================
   STUDIO INTRO
   ============================================================ */

.intro { padding: clamp(96px, 16vh, 190px) 0; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}
.intro-grid > .eyebrow { padding-top: 14px; border-top: 1px solid var(--ink); }

.intro-lede {
  font-family: var(--font-s);
  font-weight: 300;
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.52;
  color: var(--ink);
  letter-spacing: .002em;
}
.intro-lede em { font-style: italic; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
}
.text-link .tl-rule {
  display: block; width: 56px; height: 1px;
  background: var(--ink);
  transition: width .45s var(--ease), background .45s var(--ease);
}
.text-link:hover .tl-rule { width: 88px; background: var(--blue); }
.text-link:hover { color: var(--blue); }

@media (max-width: 820px) {
  .intro-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SELECTED WORKS
   ============================================================ */

.works { padding-bottom: clamp(80px, 12vh, 150px); }

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--ink);
  padding-top: 14px;
  margin-bottom: clamp(40px, 6vh, 72px);
}
.sec-link { margin-top: 0; }

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(28px, 4vw, 64px) clamp(20px, 3vw, 48px);
}

.work-tile { grid-column: span 5; display: block; }
.work-tile.wt-wide { grid-column: span 7; }
.work-tile:nth-child(2n) { transform: translateY(clamp(20px, 4vh, 56px)); }

.wt-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bone-2);
}
.wt-wide .wt-media { aspect-ratio: 16 / 10; }
.wt-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}
.work-tile:hover .wt-media img { transform: scale(1.035); }

.wt-cap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-top: 16px;
}
.wt-name {
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 300;
  letter-spacing: .01em;
  position: relative;
}
.wt-name::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--blue);
  transition: width .5s var(--ease);
}
.work-tile:hover .wt-name::after { width: 100%; }
.wt-meta {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey);
  white-space: nowrap;
}

@media (max-width: 820px) {
  .works-grid { grid-template-columns: 1fr; gap: 44px; }
  .work-tile, .work-tile.wt-wide { grid-column: 1 / -1; transform: none !important; }
}

/* ============================================================
   APPROACH
   ============================================================ */

.approach { padding: clamp(90px, 14vh, 170px) 0; background: var(--bone-2); }

.approach .eyebrow {
  border-top: 1px solid var(--ink);
  padding-top: 14px;
  margin-bottom: clamp(44px, 7vh, 80px);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}

.pillar-no {
  display: block;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--blue);
  margin-bottom: 20px;
}
.pillar-title {
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 300;
  margin-bottom: 16px;
}
.pillar-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
}

@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   PRESS
   ============================================================ */

.press { padding: clamp(80px, 12vh, 150px) 0; }

.press-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  margin-bottom: clamp(48px, 8vh, 90px);
}
.press-row span {
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--grey);
}

.press-quote { text-align: center; max-width: 760px; margin: 0 auto; }
.press-quote p {
  font-family: var(--font-s);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.5;
  color: var(--ink);
}
.press-quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-g);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ============================================================
   CLOSING IMAGE
   ============================================================ */

.closing { position: relative; }
.closing img {
  width: 100%;
  height: clamp(420px, 74vh, 780px);
  object-fit: cover;
}
.closing-cap {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 24px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(23, 25, 30, .82);
}

/* ============================================================
   CONTACT CTA
   ============================================================ */

.cta { padding: clamp(100px, 16vh, 200px) 0; }

.cta-title {
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 200;
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}

.btn-line {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 16px 38px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.btn-line:hover { background: var(--ink); color: var(--bone); }

.cta-meta { font-size: 13px; color: var(--grey); letter-spacing: .04em; }

/* ============================================================
   FOOTER
   ============================================================ */

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

.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 34px 0 8px;
}
.foot-wordmark { font-size: 14px; letter-spacing: .42em; }
.foot-nav { display: flex; gap: 28px; }
.foot-nav a {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.foot-nav a:hover { color: var(--blue); }

.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 0 34px;
}
.foot-brand, .foot-honesty {
  font-size: 12.5px;
  color: var(--grey);
}
.foot-honesty a { color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.foot-honesty a:hover { color: var(--blue); border-color: var(--blue); }

/* ============================================================
   INNER PAGES (page head + filters)
   ============================================================ */

.page { padding-top: 88px; }

.page-head { padding: clamp(64px, 10vh, 120px) 0 clamp(40px, 6vh, 72px); }

.page-title {
  font-size: clamp(38px, 5.4vw, 76px);
  font-weight: 200;
  line-height: 1.06;
  letter-spacing: -.012em;
  margin: 22px 0 0;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: clamp(36px, 5vh, 56px);
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.filter-btn {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-g);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 6px 0;
  position: relative;
  transition: color .35s var(--ease);
}
.filter-btn::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--blue);
  transition: width .4s var(--ease);
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.active { color: var(--ink); }
.filter-btn.active::after { width: 100%; }

.work-index { padding-top: 8px; }
.work-tile[hidden] { display: none !important; }

.wt-cs {
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid currentColor;
  padding: 3px 8px;
}

.filter-empty {
  padding: 60px 0;
  color: var(--grey);
  font-size: 15px;
}

/* ============================================================
   CASE STUDY PAGES
   ============================================================ */

.cs-hero {
  position: relative;
  height: 92vh;
  height: 92svh;
  min-height: 520px;
  overflow: hidden;
}
.cs-hero > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.cs-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 16, .80) 0%, rgba(10, 12, 16, .30) 36%, rgba(10, 12, 16, 0) 62%);
}
.cs-hero-overlay {
  position: absolute;
  left: clamp(20px, 5vw, 64px);
  bottom: clamp(48px, 9vh, 96px);
  color: var(--white);
}
.cs-eyebrow { color: rgba(251, 250, 248, .93); margin-bottom: 16px; }
.cs-title {
  font-size: clamp(42px, 6.6vw, 92px);
  font-weight: 200;
  line-height: 1.04;
  letter-spacing: -.012em;
}
.cs-meta {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(251, 250, 248, .93);
}

.cs-narrative { padding: clamp(90px, 14vh, 170px) 0; }
.cs-body {
  margin-top: 28px;
  font-size: clamp(15.5px, 1.25vw, 17.5px);
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* --- the signature: drawing -> photograph --- */

.sig { height: 260vh; position: relative; color: var(--ink); }

.sig-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sig-stage {
  position: relative;
  width: min(92vw, 1080px);
  aspect-ratio: 3 / 2;
  max-height: 82vh;
}

.sig-plan, .sig-photo {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.sig-plan svg { width: 100%; height: 100%; }

.sig-photo { opacity: 0; }
.sig-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* draw-in: every .sig-d stroke has pathLength=1 */
.sig-d * {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.sig.on .sig-d * {
  transition: stroke-dashoffset 2.2s var(--ease);
  stroke-dashoffset: 0;
}
.sig.on .sig-d.sig-ray * { transition-delay: 1.6s; transition-duration: 1.4s; }
.sig-txt { opacity: 0; transition: opacity 1.2s var(--ease) 1.9s; }
.sig.on .sig-txt { opacity: 1; }

.sig-cap {
  position: absolute;
  left: 0; bottom: -44px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey);
}
.sig-cap-photo { opacity: 0; transition: opacity .6s var(--ease); }
.sig.past .sig-cap-photo { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .sig { height: auto; padding: 60px 0; }
  .sig-sticky { position: static; height: auto; display: block; }
  .sig-stage { margin: 0 auto; aspect-ratio: auto; max-height: none; }
  .sig-plan, .sig-photo { position: static; opacity: 1 !important; }
  .sig-d * { stroke-dashoffset: 0; }
  .sig-txt { opacity: 1; }
  .sig-photo { margin-top: 28px; }
  .sig-cap { position: static; margin: 20px auto 0; text-align: center; }
  .sig-cap-photo { opacity: 1; }
}

/* --- image sequence --- */

.cs-seq { padding-bottom: clamp(60px, 9vh, 110px); }

.cs-fig { margin: 0 0 clamp(56px, 9vh, 110px); }
.cs-fig img {
  width: 100%;
  height: clamp(420px, 82vh, 820px);
  object-fit: cover;
}
.cs-fig-inset { max-width: min(88vw, 980px); margin-left: auto; margin-right: auto; }
.cs-fig-inset img { height: clamp(380px, 68vh, 680px); }
.cs-fig figcaption {
  max-width: min(88vw, 980px);
  margin: 16px auto 0;
  padding: 0 clamp(20px, 5vw, 64px);
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey);
}
.cs-fig-inset figcaption { padding: 0; }

/* --- specs --- */

.cs-specs { padding: clamp(70px, 11vh, 130px) 0; background: var(--bone-2); }
.cs-specs .eyebrow {
  border-top: 1px solid var(--ink);
  padding-top: 14px;
  margin-bottom: clamp(36px, 6vh, 64px);
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 44px);
}
.specs-grid dt {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.specs-grid dd { font-size: 15.5px; font-weight: 300; margin: 0; }
@media (max-width: 900px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- next project --- */

.cs-next {
  position: relative;
  display: block;
  height: clamp(320px, 52vh, 520px);
  overflow: hidden;
}
.cs-next img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.cs-next:hover img { transform: scale(1.04); }
.cs-next-scrim {
  position: absolute; inset: 0;
  background: rgba(13, 15, 20, .46);
  transition: background .6s var(--ease);
}
.cs-next:hover .cs-next-scrim { background: rgba(13, 15, 20, .32); }
.cs-next-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  color: var(--white);
  text-align: center;
}
.cs-next-eyebrow { color: rgba(251, 250, 248, .75); }
.cs-next-name {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 200;
  letter-spacing: -.01em;
}

/* ============================================================
   STUDIO PAGE
   ============================================================ */

.studio-phil { padding-top: clamp(30px, 5vh, 60px); }

.studio-band { position: relative; }
.studio-band img {
  width: 100%;
  height: clamp(360px, 64vh, 640px);
  object-fit: cover;
}
.studio-band-cap { color: rgba(251, 250, 248, .75); }

.pillars-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1020px) { .pillars-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .pillars-4 { grid-template-columns: 1fr; } }

.studio-people { padding: clamp(90px, 14vh, 170px) 0 clamp(50px, 8vh, 90px); }
.studio-people .eyebrow, .studio-awards .eyebrow {
  border-top: 1px solid var(--ink);
  padding-top: 14px;
  margin-bottom: clamp(40px, 6vh, 72px);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}
@media (max-width: 900px) { .people-grid { grid-template-columns: 1fr; gap: 44px; } }

.person-init {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 15px;
  letter-spacing: .14em;
  margin-bottom: 22px;
}
.person-name { font-size: 20px; font-weight: 300; margin-bottom: 6px; }
.person-role {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.person-bio { font-size: 14.5px; line-height: 1.75; color: var(--ink-soft); }

.people-note {
  margin-top: clamp(36px, 6vh, 56px);
  font-size: 12px;
  color: var(--grey);
}

.studio-awards { padding: clamp(40px, 7vh, 80px) 0 clamp(30px, 5vh, 60px); }
.awards-list { list-style: none; }
.awards-list li {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.awards-list li:first-child { border-top: 1px solid var(--line); }
.aw-year { font-size: 12px; letter-spacing: .16em; color: var(--grey); flex: 0 0 56px; }
.aw-name { font-size: clamp(15px, 1.4vw, 18px); font-weight: 300; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-body { padding-bottom: clamp(90px, 14vh, 170px); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-dl { margin-top: 40px; display: grid; gap: 22px; }
.contact-dl dt {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}
.contact-dl dd { font-size: 15.5px; font-weight: 300; margin: 0; }

.demo-banner {
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 11px;
  letter-spacing: .18em;
  padding: 12px 16px;
  margin-bottom: 34px;
}

.enquiry .f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 620px) { .enquiry .f-row { grid-template-columns: 1fr; gap: 0; } }

.f-field { display: block; margin-bottom: 26px; }
.f-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}
.enquiry input, .enquiry select, .enquiry textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 10px 2px 12px;
  font-family: var(--font-g);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  border-radius: 0;
  transition: border-color .3s var(--ease);
}
.enquiry textarea { resize: vertical; line-height: 1.6; }
.enquiry input:focus, .enquiry select:focus, .enquiry textarea:focus {
  outline: none;
  border-bottom-color: var(--blue);
  border-bottom-width: 2px;
}
.enquiry ::placeholder { color: var(--grey); opacity: 1; }

.f-error {
  color: #8C2F1B;
  font-size: 13.5px;
  margin: -6px 0 20px;
}

.btn-submit { cursor: pointer; background: transparent; font-family: var(--font-g); }

.enquiry-done { padding-top: 8px; }
.ed-ref {
  font-size: 12px;
  letter-spacing: .24em;
  color: var(--blue);
  margin-bottom: 18px;
}
.ed-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 200;
  margin-bottom: 18px;
}
.enquiry-done .btn-line { margin-top: 28px; }

/* ============================================================
   REVEALS
   ============================================================ */

.rv { opacity: 0; transform: translateY(28px); }
.rv.in {
  opacity: 1; transform: none;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
