.fah-home7 {
  --bg: #eef3ff;
  --panel: #ffffff;
  --ink: #192237;
  --muted: #5e6c8e;
  --line: #d5def1;
  --accent: #265df2;

  display: grid;
  grid-template-areas:
    "top top top"
    "left center right"
    "lower-left center lower-right"
    "bottom bottom bottom";
  grid-template-columns: minmax(150px, 0.72fr) minmax(480px, 2.7fr) minmax(150px, 0.72fr);
  gap: 14px;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  margin: 0;
  padding: 12px;
  grid-template-rows: auto minmax(310px, 1fr) minmax(180px, 0.56fr) auto;
  border-radius: 18px;
  color: var(--ink);
  background:
    radial-gradient(1200px 460px at 50% -150px, #dce8ff 0%, transparent 70%),
    var(--bg);
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  font-size: 18px;
}

.fah-home7 .zone {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  min-height: 90px;
  box-shadow: 0 1px 0 rgba(30, 45, 75, 0.05);
}

.fah-home7 .zone-top {
  background: linear-gradient(135deg, #ffffff 0%, #edf3ff 100%);
}

.fah-home7 .zone-top h1 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.9vw, 2.45rem);
  line-height: 1.12;
  color: #111e39;
}

.fah-home7 .zone-top p {
  max-width: 980px;
  font-size: 1.01rem;
  color: #2b3d66;
}

.fah-home7 .zone-top { grid-area: top; }
.fah-home7 .zone-left { grid-area: left; }
.fah-home7 .zone-center { grid-area: center; cursor: pointer; }
.fah-home7 .zone-right { grid-area: right; }
.fah-home7 .zone-lower-left { grid-area: lower-left; }
.fah-home7 .zone-lower-right { grid-area: lower-right; }
.fah-home7 .zone-lower-left,
.fah-home7 .zone-lower-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}

.fah-home7 .zone-lower-left h2,
.fah-home7 .zone-lower-right h2 {
  font-size: clamp(1.25rem, 1.45vw, 1.55rem);
  line-height: 1.2;
  margin-bottom: 2px;
}

.fah-home7 .zone-lower-left p:last-child,
.fah-home7 .zone-lower-right p:last-child {
  margin: 0;
  font-size: clamp(1.02rem, 1.12vw, 1.18rem);
  line-height: 1.5;
  color: #23355b;
}

.fah-home7 .zone-bottom { grid-area: bottom; }
.fah-home7 .zone-bottom {
  min-height: 36px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.fah-home7 .zone-bottom p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.25;
}

.fah-home7 .zone-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.fah-home7 .zone-center > .zone-label {
  display: none;
}

.fah-home7 h1,
.fah-home7 h2,
.fah-home7 p {
  margin-top: 0;
  line-height: 1.45;
}

.fah-home7 h2 {
  font-size: clamp(1.28rem, 1.85vw, 1.65rem);
}

.fah-home7 .service-list {
  display: grid;
  gap: 8px;
}

.fah-home7 .service-item {
  text-align: left;
  border: 1px solid var(--line);
  background: #f8fbff;
  color: var(--ink);
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
  font-size: 1.03rem;
  cursor: pointer;
  transition: transform 220ms ease, border-color 180ms ease, background 180ms ease, box-shadow 220ms ease;
  transform-origin: center;
  animation: servicePopIn 360ms ease both;
}

.fah-home7 .service-item:hover {
  border-color: #9eb6ff;
  background: #f0f5ff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 18px rgba(38, 93, 242, 0.14);
}

.fah-home7 .service-item.is-active {
  border-color: var(--accent);
  background: #e8efff;
  box-shadow: 0 0 0 2px rgba(38, 93, 242, 0.15);
  transform: scale(1.01);
}

.fah-home7 .zone-left .service-item:nth-child(2),
.fah-home7 .zone-right .service-item:nth-child(2) {
  animation-delay: 70ms;
}

