:root {
  --green: #75bd1d;
  --green-dark: #2f6f12;
  --green-soft: #eff8e8;
  --orange: #d96f08;
  --orange-soft: #fff4e8;
  --ink: #17210f;
  --text: #263222;
  --muted: #66715f;
  --line: #dde7d4;
  --paper: #fbfaf6;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(47, 111, 18, 0.1);
  --max: 1180px;
  --space: clamp(1rem, 2.4vw, 2rem);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 5%, rgba(117, 189, 29, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(217, 111, 8, 0.1), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 38%, #f5f9f0 100%);
  color: var(--text);
  font-family:
    "Noto Sans SC",
    "PingFang SC",
    "Microsoft YaHei",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

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

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-200%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(260px, 330px) 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
  padding: 0.75rem max(var(--space), calc((100vw - var(--max)) / 2 + var(--space)));
  border-bottom: 1px solid rgba(221, 231, 212, 0.95);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(23, 33, 15, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(47, 111, 18, 0.18);
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: clamp(1rem, 2.2vw, 2rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding-block: 0.35rem;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transition: width 180ms ease;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.lang-toggle {
  display: inline-grid;
  min-width: 56px;
  min-height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.lang-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) var(--space) clamp(2rem, 5vw, 4rem);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  max-width: 980px;
  margin-bottom: 1.5rem;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-kicker span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-kicker span::before {
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  border-radius: 50%;
  background: var(--green);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.hero-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.eyebrow,
.section-label,
.case-type {
  margin: 0 0 0.75rem;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label.light {
  color: #dff3cf;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(2.55rem, 5vw, 4.35rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.7vw, 3.15rem);
  font-weight: 820;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.hero-lede {
  max-width: 710px;
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
}

.hero-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  max-width: 760px;
  margin: 0 0 1.7rem;
}

.hero-service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(117, 189, 29, 0.36);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(47, 111, 18, 0.16);
}

.button-primary {
  background: var(--green-dark);
  color: var(--white);
}

.button-ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--green-dark);
}

.button-primary.invert {
  background: var(--white);
  color: var(--green-dark);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(23, 33, 15, 0.08), rgba(23, 33, 15, 0.54)),
    linear-gradient(90deg, rgba(47, 111, 18, 0.3), transparent 52%);
}

.hero-visual::after {
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  width: 4rem;
  height: 4rem;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, #b8ec7e 0 10%, transparent 11%),
    radial-gradient(circle at 58% 14%, #b8ec7e 0 8%, transparent 9%),
    radial-gradient(circle at 76% 31%, #b8ec7e 0 7%, transparent 8%),
    radial-gradient(ellipse at 52% 68%, #b8ec7e 0 31%, transparent 32%);
  opacity: 0.92;
}

.hero-visual-card {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  max-width: 25rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  background: rgba(23, 33, 15, 0.72);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero-visual-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: #dff3cf;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual-card p {
  margin: 0;
  color: #f4faee;
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-photo-inset {
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  z-index: 3;
  width: min(42%, 210px);
  margin: 0;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-photo-inset img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.hero-photo-inset figcaption {
  padding: 0.65rem;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) var(--space);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.intro p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space) clamp(2.5rem, 5vw, 4rem);
}

.stats article {
  min-height: 150px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(23, 33, 15, 0.05);
}

.stats span {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--orange);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stats p {
  max-width: 18rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 650;
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: start;
}

.visual-story .section-heading p:not(.section-label) {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.visual-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(23, 33, 15, 0.05);
}

.visual-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 36%, rgba(23, 33, 15, 0.68)),
    linear-gradient(130deg, rgba(117, 189, 29, 0.18), transparent 44%);
  pointer-events: none;
}

.visual-card-large {
  grid-row: span 2;
}

.visual-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.01);
}

.visual-card-large img {
  height: 100%;
  min-height: 472px;
}

.visual-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(23, 33, 15, 0.62);
  color: var(--white);
  backdrop-filter: blur(12px);
  font-size: 0.95rem;
  font-weight: 650;
}

.audience,
.strengths {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: start;
}

.audience .section-heading p:not(.section-label) {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1rem;
}

.audience-grid,
.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.audience-card,
.strength-card {
  position: relative;
  min-height: 210px;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 33, 15, 0.05);
}

