:root {
  --primary: #1e2761;
  --primary-dark: #12183e;
  --accent: #b68945;
  --sub: #ede6d8;
  --base: #fafafa;
  --text: #1a1a1a;
  --muted: #66615b;
  --paper: #ffffff;
  --line: #d8cdb8;
  --sand-deep: #d9cfbd;
  --line-green: #06c755;
  --shadow: 0 16px 36px rgba(30, 39, 97, 0.08);
  --radius: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--base);
  font-family: "Noto Sans JP", "Yu Gothic", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
}

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

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

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

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

h1,
h2,
h3 {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 12px 48px;
  background: rgba(250, 250, 250, 0.95);
  border-bottom: 1px solid rgba(182, 137, 69, 0.35);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 204px;
  color: var(--primary);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid rgba(182, 137, 69, 0.45);
  border-radius: 10px;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: #413f3c;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

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

.global-nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.header-phone svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.header-phone strong,
.header-phone small {
  display: block;
}

.header-phone strong {
  font-size: 1.15rem;
}

.header-phone small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
}

.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.mobile-header-actions a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 50%;
}

.mobile-header-actions svg {
  width: 20px;
  height: 20px;
}

.mobile-header-line {
  color: #fff;
  background: var(--line-green);
}

.mobile-header-phone {
  color: var(--primary);
  background: #fff;
  border-color: rgba(30, 39, 97, 0.28) !important;
}

.mobile-menu {
  display: none;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.94rem;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
}

.button:hover,
.method:hover,
.topic-card a:hover {
  transform: translateY(-1px);
}

.button-large {
  gap: 10px;
  min-height: 66px;
  padding: 0 26px;
  font-size: 1rem;
}

.button-label {
  display: grid;
  gap: 3px;
}

.button-label small {
  font-size: 0.72rem;
  font-weight: 700;
}

.button-primary {
  color: #fff;
  background: var(--primary);
}

.button-line {
  color: #fff;
  background: var(--line-green);
}

.button-accent {
  color: #fff;
  background: var(--accent);
}

.button-outline {
  color: var(--primary);
  background: #fff;
  border-color: rgba(30, 39, 97, 0.28);
}

.hero {
  position: relative;
  min-height: 740px;
  color: var(--text);
  background: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(46vw, 640px);
  border-radius: 0 0 0 96px;
  background: var(--sub);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: var(--max);
  min-height: 740px;
  margin: 0 auto;
  padding: 72px 52px 82px;
}

.hero-copy {
  max-width: 690px;
  position: relative;
  z-index: 2;
}

.section-kicker,
.topic-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 4rem;
  line-height: 1.18;
  letter-spacing: 0;
  color: var(--primary);
}

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

.hero h1 span::after {
  content: "";
  position: absolute;
  right: -0.08em;
  bottom: 0.06em;
  left: -0.08em;
  z-index: -1;
  height: 0.3em;
  background: var(--accent);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 700;
}

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

.hero-media {
  position: relative;
  min-height: 590px;
}

.photo-stack {
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(30, 39, 97, 0.14);
}

.photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-stack-main {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 600px);
  height: 380px;
  transform: rotate(2deg);
}

.photo-stack-sub {
  position: absolute;
  height: 170px;
}

.photo-one {
  bottom: 54px;
  left: 6px;
  width: 290px;
  transform: rotate(-2deg);
}

.photo-two {
  right: 56px;
  bottom: 24px;
  width: 300px;
  transform: rotate(2deg);
}

.hero-card-logo {
  position: absolute;
  top: 266px;
  right: -18px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 176px;
  min-height: 176px;
  padding: 22px;
  border: 2px solid var(--accent);
  border-radius: 30px 8px 30px 8px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  box-shadow: 0 22px 46px rgba(30, 39, 97, 0.28);
}

.hero-card-logo img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
}

.hero-card-logo strong {
  font-size: 1.45rem;
  letter-spacing: 0.12em;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  padding: 0 max(24px, calc((100% - var(--max)) / 2));
  color: #fff;
  background: var(--primary);
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 22px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  color: #fff;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.45;
}

