/* ============================================================
 * front-page (home) only styles — all rules are scoped under
 * `body.home` so they cannot collide with other pages.
 * Image paths are relative to this file (Arkhe-child/css/).
 * ============================================================ */

/* ============== LAYOUT OVERRIDES ==============
 * Arkhe親テーマの .l-container は max-width と左右padding を持つため、
 * フルブリードの .fv / .message / .concept などが途切れてしまう。
 * homepage では l-container の制約を解除して全幅で描画させる。 */
body.home {
  overflow-x: hidden;
}

body.home .l-wrapper #content .l-container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* ============== FV / HERO ============== */
body.home .fv {
  --fv-vw: clamp(1280px, 100vw, 1920px);
  position: relative;
  padding-top: calc(100 * var(--fv-vw) / 1440);
  padding-bottom: calc(70 * var(--fv-vw) / 1440);
  background: linear-gradient(180deg, #f1f6fc 0%, #f1f6fc 100%);
  overflow-x: clip;
  overflow-y: visible;
}

body.home .fv-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    url('../images/fv_bg.webp') center/cover no-repeat,
    radial-gradient(circle at 12% 90%, rgba(232, 129, 33, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(0, 68, 119, 0.08) 0%, transparent 35%);
  pointer-events: none;
}

body.home .fv-inner {
  position: relative;
  z-index: 2;
  max-width: calc(1280 * var(--fv-vw) / 1440);
  margin: 0 auto;
  padding: 0 calc(64 * var(--fv-vw) / 1440);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  min-height: calc(600 * var(--fv-vw) / 1440);
}

body.home .fv-text {
  position: relative;
  z-index: 3;
}

body.home .fv .eyebrow-line {
  width: calc(32 * var(--fv-vw) / 1440);
  height: calc(2 * var(--fv-vw) / 1440);
}

body.home .fv .eyebrow-text {
  font-size: calc(12 * var(--fv-vw) / 1440);
  letter-spacing: calc(2.4 * var(--fv-vw) / 1440);
}

body.home .fv-title {
  font-family: "YakuHanJP", "Inter", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: calc(62 * var(--fv-vw) / 1440);
  line-height: 1.2;
  color: var(--blue);
  margin: calc(24 * var(--fv-vw) / 1440) 0 calc(32 * var(--fv-vw) / 1440);
}

body.home .fv-title .line {
  display: block;
  white-space: nowrap;
}

body.home .fv-title em {
  color: var(--orange);
  font-style: normal;
}

body.home .fv-lead {
  font-size: calc(14 * var(--fv-vw) / 1440);
  color: var(--text-grey);
  line-height: 1.9;
  margin-bottom: calc(32 * var(--fv-vw) / 1440);
  max-width: calc(680 * var(--fv-vw) / 1440);
}

body.home .fv .btn {
  font-size: calc(14 * var(--fv-vw) / 1440);
  gap: calc(12 * var(--fv-vw) / 1440);
}

body.home .fv .btn-orange {
  padding: calc(12 * var(--fv-vw) / 1440) calc(24 * var(--fv-vw) / 1440);
  border-radius: calc(7 * var(--fv-vw) / 1440);
  min-width: calc(184 * var(--fv-vw) / 1440);
}

body.home .fv .arrow-circle {
  width: calc(16.8 * var(--fv-vw) / 1440);
  height: calc(16.8 * var(--fv-vw) / 1440);
}

body.home .fv-visual {
  position: relative;
  height: calc(528 * var(--fv-vw) / 1440);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.home .fv-logo-upper,
body.home .fv-logo-lower {
  position: absolute;
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

body.home .fv-logo-upper {
  top: calc(62 * var(--fv-vw) / 1440);
  z-index: 1;
  width: calc(393 * var(--fv-vw) / 1440);
  left: 50%;
  transform: translateX(-50%);
}

body.home .fv-logo-lower {
  bottom: calc(-29 * var(--fv-vw) / 1440);
  z-index: 3;
  width: calc(479 * var(--fv-vw) / 1440);
  left: 58%;
  transform: translateX(-50%);
}

body.home .fv-models {
  position: relative;
  width: calc(528 * var(--fv-vw) / 1440);
  height: calc(581 * var(--fv-vw) / 1440);
  z-index: 2;
}

body.home .fv-model-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

body.home .fv-model-img.active {
  opacity: 1;
}

body.home .fv-dots {
  position: absolute;
  bottom: calc(-53 * var(--fv-vw) / 1440);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: calc(8 * var(--fv-vw) / 1440);
  align-items: center;
  z-index: 3;
}

body.home .fv-dots .dot {
  width: calc(10 * var(--fv-vw) / 1440);
  height: calc(10 * var(--fv-vw) / 1440);
  border-radius: 50%;
  background: rgba(0, 68, 119, 0.3);
}

body.home .fv-dots .dot.active {
  width: calc(32 * var(--fv-vw) / 1440);
  background: var(--orange);
  border-radius: calc(5 * var(--fv-vw) / 1440);
}

body.home .fv-banner {
  position: absolute;
  right: 60px;
  bottom: 80px;
  width: 218px;
  min-height: 160px;
  border: 2px solid var(--orange);
  border-radius: 7px;
  background: linear-gradient(180deg, transparent 30%, #0d1f35 90%);
  background-size: cover;
  overflow: hidden;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

body.home .fv-banner-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

body.home .fv-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 31, 53, 0) 0%, rgba(13, 31, 53, 0.4) 50%, rgba(13, 31, 53, 0.95) 100%);
  z-index: 1;
}

body.home .fv-banner-close {
  position: absolute;
  right: 6px;
  top: -12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1a1a2e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 5;
}

body.home .fv-banner-body {
  position: absolute;
  left: 16px;
  bottom: 50px;
  z-index: 3;
}

body.home .fv-banner-sub {
  color: var(--orange);
  font-size: 13.6px;
  font-weight: 700;
}

body.home .fv-banner-title {
  color: #fff;
  font-size: 21.5px;
  font-weight: 700;
  line-height: 1.3;
}

body.home .fv-banner-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  z-index: 3;
}

/* ============== MESSAGE ============== */
body.home .message {
  --msg-vw: clamp(1280px, 100vw, 1920px);
  position: relative;
  padding: calc(128 * var(--msg-vw) / 1440) 0;
  height: calc(736 * var(--msg-vw) / 1440);
  background:
    url('../images/message_bg.webp') center/cover no-repeat,
    linear-gradient(135deg, #002d50 3%, #044677 58%, #1a5a8a 95%);
  overflow: hidden;
  color: #fff;
}

body.home .message::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

body.home .message-img {
  position: absolute;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 4px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}

body.home .message-img-1 {
  width: 223px;
  height: 223px;
  left: 158px;
  top: 70px;
}

body.home .message-img-2 {
  width: 130px;
  height: 130px;
  left: 258px;
  top: 320px;
}

body.home .message-img-3 {
  width: 280px;
  height: 280px;
  right: 100px;
  bottom: 80px;
}

body.home .message-circle {
  position: absolute;
  left: -80px;
  bottom: 100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(232, 129, 33, 0.1);
  z-index: 1;
}

body.home .message-orange-dot {
  position: absolute;
  right: 80px;
  top: 460px;
  width: 18px;
  height: 18px;
  background: rgba(232, 129, 33, 0.5);
  border-radius: 50%;
  z-index: 2;
}

body.home .message .container {
  position: relative;
  z-index: 3;
}

body.home .message .eyebrow-line {
  width: calc(32 * var(--msg-vw) / 1440);
  height: calc(2 * var(--msg-vw) / 1440);
}

body.home .message .eyebrow-text {
  font-size: calc(12 * var(--msg-vw) / 1440);
  letter-spacing: calc(2.4 * var(--msg-vw) / 1440);
}

body.home .message .section-title {
  font-size: calc(36 * var(--msg-vw) / 1440);
  margin-top: calc(16 * var(--msg-vw) / 1440);
  letter-spacing: calc(0.5 * var(--msg-vw) / 1440);
}

body.home .message-body {
  margin: calc(32 * var(--msg-vw) / 1440) auto;
  max-width: calc(580 * var(--msg-vw) / 1440);
  text-align: center;
  font-size: calc(15 * var(--msg-vw) / 1440);
  line-height: 2;
  color: #d1d5db;
}

body.home .message-body strong {
  color: #fff;
  font-weight: 700;
}

body.home .message-image {
  display: none;
}

body.home .message-cta {
  text-align: center;
  margin-top: calc(40 * var(--msg-vw) / 1440);
}

body.home .message .btn-outline-orange-pill {
  font-size: calc(14 * var(--msg-vw) / 1440);
  padding: calc(14 * var(--msg-vw) / 1440) calc(30 * var(--msg-vw) / 1440);
  gap: calc(12 * var(--msg-vw) / 1440);
}

/* ============== CONCEPT ============== */
body.home .concept {
  position: relative;
  padding: 128px 0;
  background: linear-gradient(110deg, #cde6f9 0%, #d5ebfb 100%);
  overflow: hidden;
}

body.home .concept::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.5) 0%, transparent 25%),
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.4) 0%, transparent 30%);
  opacity: 0.6;
  pointer-events: none;
}

