:root {
  --bg: #f4f7f1;
  --surface: #ffffff;
  --surface-soft: #eef5ea;
  --ink: #15231d;
  --muted: #65736b;
  --line: rgba(21, 35, 29, 0.12);
  --primary: #1f6b48;
  --primary-dark: #123c2b;
  --primary-light: #dff1e7;
  --accent: #f3a63a;
  --accent-dark: #c87419;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 60, 43, 0.12);
  --shadow-soft: 0 14px 36px rgba(18, 60, 43, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(243, 166, 58, 0.22), transparent 26%),
    radial-gradient(circle at 88% 0%, rgba(31, 107, 72, 0.18), transparent 30%),
    linear-gradient(180deg, #fbfdf8 0%, var(--bg) 46%, #ffffff 100%);
  line-height: 1.75;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 35, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 35, 29, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 70%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(calc(100% - 36px), var(--wrap));
  margin: 0 auto;
}

.site-header {
  position: relative;
  overflow: hidden;
  padding: 22px 0 74px;
}

.site-header::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(31, 107, 72, 0.08);
  z-index: -1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 22px rgba(31, 107, 72, 0.25);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  overflow: hidden;
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand > span:last-child {
  min-width: 0;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #405046;
  font-size: 18px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary-dark);
  background: var(--primary-light);
}

.nav-phone {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 12px 26px rgba(200, 116, 25, 0.25);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 54px;
}

.hero-copy,
.hero-visual {
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 60px);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.hero-copy::after {
  content: "DRONE LIFT";
  position: absolute;
  right: -14px;
  bottom: 8px;
  color: rgba(31, 107, 72, 0.055);
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
}

.eyebrow,
.section-tag {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-tag.light {
  color: #ffd78f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.fit-title {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(34px, 5.2vw, 72px);
}

h1 span {
  color: var(--primary);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3.6vw, 46px);
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

p {
  color: var(--muted);
}

.lead {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 30px;
  color: #4f5e55;
  font-size: 18px;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 34px rgba(31, 107, 72, 0.28);
}

.btn-secondary {
  color: var(--primary-dark);
  background: var(--primary-light);
}

.btn-light {
  color: var(--primary-dark);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.btn-block {
  width: 100%;
}

.trust-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span,
.area-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(31, 107, 72, 0.14);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(223, 241, 231, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(18, 60, 43, 0.92), rgba(31, 107, 72, 0.78)),
    radial-gradient(circle at top right, rgba(243, 166, 58, 0.4), transparent 42%);
}

.sky-card {
  position: relative;
  height: 100%;
  min-height: 476px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.24), transparent 20%),
    linear-gradient(180deg, #8cc6ac 0%, #d6eecb 48%, #425c3f 49%, #183328 100%);
}

.sky-card::before,
.sky-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 74%;
  height: 44%;
  background: rgba(18, 60, 43, 0.62);
  clip-path: polygon(0 70%, 18% 46%, 35% 60%, 52% 30%, 75% 55%, 100% 36%, 100% 100%, 0 100%);
}

.sky-card::before {
  left: -18%;
}

.sky-card::after {
  right: -16%;
  opacity: 0.75;
  transform: scaleX(-1);
}

.drone-scene {
  position: absolute;
  top: 78px;
  left: 50%;
  width: 320px;
  height: 300px;
  transform: translateX(-50%);
  z-index: 2;
}

.drone-body {
  position: absolute;
  top: 60px;
  left: 111px;
  width: 98px;
  height: 30px;
  border-radius: 999px;
  background: #f8fbf6;
  box-shadow: 0 8px 0 rgba(21, 35, 29, 0.12);
}

.drone-body::before,
.drone-body::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 104px;
  height: 4px;
  background: #f8fbf6;
}

.drone-body::before {
  right: 86px;
  transform: rotate(-8deg);
}

.drone-body::after {
  left: 86px;
  transform: rotate(8deg);
}

.rotor {
  position: absolute;
  top: 45px;
  width: 88px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.12);
}

.rotor-a {
  left: 22px;
}

.rotor-b {
  right: 22px;
}

