:root {
  --bg: #f3f8f2;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #122218;
  --muted: #5b6b5f;
  --line: rgba(10, 71, 24, 0.14);
  --green: #089327;
  --green-deep: #045b18;
  --red: #d61c1c;
  --shadow: 0 28px 80px rgba(8, 52, 19, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(8, 147, 39, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(214, 28, 28, 0.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 44%, #edf6ed 100%);
}

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

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 38vw;
  height: 38vw;
  pointer-events: none;
  filter: blur(48px);
  opacity: 0.18;
  z-index: 0;
}

.site-shell::before {
  top: -12vw;
  right: -8vw;
  background: #0aa12d;
}

.site-shell::after {
  bottom: -14vw;
  left: -10vw;
  background: #d61c1c;
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  width: var(--container);
  margin: 24px auto 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(17, 42, 23, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.brand img {
  width: 86px;
  height: 72px;
  padding: 8px;
  border-radius: 22px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(4, 91, 24, 0.18);
}

.brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-copy strong,
.brand-copy span {
  line-height: 1;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
  letter-spacing: 0.08em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.92rem;
  white-space: normal;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 500;
}

.menu a,
.menu button {
  position: relative;
}

.menu button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.menu a::after,
.menu button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--green), var(--red));
  transition: transform 180ms ease;
}

.menu a:hover::after,
.menu a:focus-visible::after,
.menu button:hover::after,
.menu button:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  padding: 12px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

main {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 88px 0 56px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.04;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  max-width: 10.5ch;
}

.hero-text,
.section-heading p,
.info-card p,
.feature-panel p,
.timeline p,
.stats p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  margin: 24px 0 0;
  font-size: 1.08rem;
  max-width: 58ch;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  font: inherit;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 16px 36px rgba(4, 91, 24, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 12px 18px;
  border: 1px solid rgba(8, 147, 39, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(238, 247, 240, 0.82));
  border: 1px solid rgba(8, 147, 39, 0.14);
  box-shadow: 0 18px 32px rgba(16, 49, 24, 0.08);
}

.hero-note span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-note a {
  font-weight: 800;
  color: var(--green-deep);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.orb-green {
  inset: 40px 30px auto auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(8, 147, 39, 0.22), transparent 72%);
}

.orb-red {
  inset: auto auto 60px 10px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(214, 28, 28, 0.12), transparent 74%);
}

.visual-card {
  position: absolute;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.logo-card {
  width: min(100%, 460px);
  padding: 22px;
  transform: rotate(-4deg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 252, 244, 0.84));
}

.logo-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  border-radius: 24px;
  background: #fff;
  padding: 12px;
}

.metrics-card {
  top: 12px;
  right: -10px;
  width: 240px;
  padding: 18px 20px;
}

.metrics-card span,
.contact-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.metrics-card strong,
.contact-grid strong {
  font-size: 1.16rem;
  line-height: 1.4;
}

.contact-grid strong,
.contact-grid a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.process-card {
  left: 0;
  bottom: 34px;
  display: grid;
  gap: 12px;
  min-width: 220px;
  padding: 20px;
}

.process-card strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.process-card strong::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--red));
}

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

.stats article,
.info-card,
.feature-panel,
.timeline article,
.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(17, 42, 23, 0.08);
}

.stats article {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.stats strong {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 2rem;
  font-family: "Space Grotesk", sans-serif;
}

.section-block {
  padding: 88px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}

.card-grid,
.solutions-layout,
.timeline,
.contact-grid {
  display: grid;
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info-card,
.feature-panel,
.timeline article {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.info-card {
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 147, 39, 0.1), transparent 70%);
}

.info-card span,
.feature-panel h3 {
  font-family: "Space Grotesk", sans-serif;
}

.info-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(8, 147, 39, 0.15), rgba(8, 147, 39, 0.06));
  color: var(--green-deep);
  font-weight: 700;
}

.info-card h3,
.feature-panel h3 {
  margin: 18px 0 14px;
  font-size: 1.35rem;
}

.featured-card {
  background:
    linear-gradient(135deg, rgba(8, 147, 39, 0.1), rgba(255, 255, 255, 0.84)),
    var(--surface);
}

.solutions-layout {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.feature-panel {
  min-height: 220px;
}

.feature-panel.accent {
  color: #fff;
  background:
    linear-gradient(160deg, rgba(214, 28, 28, 0.88), rgba(113, 9, 9, 0.96)),
    var(--surface-strong);
}

.feature-panel.accent p {
  color: rgba(255, 255, 255, 0.84);
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline article {
  position: relative;
  overflow: hidden;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--red));
}