body.home .concept .container {
  position: relative;
  padding: 0 20px;
}

body.home .concept .eyebrow.center,
body.home .concept .section-title {
  position: relative;
  z-index: 2;
}

body.home .concept-cards {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  gap: 20px;
  justify-content: center;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

body.home .concept-card {
  background: #fff;
  border: 1px solid rgba(0, 68, 119, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 68, 119, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

body.home .concept-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 68, 119, 0.12);
}

body.home .concept-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

body.home .concept-card-body {
  padding: 28px;
}

body.home .concept-card-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

body.home .concept-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--orange);
  font-family: "Inter", sans-serif;
}

body.home .concept-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
}

body.home .concept-en {
  font-size: 12px;
  color: var(--text-grey-mid);
  letter-spacing: 1.2px;
  margin-left: auto;
}

body.home .concept-divider {
  height: 1px;
  background: rgba(0, 68, 119, 0.1);
  margin-bottom: 16px;
}

body.home .concept-desc {
  font-size: 14px;
  color: var(--text-grey-dark);
  line-height: 1.65;
  min-height: 88px;
  margin-bottom: 16px;
}

/* ============== SERVICE ============== */
body.home .service {
  background: #f2fbff;
  padding: 128px 0;
  position: relative;
  overflow: hidden;
}