.fah-home7 .zone-left .service-item:nth-child(3),
.fah-home7 .zone-right .service-item:nth-child(3) {
  animation-delay: 140ms;
}

.fah-home7 .zone-left .service-item:nth-child(4),
.fah-home7 .zone-right .service-item:nth-child(4) {
  animation-delay: 210ms;
}

@keyframes servicePopIn {
  from { opacity: 0; transform: translateX(-8px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes previewPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.01); }
  100% { transform: scale(1); }
}

@keyframes shotOutLeft {
  from { transform: translateX(0) scale(1); opacity: 1; }
  to { transform: translateX(-108%) scale(0.88); opacity: 0; }
}

@keyframes shotInLeft {
  0% { transform: translateX(-108%) scale(1.12); opacity: 0; }
  70% { transform: translateX(0) scale(1.03); opacity: 1; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes shotOutRight {
  from { transform: translateX(0) scale(1); opacity: 1; }
  to { transform: translateX(108%) scale(0.88); opacity: 0; }
}

@keyframes shotInRight {
  0% { transform: translateX(108%) scale(1.12); opacity: 0; }
  70% { transform: translateX(0) scale(1.03); opacity: 1; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes shotOutTop {
  from { transform: translateY(0) scale(1); opacity: 1; }
  to { transform: translateY(-108%) scale(0.88); opacity: 0; }
}

@keyframes shotInTop {
  0% { transform: translateY(-108%) scale(1.12); opacity: 0; }
  70% { transform: translateY(0) scale(1.03); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes shotOutBottom {
  from { transform: translateY(0) scale(1); opacity: 1; }
  to { transform: translateY(108%) scale(0.88); opacity: 0; }
}

@keyframes shotInBottom {
  0% { transform: translateY(108%) scale(1.12); opacity: 0; }
  70% { transform: translateY(0) scale(1.03); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.fah-home7 .center-card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fah-home7 .center-kicker {
  margin: 0;
  color: #3f5079;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 600;
}

.fah-home7 .center-kicker:empty {
  display: none;
}

.fah-home7 #center-title {
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 0;
}

.fah-home7 #center-description {
  font-size: clamp(1.26rem, 1.55vw, 1.5rem);
  color: #1b2b4f;
  margin-bottom: 0;
  white-space: pre-line;
  max-width: 72ch;
  text-wrap: pretty;
  letter-spacing: 0.01em;
}

.fah-home7 .center-bullets {
  margin: 0;
  padding-left: 18px;
  color: #243659;
}

.fah-home7 .center-bullets li {
  margin: 0 0 6px;
  font-size: 1.08rem;
  line-height: 1.5;
}

.fah-home7 .preview-shell {
  border: 1px solid #c9d6ef;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  position: relative;
}

.fah-home7 .static-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: auto;
  overflow: hidden;
  width: 100%;
}

.fah-home7 .center-card.is-webdesign-layout .static-gallery {
  order: 1;
  margin-top: 0;
  margin-bottom: 8px;
}

.fah-home7 .gallery-slot {
  position: relative;
  min-height: 428px;
  overflow: hidden;
}

.fah-home7 .center-card.is-webdesign-layout #center-title {
  order: 2;
}

.fah-home7 .center-card.is-webdesign-layout #center-description {
  order: 3;
}

.fah-home7 .center-card.is-webdesign-layout .center-bullets {
  order: 4;
}

.fah-home7 .center-card.is-webdesign-layout .center-meta {
  order: 5;
}

.fah-home7 .center-card.is-webdesign-layout .center-hint {
  order: 6;
}

.fah-home7 .shot-card {
  margin: 0;
  border: 1px solid #c9d6ef;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  width: 100%;
  height: 100%;
}

.fah-home7 .gallery-slot .shot-card {
  position: absolute;
  inset: 0;
}

.fah-home7 .gallery-slot .shot-card.anim-out-left {
  animation: shotOutLeft 440ms ease forwards;
}

.fah-home7 .gallery-slot .shot-card.anim-in-left {
  animation: shotInLeft 500ms ease forwards;
}

.fah-home7 .gallery-slot .shot-card.anim-out-right {
  animation: shotOutRight 440ms ease forwards;
}

.fah-home7 .gallery-slot .shot-card.anim-in-right {
  animation: shotInRight 500ms ease forwards;
}

.fah-home7 .gallery-slot .shot-card.anim-out-top {
  animation: shotOutTop 430ms ease forwards;
}

.fah-home7 .gallery-slot .shot-card.anim-in-top {
  animation: shotInTop 500ms ease forwards;
}

.fah-home7 .gallery-slot .shot-card.anim-out-bottom {
  animation: shotOutBottom 430ms ease forwards;
}

.fah-home7 .gallery-slot .shot-card.anim-in-bottom {
  animation: shotInBottom 500ms ease forwards;
}

.fah-home7 .shot-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: linear-gradient(180deg, #ecf2ff 0%, #dfe9ff 100%);
}

.fah-home7 .shot-card img.snapshot-loading {
  filter: saturate(0.8) brightness(1.03);
}

.fah-home7 .shot-caption {
  margin: 0;
  padding: 8px 10px 10px;
  color: #2b3d66;
  font-size: 1rem;
  font-weight: 600;
}

.fah-home7 .center-preview {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  background: #f4f7ff;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 280ms ease;
}

.fah-home7 .center-preview.is-loading {
  opacity: 0.18;
}

.fah-home7 .center-preview.preview-pulse {
  animation: previewPulse 1.15s ease-in-out 1;
}

.fah-home7 .preview-note {
  margin: 0;
  padding: 8px 12px 0;
  font-size: 0.86rem;
  color: #4c5f88;
}

.fah-home7 .preview-link {
  display: none;
  margin: 8px 12px 12px;
  color: #1d56e0;
  font-weight: 600;
  text-decoration: none;
}

.fah-home7 .preview-link:hover {
  text-decoration: underline;
}

.fah-home7 .center-meta {
  margin-top: auto;
  font-size: 1rem;
  color: var(--muted);
}

.fah-home7 .center-hint {
  margin: 4px 0 0;
  font-size: 1rem;
  color: #425072;
}

.fah-home7 .zone-top h1,
.fah-home7 #center-title,
.fah-home7 #fullscreen-title,
.fah-home7 #center-description {
  background-image: linear-gradient(
    45deg,
    currentColor 0%,
    currentColor 42%,
    rgba(246, 210, 120, 0.95) 48%,
    rgba(255, 247, 209, 0.98) 50%,
    rgba(246, 210, 120, 0.95) 52%,
    currentColor 58%,
    currentColor 100%
  );
  background-size: 240% 240%;
  background-position: 130% 130%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textGoldenWave 30s linear infinite;
}

.fah-home7 #center-description {
  animation-duration: 34s;
}

@supports (-webkit-background-clip: text) {
  .fah-home7 .zone-top h1,
  .fah-home7 #center-title,
  .fah-home7 #fullscreen-title,
  .fah-home7 #center-description {
    -webkit-text-fill-color: transparent;
  }
}

