:root {
  --bg: #030e12;
  --bg-2: #07171c;
  --panel: #132b33;
  --panel-2: #19343d;
  --ink: #fbf8ef;
  --muted: rgba(251, 248, 239, 0.72);
  --muted-2: rgba(251, 248, 239, 0.56);
  --line: rgba(251, 248, 239, 0.22);
  --line-strong: rgba(251, 248, 239, 0.42);
  --accent: #d7c49b;
  --paper: #f6f0e4;
  --paper-ink: #162126;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Work Sans", "Zen Kaku Gothic New", system-ui, sans-serif;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

main {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
}

p,
dd,
label,
button {
  overflow-wrap: break-word;
}

.site-header {
  background: linear-gradient(180deg, rgba(3, 14, 18, 0.98), rgba(3, 14, 18, 0.72) 58%, rgba(3, 14, 18, 0));
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1320px;
  padding: 27px 50px 34px;
}

.logo-link {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  opacity: 0.98;
}

.logo-link img {
  height: auto;
  width: 106px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 27px;
  justify-content: flex-end;
}

.desktop-nav a {
  color: rgba(251, 248, 239, 0.88);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  padding: 8px 0;
}

.desktop-nav a:hover,
.mobile-menu a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.nav-divider {
  background: rgba(251, 248, 239, 0.38);
  display: block;
  height: 30px;
  width: 1px;
}

.desktop-nav .nav-contact {
  color: var(--accent);
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: none;
  flex: 0 0 auto;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 44px;
}

.menu-button span {
  background: var(--ink);
  display: block;
  height: 2px;
  left: 9px;
  position: absolute;
  transition: top 0.24s ease, transform 0.24s ease, opacity 0.2s ease;
  width: 26px;
}

.menu-button span:nth-child(1) {
  top: 12px;
}

.menu-button span:nth-child(2) {
  top: 21px;
}

.menu-button span:nth-child(3) {
  top: 30px;
}

.menu-button.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  background: rgba(3, 14, 18, 0.98);
  border-top: 1px solid rgba(251, 248, 239, 0.16);
  height: calc(100svh - 82px);
  inset: 82px 0 auto;
  overflow-y: auto;
  padding: 16px 24px 42px;
  position: fixed;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  margin: 0 auto;
  max-width: 540px;
}

.mobile-menu a {
  border-bottom: 1px solid rgba(251, 248, 239, 0.16);
  color: rgba(251, 248, 239, 0.92);
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  padding: 20px 0;
}

.hero {
  align-items: center;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: 164px 0 0;
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 980px;
  padding: 0 30px;
  position: relative;
  width: 100%;
  z-index: 3;
}

.hero-logo {
  height: auto;
  width: min(300px, 72vw);
}

.hero-copy h1 {
  font-family: "Arsenal", "Zen Kaku Gothic New", serif;
  font-size: clamp(2.45rem, 3.45vw, 3.65rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 37px 0 19px;
}

.desktop-title {
  white-space: nowrap;
}

.mobile-title {
  display: none;
}

.hero-lead {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.9vw, 1.58rem);
  font-weight: 800;
  line-height: 1.65;
  margin: 0 0 12px;
}

.hero-body {
  color: var(--muted);
  font-size: 15px;
  line-height: 2.05;
  margin: 0;
  max-width: 760px;
}

.scroll-link {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  font-size: 32px;
  height: 96px;
  justify-content: center;
  line-height: 1;
  margin-top: 42px;
  position: relative;
  transition: border-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
  width: 96px;
  z-index: 4;
}

.scroll-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(8px);
}

.hero-image {
  align-self: stretch;
  height: min(48vh, 540px);
  margin: -30px 0 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-image::before,
.hero-image::after {
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-image::before {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(3, 14, 18, 0.3) 34%, rgba(3, 14, 18, 0.86) 100%);
}

.hero-image::after {
  background: radial-gradient(circle at 50% 8%, rgba(251, 248, 239, 0.08), rgba(3, 14, 18, 0) 44%);
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  width: 100%;
}

.section-bg {
  position: relative;
  z-index: 2;
}

.section-bg::before {
  background: rgba(3, 14, 18, 0.58);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max);
  padding: 126px 32px;
  position: relative;
}

.section-inner.narrow {
  max-width: 920px;
}

.split-layout {
  align-items: start;
  display: grid;
  gap: 46px;
  grid-template-columns: 66px minmax(0, 1fr);
}

.about-section .split-layout {
  align-items: center;
  grid-template-columns: 66px minmax(0, 1fr) 355px;
}

