.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(48px, 5.2vw, 78px) 0 0;
}

.hero-ambient {
  position: absolute;
  z-index: -1;
  inset: 0 0 auto 44%;
  height: 620px;
  background:
    radial-gradient(
      circle at var(--hero-x, 55%) var(--hero-y, 35%),
      color-mix(in srgb, var(--accent) 22%, transparent),
      transparent 42%
    ),
    linear-gradient(
      135deg,
      transparent,
      color-mix(in srgb, var(--forest) 5%, transparent)
    );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.04fr)
    minmax(500px, .96fr);
  gap: clamp(38px, 4.8vw, 68px);
  align-items: start;
}

.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero-copy {
  max-width: 690px;
}

.hero h1 {
  max-width: 690px;
  font-size:
    clamp(
      3.35rem,
      4.35vw,
      5.15rem
    );
  line-height: .98;
}

.hero h1 span {
  display: block;
  color: var(--accent);
  font-style: italic;
}

.hero-lead {
  max-width: 610px;
  margin-top: 25px;
  color: var(--muted);
  font-size:
    clamp(
      1.04rem,
      1.35vw,
      1.2rem
    );
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button--hero {
  min-height: 56px;
  padding-inline: 23px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 31px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

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

.experience strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: .9;
}

.experience span {
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero-area {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .82rem;
}

.hero-area svg {
  width: 18px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  flex-shrink: 0;
}

.hero-photo {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow-lg);
}

.hero-gallery {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  transform: scale(1.01);
  transition:
    transform .8s cubic-bezier(.2,.7,.2,1),
    filter .25s;
}

.hero-gallery:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.hero-photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 52%,
      rgba(8, 14, 12, .7) 100%
    );
  pointer-events: none;
}

.hero-photo-label {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  max-width: 72%;
  color: white;
  font-family: var(--font-display);
  font-size:
    clamp(
      1.2rem,
      2vw,
      1.7rem
    );
  line-height: 1.15;
}

.hero-photo .work-open {
  top: 18px;
  right: 18px;
  bottom: auto;
}

.assurance-strip {
  display: grid;
  grid-template-columns:
    repeat(
      4,
      1fr
    );
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.assurance-strip span {
  position: relative;
  padding: 19px 16px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
}

.assurance-strip span::before {
  content: '✓';
  margin-right: 9px;
  color: var(--accent);
  font-weight: 900;
}

.assurance-strip span + span {
  border-left: 1px solid var(--line);
}

/* Portfolio */

.works-section {
  position: relative;
  background: var(--surface);
}

.works-heading {
  margin-bottom: 54px;
}

.portfolio-list {
  display: grid;
  gap: 72px;
}

.portfolio-group {
  min-width: 0;
}

.portfolio-group + .portfolio-group {
  padding-top: 62px;
  border-top: 1px solid var(--line);
}

.portfolio-group-heading {
  display: grid;
  grid-template-columns:
    minmax(220px, .42fr)
    minmax(0, 1fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 28px;
}

.portfolio-group-heading h3 {
  font-family: var(--font-display);
  font-size:
    clamp(
      1.8rem,
      3.1vw,
      2.65rem
    );
  font-weight: 500;
}

.portfolio-group-heading p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.6;
  white-space: pre-line;
}

.portfolio-grid {
  display: grid;
  grid-template-columns:
    repeat(
      12,
      minmax(0, 1fr)
    );
  gap: 26px 24px;
  align-items: start;
}

.portfolio-card {
  min-width: 0;
}

.portfolio-card--wide {
  grid-column: span 7;
}

.portfolio-card--narrow {
  grid-column: span 5;
}

.portfolio-card--half {
  grid-column: span 6;
}

.portfolio-card--third {
  grid-column: span 4;
}

.portfolio-card--full {
  grid-column: 1 / -1;
}

.portfolio-card--solo-portrait {
  grid-column: 4 / span 6;
}

.portfolio-card-media {
  min-width: 0;
}

.work-image {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}

.portfolio-card:not(.portfolio-card--portrait) .work-image img {
  width: 100%;
  height:
    clamp(
      320px,
      31vw,
      440px
    );
  object-fit: cover;
}

.portfolio-card--full:not(.portfolio-card--portrait) .work-image img {
  height:
    clamp(
      390px,
      38vw,
      540px
    );
}

.portfolio-card--portrait {
  --portrait-content-max: 390px;
  display: grid;
  justify-items: center;
}

.portfolio-card--portrait.video-card {
  --portrait-content-max: 360px;
}

.portfolio-card--portrait.image-card {
  --portrait-content-max: 420px;
}

.portfolio-card--portrait .portfolio-card-media,
.portfolio-card--portrait .work-caption {
  width:
    min(
      100%,
      var(--portrait-content-max)
    );
}

.portfolio-card--portrait .work-image {
  width: 100%;
}

.portfolio-card--portrait .work-image img {
  width: 100%;
  height: auto;
  aspect-ratio:
    var(
      --media-aspect,
      3 / 4
    );
  object-fit: cover;
}

.work-image img {
  transition:
    transform .55s cubic-bezier(.2,.7,.2,1),
    filter .25s;
}

.work-image:hover img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.work-open {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid #ffffff55;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #17201d;
  font-size: .78rem;
  font-weight: 750;
  box-shadow:
    0 8px 22px
    rgba(0,0,0,.15);
  backdrop-filter: blur(10px);
}

:is(
  .work-image,
  .hero-gallery
):hover .work-open,
:is(
  .work-image,
  .hero-gallery
):focus-visible .work-open {
  background: var(--accent-bright);
}

.work-caption {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  padding-inline: 2px;
}

.work-caption h4 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
}

