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

:root {
  --ink: #0a0a09;
  --ink-soft: #11110f;
  --card: #161614;
  --surface: #f5f3ee;
  --surface-dim: rgba(245, 243, 238, 0.72);
  --surface-faint: rgba(245, 243, 238, 0.42);
  --mint: #2d5a3d;
  --mint-light: #4d9364;
  --warm: #c4923a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-height: 100vh;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--surface);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.45rem 3rem;
  background: linear-gradient(to bottom, rgba(10, 10, 9, 0.85), rgba(10, 10, 9, 0));
}

.nav-logo {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: min(220px, 42vw);
}

.custom-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 48px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--surface-faint);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--surface);
}

.nav-links .nav-cta,
.nav-cta {
  color: var(--surface);
  border: 1px solid var(--line-strong);
  padding: 0.55rem 1.1rem;
  border-radius: 99px;
}

.nav-links .nav-cta:hover,
.nav-cta:hover {
  background: var(--surface);
  color: var(--ink);
}

.content-width {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 50% 38%, rgba(45, 90, 61, 0.2), transparent 58%),
    radial-gradient(ellipse 45% 40% at 85% 18%, rgba(196, 146, 58, 0.1), transparent 54%),
    var(--ink);
}

.hero-inner {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 8rem 3rem 5rem;
}

.hero-copy {
  position: relative;
  z-index: 10;
  max-width: 1120px;
  text-align: center;
}

.hero-kicker,
.feature-overline,
.work-kicker,
.label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint-light);
}

.hero-copy h1 {
  margin-top: 1.4rem;
  font-weight: 600;
  font-size: clamp(3.4rem, 7.2vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.hero-copy h1 span {
  display: inline-block;
}

.hero-sub {
  max-width: 480px;
  margin: 2rem auto 0;
  color: var(--surface-dim);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-solid,
.btn-mint-new,
.btn-ghost-new,
.price-btn,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.btn-solid {
  background: var(--surface);
  color: var(--ink);
  padding: 0.76rem 1.55rem;
}

.btn-solid:hover,
.btn-mint-new:hover,
.btn-ghost-new:hover,
.price-btn:hover,
.cta-btn:hover {
  transform: translateY(-2px);
}

.floating-cards {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.float-card {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
  will-change: transform;
  transform: translateZ(0);
  animation: hero-card-drift 8s ease-in-out infinite alternate;
}

.float-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.05) 58%),
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.18), transparent 32%);
}

