:root {
  --ink: #18231d;
  --forest: #244638;
  --deep-forest: #153126;
  --sand: #f4f0e8;
  --warm: #a87547;
  --line: #d9ddd9;
  --muted: #67716b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.section {
  width: min(1180px, calc(100% - 80px));
  margin-inline: auto;
}

.demo-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 20px;
  background: #2a2d2b;
  color: rgba(255, 255, 255, 0.76);
  font-family: Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: center;
}

.demo-notice a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 760px;
  height: calc(100svh - 30px);
  max-height: 940px;
  color: var(--white);
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(12, 24, 18, 0.76) 0%, rgba(16, 25, 20, 0.25) 58%, rgba(16, 25, 20, 0.08) 100%),
    url("assets/hero-carpenter.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  z-index: -1;
  background: linear-gradient(transparent, rgba(9, 20, 14, 0.36));
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(9, 19, 13, 0.28), transparent 24%);
}

.site-header {
  width: min(1320px, calc(100% - 72px));
  height: 112px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.brand-image {
  display: block;
  justify-self: start;
}

.brand-image img {
  display: block;
  width: 230px;
  height: 76px;
  object-fit: contain;
  border-radius: 2px;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.global-nav a {
  position: relative;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.global-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 120px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.15em;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.header-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.hero-content {
  position: absolute;
  left: max(7vw, calc((100vw - 1180px) / 2));
  top: 52%;
  transform: translateY(-43%);
}

.eyebrow {
  color: var(--warm);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.5;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.75);
}

.hero h1 {
  margin-top: 24px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(52px, 6.6vw, 92px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.32;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}

.hero-copy {
  margin-top: 28px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  letter-spacing: 0.13em;
  line-height: 2;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  min-height: 62px;
  padding: 0 26px;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border 0.25s ease;
}

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

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

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.scroll {
  position: absolute;
  right: 42px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.scroll span {
  writing-mode: vertical-rl;
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.25em;
}

.scroll i {
  position: relative;
  display: block;
  width: 1px;
  height: 72px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(-100%);
  }

  60%,
  100% {
    transform: translateY(100%);
  }
}

.intro {
  padding-block: 130px 120px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
}

.section-label span {
  color: var(--warm);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 110px;
  padding-top: 72px;
}

h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.48;
}

.intro h2 {
  margin-top: 20px;
}

.intro-copy {
  padding-top: 6px;
}

.intro-copy p {
  color: #4f5b54;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 2.35;
}

.intro-copy p + p {
  margin-top: 22px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats > div {
  padding: 42px 44px;
}

.stats > div + div {
  border-left: 1px solid var(--line);
}

.stats strong {
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 400;
}

.stats span {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
}

.stats p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.strength-section {
  background: var(--forest);
  color: var(--white);
}

.strength-inner {
  padding-block: 120px 130px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(34px, 3.5vw, 50px);
}

.section-heading > p,
.heading-note {
  color: rgba(255, 255, 255, 0.62);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2;
}

.strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.strength-card {
  padding: 38px 40px 20px;
}

.strength-card + .strength-card {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.strength-card > span {
  color: #ccba9f;
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.strength-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 34px;
}

.strength-card-top > span {
  color: #ccba9f;
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.strength-icon {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.strength-card h3 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.strength-card p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 2;
}

.works-section {
  padding-block: 130px 140px;
}

.works-section .section-heading h2,
.voice-section .section-heading h2 {
  color: var(--ink);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  min-width: 188px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
  margin-top: 62px;
}

.work-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  transition: transform 0.4s ease;
}

.work-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-card:hover {
  transform: translateY(-6px);
}

.work-card:hover .work-image {
  transform: scale(1.035);
}

.work-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 42%, rgba(10, 22, 15, 0.78));
}

.work-number {
  position: absolute;
  top: 28px;
  left: 28px;
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.work-content {
  position: absolute;
  right: 30px;
  bottom: 34px;
  left: 30px;
}

.work-content p {
  font-size: 10px;
  letter-spacing: 0.15em;
}

.work-content h3 {
  margin-top: 12px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.work-content small {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.work-arrow {
  position: absolute;
  right: 26px;
  top: 24px;
  font-size: 20px;
}

.voice-section {
  padding-block: 128px 138px;
  background: var(--sand);
}

.voice-section .section-heading > p {
  color: var(--muted);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 62px;
}

.voice-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 34px 36px 30px;
  background: var(--white);
}

.voice-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.voice-avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(36, 70, 56, 0.1);
}

.voice-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8d948f;
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.7;
  text-align: right;
}

.voice-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--warm);
}

.voice-quote {
  margin-top: 24px;
  color: #414d46;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  letter-spacing: 0.07em;
  line-height: 2.15;
}

.voice-person {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.voice-person > span {
  color: var(--warm);
  font-family: Georgia, serif;
  font-size: 13px;
}

.voice-person div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.voice-person strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  font-weight: 600;
}

.voice-person small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.process-section {
  padding-block: 130px 140px;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  padding-top: 70px;
}

.process-grid h2 {
  margin-top: 18px;
  font-size: clamp(31px, 3.1vw, 42px);
}

@media (min-width: 901px) {
  .process-grid h2 {
    white-space: nowrap;
  }
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--warm);
  font-family: Georgia, serif;
  font-size: 12px;
}

.process-list h3 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.process-list p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 126px 40px;
  background: var(--deep-forest);
  color: var(--white);
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
}