.work-caption span {
  color: var(--muted);
  font-size: .86rem;
}

.video-player {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #09100d;
  box-shadow: var(--shadow-sm);
}

.portfolio-card--portrait .video-player {
  width: 100%;
}

.video-card video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 660px;
  aspect-ratio:
    var(
      --media-aspect,
      auto
    );
  object-fit: contain;
  background: #09100d;
}

.portfolio-card--portrait.video-card video {
  aspect-ratio:
    var(
      --media-aspect,
      9 / 16
    );
}

.player-controls {
  position: absolute;
  inset: auto 0 0;
  padding: 32px 12px 7px;
  color: white;
  background:
    linear-gradient(
      transparent,
      #000e
    );
}

.player-controls[hidden] {
  display: none;
}

.player-seek {
  display: block;
  width: 100%;
  height: 28px;
  margin: 0;
  cursor: pointer;
  touch-action: none;
  accent-color: var(--accent-bright);
}

.player-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
}

.player-toolbar button {
  min-width: 36px;
  min-height: 44px;
  padding: 4px;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.player-toolbar [data-volume] {
  width: 52px;
  min-width: 0;
  accent-color: var(--accent-bright);
}

.player-toolbar [data-time] {
  margin-left: auto;
  white-space: nowrap;
}

.player-toolbar [data-fullscreen] {
  font-size: 1.3rem;
}

/* Conversion panel */

.explore-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 58px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.explore-panel h3 {
  max-width: 700px;
  font-family: var(--font-display);
  font-size:
    clamp(
      1.7rem,
      3vw,
      2.45rem
    );
  font-weight: 500;
}

.explore-panel > div > p:last-child {
  margin-top: 8px;
  color: var(--muted);
}

.conversion-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    color-mix(
      in srgb,
      var(--bg) 74%,
      var(--surface)
    );
  box-shadow: var(--shadow-sm);
}

.conversion-panel .eyebrow {
  margin-bottom: 10px;
}

.conversion-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}

/* Services */

.services-section {
  background: var(--bg);
}

.service-grid {
  display: grid;
  grid-template-columns:
    repeat(
      3,
      minmax(0,1fr)
    );
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow:
    0 1px 0
    rgba(255,255,255,.4);
  transition:
    transform .22s,
    box-shadow .22s,
    border-color .22s;
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 30px;
  width: 56px;
  height: 3px;
  background: var(--accent);
  content: '';
}

.service-card:hover {
  transform: translateY(-5px);
  border-color:
    color-mix(
      in srgb,
      var(--accent) 55%,
      var(--line)
    );
  box-shadow: var(--shadow-sm);
}

.service-card h3 {
  margin: 12px 0 14px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--muted);
}

.service-card ul {
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: .9rem;
}

.service-card li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
}

.service-card li::before {
  position: absolute;
  top: .7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: '';
}

.section-note {
  max-width: 760px;
  margin-top: 28px;
  color: var(--muted);
}

/* Process */

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--on-dark);
}

.process-section::after {
  position: absolute;
  right: -12%;
  bottom: -55%;
  width: 600px;
  aspect-ratio: 1;
  border:
    1px solid
    color-mix(
      in srgb,
      var(--accent) 18%,
      transparent
    );
  border-radius: 50%;
  content: '';
}

.process-grid {
  display: grid;
  grid-template-columns:
    minmax(0,.85fr)
    minmax(0,1.15fr);
  gap:
    clamp(
      52px,
      8vw,
      112px
    );
}

.process-intro .eyebrow {
  color: var(--accent-bright);
}

.process-intro h2 {
  color: white;
}

.process-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 28px;
  color: #c7d0cc;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns:
    62px
    1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom:
    1px solid
    #ffffff24;
  counter-increment: process;
}

