/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px var(--pad-x) 64px;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(100%) contrast(1.05) brightness(0.9);
}
.hero-photo::before {
  /* shadow tone */
  content: '';
  position: absolute; inset: 0;
  background: var(--navy);
  mix-blend-mode: lighten;
}
.hero-photo::after {
  /* highlight tone — produces a navy × amber duotone */
  content: '';
  position: absolute; inset: 0;
  background: var(--amber);
  mix-blend-mode: darken;
  opacity: 0.95;
}

.hero-veil {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 18% 35%, rgba(16,28,41,0) 0%, rgba(16,28,41,0.7) 70%),
    linear-gradient(180deg, rgba(16,28,41,0.45) 0%, rgba(16,28,41,0.15) 38%, rgba(16,28,41,0.75) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: calc(100vh - 184px);
  min-height: calc(100svh - 184px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding-top: 8px;
}
.hero-meta .label {
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-variation-settings: "MONO" 0.5, "CASL" 0.2;
}
.hero-meta .label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--amber);
}

.hero-title {
  font-family: var(--ff-display);
  color: var(--white);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 700;
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.035em;
  font-size: clamp(78px, 16.5vw, 280px);
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  margin-top: -8px;
}
.hero-title .first {
  display: block;
}
.hero-title .second {
  display: block;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 600;
  color: var(--amber);
  padding-left: 0.6em;
  margin-top: -0.04em;
}
.hero-title .star {
  display: inline-block;
  font-family: var(--ff-display);
  font-style: normal;
  font-size: 0.42em;
  font-variation-settings: "opsz" 24, "SOFT" 100, "wght" 700;
  color: var(--orange);
  vertical-align: 0.55em;
  margin: 0 0.18em 0 0;
  transform: translateY(-0.15em) rotate(8deg);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 96px);
  align-items: end;
  padding-bottom: 8px;
}
.hero-pitch {
  font-family: var(--ff-body);
  font-size: clamp(17px, 1.6vw, 22px);
  font-variation-settings: "opsz" 22;
  line-height: 1.45;
  max-width: 36ch;
  color: var(--white);
}
.hero-pitch em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "opsz" 22, "wght" 500;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  text-align: right;
}
.hero-right .booking {
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  font-variation-settings: "MONO" 0.5;
}
.hero-right .booking strong {
  color: var(--amber);
  font-weight: 600;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 22px 16px 26px;
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  font-variation-settings: "MONO" 0.3;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-cta:hover {
  background: var(--amber);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 var(--navy-deep);
}
.hero-cta .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
}
.hero-cta:hover .arrow { transform: translateX(4px); }

.hero-scroll {
  position: absolute;
  left: var(--pad-x);
  bottom: 24px;
  z-index: 3;
  font-family: var(--ff-label);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-variation-settings: "MONO" 0.4;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, var(--amber) 0%, transparent 100%);
  animation: scrollMark 2.2s var(--ease) infinite;
}
@keyframes scrollMark {
  0%, 100% { transform: scaleY(1); opacity: 0.8; transform-origin: top; }
  50%      { transform: scaleY(0.4); opacity: 0.3; transform-origin: top; }
}

@media (max-width: 720px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 24px; }
  .hero-right  { align-items: flex-start; text-align: left; }
  .hero-title  { font-size: clamp(64px, 22vw, 160px); }
}

/* =========================================================
   COMMON SECTION
   ========================================================= */
.section {
  position: relative;
  padding: var(--section-y) var(--pad-x);
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  font-variation-settings: "MONO" 0.5;
  margin-bottom: 28px;
}
.section-tag::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--amber);
}

/* =========================================================
   INTRO BLOCK
   ========================================================= */
.intro {
  background: var(--navy);
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.intro-aside {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.intro-aside .who {
  font-family: var(--ff-display);
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.95;
  font-variation-settings: "opsz" 96, "SOFT" 60, "wght" 600;
  font-style: italic;
  letter-spacing: -0.02em;
}
.intro-aside .who span {
  color: var(--amber);
  font-style: normal;
  font-variation-settings: "opsz" 96, "SOFT" 100, "wght" 700;
}
.intro-aside .signature {
  font-family: var(--ff-script);
  font-size: 38px;
  color: var(--amber);
  line-height: 1;
  transform: rotate(-3deg);
  margin-top: 8px;
}
.intro-aside .based {
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  font-variation-settings: "MONO" 0.5;
}

.intro-text {
  display: grid;
  gap: 28px;
}
.intro-text .lede {
  font-family: var(--ff-body);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.32;
  font-variation-settings: "opsz" 32, "wght" 400;
  color: var(--white);
  max-width: 36ch;
}
.intro-text .lede em {
  font-style: italic;
  font-variation-settings: "opsz" 32, "wght" 500;
  color: var(--amber);
}
.intro-text p {
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--white-dim);
}
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
  padding-top: 32px;
  border-top: 1px solid var(--line-white);
}
.intro-stats .stat-num {
  font-family: var(--ff-display);
  font-size: clamp(42px, 4.5vw, 70px);
  line-height: 0.9;
  font-variation-settings: "opsz" 72, "SOFT" 100, "wght" 700;
  color: var(--amber);
  font-style: italic;
}
.intro-stats .stat-label {
  display: block;
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-dim);
  font-variation-settings: "MONO" 0.4;
  margin-top: 8px;
}