.float-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.fc1 {
  width: min(24vw, 285px);
  aspect-ratio: 4 / 5;
  top: 17%;
  left: 7%;
  background: radial-gradient(circle at 30% 24%, #e06b2b, #8f2608 46%, #130804);
}

.fc2 {
  width: min(25vw, 305px);
  aspect-ratio: 4 / 5;
  top: 10%;
  right: 8%;
  background: radial-gradient(circle at 68% 28%, #4d9364, #153d25 48%, #06100a);
  animation-duration: 9.5s;
  animation-delay: -2.4s;
}

.fc3 {
  width: min(22vw, 250px);
  aspect-ratio: 4 / 5;
  bottom: 13%;
  left: 13%;
  background: radial-gradient(circle at 45% 38%, #4f79d5, #16327d 44%, #050814);
  animation-duration: 10.5s;
  animation-delay: -4.6s;
}

.fc4 {
  width: min(31vw, 360px);
  aspect-ratio: 5 / 4;
  bottom: 14%;
  right: 10%;
  background: radial-gradient(circle at 58% 45%, #b94372, #54102e 44%, #100408);
  animation-duration: 11s;
  animation-delay: -6.2s;
}

@keyframes hero-card-drift {
  from {
    transform: translate3d(-10px, 8px, 0) rotate(-1deg);
  }

  to {
    transform: translate3d(12px, -14px, 0) rotate(1.35deg);
  }
}

.intro-statement {
  background: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding: 5rem;
  text-align: center;
}

.intro-eyebrow {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint-light);
}

.intro-text {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.3;
  color: rgba(245, 243, 238, 0.9);
}

.authority-strip {
  background: var(--ink-soft);
  border-block: 1px solid var(--line);
  padding: 3.6rem 5rem;
}

.authority-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.authority-item {
  text-align: center;
  padding: 0 1.5rem;
}

.authority-item + .authority-item {
  border-left: 1px solid var(--line);
}

.authority-num {
  font-weight: 600;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--mint-light);
}

.authority-label {
  margin-top: 0.65rem;
  color: var(--surface-faint);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.55;
}

.feature-wrap {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.fi1-bg {
  background: radial-gradient(ellipse 70% 100% at 100% 50%, #e06b2b, #5c1f08 30%, var(--ink) 68%);
}

.fi2-bg {
  background: radial-gradient(ellipse 70% 100% at 0% 50%, #4d9364, #153d25 30%, var(--ink) 68%);
}

.fi3-bg {
  background: radial-gradient(ellipse 70% 100% at 100% 50%, #4f79d5, #16327d 30%, var(--ink) 68%);
}

.feature {
  max-width: 860px;
  margin: 0 auto;
  padding: 8rem 5rem;
}

.feature-h,
.h2 {
  margin-top: 1.15rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.feature-h {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.feature-h em {
  font-weight: 300;
  color: var(--mint-light);
}

.feature-body,
.body-copy {
  max-width: 520px;
  margin-top: 1.4rem;
  color: var(--surface-dim);
  font-size: 1rem;
  line-height: 1.85;
}

.section,
.work-section {
  padding: 8rem 5rem;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.work-section {
  position: relative;
  overflow: hidden;
}

.work-section::before {
  content: "Work";
  position: absolute;
  right: -0.06em;
  bottom: -0.16em;
  font-weight: 600;
  font-size: 28vw;
  line-height: 1;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.section-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.section-header.compact {
  margin-bottom: 3.25rem;
  border-bottom: 0;
  padding-bottom: 0;
}

.section-header h2 {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.section-header a {
  color: var(--mint-light);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-list {
  position: relative;
  z-index: 1;
}

.work-entry {
  border-bottom: 1px solid var(--line);
}

.work-row {
  width: 100%;
  display: grid;
  grid-template-columns: 2.4fr 1fr 0.6fr 40px;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  border: 0;
  background: none;
  color: var(--surface);
  text-align: left;
  cursor: pointer;
  transition: padding-left 0.25s ease, background 0.25s ease;
}

.work-row:hover,
.work-row:focus-visible,
.work-row[aria-expanded="true"] {
  padding-left: 1rem;
  background: rgba(77, 147, 100, 0.045);
}

.wr-name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.45rem);
  line-height: 1;
}

.wr-cat,
.wr-year {
  color: var(--surface-faint);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wr-year,
.wr-toggle {
  text-align: right;
}

.wr-toggle {
  color: var(--mint-light);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}

.work-row[aria-expanded="true"] .wr-toggle {
  transform: rotate(45deg);
}

.work-expand-inner {
  max-width: 680px;
  margin: 0 0 0.5rem 0.5rem;
  padding: 0 1rem 2.4rem 2rem;
  border-left: 2px solid rgba(77, 147, 100, 0.35);
}

.work-expand-inner p {
  margin-bottom: 1.1rem;
  color: rgba(245, 243, 238, 0.68);
  font-size: 0.95rem;
  line-height: 1.9;
}

.work-live-link {
  display: inline-block;
  margin-top: 0.3rem;
  border-bottom: 1px solid rgba(77, 147, 100, 0.4);
  padding-bottom: 2px;
  color: var(--mint-light);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-stats {
  display: flex;
  gap: 2.75rem;
  margin-top: 2.5rem;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1;
}

.stat-label {
  margin-top: 0.35rem;
  color: var(--surface-faint);
  font-size: 0.82rem;
}

.about-visual,
.svc-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-visual {
  min-height: 520px;
  border-radius: 16px;
  background: radial-gradient(circle at 40% 32%, #d0a23b, #674307 48%, var(--ink));
  color: var(--surface-faint);
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.svc-grid,
.price-grid,
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}

.svc-card,
.price-card,
.proc-card,
.faq-list,
.cta-inner {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.svc-card,
.price-card,
.proc-card {
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.svc-card:hover,
.price-card:hover,
.proc-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.svc-visual {
  aspect-ratio: 1;
}

.svc-a {
  background: radial-gradient(circle at 30% 35%, #e06b2b, #5c1f08 48%, var(--ink));
}

.svc-b {
  background: radial-gradient(circle at 66% 36%, #4d9364, #153d25 48%, var(--ink));
}

.svc-c {
  background: radial-gradient(circle at 44% 42%, #4f79d5, #16327d 48%, var(--ink));
}

.type-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.09);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  pointer-events: none;
}

.type-word {
  font-size: clamp(3.75rem, 6vw, 5.5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
}

.svc-body {
  padding: 1.75rem;
}

.svc-body h3,
.proc-card h3 {
  margin-bottom: 0.65rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 300;
}

.svc-body p,
.proc-card p,
.price-desc {
  color: var(--surface-faint);
  font-size: 0.9rem;
  line-height: 1.65;
}

.btn-mint-new {
  background: var(--mint-light);
  color: #fff;
  padding: 0.75rem 1.5rem;
}

.btn-ghost-new {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(245, 243, 238, 0.9);
  padding: 0.75rem 1.5rem;
}

.price-head,
.faq-head {
  margin-bottom: 3.25rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 2.125rem 1.875rem;
}

.price-hi {
  border-color: #d0a23b;
  background: radial-gradient(circle at 80% 0%, rgba(208, 162, 59, 0.08), transparent 55%), var(--card);
}

.price-plan {
  margin-bottom: 0.5rem;
  color: var(--surface-faint);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-name {
  margin: 1.5rem 0 1.75rem;
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: rgba(245, 243, 238, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
}

.price-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
  border: 1px solid var(--mint-light);
  border-radius: 50%;
  background: rgba(77, 147, 100, 0.12);
}

.price-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(245, 243, 238, 0.9);
  padding: 0.75rem;
}

.price-btn-hi {
  background: var(--mint-light);
  border-color: var(--mint-light);
  color: #fff;
}

.proc-card {
  position: relative;
  min-height: 230px;
  padding: 2.125rem 1.875rem;
}

.proc-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  opacity: 0.16;
  background: var(--mint-light);
}

.proc-card:nth-child(1)::before,
.proc-card:nth-child(6)::before {
  background: #e06b2b;
}

.proc-card:nth-child(3)::before {
  background: #4f79d5;
}

.proc-card:nth-child(4)::before {
  background: #b94372;
}

.proc-card:nth-child(5)::before {
  background: #d0a23b;
}

.proc-card span {
  display: block;
  margin-bottom: 1.125rem;
  color: var(--mint-light);
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.55;
}

.faq-list {
  max-width: 760px;
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.6rem;
  border: 0;
  background: none;
  color: rgba(245, 243, 238, 0.9);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-q:hover,
.faq-q:focus-visible {
  background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 2px;
  background: var(--surface-faint);
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
}

.faq-item.open .faq-icon::after {
  opacity: 0;
}

.faq-a {
  padding: 0 1.6rem 1.35rem;
  color: var(--surface-faint);
  font-size: 0.9rem;
  line-height: 1.72;
}

.faq-note {
  margin-top: 1.4rem;
  color: var(--surface-faint);
  font-size: 0.9rem;
}

.faq-note a {
  color: var(--mint-light);
}

.cta-banner {
  padding: 3.75rem 2.5rem;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.cta-inner {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3.75rem;
  text-align: center;
  background: linear-gradient(145deg, #172a1e, #0c1810);
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(77, 147, 100, 0.14), transparent 65%);
  pointer-events: none;
}

.cta-ticker {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 3.25rem;
  overflow: hidden;
  color: rgba(245, 243, 238, 0.32);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cta-tick-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.cta-tick-track span {
  flex-shrink: 0;
  padding: 0 2rem;
}

.cta-inner h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6.5vw, 5.375rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.cta-btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--ink);
  padding: 0.95rem 2.125rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 2.5rem 2rem;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 0.625rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
}

.footer-tag,
.fcol a,
.footer-bottom {
  color: var(--surface-faint);
  font-size: 0.84rem;
  line-height: 1.6;
}

.fcol-label {
  margin-bottom: 0.875rem;
  color: rgba(245, 243, 238, 0.32);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fcol a {
  display: block;
  margin-bottom: 0.625rem;
  transition: color 0.2s ease;
}

.fcol a:hover,
.fcol a:focus-visible {
  color: rgba(245, 243, 238, 0.9);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.fallback-page {
  padding-top: 5rem;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 1024px) {
  .authority-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .authority-item {
    padding: 2rem 1rem;
  }

  .authority-item:nth-child(3) {
    border-left: 0;
  }

  .authority-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .two-col,
  .svc-grid,
  .price-grid,
  .proc-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1.1rem 1.25rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links li:not(:last-child) {
    display: none;
  }

  .nav-cta,
  .nav-links .nav-cta {
    padding: 0.5rem 0.9rem;
  }

  .hero-section {
    min-height: 100svh;
  }

  .hero-inner {
    min-height: 100svh;
    align-items: center;
    padding: 6.75rem 1.25rem 2.75rem;
  }

  .hero-copy {
    padding-top: 1.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
    line-height: 0.94;
  }

  .fc1 {
    width: 142px;
    top: 24%;
    left: -8%;
  }

  .fc2 {
    width: 138px;
    top: 18%;
    right: -7%;
  }

  .fc3 {
    width: 150px;
    bottom: 8%;
    left: -5%;
  }

  .fc4 {
    width: 180px;
    bottom: 9%;
    right: -10%;
  }

  .intro-statement,
  .authority-strip,
  .feature,
  .section,
  .work-section,
  .cta-banner {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .intro-statement {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .authority-strip {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }

  .authority-inner {
    grid-template-columns: 1fr;
  }

  .authority-item + .authority-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .section,
  .work-section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .section-header,
  .section-header.compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .work-row {
    grid-template-columns: 1fr auto;
    padding: 1.55rem 0;
  }

  .wr-cat,
  .wr-year {
    display: none;
  }

  .work-expand-inner {
    margin-left: 0;
    padding-left: 1.2rem;
  }

  .two-col {
    gap: 3rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-visual {
    min-height: 340px;
  }

  .cta-inner {
    padding: 3.75rem 1.75rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.35rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.125rem 1.35rem;
  }
}

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