.trust-strip svg {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  color: var(--accent);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 52px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.movie-copy h2,
.message-copy h2,
.contact-copy h2 {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 2.5rem;
  line-height: 1.34;
}

.section-heading p:not(.section-kicker),
.movie-copy p,
.message-copy p,
.contact-copy p {
  color: var(--muted);
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-card {
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(182, 137, 69, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.topic-primary {
  background: var(--sub);
  border-color: rgba(182, 137, 69, 0.5);
}

.topic-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  font-weight: 900;
}

.topic-card h3 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.34rem;
  line-height: 1.45;
}

.topic-card p {
  margin-bottom: 16px;
  color: var(--muted);
}

.topic-card a {
  align-self: end;
  justify-self: start;
  color: var(--accent);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.slider-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.slider-nav {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 900;
}

.slider-nav:disabled {
  cursor: default;
  opacity: 0.32;
}

.slider-status {
  min-width: 64px;
  color: var(--primary);
  font-weight: 900;
  text-align: center;
}

.services-section {
  position: relative;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  background: url("../images/local-house.jpg") center / cover fixed;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 250, 250, 0.9);
}

.services-section > .section-heading,
.service-cards {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
  padding-right: 52px;
  padding-left: 52px;
}

.services-section > .slider-controls {
  position: relative;
  z-index: 1;
}

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

.service-card {
  min-height: 310px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(182, 137, 69, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1.7rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.movie-section {
  padding: 92px 52px;
  background: var(--primary);
}

.movie-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.movie-copy h2,
.movie-copy p {
  color: #fff;
}

.movie-copy .section-kicker {
  color: #d6b178;
}

.movie-frame {
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(182, 137, 69, 0.7);
  border-radius: var(--radius);
}

.movie-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
}

.movie-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  color: #fff;
  background: url("../images/office-monument.png") center / cover;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}

.movie-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 62, 0.58);
}

.movie-placeholder span,
.movie-placeholder strong {
  position: relative;
  z-index: 1;
  display: block;
}

.movie-placeholder span {
  color: #e7d3b5;
  font-size: 0.86rem;
  font-weight: 900;
}

.movie-placeholder strong {
  font-size: 1.35rem;
}

.message-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  max-width: 1280px;
  margin: 0 auto;
  background: var(--sub);
}

.message-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
}

.message-copy {
  align-self: center;
  padding: 58px;
}

.message-copy p {
  color: #4f4a43;
}

.company-section {
  padding-bottom: 78px;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(350px, 0.78fr);
  gap: 32px;
  align-items: start;
}

.company-table {
  display: grid;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.company-table div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.company-table span,
.company-table strong {
  padding: 16px 18px;
}

.company-table span {
  color: var(--primary);
  background: var(--sub);
  font-weight: 900;
}

.company-table strong {
  background: #fff;
  font-weight: 700;
}

.access-panel {
  display: grid;
  gap: 0;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(182, 137, 69, 0.34);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.access-panel img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(0.82);
}

.access-panel div {
  padding: 24px;
}

.access-panel h3 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.28rem;
}

