:root {
  --ink: #0a0a0a;
  --paper: #f3efe6;
  --paper-2: #e7e1d5;
  --white: #fffdf8;
  --accent: #ff633f;
  --muted: #78736b;
  --line: rgba(10, 10, 10, 0.18);
  --max: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 74px;
  padding: 14px var(--gutter);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 240ms ease, backdrop-filter 240ms ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.05em;
  border-radius: 50%;
}

.brand-copy {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
  font-size: 13px;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  min-height: 100svh;
  padding: clamp(130px, 15vh, 190px) var(--gutter) 52px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  top: 18%;
  left: 43%;
  width: 33vw;
  height: 33vw;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: clamp(90px, 12vh, 130px);
  padding-right: clamp(30px, 6vw, 100px);
}

.eyebrow,
.section-index {
  margin: 0 0 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.eyebrow span {
  width: 35px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(54px, 7.2vw, 116px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.hero h1 span {
  position: relative;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.hero-intro {
  max-width: 590px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.25vw, 18px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.text-link {
  font-size: 13px;
  font-weight: 600;
}

.text-link span,
.service-card a span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.text-link:hover span,
.service-card a:hover span {
  transform: translate(3px, -3px);
}

.hero-portrait {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 570px;
  margin: 0;
}

.hero-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.36), transparent 45%);
  content: "";
  pointer-events: none;
}

.hero-portrait img {
  height: clamp(620px, 72vh, 800px);
  object-fit: cover;
  object-position: center 82%;
  filter: contrast(1.05);
}

.hero-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.hero-stats {
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  gap: clamp(32px, 5vw, 80px);
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hero-stats strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  background: var(--accent);
}

.marquee div {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 15px 0;
  animation: marquee 26s linear infinite;
}

.marquee span {
  padding: 0 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.marquee i {
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 11vw, 170px) var(--gutter);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 50px;
  margin-bottom: clamp(55px, 7vw, 100px);
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.about-copy h2,
.contact-intro h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.065em;
}

.section-heading p:last-child {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-index {
  color: var(--muted);
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(60px, 8vw, 120px) clamp(24px, 4vw, 56px);
}

.project-featured {
  grid-column: 1 / -1;
}

.project-image {
  position: relative;
  overflow: hidden;
  background: #d6d1c7;
}

.project-image img {
  aspect-ratio: 1.3;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.project-featured .project-image img {
  aspect-ratio: 1.85;
}

.project:hover .project-image img {
  transform: scale(1.025);
}

.project-number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: rgba(10, 10, 10, 0.76);
  font-size: 11px;
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.play-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 180ms ease;
}

.play-badge b {
  font-size: 9px;
}

.project:hover .play-badge {
  transform: translateY(-3px);
}

.project-copy {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  margin-top: 24px;
}

.project:not(.project-featured) .project-copy {
  grid-template-columns: 1fr;
  gap: 14px;
}

.project-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.project-copy h3 {
  margin: 8px 0 0;
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.project-copy > p {
  align-self: end;
}

.accounts-section {
  max-width: none;
  background: var(--paper-2);
}

.accounts-section > * {
  max-width: calc(var(--max) - 128px);
  margin-right: auto;
  margin-left: auto;
}

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

.account-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid rgba(10, 10, 10, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.account-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.08);
}

.account-card-lead {
  grid-column: span 7;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(250px, 0.94fr);
  gap: clamp(22px, 3vw, 42px);
  min-height: 570px;
}

.account-card:nth-child(2) {
  grid-column: span 5;
}

.account-card figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #ddd7cc;
}

.account-card figure img {
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.account-card:hover figure img {
  transform: scale(1.035);
}

.account-card-lead figure img {
  min-height: 536px;
  aspect-ratio: auto;
}

.account-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 6px 6px;
}

.account-card-lead .account-card-copy {
  padding: 36px 18px 22px 0;
}

.account-label {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.account-followers {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: clamp(28px, 4vw, 58px) 0 26px;
}

.account-followers strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.account-card-lead .account-followers strong,
.account-card:nth-child(5) .account-followers strong {
  color: var(--accent);
}

.account-followers span {
  color: var(--muted);
  font-size: 11px;
}

.account-card h3 {
  margin: auto 0 12px;
  font-size: clamp(23px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.account-card-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.account-secondary {
  margin-top: clamp(60px, 8vw, 110px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.secondary-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.secondary-heading p,
.secondary-heading span {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.secondary-account-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
}

.secondary-account {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  opacity: 0.42;
  filter: grayscale(1);
  transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease;
}

.secondary-account:hover {
  opacity: 0.82;
  filter: grayscale(0.25);
  transform: translateY(-2px);
}

.secondary-account img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: cover;
  border-radius: 50%;
}

.secondary-account div {
  min-width: 0;
}

.secondary-account strong,
.secondary-account span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.secondary-account strong {
  font-size: 12px;
  font-weight: 700;
}

.secondary-account span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.services-section {
  max-width: none;
  color: var(--white);
  background: var(--ink);
}

.services-section > * {
  max-width: calc(var(--max) - 128px);
  margin-right: auto;
  margin-left: auto;
}

.section-heading-light {
  border-color: rgba(255, 255, 255, 0.18);
}

.section-heading-light p:last-child,
.section-heading-light .section-index {
  color: rgba(255, 255, 255, 0.54);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: clamp(26px, 3vw, 44px);
  color: var(--ink);
  background: var(--paper);
}

.service-card-accent {
  background: var(--accent);
}

.service-index {
  margin: 0 0 50px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 34px;
}

.price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 400;
}

.price span {
  color: rgba(10, 10, 10, 0.58);
  font-size: 11px;
}

.service-card ul {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.14);
  font-size: 13px;
}

.service-card a {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
}

.addons {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 50px;
  margin-top: clamp(70px, 8vw, 120px);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.addons > p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.addons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.addons li {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.addons li span:last-child {
  color: rgba(255, 255, 255, 0.52);
  text-align: right;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process-list li {
  min-height: 230px;
  padding: 22px 20px 22px 0;
  border-right: 1px solid var(--line);
}

.process-list li + li {
  padding-left: 20px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  display: block;
  margin-bottom: 68px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.process-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
  max-width: none;
  background: var(--paper-2);
}

.about-portrait {
  max-width: 550px;
}

.about-portrait img {
  aspect-ratio: 0.84;
  object-fit: cover;
  object-position: center 20%;
}

.about-portrait p {
  display: flex;
  justify-content: space-between;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
}

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

.about-copy h2 {
  margin-bottom: 44px;
}

.about-copy > p:not(.section-index) {
  max-width: 650px;
  color: #55514a;
  font-size: clamp(15px, 1.3vw, 18px);
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
}

.skill-list span {
  padding: 9px 14px;
  border: 1px solid rgba(10, 10, 10, 0.28);
  font-size: 11px;
  border-radius: 999px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 140px);
  padding: clamp(90px, 11vw, 170px) var(--gutter);
  color: var(--ink);
  background: var(--accent);
}

.contact-intro h2 {
  margin-bottom: 34px;
}

.contact-intro > p:not(.section-index) {
  max-width: 520px;
  font-size: 14px;
}

.wechat-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 520px);
  margin-top: 45px;
  padding: 18px 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-align: left;
}

.wechat-button span {
  font-size: 12px;
}

.wechat-button strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.phone-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.inquiry-form {
  padding: clamp(28px, 4vw, 54px);
  background: var(--paper);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  margin-bottom: 27px;
}

.field label {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.28);
  border-radius: 0;
  outline: none;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--accent);
  box-shadow: 0 1px 0 var(--accent);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a29d94;
}

.submit-button {
  width: 100%;
  justify-content: space-between;
  border-radius: 0;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.inquiry-preview {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.inquiry-preview > p {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
}

.inquiry-preview pre {
  padding: 16px;
  overflow-x: auto;
  white-space: pre-wrap;
  background: var(--paper-2);
  font-family: inherit;
  font-size: 12px;
}

.inquiry-preview button {
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 12px;
  text-decoration: underline;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
  min-height: 240px;
  padding: 60px var(--gutter) 40px;
  color: var(--white);
  background: var(--ink);
}

.site-footer > div p,
.site-footer > p,
.site-footer > a {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.site-footer > p {
  text-align: center;
}

.site-footer > a {
  justify-self: end;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.toast.visible {
  opacity: 1;
  transform: none;
}

.watch-page {
  min-height: 100vh;
  color: var(--white);
  background: var(--ink);
}

.watch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.watch-back {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.watch-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(55px, 8vw, 110px) var(--gutter) 70px;
}

.watch-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.4fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.watch-heading .section-index {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.48);
}

.watch-heading h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.watch-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  background: #000;
  font-size: 12px;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.video-loading[hidden] {
  display: none;
}

.watch-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.watch-footer p {
  margin: 0;
}

.watch-footer a {
  color: var(--white);
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 240ms;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  }

  .hero h1 {
    font-size: clamp(52px, 7.4vw, 76px);
  }

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

  .account-card-lead {
    grid-column: span 12;
  }

  .account-card:nth-child(2) {
    grid-column: span 12;
  }

  .account-card:nth-child(n + 3) {
    grid-column: span 4;
  }

  .secondary-account-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card {
    min-height: 420px;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-list li:nth-child(3) {
    border-right: 0;
  }

  .process-list li:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    min-height: 66px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy {
    display: none;
  }

  .menu-toggle {
    z-index: 2;
    display: block;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: var(--gutter);
    background: var(--ink);
    font-size: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, visibility 200ms ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-cta {
    margin-top: 12px;
    font-size: 15px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 112px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(49px, 14.5vw, 72px);
  }

  .hero-intro {
    margin-top: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .hero-portrait {
    max-width: none;
    margin-top: 55px;
  }

  .hero-portrait img {
    height: min(126vw, 640px);
    aspect-ratio: auto;
    object-position: center 82%;
  }

  .hero-stats {
    justify-content: space-between;
    gap: 12px;
    margin-top: 40px;
  }

  .hero-stats div {
    display: block;
  }

  .hero-stats span {
    display: block;
    margin-top: 6px;
    font-size: 9px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-intro h2 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .accounts-section .section-heading h2 {
    font-size: clamp(38px, 11.5vw, 50px);
  }

  .project-list {
    grid-template-columns: 1fr;
  }

  .project-featured {
    grid-column: auto;
  }

  .project-featured .project-image img,
  .project-image img {
    aspect-ratio: 1.15;
  }

  .project-copy,
  .project:not(.project-featured) .project-copy {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .account-primary-grid {
    grid-template-columns: 1fr;
  }

  .account-card,
  .account-card-lead,
  .account-card:nth-child(2),
  .account-card:nth-child(n + 3) {
    grid-column: auto;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 14px;
  }

  .account-card figure img,
  .account-card-lead figure img {
    width: 104px;
    height: 104px;
    min-height: 0;
    aspect-ratio: 1;
  }

  .account-card-copy,
  .account-card-lead .account-card-copy {
    padding: 0;
  }

  .account-followers {
    margin: 10px 0 14px;
  }

  .account-followers strong {
    font-size: 34px;
  }

  .account-card h3 {
    margin: 0 0 7px;
    font-size: 20px;
  }

  .account-card-copy > p:last-child {
    font-size: 11px;
  }

  .secondary-heading {
    display: block;
  }

  .secondary-heading span {
    display: block;
    margin-top: 6px;
  }

  .secondary-account-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .secondary-account img {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .addons {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .addons li {
    display: block;
  }

  .addons li span {
    display: block;
  }

  .addons li span:last-child {
    margin-top: 5px;
    text-align: left;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li + li {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-child(n + 4) {
    border-top: 0;
  }

  .process-list span {
    margin-bottom: 24px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    max-width: none;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer > p {
    text-align: left;
  }

  .site-footer > a {
    justify-self: start;
  }

  .watch-header .brand-copy {
    display: block;
  }

  .watch-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .watch-heading .section-index {
    grid-column: auto;
  }

  .watch-footer {
    display: block;
  }

  .watch-footer a {
    display: inline-block;
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