body.home .service::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0 0, rgba(82, 182, 242, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(82, 182, 242, 0.08) 0%, transparent 30%);
  pointer-events: none;
}

body.home .service .container {
  position: relative;
  z-index: 2;
}

body.home .service .section-title {
  margin-bottom: 80px;
}

body.home .service-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

body.home .service-card {
  position: relative;
  background: linear-gradient(-56deg, #e2f2ff 0%, #cde6f9 45%, #e2f2ff 98%);
  border-radius: 10px;
  padding: 40px 30px;
  display: grid;
  grid-template-columns: 350px 350px 205px;
  gap: 20px;
  align-items: center;
  min-height: 263px;
}

body.home .service-brand {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 45px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}

body.home .service-name {
  font-size: 19px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-bottom: 4px;
}

body.home .service-en {
  font-size: 12px;
  color: var(--text-grey-mid);
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

body.home .service-desc {
  font-size: 15px;
  color: var(--text-grey-dark);
  line-height: 1.7;
}

body.home .service-features {
  border: 1px solid rgba(0, 68, 119, 0.3);
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.home .service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--blue);
}

body.home .service-features li .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

body.home .service-icon {
  width: 205px;
  height: 205px;
  border: 1px solid #52b6f2;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.home .service-icon img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* ============== CASE STUDY ============== */
body.home .casestudy {
  background: #fff;
  padding: 80px 0;
}

body.home .title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 48px;
}

body.home .title-block .section-title {
  margin-top: 0;
  font-size: 34px;
}

body.home .case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

body.home .case-card {
  background: #fff;
  border: 1px solid rgba(0, 68, 119, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

body.home .case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 68, 119, 0.12);
}

body.home .case-card-image {
  position: relative;
  height: 177px;
  overflow: hidden;
}

body.home .case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home .case-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 45, 80, 0.1) 0%, rgba(0, 45, 80, 0.5) 50%, rgba(0, 45, 80, 0.85) 100%);
}