.contact-section::before {
  left: -170px;
  top: -140px;
}

.contact-section::after {
  right: -170px;
  bottom: -140px;
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 40px;
}

.contact-section h2 {
  margin-top: 20px;
  font-size: clamp(38px, 4.5vw, 58px);
}

.contact-copy > p:not(.eyebrow) {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2;
}

.contact-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 42px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.contact-phone:hover {
  background: var(--white);
  color: var(--ink);
}

.contact-phone span {
  font-size: 13px;
  letter-spacing: 0.12em;
}

.contact-phone b {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.contact-phone small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.contact-phone:hover small {
  color: var(--muted);
}

.contact-form {
  padding: 48px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.form-heading > span {
  color: var(--warm);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.form-heading p {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}

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

.form-row label {
  display: grid;
  gap: 10px;
}

.form-row label > span {
  color: #39443e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.form-row label b,
.privacy-check b {
  margin-left: 6px;
  color: #9b5e43;
  font-size: 9px;
  font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #d8dcd9;
  border-radius: 0;
  background: #faf9f6;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-row input,
.form-row select {
  height: 52px;
  padding: 0 14px;
}

.form-row textarea {
  min-height: 140px;
  padding: 14px;
  line-height: 1.8;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 2px rgba(36, 70, 56, 0.1);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #9aa19d;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--forest);
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 62px;
  margin-top: 28px;
  padding: 0 26px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--white);
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.form-submit:hover {
  background: var(--white);
  color: var(--forest);
}

.form-demo-note {
  margin-top: 14px;
  color: #8b928e;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

.form-success {
  margin-top: 18px;
  padding: 14px 16px;
  background: #eef4f0;
  color: var(--forest);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: end;
  padding: 72px max(5vw, calc((100vw - 1180px) / 2));
}

.footer-logo img {
  width: 272px;
  height: 90px;
}

footer > p {
  justify-self: end;
  color: var(--muted);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  letter-spacing: 0.09em;
}

footer nav {
  display: flex;
  gap: 28px;
  font-size: 11px;
  letter-spacing: 0.06em;
}

footer > small {
  justify-self: end;
  color: #929a95;
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.12em;
}

@media (max-width: 900px) {
  .section {
    width: min(100% - 48px, 680px);
  }

  .site-header {
    width: calc(100% - 40px);
    height: 88px;
    grid-template-columns: 1fr auto;
  }

  .global-nav {
    display: none;
  }

  .header-cta {
    width: 86px;
    height: 40px;
  }

  .hero {
    min-height: 720px;
    max-height: 820px;
    background-position: 57% center;
  }

  .hero-content {
    left: 32px;
    right: 24px;
  }

  .hero h1 {
    font-size: clamp(46px, 11vw, 68px);
  }

  .scroll {
    right: 20px;
  }

  .intro-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .stats {
    margin-top: 60px;
  }

  .stats > div {
    padding: 30px 20px;
  }

  .stats strong {
    font-size: 44px;
  }

  .strengths,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .strength-card {
    padding: 38px 0;
  }

  .strength-card + .strength-card {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .strength-icon {
    width: 104px;
    height: 104px;
  }

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

  .work-card:first-child {
    grid-column: 1 / -1;
  }

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

  .section-heading {
    align-items: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-copy {
    position: static;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  footer > p,
  footer > small {
    justify-self: start;
  }

  footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .section {
    width: calc(100% - 40px);
  }

  .brand {
    gap: 10px;
  }

  .brand-image img {
    width: 190px;
    height: 63px;
  }

  .hero {
    min-height: 650px;
    height: calc(100svh - 38px);
    max-height: 730px;
    background-position: 64% center;
  }

  .demo-notice {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 9px;
    letter-spacing: 0.02em;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(11, 25, 17, 0.2);
  }

  .hero-content {
    top: 50%;
    left: 24px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: 43px;
    letter-spacing: 0.05em;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 13px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
  }

  .button {
    min-height: 56px;
  }

  .scroll {
    right: 20px;
    display: flex;
    gap: 10px;
  }

  .scroll i {
    height: 48px;
  }

  .intro,
  .works-section,
  .process-section {
    padding-block: 90px;
  }

  .strength-inner,
  .voice-section {
    padding-block: 90px;
  }

  h2 {
    font-size: 34px;
  }

  .intro-grid {
    padding-top: 48px;
  }

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

  .stats > div {
    display: grid;
    grid-template-columns: 90px 32px 1fr;
    align-items: baseline;
    padding: 24px 12px;
  }

  .stats > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stats strong {
    font-size: 40px;
  }

  .stats p {
    margin-top: 0;
  }

  .section-heading {
    flex-direction: column;
    gap: 30px;
  }

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

  .work-card:first-child {
    grid-column: auto;
  }

  .work-card {
    min-height: 390px;
  }

  .voice-card {
    min-height: 350px;
  }

  .process-grid {
    padding-top: 50px;
  }

  .process-list li {
    grid-template-columns: 38px 1fr;
    gap: 15px;
  }

  .contact-section {
    padding: 90px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-copy {
    position: static;
  }

  .contact-section h2 {
    font-size: 34px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-heading {
    flex-direction: column;
  }

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

  .footer-logo img {
    width: 230px;
    height: 76px;
  }

  footer {
    padding: 56px 24px;
  }
}

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

  * {
    transition: none !important;
    animation: none !important;
  }
}
