:root {
  --blue: #681116;
  --blue-dark: #430609;
  --blue-soft: #fff2ee;
  --orange: #c77a58;
  --orange-dark: #9f4a38;
  --text: #342925;
  --muted: #766761;
  --line: #eadbd5;
  --bg: #fff8f4;
  --white: #fff;
  --shadow: 0 14px 34px rgba(87, 22, 18, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  background: #fffdfb;
  letter-spacing: 0;
  overflow-x: clip;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 252, 249, .96);
  border-bottom: 1px solid rgba(104, 17, 22, .1);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  gap: 24px;
}

.logo-link {
  flex: 0 0 auto;
  display: block;
  width: min(300px, 100%);
  max-width: 100%;
}

.logo-link img {
  width: 100%;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.global-nav a {
  position: relative;
  padding: 27px 0;
}

.global-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  background: var(--orange);
  border-radius: 99px;
  content: "";
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity .2s ease, transform .2s ease;
}

.global-nav a:hover::after,
.global-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(104, 17, 22, .2);
  border-radius: 8px;
  color: var(--blue);
  background: #fffdfb;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(87, 22, 18, .08);
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span:not(.sr-only):nth-child(1) {
  transform: translateY(-8px);
}

.menu-toggle span:not(.sr-only):nth-child(3) {
  transform: translateY(8px);
}

.site-header.is-menu-open .menu-toggle span:not(.sr-only):nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:not(.sr-only):nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:not(.sr-only):nth-child(3) {
  transform: rotate(-45deg);
}

.header-cta,
.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  gap: 9px;
  border-radius: 7px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(180deg, #8a252b 0%, var(--blue) 100%);
  box-shadow: 0 10px 24px rgba(104, 17, 22, .18);
  white-space: nowrap;
}

.mail-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background: url("../img/icon-mail.svg") center / contain no-repeat;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 248, 244, 1) 0%, rgba(255, 248, 244, .96) 36%, rgba(255, 248, 244, .72) 56%, rgba(255, 248, 244, .18) 78%, rgba(255, 248, 244, 0) 100%);
  content: "";
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 64px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 54px;
  line-height: 1.45;
  font-weight: 900;
}

.hero h1 span {
  color: var(--orange);
}

.hero-lead {
  margin: 18px 0 14px;
  color: #4a2b27;
  font-size: 25px;
  font-weight: 800;
}

.hero-copy {
  max-width: 565px;
  margin: 0;
  color: #59423d;
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(520px, 100%);
  gap: 12px;
  margin: 32px 0 24px;
}

.hero-stats div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 92px;
  padding: 16px;
  background: rgba(255, 253, 251, .96);
  border: 1px solid rgba(104, 17, 22, .11);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-stats img {
  grid-row: span 2;
  width: 34px;
}

.hero-stats p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-stats strong {
  color: var(--orange);
  font-size: 25px;
  line-height: 1;
}

.hero-stats span {
  margin-left: 2px;
  color: var(--text);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 64px;
  padding: 0 28px;
  border-radius: 7px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button::after {
  margin-left: 18px;
  font-size: 24px;
  line-height: 1;
  content: "›";
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, #8b252b 0%, var(--blue) 100%);
  box-shadow: 0 12px 28px rgba(104, 17, 22, .18);
}

.button-outline {
  color: var(--blue);
  background: rgba(255, 253, 251, .92);
  border: 2px solid var(--blue);
}

.section {
  padding: 86px 0;
}

.section-tint {
  background: linear-gradient(180deg, #fffdfb 0%, #fff2ee 100%);
}

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

.section-heading h2,
.content-title {
  margin: 0;
  color: var(--blue-dark);
  font-size: 34px;
  line-height: 1.45;
  font-weight: 900;
}

.section-heading h2::after {
  display: block;
  width: 52px;
  height: 4px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, var(--blue) 0 45%, #ddb49f 45% 100%);
  border-radius: 99px;
  content: "";
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.reason-card {
  min-height: 330px;
  padding: 28px 24px 26px;
  text-align: center;
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reason-number {
  margin: 0;
  color: var(--blue);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.reason-card img {
  width: 66px;
  height: 66px;
  margin: 18px auto 14px;
}

.reason-card h3 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 900;
}

.reason-card p:not(.reason-number) {
  margin: 0;
  color: #5f4c46;
  font-size: 14px;
  line-height: 1.85;
  text-align: left;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.industry-card {
  position: relative;
  padding-bottom: 28px;
}

.industry-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.industry-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -18px;
  padding-left: 5px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.industry-label span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 4px solid #f1ddd2;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(87, 22, 18, .12);
}

.industry-label img {
  width: 40px;
  height: 40px;
}

.industry-note,
.sub-note {
  margin: 16px 0 0;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.message-band {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.message-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 247, .97) 0%, rgba(255, 250, 247, .88) 36%, rgba(255, 250, 247, .2) 74%, rgba(255, 250, 247, 0) 100%);
  content: "";
}

.message-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.message-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
}

.message-content h2 {
  max-width: 600px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 36px;
  line-height: 1.45;
  font-weight: 900;
}

.message-content p:not(.section-kicker) {
  max-width: 610px;
  margin: 0 0 12px;
  color: #4f3833;
  font-weight: 700;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.worry-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  min-height: 170px;
  padding: 18px;
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.worry-card img {
  width: 82px;
  height: 82px;
  align-self: center;
}

.worry-card h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
}

.worry-card p {
  margin: 0;
  color: #5f4c46;
  font-size: 14px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(104, 17, 22, .96), rgba(67, 6, 9, .96)),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: auto, 70px 100%;
}

.cta-band::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .12), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 72px);
  content: "";
  opacity: .7;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  min-height: 310px;
  margin: 0 auto;
  gap: 42px;
  padding: 54px 0;
}