body.home .case-card-corp {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
  line-height: 1.25;
}

body.home .case-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.home .case-card-tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 900;
  border-radius: 2px;
  width: fit-content;
}

body.home .case-card-en {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

body.home .case-card-body {
  padding: 20px;
}

body.home .case-date {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
}

body.home .case-sub {
  color: var(--text-grey-mid);
  font-size: 10px;
  margin: 8px 0;
  letter-spacing: 0.25px;
}

body.home .case-card-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.4;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.home .case-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

body.home .more-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ============== BLOG ============== */
body.home .blog {
  background: var(--bg-pale);
  padding: 80px 0;
  border-top: 1px solid rgba(0, 68, 119, 0.08);
}

body.home .blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

body.home .blog-card {
  background: transparent;
}

body.home .blog-card-image {
  position: relative;
  height: 177px;
  border: 2px solid var(--blue);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

body.home .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home .blog-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  text-align: center;
}

body.home .blog-overlay-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--blue-deep);
  line-height: 1.4;
  margin-bottom: 4px;
}

body.home .blog-overlay-sub {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 16px;
}

body.home .blog-card-tag {
  background: var(--blue);
  color: #fff;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 2px;
}

body.home .blog-date {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

body.home .blog-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.4;
}

/* ============== DOWNLOAD ============== */
body.home .download {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid rgba(0, 68, 119, 0.08);
}

body.home .download-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

body.home .download-card-image {
  height: 165px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 68, 119, 0.08);
}

body.home .download-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home .download-date {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

body.home .download-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.4;
  margin-bottom: 16px;
  min-height: 40px;
}

body.home .download-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

/* NOTE: .contact-banner / .contact-banner-inner / .contact-banner-title /
   .contact-banner-actions は footer-new.php で全ページに出力されるため、
   common.css 側に移動しました（重複を防止）。 */

/* ============== RESPONSIVE (index) ============== */
@media (max-width: 1200px) {
  body.home .fv-inner {
    padding: 0 32px;
  }

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

  body.home .service-icon {
    grid-row: span 2;
  }
}