@keyframes textGoldenWave {
  0%,
  91%,
  100% {
    background-position: 130% 130%;
  }
  95% {
    background-position: -40% -40%;
  }
}

.fah-home7 .fullscreen-headline {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10010;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1200px;
  margin: 12px auto 0;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(12, 20, 39, 0.88);
  border: 1px solid rgba(163, 186, 255, 0.35);
  color: #f3f6ff;
}

.fah-home7 .exit-focus {
  border: 1px solid rgba(169, 192, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #edf2ff;
  border-radius: 8px;
  padding: 7px 12px;
  font: inherit;
  cursor: pointer;
}

.fah-home7 .fullscreen-index {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  opacity: 1;
  pointer-events: none;
  display: none;
}

.fah-home7 .headline-project {
  margin: 0 0 4px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9d7ff;
}

.fah-home7 .headline-title {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
}

.fah-home7 .index-inner {
  max-width: 1200px;
  margin: 0 auto 12px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(12, 20, 39, 0.88);
  color: #f3f6ff;
  border: 1px solid rgba(163, 186, 255, 0.35);
}

.fah-home7 .index-label {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9d7ff;
}

.fah-home7 .index-track {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fah-home7 .index-btn {
  border: 1px solid rgba(169, 192, 255, 0.45);
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-size: 1.02rem;
  color: #edf2ff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.fah-home7 .index-btn.is-active {
  border-color: #8fb0ff;
  background: rgba(143, 176, 255, 0.3);
}

.fah-home7 .fullscreen-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(169, 192, 255, 0.45);
  background: rgba(12, 20, 39, 0.78);
  color: #edf2ff;
  cursor: pointer;
  pointer-events: auto;
  font-size: 26px;
  display: none;
}

.fah-home7 .fullscreen-arrow-left {
  left: 18px;
}

.fah-home7 .fullscreen-arrow-right {
  right: 18px;
}

.fah-home7.is-focus {
  position: fixed;
  inset: 0;
  z-index: 9990;
  margin: 0;
  border-radius: 0;
  padding: 14px;
  grid-template-areas: "center";
  grid-template-columns: 1fr;
  background: linear-gradient(180deg, #0d1730 0%, #131f3f 100%);
}

.fah-home7.is-focus .zone-center {
  min-height: calc(100vh - 28px);
  background: #fdfefe;
}

.fah-home7.is-focus .center-card {
  min-height: calc(100vh - 60px);
}

.fah-home7.is-focus .center-preview {
  height: min(79vh, 1040px);
}

.fah-home7.is-focus .center-kicker {
  font-size: 0.86rem;
}

.fah-home7.is-focus #center-title {
  font-size: clamp(2.3rem, 4.4vw, 3.7rem);
  line-height: 1.07;
}

.fah-home7.is-focus #center-description {
  font-size: clamp(1.22rem, 2vw, 1.58rem);
  line-height: 1.45;
}