.cta-copy {
  max-width: 720px;
}

.cta-copy h2 {
  margin: 0 0 14px;
  font-size: 29px;
  line-height: 1.65;
  font-weight: 900;
}

.cta-copy p {
  margin: 0 0 22px;
  font-weight: 700;
}

.cta-photos {
  position: relative;
  width: 360px;
  height: 225px;
  flex: 0 0 360px;
}

.photo {
  position: absolute;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(50, 9, 9, .22);
}

.photo-large {
  top: -20px;
  left: 95px;
  width: 152px;
  height: 152px;
}

.photo-small {
  width: 118px;
  height: 118px;
}

.photo-one {
  left: 0;
  bottom: 2px;
}

.photo-two {
  right: 0;
  bottom: 14px;
}

.cta-band.compact .cta-inner {
  min-height: 240px;
}

.page-hero {
  padding: 76px 0;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(67, 6, 9, .96), rgba(104, 17, 22, .82)),
    url("../img/hero.jpg") center right / cover;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.35;
  font-weight: 900;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  font-weight: 700;
}

.page-hero .section-kicker {
  color: #f1c6b2;
}

.two-column {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.prose p,
.feature-panel p,
.service-body p,
.case-card p,
.contact-intro p {
  margin: 0 0 14px;
  color: #58443f;
  font-weight: 600;
}

.table-wrap {
  overflow-x: auto;
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.company-table th,
.company-table td {
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: 0;
}

.company-table th {
  width: 220px;
  color: var(--blue);
  background: #fff2ee;
  font-weight: 900;
}

.feature-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-panel,
.service-card,
.case-card,
.contact-form,
.contact-photo-panel {
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-panel {
  padding: 34px;
}

.feature-panel h2,
.service-body h2,
.case-card h2,
.contact-intro h2 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 28px;
  line-height: 1.5;
  font-weight: 900;
}

.service-list .container {
  display: grid;
  gap: 26px;
}

.service-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 34px;
  scroll-margin-top: 110px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  background: #fff2ee;
  border-radius: 50%;
}

.service-icon img {
  width: 62px;
  height: 62px;
}

.service-body h3 {
  margin: 22px 0 10px;
  color: var(--blue);
  font-size: 19px;
  font-weight: 900;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #58443f;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: .55em;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 4px;
  top: calc(.55em + 3px);
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  content: "";
  transform: rotate(-45deg);
}

.case-grid {
  display: grid;
  gap: 28px;
}

.case-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
  overflow: hidden;
}

.case-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.case-card > div {
  padding: 34px 34px 34px 0;
}

.case-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 12px;
  padding: 0 14px;
  color: var(--blue);
  background: #fff2ee;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 900;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-card {
  min-height: 180px;
  padding: 28px 20px;
  text-align: center;
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-card p {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 900;
}

.stat-card strong {
  display: block;
  color: var(--orange);
  font-size: 48px;
  line-height: 1.15;
}

.stat-card strong span {
  margin-left: 3px;
  color: var(--text);
  font-size: 18px;
}

.stat-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-photo-panel {
  margin: 24px 0;
  overflow: hidden;
}