@media (max-width: 900px) {
  body.home .fv {
    height: 730px;
    min-height: 730px;
    padding-top: 84px;
    padding-bottom: 0;
    overflow: hidden;
  }

  body.home .fv-bg-pattern {
    background:
      url('../images/fv_bg_sp.webp') bottom center / 100% auto no-repeat,
      #eef4fb;
  }

  body.home .fv-inner {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    height: calc(730px - 84px);
    padding: 15px 15px 78px;
    min-height: 0;
    row-gap: 0;
  }

  body.home .fv .eyebrow-line {
    width: 28px;
    height: 2px;
  }

  body.home .fv .eyebrow-text {
    font-size: 12px;
    letter-spacing: 2px;
  }

  body.home .fv-title {
    font-size: min(9.2vw, 35px);
    margin: 16px 0 18px;
  }

  body.home .fv-lead {
    font-size: 13px;
    line-height: 1.85;
    margin-bottom: 0;
    max-width: none;
  }

  body.home .fv-text {
    width: 100%;
  }

  /* primary CTA is provided by the fixed bottom bar on mobile */
  body.home .fv-text .btn-orange {
    display: none;
  }

  body.home .fv-visual {
    display: flex;
    flex: 1;
    min-height: 0;
    height: auto;
    min-height: 345px;
    margin: 30px auto 0;
    transform: translateX(-22px);
  }

  body.home .fv-models {
    width: min(92vw, 420px);
    height: 345px;
    max-height: 345px;
  }

  body.home .fv-logo-upper {
    width: 235px;
    top: 50px;
  }

  body.home .fv-logo-lower {
    width: 290px;
    bottom: 0;
  }

  body.home .fv-dots {
    display: none;
  }

  body.home .fv-banner {
    display: none;
  }

  body.home .concept-cards {
    grid-template-columns: 1fr;
  }

  body.home .case-cards,
  body.home .blog-cards,
  body.home .download-cards {
    grid-template-columns: 1fr;
  }

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

  body.home .service-icon {
    margin-left: auto;
    margin-right: auto;
  }

  body.home .message {
    height: 1145px;
    padding: 80px 0 0;
    background:
      url('../images/message_bg_sp.webp') top / cover no-repeat,
      linear-gradient(135deg, #002d50 3%, #044677 58%, #1a5a8a 95%);
  }

  body.home .message .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  body.home .message .eyebrow-text {
    font-size: 12px;
    letter-spacing: 2px;
  }

  body.home .message .section-title {
    font-size: 32px;
    margin-top: 25px;
  }

  body.home .message-body {
    margin: 24px auto;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.9;
  }

  body.home .message-image {
    display: block;
    width: min(80vw, 340px);
    margin: 8px auto 0;
  }

  body.home .message-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  body.home .message-cta {
    margin-top: 28px;
  }

  body.home .message .btn-outline-orange-pill {
    font-size: 14px;
    padding: 14px 28px;
    gap: 12px;
  }

  body.home .concept .section-title,
  body.home .service .section-title {
    font-size: 32px;
  }

  body.home .concept,
  body.home .service {
    padding: 80px 0;
  }

  body.home .service .section-title {
    margin-bottom: 30px;
  }

  body.home .service .container {
    padding: 0 20px;
  }

  body.home .service-card {
    padding: 20px;
    gap: 20px;
  }

}

/* ============== FV LOAD ANIMATIONS ============== */
@keyframes fv-header-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fv-bg-in {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 0.6;
    transform: scale(1);
  }
}

@keyframes fv-zoom-in {
  from {
    opacity: 0;
    transform: scale(1.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fv-logo-rotate {
  from {
    transform: translateX(-50%) rotate(-45deg);
  }

  to {
    transform: translateX(-50%) rotate(0deg);
  }
}

@keyframes fv-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fv-scale-fade {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fv-bounce-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

body.home .top-strip,
body.home .site-header {
  animation: fv-header-in 600ms ease-out 0ms both;
}

body.home .fv-bg-pattern {
  transform-origin: 0% 100%;
  animation: fv-bg-in 1000ms cubic-bezier(0.22, 1, 0.36, 1) 200ms both;
}

body.home .fv-models {
  animation: fv-zoom-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 300ms both;
}

body.home .fv-logo-upper,
body.home .fv-logo-lower {
  animation:
    fv-logo-rotate 900ms cubic-bezier(0.22, 1, 0.36, 1) 300ms both,
    fv-fade-in 400ms ease-out 600ms both;
}

body.home .fv-text .eyebrow {
  animation: fv-fade-in 500ms ease-out 500ms both;
}

body.home .fv-title {
  animation: fv-scale-fade 700ms cubic-bezier(0.22, 1, 0.36, 1) 700ms both;
}

body.home .fv-lead {
  animation: fv-fade-in 500ms ease-out 1200ms both;
}

body.home .fv-text .btn-orange {
  animation: fv-bounce-in 500ms cubic-bezier(0.34, 1.56, 0.64, 1) 1400ms both;
}