@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-aside { position: static; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   DISCIPLINES CAROUSEL
   ========================================================= */
.disciplines {
  background: var(--navy-deep);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.disciplines-head {
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: 64px;
  max-width: var(--max-w);
  margin-left: auto; margin-right: auto;
}
.disciplines-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 0.95;
  font-variation-settings: "opsz" 96, "SOFT" 80, "wght" 600;
  letter-spacing: -0.025em;
  color: var(--white);
}
.disciplines-title em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "opsz" 96, "SOFT" 100, "wght" 600;
}
.disciplines-blurb {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white-dim);
  max-width: 42ch;
}

.disciplines-track-wrap {
  position: relative;
}
.disciplines-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 30vw, 380px);
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 var(--pad-x);
  scroll-padding-left: var(--pad-x);
}
.disciplines-track::-webkit-scrollbar { display: none; }

.discipline {
  scroll-snap-align: start;
  padding: 48px 28px;
  border-right: 1px solid var(--line-white);
  border-top: 1px solid var(--line-white);
  border-bottom: 1px solid var(--line-white);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  min-height: 380px;
  transition: background 0.5s var(--ease);
  position: relative;
}
.disciplines-track .discipline:first-child {
  border-left: 1px solid var(--line-white);
}
.discipline:hover {
  background: var(--navy);
}
.discipline:hover .disc-num { color: var(--orange); }
.discipline:hover .disc-name { color: var(--amber); }

.disc-num {
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-mute);
  transition: color 0.4s var(--ease);
  font-variation-settings: "MONO" 0.5;
}
.disc-name {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 0.98;
  font-variation-settings: "opsz" 72, "SOFT" 70, "wght" 600;
  letter-spacing: -0.015em;
  color: var(--white);
  align-self: end;
  transition: color 0.4s var(--ease);
}
.disc-name em {
  font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 100, "wght" 600;
  color: var(--amber);
  display: block;
}
.disc-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--white-dim);
  max-width: 30ch;
}

.disciplines-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px var(--pad-x) 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.disciplines-controls .progress {
  flex: 1;
  height: 1px;
  background: var(--line-white);
  position: relative;
  margin: 0 32px;
}
.disciplines-controls .progress span {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--amber);
  width: 22%;
  transition: width 0.4s var(--ease), left 0.4s var(--ease);
}
.disciplines-controls .counter {
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-dim);
  font-variation-settings: "MONO" 0.5;
}
.disciplines-controls button {
  width: 44px; height: 44px;
  border: 1px solid var(--line-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 16px;
  font-style: italic;
  color: var(--white);
  transition: all 0.3s var(--ease);
}
.disciplines-controls button:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.disciplines-controls .ctrls {
  display: inline-flex;
  gap: 8px;
}

@media (max-width: 720px) {
  .disciplines-head { grid-template-columns: 1fr; }
}

/* =========================================================
   PULL QUOTE
   ========================================================= */
.pullquote {
  background: var(--amber);
  color: var(--navy);
  padding: clamp(80px, 14vh, 180px) var(--pad-x);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.pullquote::before {
  /* hand-drawn quotation mark in the background */
  content: '"';
  position: absolute;
  top: -50px;
  left: -10px;
  font-family: var(--ff-display);
  font-size: clamp(340px, 42vw, 720px);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 900;
  color: var(--orange);
  line-height: 0.8;
  opacity: 0.65;
  z-index: 0;
  pointer-events: none;
  font-style: italic;
}
.pullquote-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(0, 4fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.pullquote .side-label {
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: end;
  font-variation-settings: "MONO" 0.5;
  padding-bottom: 20px;
}
.pullquote-body {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.4vw, 92px);
  line-height: 1.02;
  font-variation-settings: "opsz" 144, "SOFT" 95, "wght" 500;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
}
.pullquote-body strong {
  font-style: normal;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 800;
  font-weight: 800;
  color: var(--white);
}
.pullquote-attr {
  margin-top: 28px;
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  font-variation-settings: "MONO" 0.4;
}
.pullquote-attr::before {
  content: '★ ';
  color: var(--white);
}

@media (max-width: 720px) {
  .pullquote-inner { grid-template-columns: 1fr; }
  .pullquote .side-label { writing-mode: horizontal-tb; transform: none; padding: 0; }
}

/* =========================================================
   HOW I DO (PILLARS)
   ========================================================= */
.howido {
  background: var(--paper);
  color: var(--ink-on-paper);
  padding: var(--section-y) var(--pad-x);
  position: relative;
}
.howido .section-tag { color: var(--orange); }
.howido .section-tag::before { background: var(--orange); }

.howido-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: clamp(48px, 7vw, 96px);
  max-width: var(--max-w);
  margin-left: auto; margin-right: auto;
}
.howido-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.6vw, 92px);
  line-height: 0.95;
  font-variation-settings: "opsz" 96, "SOFT" 80, "wght" 600;
  letter-spacing: -0.025em;
  color: var(--ink-on-paper);
}
.howido-title em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "opsz" 96, "SOFT" 100, "wght" 600;
}
.howido-blurb {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-on-paper);
  opacity: 0.78;
  max-width: 42ch;
  align-self: end;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-paper);
  max-width: var(--max-w);
  margin: 0 auto;
}
.pillar {
  padding: 40px 28px 36px 0;
  border-right: 1px solid var(--line-paper);
  border-bottom: 1px solid var(--line-paper);
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 24px;
  position: relative;
  transition: background 0.5s var(--ease);
}
.pillar:hover { background: rgba(236,132,50,0.07); }
.pillar:nth-child(1) { padding-left: 0; }
.pillar:nth-child(2) { padding-left: 28px; }
.pillar:nth-child(3) { padding-left: 28px; }
.pillar:nth-child(4) { padding-left: 28px; border-right: none; }