.process-steps li::before {
  content:
    '0'
    counter(process);
  color: var(--accent-bright);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.process-steps li:first-child {
  padding-top: 0;
}

.process-steps h3 {
  margin-bottom: 9px;
  color: white;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.process-steps p {
  color: #bdc7c2;
}

/* Reviews */

.reviews-section {
  background: var(--bg);
}

.review-grid {
  display: grid;
  grid-template-columns:
    repeat(
      3,
      minmax(0,1fr)
    );
  gap: 18px;
}

.review {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.quote-mark {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: .7;
}

.review blockquote {
  margin: 26px 0 30px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.55;
}

.review figcaption {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 750;
}

.reviews-section .explore-panel {
  padding: 0;
  border: 0;
}

/* Contact */

.contact-section {
  padding-top: 0;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns:
    minmax(0,1.25fr)
    minmax(320px,.75fr);
  gap: 58px;
  padding:
    clamp(
      38px,
      6vw,
      72px
    );
  border-radius: 28px;
  background: var(--forest);
  color: white;
  box-shadow: var(--shadow-lg);
}

.contact-panel::after {
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 420px;
  aspect-ratio: 1;
  border:
    1px solid
    #ffffff20;
  border-radius: 50%;
  content: '';
}

.contact-panel .eyebrow {
  color: var(--accent-bright);
}

.contact-panel h2 {
  color: white;
}

.contact-panel h2 + p {
  max-width: 650px;
  margin-top: 24px;
  color: #d6ddd9;
}

.contact-details {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-left: 42px;
  border-left:
    1px solid
    #ffffff26;
}

.contact-person {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.35;
}

.contact-person small {
  display: block;
  margin-top: 5px;
  color: #c8d1cc;
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 500;
}

.contact-area {
  margin-top: 16px;
  color: #c8d1cc;
  font-size: .86rem;
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: 24px;
}

.contact-actions .text-link {
  color: #e0e7e3;
  font-size: .84rem;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns:
      minmax(0,1fr)
      minmax(430px,.92fr);
    gap: 30px;
  }

  .hero h1 {
    font-size:
      clamp(
        3.2rem,
        5.5vw,
        4.65rem
      );
  }

  .hero-photo {
    min-height: 500px;
  }

  .service-grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0,1fr)
      );
  }

  .process-grid {
    gap: 52px;
  }

  .review-grid {
    gap: 14px;
  }
}

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-photo {
    min-height: 500px;
  }

  .assurance-strip {
    grid-template-columns:
      repeat(
        2,
        1fr
      );
  }

  .assurance-strip span:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .assurance-strip span:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .portfolio-group-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .portfolio-card--wide,
  .portfolio-card--narrow,
  .portfolio-card--half {
    grid-column: span 6;
  }

  .portfolio-card--third {
    grid-column: span 4;
  }

  .portfolio-card--full {
    grid-column: 1 / -1;
  }

  .portfolio-card--solo-portrait {
    grid-column: 3 / span 8;
  }

  .conversion-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .conversion-actions {
    width: 100%;
    justify-content: space-between;
  }

  .process-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-details {
    padding: 28px 0 0;
    border-top:
      1px solid
      #ffffff26;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size:
      clamp(
        3rem,
        13vw,
        4rem
      );
  }

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

  .button--hero {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-photo {
    min-height: 420px;
    border-radius: 22px;
  }

  .hero-photo-label {
    max-width:
      calc(
        100% - 52px
      );
  }

  .assurance-strip {
    margin-top: 34px;
  }

  .assurance-strip span {
    padding: 15px 12px;
    text-align: left;
  }

  .portfolio-grid {
    gap: 24px 12px;
  }

  .portfolio-card--wide,
  .portfolio-card--narrow,
  .portfolio-card--half {
    grid-column: span 6;
  }

  .portfolio-card--third {
    grid-column: span 4;
  }

  .portfolio-card--full {
    grid-column: 1 / -1;
  }

  .portfolio-card--solo-portrait {
    grid-column: 3 / span 8;
  }

  .portfolio-card:not(.portfolio-card--portrait) .work-image img {
    height:
      clamp(
        220px,
        52vw,
        340px
      );
  }

  .work-caption h4 {
    font-size: 1.04rem;
  }

  .conversion-panel {
    padding: 24px;
  }

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

  .conversion-actions .button {
    width: 100%;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .process-steps li {
    grid-template-columns:
      48px
      1fr;
  }

  .contact-panel {
    padding: 32px 24px;
    border-radius: 22px;
  }
}

@media (max-width: 680px) {
  .portfolio-card--third {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .portfolio-card--wide,
  .portfolio-card--narrow,
  .portfolio-card--half,
  .portfolio-card--third,
  .portfolio-card--full,
  .portfolio-card--solo-portrait {
    grid-column: 1 / -1;
  }

  .portfolio-card--portrait {
    --portrait-content-max: 360px;
  }
}

@media (max-width: 470px) {
  .hero-photo {
    min-height: 380px;
  }

  .assurance-strip {
    grid-template-columns: 1fr;
  }

  .assurance-strip span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}