.fah-home7.is-focus .center-hint {
  font-size: 1.08rem;
  color: #2a3c63;
}

.fah-home7 .center-description-hidden,
.fah-home7 .center-bullets-hidden {
  display: none !important;
}

.fah-home7.is-focus .zone-top,
.fah-home7.is-focus .zone-left,
.fah-home7.is-focus .zone-right,
.fah-home7.is-focus .zone-lower-left,
.fah-home7.is-focus .zone-lower-right,
.fah-home7.is-focus .zone-bottom {
  display: none;
}

.fah-home7.is-focus .fullscreen-index {
  display: block;
  pointer-events: auto;
}

.fah-home7.is-focus .fullscreen-headline {
  display: flex;
  pointer-events: auto;
}

.fah-home7.is-focus .fullscreen-arrow {
  display: block;
}

body.fah-home7-lock {
  overflow: hidden;
}

@media (max-width: 980px) {
  .fah-home7 {
    grid-template-areas:
      "top"
      "center"
      "left"
      "right"
      "lower-left"
      "lower-right"
      "bottom";
    grid-template-columns: 1fr;
    padding: 8px;
    min-height: auto;
    grid-template-rows: auto;
  }

  .fah-home7 .fullscreen-index .index-inner {
    margin-left: 8px;
    margin-right: 8px;
  }

  .fah-home7 .fullscreen-headline {
    margin-left: 8px;
    margin-right: 8px;
  }

  .fah-home7 .static-gallery {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .fah-home7 .shot-card img {
    height: 220px;
  }

  .fah-home7 .gallery-slot {
    min-height: 248px;
  }
}