.pillar-num {
  font-family: var(--ff-display);
  font-size: clamp(64px, 7vw, 110px);
  line-height: 0.85;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 800;
  font-style: italic;
  color: var(--orange);
  letter-spacing: -0.03em;
}
.pillar-name {
  font-family: var(--ff-display);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1;
  font-variation-settings: "opsz" 48, "SOFT" 70, "wght" 700;
  letter-spacing: -0.02em;
  color: var(--ink-on-paper);
}
.pillar-text {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-on-paper);
  opacity: 0.82;
  font-variation-settings: "opsz" 18;
}
.pillar-text .underline {
  border-bottom: 2px solid var(--orange);
  padding-bottom: 1px;
}

@media (max-width: 960px) { .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { border-right: none; }
  .pillar:nth-child(2n+1) { padding-left: 0; }
  .pillar:nth-child(2n) { padding-left: 28px; border-right: none; }
  .pillar:nth-child(2n+1) { border-right: 1px solid var(--line-paper); }
}
@media (max-width: 620px) { .pillars { grid-template-columns: 1fr; }
  .pillar { padding-left: 0 !important; padding-right: 0; border-right: none !important; }
}

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio {
  background: var(--navy);
  padding: var(--section-y) var(--pad-x);
}
.portfolio-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: clamp(48px, 7vw, 96px);
  max-width: var(--max-w);
  margin-left: auto; margin-right: auto;
  align-items: end;
}
.portfolio-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.6vw, 92px);
  line-height: 0.95;
  font-variation-settings: "opsz" 96, "SOFT" 80, "wght" 600;
  letter-spacing: -0.025em;
}
.portfolio-title em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "opsz" 96, "SOFT" 100, "wght" 600;
}
.portfolio-blurb {
  font-size: 16px;
  line-height: 1.65;
  color: var(--white-dim);
  max-width: 42ch;
}
.portfolio-blurb a {
  color: var(--amber);
  border-bottom: 1px solid var(--amber);
  padding-bottom: 1px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 3vw, 48px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.pf-card {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}
.pf-card .media {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}
.pf-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(0.92);
  transition: transform 1s var(--ease);
}
.pf-card .media::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy);
  mix-blend-mode: lighten;
  z-index: 2;
  transition: opacity 0.5s var(--ease);
}
.pf-card .media::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--amber);
  mix-blend-mode: darken;
  opacity: 0.92;
  z-index: 1;
  transition: opacity 0.5s var(--ease), background 0.5s var(--ease);
}
.pf-card:hover .media img { transform: scale(1.04); }
.pf-card:hover .media::after { opacity: 0.55; background: var(--orange); }
.pf-card:hover .media::before { opacity: 0.5; }