.timeline strong {
  display: block;
  margin: 16px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.contact {
  padding-bottom: 88px;
}

.gallery-grid {
  display: grid;
  gap: 18px;
}

.gallery-headline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.gallery-folder-card,
.gallery-empty-state {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(17, 42, 23, 0.08);
}

.gallery-folder-card span,
.gallery-empty-state strong {
  display: block;
}

.gallery-folder-card span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-folder-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.gallery-folder-card p,
.gallery-empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.auto-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-empty-state {
  grid-column: 1 / -1;
}

.gallery-empty-state strong {
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.auto-gallery-card {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: #112118;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.auto-gallery-card.featured {
  grid-column: span 8;
  min-height: 420px;
}

.auto-gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 20, 11, 0.08), rgba(7, 20, 11, 0.82)),
    linear-gradient(145deg, rgba(8, 147, 39, 0.14), rgba(214, 28, 28, 0.12));
}

.auto-gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auto-gallery-card-body {
  position: relative;
  z-index: 2;
  min-height: inherit;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-align: left;
}

.auto-gallery-tag {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auto-gallery-card-body strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
}

.auto-gallery-card-body span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  background: rgba(4, 10, 6, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-stage {
  position: relative;
  width: min(1100px, calc(100vw - 140px));
  max-height: calc(100vh - 80px);
  border-radius: 28px;
  overflow: hidden;
  background: #08110b;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.lightbox-stage img {
  width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  background: #08110b;
}

.lightbox-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(8, 17, 11, 0.58);
  backdrop-filter: blur(16px);
  color: #fff;
}

.lightbox-caption strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.lightbox-caption span {
  color: rgba(255, 255, 255, 0.76);
}

.lightbox-close,
.lightbox-nav {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-size: 2rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
}

.lightbox-nav:disabled {
  opacity: 0.38;
  cursor: default;
}

.gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  grid-column: span 4;
}

.gallery-card-featured {
  min-height: 430px;
  grid-column: span 8;
}

.gallery-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 14, 0.02), rgba(10, 24, 14, 0.72)),
    linear-gradient(135deg, rgba(8, 147, 39, 0.16), rgba(214, 28, 28, 0.12));
}

.demo-badge,
.gallery-copy {
  position: relative;
  z-index: 1;
}

.demo-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-copy h3,
.map-visual strong {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
}

.gallery-copy {
  color: #fff;
  max-width: 34ch;
}

.gallery-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.contact-panel {
  padding: 34px;
  border-radius: calc(var(--radius-xl) + 4px);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

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

.contact-item,
.contact-side {
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(17, 42, 23, 0.08);
}

.contact-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.contact-item-wide {
  grid-column: span 2;
}

.contact-side {
  padding: 30px;
  border-radius: calc(var(--radius-lg) + 2px);
  background:
    radial-gradient(circle at top right, rgba(214, 28, 28, 0.16), transparent 30%),
    linear-gradient(160deg, rgba(9, 103, 29, 0.96), rgba(7, 73, 22, 0.96));
  color: #fff;
}

.contact-side-label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-side h3 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.contact-side-text {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.72;
}

.contact-side-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.contact-side .button-primary {
  background: #fff;
  color: var(--green-deep);
  box-shadow: none;
}

.contact-side .button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-side-address {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-side-address strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.contact-side-address p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--red));
  box-shadow: 0 18px 32px rgba(8, 52, 19, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  z-index: 20;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 36px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--green-deep);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .hero,
  .solutions-layout,
  .timeline,
  .stats,
  .gallery-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .gallery-headline,
  .auto-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
  }

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

  .metrics-card {
    right: 0;
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  .topbar {
    margin-top: 12px;
    padding: 14px;
    border-radius: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1 1 100%;
  }

  .brand img {
    width: 74px;
    height: 64px;
  }

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

  .brand-copy span {
    font-size: 0.84rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 8px;
  }

  .menu.is-open {
    display: flex;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    max-width: 100%;
  }

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

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

  .auto-gallery-card,
  .auto-gallery-card.featured {
    grid-column: auto;
  }

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

  .contact-item-wide {
    grid-column: auto;
  }

  .gallery-card,
  .gallery-card-featured {
    grid-column: auto;
  }

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

  .logo-card {
    width: 100%;
    max-width: 320px;
  }

  .metrics-card,
  .process-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 320px;
    margin-top: 14px;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .orb {
    display: none;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-side {
    padding: 24px;
  }

  .gallery-card {
    min-height: 300px;
  }

  .auto-gallery-card,
  .auto-gallery-card.featured {
    min-height: 280px;
  }

  .lightbox {
    padding: 18px 10px;
  }

  .lightbox-stage {
    width: min(100vw - 20px, 100%);
  }

  .lightbox-close,
  .lightbox-nav {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .footer {
    justify-content: flex-start;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