.access-panel p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--paper);
  border: 1px solid rgba(182, 137, 69, 0.28);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--primary);
  font-weight: 900;
  line-height: 1.55;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  padding: 92px 52px;
  background: var(--sub);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 62px;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-copy {
  align-self: start;
  position: sticky;
  top: 104px;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.method {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 14px 18px;
  color: var(--primary);
  background: #fff;
  border: 1px solid rgba(182, 137, 69, 0.32);
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 160ms ease;
}

.method img {
  width: 34px;
  height: 34px;
}

.method small {
  display: block;
  min-width: 44px;
  color: var(--muted);
  font-weight: 900;
}

.method-muted {
  color: #5b5348;
  background: #fbf8f2;
}

.method-line {
  color: #fff;
  background: var(--line-green);
  border-color: var(--line-green);
}

.method-line img {
  padding: 4px;
  background: #fff;
  border-radius: 50%;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(182, 137, 69, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.google-form-panel {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(182, 137, 69, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.google-form-frame {
  display: block;
  width: 100%;
  height: 1500px;
  border: 0;
  background: #fff;
}

.google-form-fallback {
  margin: 0;
  padding: 16px 24px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.google-form-fallback a {
  color: var(--primary);
  border-bottom: 1px solid currentColor;
}

.form-note,
.reply-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 900;
}

.contact-form em,
.contact-preference em {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-left: 6px;
  padding: 0 7px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--text);
  background: #fffdfa;
  border: 1px solid #c7b99f;
  border-radius: 10px;
}

.contact-preference {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-preference legend {
  grid-column: 1 / -1;
  margin-bottom: 7px;
  color: var(--text);
  font-weight: 900;
}

.contact-preference label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  background: #fffdfa;
  border: 1px solid #c7b99f;
  border-radius: 10px;
  font-weight: 900;
}

.contact-preference input {
  width: 18px;
  height: 18px;
}

.contact-form textarea {
  resize: vertical;
}

.agree {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
  font-size: 0.94rem;
}

.agree input {
  width: 18px;
  height: 18px;
}

.agree a {
  color: var(--primary);
  border-bottom: 1px solid currentColor;
}

.privacy-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px 52px 76px;
  color: var(--muted);
}

.privacy-section h2 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.35rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  gap: 30px;
  padding: 42px 52px;
  color: #e9e5dc;
  background: var(--primary-dark);
}

.site-footer img {
  width: 124px;
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid var(--accent);
  border-radius: 10px;
}

.site-footer p {
  margin: 0;
  color: #d6cfbf;
  font-size: 0.92rem;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px 18px;
  align-content: flex-start;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-line-link {
  color: #5ee284;
}

.footer-partner-banner {
  grid-column: 1 / -1;
  justify-self: end;
  line-height: 0;
}

.footer-partner-banner img {
  width: min(240px, 100%);
  margin: 0;
  border: 0;
  border-radius: 4px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1120px) {
  .site-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .global-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(30, 39, 97, 0.28);
    border-radius: 50%;
    font-weight: 900;
    list-style: none;
    cursor: pointer;
  }

  .menu-icon {
    font-size: 1.35rem;
    line-height: 1;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .mobile-menu nav a {
    padding: 12px 15px;
    border-bottom: 1px solid var(--line);
    font-weight: 900;
  }

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

  .hero-inner,
  .movie-inner,
  .message-section,
  .company-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero::before {
    top: auto;
    width: 100%;
    height: 46%;
    border-radius: 80px 0 0;
  }

  .hero-media {
    min-height: 520px;
  }

  .topic-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .message-copy {
    order: -1;
  }

  .message-photo img {
    height: 390px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
    font-size: 1rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    display: none;
  }

  .mobile-header-actions {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 58px 20px 72px;
  }

  .hero h1 {
    font-size: 2.42rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .hero-media {
    min-height: 500px;
    width: 100%;
    overflow: hidden;
  }

  .photo-stack-main {
    left: 0;
    right: auto;
    width: 100%;
    height: 280px;
    transform: none;
  }

  .photo-one {
    bottom: 72px;
    width: 55%;
    transform: none;
  }

  .photo-two {
    right: 0;
    bottom: 0;
    width: 58%;
    transform: none;
  }

  .hero-card-logo {
    top: 214px;
    right: auto;
    left: min(216px, calc(100% - 150px));
    width: 142px;
    min-height: 142px;
    padding: 16px;
  }

  .hero-card-logo img {
    width: 46px;
    height: 46px;
  }

  .hero-card-logo strong {
    font-size: 1rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .movie-section,
  .contact-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading h2,
  .movie-copy h2,
  .message-copy h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

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

  .topic-card {
    min-height: auto;
  }

  .services-section > .section-heading,
  .service-cards {
    padding-right: 20px;
    padding-left: 20px;
  }

  .services-section {
    background-attachment: scroll;
  }

  .movie-inner {
    gap: 28px;
  }

  .message-copy {
    padding: 42px 20px;
  }

  .message-photo img {
    height: 320px;
  }

  .company-table div {
    grid-template-columns: 1fr;
  }

  .company-table span {
    padding-bottom: 7px;
  }

  .company-table strong {
    padding-top: 7px;
  }

  .contact-form {
    padding: 22px;
  }

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

  .privacy-section,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 92px;
  }

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

  .footer-partner-banner {
    justify-self: start;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: none;
    grid-template-columns: 1fr 1fr;
    padding-bottom: env(safe-area-inset-bottom);
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 26px rgba(18, 24, 62, 0.12);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    color: #fff;
    background: var(--line-green);
  }
}

@media (max-width: 640px) {
  .topic-list,
  .service-cards {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    grid-template-columns: none;
    gap: 14px;
    margin-right: -20px;
    margin-left: -20px;
    padding: 8px 20px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 20px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .topic-list::-webkit-scrollbar,
  .service-cards::-webkit-scrollbar {
    display: none;
  }

  .topic-card,
  .service-card {
    min-height: 300px;
    scroll-snap-align: start;
  }

  .slider-controls {
    display: flex;
  }

  .google-form-frame {
    height: 1600px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.18rem;
  }

  .button {
    white-space: normal;
  }
}