.pf-card .meta {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
  background: linear-gradient(to top, rgba(16,28,41,0.85) 0%, rgba(16,28,41,0) 100%);
}
.pf-card .title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  font-variation-settings: "opsz" 48, "SOFT" 60, "wght" 600;
  color: var(--white);
  letter-spacing: -0.02em;
}
.pf-card .title em {
  font-style: italic;
  font-variation-settings: "opsz" 48, "SOFT" 100, "wght" 600;
  color: var(--amber);
}
.pf-card .sub {
  display: block;
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 8px;
  font-variation-settings: "MONO" 0.4;
}
.pf-card .arrow {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  color: var(--amber);
  transition: transform 0.4s var(--ease);
}
.pf-card:hover .arrow { transform: translate(4px, -4px); }

.pf-card .badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  font-family: var(--ff-label);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 10px;
  background: rgba(16,28,41,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  font-variation-settings: "MONO" 0.5;
}

/* irregular grid layout */
.pf-a { grid-column: span 7; aspect-ratio: 4/3; }
.pf-b { grid-column: span 5; aspect-ratio: 3/4; }
.pf-c { grid-column: span 5; aspect-ratio: 4/5; }
.pf-d { grid-column: span 7; aspect-ratio: 5/3; }

@media (max-width: 880px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .pf-a, .pf-b, .pf-c, .pf-d { grid-column: span 1; aspect-ratio: 4/3; }
  .portfolio-head { grid-template-columns: 1fr; }
}

.portfolio-cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  max-width: var(--max-w);
  margin-left: auto; margin-right: auto;
}
.portfolio-cta a {
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border: 1px solid var(--amber);
  color: var(--white);
  transition: all 0.35s var(--ease);
}
.portfolio-cta a:hover {
  background: var(--amber);
  color: var(--navy);
}
.portfolio-cta a .glyph {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  background: var(--navy-soft);
  padding: var(--section-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--line-white) 30%, var(--line-white) 70%, transparent 100%);
}
.testi-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: var(--max-w);
  margin-left: auto; margin-right: auto;
}
.testi-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.6vw, 92px);
  line-height: 0.95;
  font-variation-settings: "opsz" 96, "SOFT" 80, "wght" 600;
  letter-spacing: -0.025em;
  color: var(--white);
}
.testi-title em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "opsz" 96, "SOFT" 100, "wght" 600;
}
.testi-nav {
  display: flex;
  gap: 10px;
}
.testi-nav button {
  width: 52px; height: 52px;
  border: 1px solid var(--line-white);
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 22px;
  font-style: italic;
  transition: all 0.3s var(--ease);
}
.testi-nav button:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.testi-stage {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  min-height: 480px;
}
.testi-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.5fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.testi-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testi-portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--navy-deep);
}
.testi-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05) brightness(0.92);
}
.testi-portrait::before { content: ''; position: absolute; inset: 0; background: var(--navy); mix-blend-mode: lighten; z-index: 2; }
.testi-portrait::after  { content: ''; position: absolute; inset: 0; background: var(--orange); mix-blend-mode: darken; opacity: 0.88; z-index: 1; }
.testi-portrait .frame {
  position: absolute; inset: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  z-index: 3;
  pointer-events: none;
}
.testi-portrait .stamp {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 4;
  font-family: var(--ff-label);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  font-variation-settings: "MONO" 0.5;
}

.testi-body {
  display: grid;
  gap: 28px;
  align-content: center;
}
.testi-quote {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.2;
  font-variation-settings: "opsz" 56, "SOFT" 70, "wght" 400;
  color: var(--white);
  font-style: italic;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 32px;
}
.testi-quote::before {
  content: '"';
  position: absolute;
  top: -22px;
  left: -10px;
  font-family: var(--ff-display);
  font-size: 130px;
  font-style: italic;
  color: var(--amber);
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 700;
  opacity: 0.85;
}
.testi-quote strong {
  color: var(--amber);
  font-style: italic;
  font-variation-settings: "opsz" 56, "SOFT" 100, "wght" 500;
}
.testi-attr {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line-white);
}
.testi-attr .name {
  font-family: var(--ff-display);
  font-size: 22px;
  font-style: italic;
  font-variation-settings: "opsz" 32, "SOFT" 80, "wght" 600;
  color: var(--white);
  line-height: 1;
}
.testi-attr .role {
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  font-variation-settings: "MONO" 0.5;
  margin-top: 6px;
  display: block;
}

.testi-progress {
  display: flex;
  gap: 6px;
  margin-top: 48px;
  max-width: var(--max-w);
  margin-left: auto; margin-right: auto;
}
.testi-progress button {
  flex: 1;
  height: 2px;
  background: var(--line-white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease);
}
.testi-progress button.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform-origin: left;
  animation: progress 8s linear forwards;
}
@keyframes progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@media (max-width: 880px) {
  .testi-slide { grid-template-columns: 1fr; }
  .testi-portrait { aspect-ratio: 1/1; max-width: 360px; }
  .testi-stage { min-height: auto; }
  .testi-head { grid-template-columns: 1fr; }
}