.side-label {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.section-copy h2,
.section-heading h2,
.feature-heading h2,
.contact-copy h2,
.company-copy h2,
.legal-hero h1,
.thanks-box h1 {
  font-family: "Arsenal", "Zen Kaku Gothic New", serif;
  font-weight: 700;
  line-height: 1.17;
  margin: 0;
}

.section-copy h2,
.section-heading h2,
.feature-heading h2,
.contact-copy h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.25rem);
}

.section-copy p,
.section-heading p,
.feature-heading p,
.lead-copy,
.work-card p,
.feature-item p,
.faq-answer p,
.company-list dd,
.legal-content p,
.thanks-box p {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.section-copy > p:last-child {
  margin-bottom: 0;
}

.lead-copy {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.9;
  margin: 26px 0 24px;
}

.metrics {
  border-left: 2px solid var(--accent);
  color: var(--muted);
  display: grid;
  gap: 7px;
  margin: 28px 0 0;
  padding-left: 18px;
}

.metrics span {
  font-size: 13px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.cta-row a,
.thanks-box a {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  transition: background 0.24s ease, border-color 0.24s ease;
}

.cta-row a:hover,
.thanks-box a:hover {
  background: rgba(251, 248, 239, 0.08);
  border-color: var(--accent);
}

.about-proof {
  align-self: stretch;
  display: grid;
  gap: 18px;
}

.about-proof img {
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.about-proof > div {
  background: rgba(19, 43, 51, 0.82);
  border: 1px solid var(--line);
  display: grid;
  gap: 5px;
  padding: 23px;
}

.about-proof span,
.about-proof small {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.about-proof strong {
  color: var(--accent);
  font-family: "Arsenal", "Zen Kaku Gothic New", serif;
  font-size: 46px;
  line-height: 0.95;
  margin-top: 12px;
}

.service-section {
  background: rgba(19, 43, 51, 0.96);
  border-radius: 230px 0 0 0;
  margin-top: 24px;
  overflow: hidden;
}

.service-section::before {
  background: linear-gradient(180deg, rgba(13, 29, 35, 0.72), rgba(19, 43, 51, 0.96));
}

.service-section .section-inner {
  padding-bottom: 80px;
  padding-top: 154px;
}

.service-main {
  min-width: 0;
}

.service-table {
  border-top: 1px solid var(--line-strong);
  margin-top: 54px;
}

.service-table div {
  border-bottom: 1px solid var(--line-strong);
  display: grid;
  gap: 28px;
  grid-template-columns: 235px minmax(0, 1fr);
  min-height: 86px;
  padding: 24px 0;
}

.service-table dt {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}

.service-table dd {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

.works-section .section-inner {
  max-width: 1230px;
  padding-top: 138px;
}

.section-title-row {
  align-items: start;
  display: grid;
  gap: 46px;
  grid-template-columns: 66px minmax(0, 780px);
  margin-bottom: 58px;
}

.works-grid {
  display: grid;
  gap: 74px 46px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.work-slider {
  aspect-ratio: 1.37;
  background: rgba(251, 248, 239, 0.08);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.work-slider img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transform: scale(1.02);
  transition: opacity 0.28s ease, transform 0.45s ease;
  width: 100%;
}

.work-slider img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slider-actions {
  align-items: center;
  bottom: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}

.slider-actions button {
  align-items: center;
  background: rgba(3, 14, 18, 0.52);
  border: 1px solid rgba(251, 248, 239, 0.7);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  font-size: 31px;
  height: 48px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 3px;
  transition: background 0.24s ease, border-color 0.24s ease;
  width: 48px;
}

.slider-actions button:hover {
  background: rgba(3, 14, 18, 0.82);
  border-color: var(--accent);
}

.work-card h3 {
  align-items: center;
  display: flex;
  gap: 13px;
  justify-content: space-between;
  margin: 22px 0 10px;
}

.work-card h3,
.feature-item h3 {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.5;
}

.work-card h3 a {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.work-card p {
  margin: 0;
}

.feature-section .section-inner {
  max-width: 1240px;
  padding-top: 132px;
}

.feature-heading {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 0.92fr);
  margin-bottom: 72px;
  padding-bottom: 58px;
}

.feature-heading p {
  color: var(--accent);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.9;
  margin: 0;
  max-width: 430px;
}

.feature-heading h2 {
  font-size: clamp(2.45rem, 3.6vw, 4rem);
  text-align: right;
}

.feature-list {
  display: grid;
  gap: 70px;
}

.feature-item {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  padding-top: 52px;
}

.feature-item:nth-child(even) {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.88fr);
}

.feature-item:nth-child(even) > div {
  order: 2;
}

.feature-item:nth-child(even) img {
  order: 1;
}

.feature-item span {
  color: var(--accent);
  display: block;
  font-family: "Arsenal", serif;
  font-size: 78px;
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 26px;
}

.feature-item h3 {
  margin: 0 0 18px;
}

.feature-item p {
  margin: 0;
}

.feature-item img {
  aspect-ratio: 1.36;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.faq-section .section-inner {
  padding-bottom: 130px;
  padding-top: 106px;
}

.section-heading {
  margin-bottom: 42px;
  text-align: center;
}

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

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

.faq-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  display: grid;
  gap: 18px;
  grid-template-columns: 42px minmax(0, 1fr) 30px;
  min-height: 82px;
  padding: 0;
  text-align: left;
  width: 100%;
}

.faq-item button span {
  color: var(--accent);
  font-family: "Arsenal", serif;
  font-size: 32px;
  font-weight: 700;
}

.faq-item button strong {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.65;
}

.faq-item button i {
  display: block;
  height: 30px;
  position: relative;
  width: 30px;
}

.faq-item button i::before,
.faq-item button i::after {
  background: var(--accent);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-item button i::before {
  height: 1px;
  width: 18px;
}

.faq-item button i::after {
  height: 18px;
  transition: opacity 0.2s ease;
  width: 1px;
}

.faq-item.is-open button i::after {
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-answer > p {
  margin: 0;
  overflow: hidden;
  padding: 0 48px 0 60px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 28px;
}

.contact-section {
  background: var(--panel);
  border-radius: 170px 0 0 0;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
  z-index: 2;
}

.contact-inner {
  align-items: start;
  display: grid;
  gap: 68px;
  grid-template-columns: minmax(280px, 0.54fr) minmax(560px, 1fr);
  padding: 120px 64px 98px;
}

.contact-copy {
  max-width: 420px;
}

.contact-copy h2 {
  font-size: clamp(1.8rem, 2vw, 2.35rem);
  line-height: 1.5;
  max-width: 100%;
}

.contact-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
  margin: 24px 0 0;
}

.contact-form {
  display: grid;
  gap: 19px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form .full,
.submit-button,
.form-error {
  grid-column: 1 / -1;
}

.contact-form label > span {
  align-items: center;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 800;
  gap: 9px;
}

.contact-form b {
  border: 1px solid rgba(215, 196, 155, 0.46);
  color: var(--accent);
  font-size: 11px;
  line-height: 1;
  padding: 4px 6px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(246, 240, 228, 0.96);
  border: 1px solid transparent;
  border-radius: 3px;
  color: var(--paper-ink);
  min-height: 50px;
  outline: none;
  padding: 14px 15px;
  width: 100%;
}

.contact-form textarea {
  line-height: 1.75;
  min-height: 230px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(215, 196, 155, 0.2);
}

.checkbox {
  align-items: center;
  display: flex !important;
  gap: 12px !important;
}

.checkbox input {
  flex: 0 0 auto;
  height: 22px;
  min-height: 22px;
  padding: 0;
  width: 22px;
}

.checkbox span {
  color: var(--muted);
}

.submit-button {
  align-items: center;
  background: var(--accent);
  border: 0;
  border-radius: 3px;
  color: var(--paper-ink);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 54px;
  padding: 16px 18px;
  transition: filter 0.24s ease, opacity 0.24s ease;
}

.submit-button:hover {
  filter: brightness(1.06);
}

.submit-button:disabled {
  cursor: progress;
  opacity: 0.65;
}

.hp-field {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.form-error {
  color: #ffb7a8;
  line-height: 1.7;
  margin: 0;
}

.company-section {
  background: linear-gradient(180deg, var(--panel), var(--bg) 78%);
  position: relative;
  z-index: 2;
}

.company-section .section-inner {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: 66px minmax(260px, 0.48fr) minmax(0, 1fr);
  padding-bottom: 112px;
  padding-top: 110px;
}

.company-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  margin-bottom: 26px;
}

.company-copy img {
  height: auto;
  max-width: 172px;
}

.company-list {
  display: grid;
  gap: 0;
  min-width: 0;
  margin: 0;
}

.company-list div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 125px minmax(0, 1fr);
  padding: 17px 0;
}

.company-list div:first-child {
  border-top: 1px solid var(--line);
}

.company-list dt {
  color: var(--accent);
  font-weight: 900;
  white-space: nowrap;
}

.company-list dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.global-footer {
  background: var(--bg);
  color: var(--muted-2);
  position: relative;
  z-index: 2;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1320px;
  padding: 28px 48px;
}

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

.footer-links span {
  background: var(--line);
  display: block;
  height: 18px;
  width: 1px;
}

.fixed-backdrop {
  height: 100vh;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.fixed-backdrop::after {
  background: rgba(3, 14, 18, 0.45);
  content: "";
  inset: 0;
  position: absolute;
}

.fixed-backdrop img {
  filter: blur(3px) brightness(0.72);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.legal-page,
.thanks-page {
  background: rgba(3, 14, 18, 0.92);
  min-height: 100svh;
  padding: 164px 32px 96px;
  position: relative;
  z-index: 2;
}

.legal-hero,
.legal-content,
.thanks-box {
  margin: 0 auto;
  max-width: 930px;
}

.legal-hero h1,
.thanks-box h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.legal-content {
  border-top: 1px solid var(--line);
  margin-top: 58px;
  padding-top: 42px;
}

.legal-content h2 {
  color: var(--accent);
  font-family: inherit;
  font-size: 17px;
  line-height: 1.7;
  margin: 32px 0 10px;
}

.legal-content p {
  margin: 0 0 18px;
}

.thanks-box {
  border-top: 1px solid var(--line);
  padding-top: 46px;
}

.thanks-box p {
  margin: 24px 0 0;
}

.thanks-box a {
  margin-top: 30px;
}

.reveal {
  filter: blur(8px);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.reveal.is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .about-section .split-layout,
  .contact-inner,
  .company-section .section-inner {
    grid-template-columns: 1fr;
  }

  .split-layout,
  .section-title-row {
    grid-template-columns: 1fr;
  }

  .side-label {
    writing-mode: horizontal-tb;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: inline;
  }

  .about-proof {
    max-width: 450px;
  }

  .feature-heading,
  .feature-item,
  .feature-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-heading {
    align-items: start;
    gap: 22px;
    padding-bottom: 42px;
  }

  .feature-heading h2 {
    text-align: left;
  }

  .feature-item:nth-child(even) > div,
  .feature-item:nth-child(even) img {
    order: initial;
  }

  .feature-item img {
    max-width: 760px;
  }

  .contact-section {
    border-radius: 120px 0 0 0;
  }
}

@media (max-width: 820px) {
  .works-grid {
    gap: 52px;
    grid-template-columns: 1fr;
  }

  .service-table div {
    gap: 10px;
    grid-template-columns: 1fr;
  }
}

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

  .header-inner {
    padding: 19px 22px 25px;
  }

  .logo-link img {
    width: 102px;
  }

  .mobile-menu {
    height: calc(100svh - 78px);
    inset: 78px 0 auto;
  }

  .hero {
    min-height: 100svh;
    padding-top: 118px;
  }

  .hero-copy {
    padding: 0 21px;
  }

  .hero-logo {
    width: min(250px, 70vw);
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 9.1vw, 3rem);
    line-height: 1.24;
    margin: 32px 0 19px;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: inline;
  }

  .hero-lead {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .hero-body {
    font-size: 14px;
    line-height: 1.95;
  }

  .scroll-link {
    font-size: 26px;
    height: 74px;
    margin-top: 34px;
    width: 74px;
  }

  .hero-image {
    height: 410px;
    margin-top: -20px;
  }

  .hero-image img {
    object-position: center top;
  }

  .section-inner {
    padding: 88px 22px;
  }

  .about-section .section-inner {
    padding-top: 104px;
  }

  .service-section {
    border-radius: 118px 0 0 0;
  }

  .service-section .section-inner {
    padding-top: 112px;
  }

  .section-copy h2,
  .section-heading h2,
  .feature-heading h2 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .contact-copy h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.45;
    max-width: 100%;
  }

  .contact-description {
    font-size: 14px;
    line-height: 1.9;
    margin-top: 18px;
  }

  .lead-copy {
    font-size: 16px;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-row a {
    width: 100%;
  }

  .works-section .section-inner,
  .feature-section .section-inner,
  .faq-section .section-inner {
    padding-top: 92px;
  }

  .section-title-row {
    margin-bottom: 42px;
  }

  .work-card h3,
  .feature-item h3 {
    font-size: 19px;
  }

  .slider-actions {
    bottom: 14px;
  }

  .slider-actions button {
    height: 42px;
    width: 42px;
  }

  .feature-list {
    gap: 48px;
  }

  .feature-item {
    gap: 28px;
    padding-top: 40px;
  }

  .feature-item span {
    font-size: 58px;
    margin-bottom: 18px;
  }

  .faq-item button {
    gap: 14px;
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    min-height: 78px;
  }

  .faq-answer > p {
    padding-left: 48px;
    padding-right: 0;
  }

  .contact-section {
    border-radius: 86px 0 0 0;
  }

  .contact-inner {
    gap: 38px;
    padding: 84px 22px 72px;
  }

  .contact-copy {
    max-width: 100%;
  }

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

  .company-section .section-inner {
    padding-top: 82px;
  }

  .company-list div {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column-reverse;
    padding: 29px 22px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links span {
    display: none;
  }

  .legal-page,
  .thanks-page {
    padding: 132px 22px 76px;
  }
}