.contact-photo-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-message {
  padding: 22px 24px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
}

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

.contact-form span {
  color: var(--blue-dark);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dfcec8;
  border-radius: 7px;
  color: var(--text);
  background: #fffaf7;
}

.form-hidden {
  display: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(104, 17, 22, .12);
}

.contact-form.is-validated input:invalid,
.contact-form.is-validated textarea:invalid {
  border-color: #f4a15d;
}

.form-status {
  min-height: 1.7em;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.form-status.is-error {
  color: #b64014;
}

.form-status.is-success {
  color: #0a6c3a;
}

.form-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-button:disabled {
  cursor: wait;
  opacity: .78;
}

.site-footer {
  color: var(--blue-dark);
  background: linear-gradient(180deg, #fff8f4 0%, #f6e7df 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr .8fr 1fr 1.2fr;
  gap: 34px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 34px;
}

.footer-brand img {
  width: 300px;
  max-width: 100%;
}

.footer-brand p {
  margin: 22px 0 0;
  font-weight: 800;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 900;
}

.footer-links a,
.footer-contact p {
  margin: 0;
  color: #6d5650;
  font-size: 14px;
  font-weight: 700;
}

.footer-button {
  width: fit-content;
  margin-top: 8px;
}

.copyright {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid rgba(104, 17, 22, .14);
  color: #7c625c;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  .global-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 24px;
  }

  .global-nav a {
    padding: 6px 0 10px;
  }

  .global-nav a::after {
    bottom: 2px;
  }

  .reason-grid,
  .industry-grid,
  .worry-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner,
  .contact-layout,
  .two-column {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    display: grid;
  }

  .cta-photos {
    width: 340px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .container,
  .header-inner,
  .hero-content,
  .message-content,
  .cta-inner,
  .footer-inner,
  .copyright {
    width: min(100% - 40px, 1120px);
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
  }

  .logo-link img {
    width: 100%;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    justify-self: end;
  }

  .header-cta {
    display: none;
    grid-column: 1 / -1;
    order: 4;
    width: 100%;
  }

  .global-nav {
    display: none;
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 0;
    color: var(--blue-dark);
    font-size: 15px;
    background: #fffdfb;
    border: 1px solid rgba(104, 17, 22, .14);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.is-menu-open .global-nav {
    display: flex;
  }

  .site-header.is-menu-open .header-cta {
    display: inline-flex;
  }

  .global-nav a {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(104, 17, 22, .08);
  }

  .global-nav a:last-child {
    border-bottom: 0;
  }

  .global-nav a.is-active {
    color: var(--blue);
    background: #fff2ee;
  }

  .global-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    background: var(--bg);
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(255, 248, 244, .94) 0%, rgba(255, 248, 244, .96) 72%, rgba(255, 248, 244, 1) 100%);
  }

  .hero-image {
    height: 360px;
    object-position: 65% center;
    opacity: .42;
  }

  .hero-content {
    padding: 46px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 21px;
  }

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

  .hero-stats div {
    grid-template-columns: 54px 1fr;
  }

  .hero-stats img {
    width: 44px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .content-title,
  .message-content h2 {
    font-size: 28px;
  }

  .reason-grid,
  .industry-grid,
  .worry-grid,
  .stats-grid,
  .feature-block {
    grid-template-columns: 1fr;
  }

  .message-band {
    min-height: auto;
  }

  .message-band > img {
    position: relative;
    height: 230px;
  }

  .message-band::after {
    display: none;
  }

  .message-content {
    padding: 34px 0 44px;
  }

  .worry-card {
    grid-template-columns: 78px 1fr;
  }

  .cta-copy h2 {
    font-size: 23px;
  }

  .cta-photos {
    width: 280px;
    height: 190px;
  }

  .photo-large {
    left: 75px;
    width: 130px;
    height: 130px;
  }

  .photo-small {
    width: 98px;
    height: 98px;
  }

  .page-hero {
    padding: 54px 0;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .service-card,
  .case-card,
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-card,
  .feature-panel,
  .contact-form {
    padding: 24px;
  }

  .service-icon {
    width: 78px;
    height: 78px;
  }

  .service-icon img {
    width: 52px;
    height: 52px;
  }

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

  .case-card img {
    height: 190px;
    min-height: 0;
  }

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

  .case-card > div {
    padding: 24px;
  }

  .company-table {
    min-width: 560px;
  }

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

@media (max-width: 480px) {
  .case-card img {
    height: 168px;
  }
}