.hook-line {
  position: absolute;
  top: 90px;
  left: 50%;
  width: 2px;
  height: 116px;
  background: rgba(255, 255, 255, 0.8);
}

.cargo-box {
  position: absolute;
  top: 204px;
  left: 50%;
  width: 190px;
  padding: 18px 12px;
  border-radius: 18px;
  color: #57350d;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd17c, #f3a63a);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
}

.route-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  max-width: 270px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  color: var(--white);
  background: rgba(18, 60, 43, 0.7);
  backdrop-filter: blur(16px);
}

.route-card strong,
.route-card span {
  display: block;
}

.route-card strong {
  margin-bottom: 4px;
  font-size: 20px;
}

.route-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.nav,
.hero,
.hero-copy,
.hero-visual,
.split-heading,
.split-heading > *,
.scene-layout,
.scene-layout > *,
.info-layout,
.info-layout > *,
.faq-layout,
.faq-layout > *,
.footer-inner,
.footer-inner > *,
.service-card,
.metric-card,
.process-step,
.text-panel,
.contact-panel {
  min-width: 0;
  max-width: 100%;
}

.section {
  padding: 86px 0;
}

.section.compact {
  padding: 0 0 0 0;
  margin-top: -26px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(238, 245, 234, 0.7), rgba(255, 255, 255, 0.92));
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.metric-card,
.service-card,
.process-step,
.text-panel,
.contact-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  padding: 24px;
}

.metric-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
  font-size: 20px;
}

.metric-card span {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 34px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 32px;
  align-items: end;
}

.split-heading p:last-child,
.center-heading p {
  margin-bottom: 0;
}

.center-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 30px;
  transition: 0.22s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(31, 107, 72, 0.08);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.featured-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 107, 72, 0.96), rgba(18, 60, 43, 0.96)),
    radial-gradient(circle at top right, rgba(243, 166, 58, 0.55), transparent 38%);
}

.featured-card p,
.featured-card .card-index {
  color: rgba(255, 255, 255, 0.78);
}

.muted-card {
  background: linear-gradient(180deg, #ffffff, #f6faf3);
}

.card-index {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(243, 166, 58, 0.24), transparent 24%),
    linear-gradient(135deg, #10281f, #1f6b48);
}

.section-dark h2,
.section-dark p {
  color: inherit;
}

.scene-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: center;
}

.scene-copy p:not(.section-tag) {
  color: rgba(255, 255, 255, 0.78);
}

.scene-list {
  display: grid;
  gap: 14px;
  counter-reset: scene;
}

