@font-face {
  font-family: VertoSans;
  src: url(assets/sans.otf) format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: VertoSans;
  src: url(assets/sans-bold.otf) format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --ink: #fff;
  --muted: #e1e6e9;
  --accent: #ffb19a;
  --panel: #142f3d;
  --line: rgba(255, 255, 255, 0.3);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: #173d59;
  color: var(--ink);
  font-family: VertoSans, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
img[hidden],
[hidden] {
  display: none !important;
}
button {
  border: 0;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #ffcf70;
  outline-offset: 6px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ffcf70;
  outline-offset: 3px;
}
p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}
p {
  overflow-wrap: break-word;
}
h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.wrap {
  width: 90%;
  max-width: 1440px;
  margin-inline: auto;
}
.section {
  padding-top: 120px;
  padding-bottom: 40px;
  scroll-margin-top: 32px;
}
.eyebrow {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.07em;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip {
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 20;
  background: #fff;
  color: #102e41;
  padding: 12px 20px;
  transform: translateY(-160%);
}
.skip:focus {
  transform: none;
}
.scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(#173d59, #3a6d87 40%, #bf786f 72%, #eb8739);
}
.scene .portrait,
.scene video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}
.scene video {
  opacity: 0;
  transition: opacity 0.25s;
}
.scene video.ready {
  opacity: 1;
}
.scene-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 22, 31, 0.28),
      rgba(5, 22, 31, 0.12) 50%,
      rgba(5, 22, 31, 0.26)
    ),
    rgba(7, 24, 34, 0.16);
}
body[data-reduced="true"] .scene video {
  display: none;
}
.header {
  width: 94%;
  max-width: 1504px;
  margin: auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.wordmark sup {
  font-size: 10px;
  vertical-align: top;
  position: relative;
  top: 5px;
}
.desktop-nav {
  display: flex;
  gap: 38px;
  align-items: center;
}
.desktop-nav a,
.desktop-nav button {
  font-size: 14px;
  background: none;
  padding: 12px 0;
}
.desktop-nav a:hover,
.desktop-nav button:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.primary {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 28px;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  background: #fff;
  color: #132a37;
  font-weight: 700;
  font-size: 14px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.primary:hover {
  background: #ffe9dc;
  transform: translateY(-2px);
}
.primary:active {
  transform: translateY(0);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-menu {
  display: none;
}
.hero {
  height: calc(100svh - 88px);
  min-height: 780px;
  max-height: 1250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 34px;
}
.hero-title {
  font-size: clamp(130px, 15vw, 240px);
  letter-spacing: -0.065em;
  line-height: 1;
  white-space: nowrap;
}
.hero-title sup {
  display: inline-block;
  vertical-align: top;
  font-size: 0.18em;
  letter-spacing: 0;
  margin: 12px 0 0 12px;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 29%;
  gap: 20px 60px;
  align-items: end;
}
.hero-copy {
  padding-bottom: 24px;
}
.hero-copy h1 {
  font-size: clamp(30px, 3.05vw, 49px);
  line-height: 1.24;
  max-width: 720px;
}
.hero-copy p {
  margin-top: 30px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.55;
}
.featured {
  padding: 0;
  background: none;
  text-align: left;
  grid-column: 2;
  grid-row: 1/3;
  width: 100%;
  border-radius: 16px;
}
.featured > img {
  aspect-ratio: 1.39;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s;
}
.featured:hover > img {
  transform: translateY(-4px);
}
.featured-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  margin-top: 8px;
  border-radius: 16px;
  background: rgba(15, 28, 35, 0.82);
}
.featured-label strong {
  display: block;
  font-size: 20px;
  line-height: 1.3;
}
.featured-label small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}
.round {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 30, 41, 0.85);
  border: 1px solid var(--line);
  font-size: 20px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.round:hover {
  background: #31566a;
  transform: rotate(8deg);
}
.logo-rail {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  grid-column: 1;
  max-width: 100%;
  padding: 4px 0;
}
.logo-track {
  --logo-gap: 70px;
  display: flex;
  width: max-content;
  gap: var(--logo-gap);
  align-items: center;
}
.logo-track > span {
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}
.motion-ready .logo-track {
  animation: logos 26s linear infinite;
}
body[data-paused="true"] .logo-track {
  animation-play-state: paused;
}
@keyframes logos {
  to {
    transform: translateX(calc(-50% - var(--logo-gap) / 2));
  }
}
.about {
  display: grid;
  grid-template-columns: 26% 1fr;
  gap: 3%;
  padding-top: 140px;
  padding-bottom: 120px;
}
.about h2 {
  font-size: clamp(28px, 3.1vw, 50px);
  line-height: 1.25;
  max-width: 990px;
}
.slash {
  color: #ffd4a3;
}
.section-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: start;
  margin-bottom: 100px;
}
.section-top > p:not(.eyebrow) {
  max-width: 460px;
  text-align: right;
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
}
.service-layout {
  display: grid;
  grid-template-columns: 44% 48%;
  justify-content: space-between;
  gap: 6%;
}
.service-list button {
  display: flex;
  align-items: baseline;
  gap: 22px;
  text-align: left;
  background: none;
  border-bottom: 1px solid var(--line);
  width: 100%;
  min-height: 136px;
  padding: 28px 0;
  font-size: clamp(23px, 3.1vw, 50px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  transition: color 0.18s;
}
.service-list button > span {
  font-size: 24px;
}
.service-list button sup {
  font-size: 15px;
  letter-spacing: 0;
  white-space: nowrap;
  align-self: flex-start;
  margin-left: -8px;
}
.service-list button[aria-pressed="true"] {
  color: var(--accent);
}
.service-list button:hover {
  color: var(--accent);
}
.service-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  min-height: 200px;
}
.service-art img {
  aspect-ratio: 2/3;
  object-fit: cover;
  width: 100%;
  background: #173d59;
}
.service-art img[hidden] {
  display: block !important;
  visibility: hidden;
}
#service-description {
  min-height: 90px;
  margin-top: 32px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
}
.tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.tags > span {
  padding: 10px 20px;
  border: 1px solid var(--line);
  background: rgba(10, 28, 40, 0.9);
  border-radius: 40px;
  font-size: 16px;
  color: #f1f5f8;
}
.services {
  padding-bottom: 60px;
}
.portfolio {
  padding-top: 120px;
}
.portfolio .section-top {
  margin-bottom: 40px;
}
.date-mark {
  font-size: 14px;
  color: var(--muted);
}
.date-mark > span {
  font-size: 26px;
  letter-spacing: 2px;
}
.portfolio-intro {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
  margin: 0 0 130px 10%;
}
.portfolio-intro h2 {
  font-size: clamp(38px, 4.5vw, 72px);
  line-height: 1.15;
}
.portfolio-intro p {
  color: var(--muted);
  font-size: 20px;
  max-width: 390px;
  padding-top: 12px;
}
.project-grid {
  display: grid;
  grid-template-columns: 41% 41%;
  justify-content: space-between;
  gap: 80px 10%;
  align-items: start;
}
.project:nth-child(2) {
  margin-top: 140px;
}
.project:nth-child(3) {
  width: 82%;
  justify-self: end;
}
.project:nth-child(4) {
  width: 82%;
  margin-top: 0;
}
.project-image {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  background: rgba(20, 36, 42, 0.6);
  text-align: left;
}
.project-image img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  transition: filter 0.2s;
}
.project-image > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  background: rgba(10, 28, 40, 0.85);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.project-image:hover > span,
.project-image:focus-visible > span {
  opacity: 1;
  transform: none;
}
.project-copy {
  padding-top: 24px;
}
.project-number {
  font-size: 11px;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 12px;
}
.project h3 {
  font-size: 36px;
  margin-bottom: 18px;
}
.project-copy > p:not(.project-number) {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.55;
}
.project .tags {
  margin-top: 26px;
}
.testimonial {
  padding-top: 150px;
  padding-bottom: 100px;
}
.example-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
.testimonial-layout {
  display: grid;
  grid-template-columns: 26% 57%;
  justify-content: space-between;
  gap: 8%;
  align-items: center;
  margin-top: 60px;
}
.testimonial-portrait {
  max-width: 320px;
}
.portrait-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.testimonial-portrait img {
  aspect-ratio: 1;
  object-fit: cover;
}
.testimonial-portrait .eyebrow {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  margin-top: 18px;
}
.quote-content blockquote {
  position: relative;
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.quote-mark {
  position: absolute;
  left: -0.85em;
  top: -0.08em;
  color: var(--accent);
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1;
}
.quote-content blockquote footer {
  font-size: 0.8em;
  margin-top: 60px;
  color: #e1e6e9;
}
.quote-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
}
.quote-bottom p {
  font-size: 18px;
  color: var(--muted);
}
.site-footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
}
.site-footer > a {
  text-decoration: underline;
  text-underline-offset: 4px;
  padding-block: 12px;
}
.site-footer details {
  max-width: 450px;
}
.site-footer summary {
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer summary:before {
  content: "＋";
}
.site-footer details[open] summary:before {
  content: "−";
}
.site-footer details p {
  margin-top: 10px;
  line-height: 1.7;
}
.site-footer > button {
  min-height: 44px;
  background: rgba(10, 28, 40, 0.88);
  border-radius: 50px;
  padding: 10px 18px;
  border: 1px solid var(--line);
}
#media-status {
  flex-basis: 100%;
  margin: 0;
  color: #fff4d9;
}
#media-status:empty {
  display: none;
}
.noscript-note {
  padding-bottom: 24px;
  font-size: 14px;
}
dialog {
  color-scheme: light;
  border: 1px solid #d4dcd9;
  border-radius: 20px;
  background: #f4f5ef;
  color: #193b46;
  width: min(660px, calc(100% - 32px));
  max-height: calc(100svh - 48px);
  padding: 48px;
  overflow-y: auto;
  box-shadow: 0 30px 100px #00142160;
}
dialog::backdrop {
  background: #071c30b8;
  backdrop-filter: blur(6px);
}
dialog h2 {
  font-size: 48px;
  margin: 20px 0 24px;
  line-height: 1.08;
}
dialog p {
  font-size: 16px;
  line-height: 1.6;
}
dialog .primary {
  background: #173d49;
  color: white;
  margin-top: 24px;
}
dialog .primary:hover {
  background: #285969;
}
dialog .eyebrow {
  font-size: 11px;
  max-width: 85%;
}
.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e2e7e2;
  color: #193b46;
  font-size: 28px;
}
dialog img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 24px;
}
.dialog-note {
  font-size: 13px !important;
  color: #49616b;
  margin-top: 28px;
}
.process-list {
  padding-left: 20px;
  margin: 24px 0;
}
.process-list li {
  padding: 16px 0 20px 8px;
  border-bottom: 1px solid #cdd7d5;
}
.process-list strong {
  font-size: 24px;
  font-weight: 400;
}
.process-list p {
  margin-top: 8px;
}
#brief-form {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 8px;
}
#brief-form label {
  font-size: 14px;
  margin-top: 14px;
  font-weight: 700;
}
input,
textarea,
select {
  width: 100%;
  min-width: 0;
  border: 1px solid #a0b0b0;
  background: white;
  color: #18323e;
  border-radius: 8px;
  padding: 12px 14px;
}
textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 340px;
}
#brief-form .primary {
  align-self: start;
}
.form-status {
  min-height: 26px;
  margin-top: 8px;
  color: #254e3a;
}
@media (min-width: 1800px) {
  .scene .portrait,
  .scene video {
    object-fit: cover;
  }
  .hero {
    min-height: 850px;
  }
}
@media (max-width: 1050px) {
  .desktop-nav {
    gap: 20px;
  }
  .hero {
    min-height: 740px;
  }
  .hero-bottom {
    grid-template-columns: 1fr 33%;
    gap: 20px 30px;
  }
  .hero-copy h1 {
    font-size: 34px;
  }
  .featured-label {
    padding: 16px;
  }
  .featured-label strong {
    font-size: 17px;
  }
  .featured-label .round {
    width: 40px;
    height: 40px;
  }
  .logo-track > span {
    font-size: 19px;
  }
  .logo-track {
    --logo-gap: 45px;
  }
  .about {
    grid-template-columns: 22% 1fr;
  }
  .service-layout {
    grid-template-columns: 45% 49%;
    gap: 6%;
  }
  .service-list button {
    font-size: 30px;
    gap: 12px;
    min-height: 116px;
  }
  .service-list button sup {
    font-size: 12px;
  }
  .service-art {
    gap: 14px;
  }
  .project h3 {
    font-size: 30px;
  }
  .section-top {
    margin-bottom: 70px;
  }
  .portfolio-intro {
    margin-left: 0;
    margin-bottom: 80px;
  }
  .portfolio-intro h2 {
    font-size: 48px;
  }
  .portfolio-intro p {
    max-width: 300px;
    font-size: 18px;
  }
  .testimonial-layout {
    grid-template-columns: 28% 58%;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    width: calc(100% - 40px);
    min-height: 84px;
    gap: 12px;
  }
  .wordmark {
    font-size: 20px;
  }
  .desktop-nav {
    display: none;
  }
  .header .primary {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 12px;
  }
  .mobile-menu {
    display: block;
    position: relative;
  }
  .mobile-menu summary {
    list-style: none;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 13px;
    cursor: pointer;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 54px;
    background: #153448;
    padding: 12px 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    min-width: 180px;
    z-index: 5;
    box-shadow: 0 12px 30px #10243760;
  }
  .mobile-menu nav > a,
  .mobile-menu nav > button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    background: none;
    font-size: 15px;
    text-align: left;
  }
  .scene .portrait,
  .scene video {
    object-position: 75% 40%;
  }
  .scene-shade {
    background:
      linear-gradient(90deg, rgba(4, 24, 34, 0.42), rgba(4, 24, 34, 0.2)),
      rgba(4, 24, 34, 0.22);
  }
  .hero {
    height: auto;
    min-height: calc(100svh - 84px);
    max-height: none;
    padding-top: 18px;
    padding-bottom: 0;
    gap: 230px;
  }
  .hero-title {
    font-size: clamp(74px, 20vw, 148px);
    letter-spacing: -0.065em;
  }
  .hero-title sup {
    margin-top: 5px;
    margin-left: 6px;
  }
  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero-copy h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero-copy p {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 20px;
  }
  .featured {
    grid-column: auto;
    grid-row: auto;
    width: 70%;
    max-width: 320px;
    margin-left: auto;
  }
  .featured > img {
    aspect-ratio: 1.5;
    border-radius: 12px;
  }
  .featured-label {
    padding: 12px 16px;
    border-radius: 12px;
  }
  .featured-label strong {
    font-size: 16px;
  }
  .featured-label small {
    font-size: 11px;
  }
  .featured-label .round {
    width: 44px;
    height: 44px;
  }
  .logo-rail {
    grid-column: auto;
    grid-row: 2;
    padding: 14px 0;
  }
  .logo-track > span {
    font-size: 19px;
  }
  .logo-track {
    --logo-gap: 36px;
  }
  .section {
    padding-top: 90px;
    padding-bottom: 10px;
  }
  .about {
    display: block;
    padding-top: 100px;
    padding-bottom: 30px;
  }
  .about h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-top: 30px;
  }
  .eyebrow {
    font-size: 11px;
  }
  .section-top {
    display: block;
    margin-bottom: 40px;
  }
  .section-top > p:not(.eyebrow) {
    text-align: left;
    max-width: 100%;
    font-size: 17px;
    margin-top: 24px;
  }
  .service-layout {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .service-list button {
    font-size: 27px;
    min-height: 84px;
    padding: 18px 0;
    gap: 14px;
  }
  .service-list button sup {
    margin-left: 0;
    font-size: 11px;
  }
  .service-list button > span {
    font-size: 20px;
  }
  .service-art {
    gap: 14px;
  }
  #service-description {
    font-size: 17px;
    margin-top: 22px;
    min-height: 100px;
  }
  .tags {
    margin-top: 18px;
  }
  .tags > span {
    font-size: 13px;
    padding: 10px 14px;
  }
  .portfolio .section-top {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .date-mark {
    font-size: 11px;
  }
  .date-mark > span {
    font-size: 18px;
    letter-spacing: 0;
  }
  .portfolio-intro {
    display: block;
    margin-bottom: 50px;
  }
  .portfolio-intro h2 {
    font-size: 38px;
  }
  .portfolio-intro p {
    font-size: 17px;
    margin-top: 22px;
    padding: 0;
  }
  .project-grid {
    display: flex;
    flex-direction: column;
    gap: 56px;
  }
  .project,
  .project:nth-child(2),
  .project:nth-child(3),
  .project:nth-child(4) {
    width: 100%;
    margin-top: 0;
  }
  .project-image > span {
    opacity: 1;
    transform: none;
  }
  .project-copy {
    padding-top: 20px;
  }
  .project h3 {
    font-size: 30px;
  }
  .project-copy > p:not(.project-number) {
    font-size: 17px;
  }
  .project .tags {
    margin-top: 20px;
  }
  .testimonial {
    padding-bottom: 70px;
  }
  .testimonial-layout {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 42px;
    margin-top: 35px;
  }
  .testimonial-portrait {
    width: 58%;
    max-width: 250px;
  }
  .testimonial-portrait .eyebrow {
    font-size: 9px;
  }
  .quote-content {
    padding-left: 26px;
    width: 100%;
  }
  .quote-content blockquote {
    font-size: 27px;
    line-height: 1.3;
  }
  .quote-content blockquote footer {
    margin-top: 32px;
  }
  .quote-bottom {
    margin-top: 30px;
  }
  .quote-bottom p {
    font-size: 16px;
  }
  .site-footer {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 28px;
  }
  .site-footer details {
    max-width: 100%;
  }
  dialog {
    padding: 40px 24px 28px;
    max-height: calc(100svh - 28px);
  }
  dialog h2 {
    font-size: 37px;
  }
  .dialog-close {
    right: 10px;
    top: 10px;
  }
  dialog p {
    font-size: 15px;
  }
  .example-note {
    max-width: 270px;
    font-size: 11px;
  }
}
@media (max-width: 350px) {
  .wrap,
  .header {
    width: calc(100% - 32px);
  }
  .header-actions {
    gap: 10px;
  }
  .header .primary {
    padding-inline: 12px;
  }
  .hero {
    gap: 210px;
  }
  .hero-copy h1 {
    font-size: 28px;
  }
  .featured {
    width: 80%;
  }
  .service-list button {
    font-size: 24px;
    gap: 10px;
  }
  .service-list button sup {
    font-size: 10px;
  }
  .portfolio-intro h2 {
    font-size: 34px;
  }
  .quote-content blockquote {
    font-size: 24px;
  }
  .about h2 {
    font-size: 27px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .scene video {
    display: none;
  }
}