.audience-card::after,
.strength-card::after {
  position: absolute;
  right: -2.3rem;
  bottom: -2.3rem;
  width: 7.5rem;
  height: 7.5rem;
  content: "";
  border-radius: 50%;
  background: rgba(117, 189, 29, 0.1);
}

.audience-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 850;
}

.audience-card p,
.strength-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.strengths {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.strength-card {
  min-height: 190px;
  background:
    linear-gradient(180deg, rgba(239, 248, 232, 0.75), transparent 58%),
    var(--white);
}

.strength-card span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-section,
.proof-section,
.team,
.faq {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 104px;
  align-self: start;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 220px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 33, 15, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(117, 189, 29, 0.58);
  box-shadow: 0 22px 45px rgba(47, 111, 18, 0.1);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 5.5rem) max(var(--space), calc((100vw - var(--max)) / 2 + var(--space)));
  background:
    radial-gradient(circle at 90% 10%, rgba(117, 189, 29, 0.22), transparent 22rem),
    linear-gradient(140deg, #315f19 0%, #234712 56%, #17330d 100%);
  color: var(--white);
}

.feature-band h2 {
  color: var(--white);
}

.feature-copy p:not(.section-label) {
  max-width: 42rem;
  color: #e7f4de;
  font-size: 1.03rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.process-grid article {
  min-height: 180px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: #b7ed84;
  font-size: 0.86rem;
  font-weight: 850;
}

.process-grid h3 {
  color: var(--white);
}

.process-grid p {
  margin-bottom: 0;
  color: #e7f4de;
  font-size: 0.96rem;
}

.case-grid {
  display: grid;
  gap: 1rem;
}

.case-card {
  position: relative;
  padding: 1.35rem 1.35rem 1.35rem 1.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 33, 15, 0.05);
}

.case-card::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  content: "";
  background: var(--green);
}

.accent-orange::before {
  background: var(--orange);
}

.accent-black::before {
  background: var(--green-dark);
}

.case-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.99rem;
}

.case-type {
  color: var(--orange);
  font-size: 0.78rem;
}

.team {
  border-top: 1px solid var(--line);
}

.team-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.team-layout article {
  min-height: 200px;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(117, 189, 29, 0.08), transparent 48%),
    var(--white);
  box-shadow: 0 14px 34px rgba(23, 33, 15, 0.05);
}

.team-layout p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 33, 15, 0.04);
}

summary {
  position: relative;
  padding: 1rem 3rem 1rem 1.1rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  content: "+";
  color: var(--green-dark);
  font-size: 1.35rem;
  font-weight: 600;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 54rem;
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 5.5rem) max(var(--space), calc((100vw - var(--max)) / 2 + var(--space)));
  background:
    radial-gradient(circle at 86% 15%, rgba(255, 255, 255, 0.18), transparent 22rem),
    var(--green-dark);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
}

.contact-copy p:not(.section-label) {
  max-width: 42rem;
  color: #e7f4de;
  font-size: 1.03rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
  align-self: start;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.contact-card a:not(.button),
.contact-card p {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.contact-card a:not(.button):hover {
  color: #dff3cf;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem max(var(--space), calc((100vw - var(--max)) / 2 + var(--space)));
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 460ms ease,
    transform 460ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .hero-grid,
  .intro,
  .audience,
  .visual-story,
  .strengths,
  .split-section,
  .feature-band,
  .proof-section,
  .team,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-visual > img {
    min-height: 320px;
  }

  .hero-photo-inset {
    width: 190px;
  }

  .team-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --space: 1rem;
    --radius: 20px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 70px;
    padding-block: 0.7rem;
  }

  .brand img {
    width: 50px;
    height: 50px;
    border-radius: 13px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy small {
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-copy {
    padding: 1.35rem;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.45rem);
  }

  .stats,
  .audience-grid,
  .strength-grid,
  .service-list,
  .process-grid,
  .visual-story,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .stats article,
  .audience-card,
  .strength-card,
  .service-card,
  .team-layout article {
    min-height: auto;
  }

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

  .hero-visual-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -5.5rem 1rem 1rem;
  }

  .hero-photo-inset {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    margin: 0 1rem 1rem;
  }

  .visual-card-large img,
  .visual-card img {
    height: 230px;
    min-height: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