.scene-list div {
  position: relative;
  padding: 20px 22px 20px 66px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.scene-list div::before {
  counter-increment: scene;
  content: counter(scene);
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  background: var(--accent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  position: relative;
  padding: 28px;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 15px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.info-layout,
.faq-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.info-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.72fr);
}

.text-panel,
.contact-panel {
  padding: clamp(26px, 4vw, 42px);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-panel {
  background:
    linear-gradient(180deg, #ffffff, #f6fbf7),
    radial-gradient(circle at top right, rgba(243, 166, 58, 0.18), transparent 34%);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(21, 35, 29, 0.14);
  color: var(--muted);
}

.contact-list strong {
  color: var(--ink);
}

.faq-section {
  background: #fff;
}

.faq-layout {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
}

.faq-intro {
  position: sticky;
  top: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 24px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list details p {
  margin: 12px 0 0;
}

.site-footer {
  padding: 42px 0 54px;
  color: rgba(255, 255, 255, 0.88);
  background: #10281f;
}

.site-footer h2,
.site-footer p {
  color: inherit;
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner > div:first-child {
  max-width: 680px;
}

.footer-meta {
  min-width: 280px;
}

.footer-meta p {
  margin-bottom: 6px;
}

@media (max-width: 1040px) {
  .nav {
    align-items: flex-start;
    border-radius: 26px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-heading,
  .scene-layout,
  .info-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    min-height: 460px;
  }

  .faq-intro {
    position: static;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .site-header {
    padding-top: 14px;
    padding-bottom: 50px;
  }

  .nav {
    align-items: center;
    gap: 10px;
    padding: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 8px;
  }

  .brand strong {
    font-size: 15px;
    line-height: 1;
  }

  .brand small {
    display: none;
  }

  .nav-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 9px 11px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }

  .hero {
    margin-top: 30px;
  }

  .hero-copy,
  .hero-visual {
    border-radius: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-strip span,
  .area-tags span {
    font-size: 13px;
  }

  .hero-visual {
    min-height: 390px;
    padding: 14px;
  }

  .sky-card {
    min-height: 360px;
  }

  .drone-scene {
    top: 54px;
    width: 270px;
    transform: translateX(-50%) scale(0.86);
    transform-origin: top center;
  }

  .route-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .section {
    padding: 62px 0;
  }

  .section.compact {
    padding-bottom: 52px;
  }

  .service-grid,
  .metrics-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .service-card,
  .process-step,
  .text-panel,
  .contact-panel,
  .faq-list details {
    padding: 22px;
  }

  .card-index {
    margin-bottom: 36px;
  }

  .scene-list div {
    padding-right: 18px;
  }
}
/* Real photo slots ------------------------------------------------------- */
.photo-frame {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(223, 241, 231, 0.9), rgba(255, 255, 255, 0.7)),
    repeating-linear-gradient(135deg, rgba(31, 107, 72, 0.08) 0 10px, rgba(31, 107, 72, 0.02) 10px 20px);
}

.photo-frame::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 18px;
  z-index: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px dashed rgba(31, 107, 72, 0.34);
  border-radius: 18px;
  color: rgba(18, 60, 43, 0.74);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-frame img[hidden] {
  display: none;
}

.hero-visual {
  min-height: 520px;
  padding: 0;
  background: linear-gradient(160deg, rgba(18, 60, 43, 0.94), rgba(31, 107, 72, 0.82));
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  /* border-radius: var(--radius-lg); */
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 40, 31, 0.05) 0%, rgba(16, 40, 31, 0.18) 45%, rgba(16, 40, 31, 0.82) 100%),
    radial-gradient(circle at 85% 12%, rgba(243, 166, 58, 0.24), transparent 34%);
  pointer-events: none;
}

.hero-photo figcaption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  color: #fff;
  background: rgba(18, 60, 43, 0.15);
  backdrop-filter: blur(4px);
}

.hero-photo figcaption strong,
.hero-photo figcaption span {
  display: block;
}

.hero-photo figcaption strong {
  margin-bottom: 4px;
  font-size: 20px;
}

.hero-photo figcaption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.hero-visual .route-card {
  top: 22px;
  right: 22px;
  bottom: auto;
  left: auto;
  z-index: 3;
}

.card-photo {
  height: 156px;
  margin: -30px -30px 22px;
  border-width: 0 0 1px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card-photo::before {
  inset: 14px;
  border-radius: 14px;
  font-size: 12px;
}

.service-card .card-index {
  margin-bottom: 22px;
}

.featured-card .card-photo {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(243, 166, 58, 0.25)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 10px, rgba(255, 255, 255, 0.04) 10px 20px);
}

.featured-card .card-photo::before {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.34);
}

.scene-media {
  display: grid;
  gap: 18px;
}

.scene-photo {
  min-height: 260px;
  border-radius: 26px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
}

.scene-photo::before {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(16, 40, 31, 0.18);
}

.scene-photo img {
  min-height: 260px;
}

@media (max-width: 1040px) {
  .hero-photo,
  .hero-visual {
    min-height: 460px;
  }
}

@media (max-width: 720px) {
  .hero-photo,
  .hero-visual {
    min-height: 390px;
  }

  .hero-photo figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .hero-photo figcaption strong {
    font-size: 17px;
  }

  .hero-photo figcaption span {
    font-size: 12px;
  }

  .card-photo {
    height: 170px;
    margin: -22px -22px 20px;
    border-radius: 22px 22px 0 0;
  }

  .scene-photo,
  .scene-photo img {
    min-height: 220px;
  }
}
