* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", Arial, sans-serif;
  color: #222;
}

html,body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

section,
section div {
  scroll-margin-top: 64px;
}

/* Animation : Fade-down */
.fade-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 3s ease, transform 3s cubic-bezier(.22,.61,.36,1);
}

.fade-down.show {
  opacity: 1;
  transform: translateY(0);
}

/* Animation : Fade-in */
.fade-in {
  opacity: 0;
  transition: opacity 3s ease;
}

.fade-in.show {
  opacity: 1;
}

/* Animation : Fade-right */
.fade-right {
  opacity: 0;
  transform: translateX(-120px);
  transition: opacity 3s ease, transform 3s cubic-bezier(.22,.61,.36,1);
}

.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}

.icon-circle {
  width: 18px;
  height: 18px;
  border: 1px solid #cfc7bc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon {
  width: 11px;
  height: 11px;
  color: #977959;
}

/*===============
  HEADER
  =============== */
.header {
  background: white;
  border-bottom: 1px solid #ddd;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

.header-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 8px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* ======================
   MOBILE HEADER (0-799)
   ====================== */
.fdp-menu-toggle {
  display: none;
}

.fdp-hamburger {
  display: none;
}

/*===============
  Navigation 
  =============== */
.nav {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.nav a {
  text-decoration: none;
  color: #333;
  padding: 5px 3px;
}

.nav a:hover {
  color: #977959;
}

/* BUTTON */
.btn-contact .arrow {
  display: inline-flex;
  align-items: center;
}

.btn-contact .arrow svg {
  width: 13px;
  height: 13px;
  display: block;
}

.btn-contact {
  background: #B18031;
  color: white;
  font-weight: bold;
  font-size: 11px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-contact:hover {
  opacity: 0.9;
  background: #977959;
}

/*===============
  Section:Hero  
  =============== */
.hero {
  min-height: 100vh;
  width: 100%;
  background: url("../img/hero/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 56px;
  padding-bottom: 64px;
  box-sizing: border-box;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 0 16px;
  margin-bottom: 52px;
}

.hero-content h1 {
  font-size: 78px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-content p {
  margin-top: 0px;
  font-size: 20px;
  letter-spacing: 1px;
}

.hero-content h1 span,
.hero-content p span {
  display: inline;
}

/*===============
  Section: Vision 
  =============== */
.vision-section {
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 48px 16px;
}

.vision-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.vision-header {
  text-align: center;
  margin-bottom: 40px;
}

.vision-icon {
  width: 23px;
  height: 23px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.vision-subtitle {
  color: #8b6f4e;
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 8px;
}

.vision-title {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
}

.timeline {
  position: relative;
}

/* item */
.timeline-item {
  position: relative;
  display: flex;
  gap: 0px;
  padding: 8px 0;
  border-bottom: none;
  background-image: linear-gradient(
    to right,
    #c7b299 0%,
    #c7b299 20%,
    #d6d6d6 25%,
    #d6d6d6 100%
  );
  background-repeat: no-repeat;
  background-size: calc(100% - 32px) 1px;
  background-position: 32px bottom;
}

/* left column */
.timeline-left {
  width: 32px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* dot */
.dot {
  width: 6px;
  height: 6px;
  background: #6fc2c9;
  border-radius: 50%;
  z-index: 2;
}

/* The line runs from the bottom dot down to the next item. */
.line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% + 18px);
  background: #d6d6d6;
  z-index: 1;
}

/* content */
.timeline-content {
  display: grid;
  grid-template-columns: 216px 1fr 169px;
  gap: 16px;
  width: 100%;
  align-items: center;
}

.left h4 {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}

.tag {
  color: #b89b7a;
  font-size: 13px;
}

.center p {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}

.right {
  text-align: left;
}

.right .date {
  font-size: 13px;
  margin-bottom: 2px;
}

.right .time {
  font-size: 13px;
  color: #555;
}

/*===============
  Section: Retreat  
  =============== */
.retreat {
  padding: 48px 16px;
  background: #f7f2e9;
  overflow-x: hidden;
}

.retreat .container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

/* top layout */
.retreat-top {
  position: relative;
  margin-bottom: 28px;
}

.retreat-top::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
}

.retreat-title h2 {
  font-size: 32px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: -8px;
}

/* subtitle + tabs on same row */
.retreat-subrow {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.retreat-title .subtitle {
  font-size: 16px;
  color: #333;
}

/* tabs right */
.retreat-tabs {
  display: flex;
  gap: 24px;
  font-size: 16px;
  font-weight: 600;
  color: #999;
  position: relative;
  padding-bottom: 8px;
}

/* Vertical line retreat-tabs */
.retreat-tabs::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.04px;
  background: linear-gradient(
    to right,
    rgba(184, 155, 122, 0.95) 0px,
    rgba(184, 155, 122, 0.95) 50%,
    #cfc7bc 50%,
    #cfc7bc 100%
  );
}

.retreat-tabs.reverse::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.04px;
  background: linear-gradient(
    to left,
    rgba(184, 155, 122, 0.95) 0px,
    rgba(184, 155, 122, 0.95) 50%,
    #cfc7bc 50%,
    #cfc7bc 100%
  );
}

.retreat-tabs span {
  cursor: pointer;
  position: relative;
  padding-bottom: 8px;
  color: #b8aa98;
}

.retreat-tabs span.active {
  color: #8b6b4a;
}

/* images */
.retreat-images-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  margin-bottom: 44px;
}

.retreat-slider {
  overflow: hidden;
  position: relative;
}

.retreat-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollRetreat 40s linear infinite;
}

.retreat-track img {
  width: 453px;
  height: 266px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes scrollRetreat {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.retreat-slider::before,
.retreat-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* description */
.retreat-desc {
  text-align: center;
  max-width: 608px;
  margin: 0 auto;
  color: #333;
  line-height: 1.3;
  font-size: 14px;
}

.divider {
  margin-bottom: 16px;
  margin-top: 24px;
}

.divider img {
  width: 25px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* =========================
   Section: About Retreat
========================= */
.about-retreat .container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}

.about-retreat .container::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #cfc7bc;
}

.about-retreat .container::before {
  top: 0;
}

.about-retreat {
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
}

.about-retreat-desc {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 56px;
  font-size: 14px;
  line-height: 1.3;
  color: #333;
}

.about-retreat-divider {
  height: 1px;
  background: #cfc7bc;
  width: 100%;
  max-width: 960px;
  margin: 44px auto;
}

/* Target Block Layout */
.about-retreat-target {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
}

.target-image {
  width: 100%;
}

.target-image img {
  width: 100%;
  height: 354px;
  display: block;
  object-fit: cover;
}

.target-right {
  padding-left: 48px;
  display: flex;
  gap: 66px;
  align-items: flex-start;
  width: 100%;
}

/* Vertical text */
.vertical-block {
  display: flex;
  gap: 4px;
}

.vertical-text {
  font-size: 14px;
  line-height: 1.3;
  color: #222;
  text-align: center;
  letter-spacing: 2px;
}

.vertical-text.bold {
  font-weight: 700;
  font-size: 35px;
  padding-left: 12px;
}

/* Right side */
.target-content {
  max-width: none;
  flex: 1;
}

.target-text {
  font-size: 14px;
  line-height: 1.3;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 2px;
}

.target-roles {
  display: flex;
  gap: 60px;
  margin-bottom: 12px;
}

.role-box {
  font-size: 13px;
  font-weight: 700;
  color: #8b6b4a;
  text-align: center;
  line-height: 1.4;
}

.role-icon {
  width: 29px;
  height: 29px;
  margin: 0 auto 6px;
  object-fit: contain;
  display: block;
}

.target-note {
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* =========================
   Section: Private Vision
========================= */
.vision-private {
  padding: 0px 16px;
  background: #fff;
}

.vision-private-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 48px;
  padding-bottom: 48px;
}

.vision-private-container::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #cfc7bc;
}

.vision-private-container::before {
  top: 0;
}

.vision-private-title {
  text-align: center;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.vision-private-title span {
  color: #b89b7a;
}

.vision-private-desc {
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  color: #333;
  max-width: 720px;
  margin: 0 auto 16px;
}

.vision-private-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0px;
}

.vision-private-card {
  width: 288px;
  background: #f7f2e9;
  border: 1px solid #e3dbd1;
  padding: 22px 19px;
}

.vision-private-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #222;
}

.vision-private-card h3 img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.vision-private-card p {
  font-size: 13px;
  line-height: 1.3;
  color: #333;
}

.vision-private-arrow {
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #b89b7a;
  margin-top: 72px;
}

/* =========================
   Section: Purpose Art
========================= */
.purpose-art {
  padding: 0px 16px;
  background: #fff;
}

.purpose-art-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 48px;
  padding-bottom: 80px;
}

.purpose-art-content {
  padding-left: 72px;
}

/* Vertical line */
.purpose-art-container::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #cfc7bc;
}

.purpose-art-container::before {
  top: 0;
}

.purpose-art-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: start;
}

/* Slider Purpose Art (Fade Smooth) */
.purpose-art-image-slider {
  position: relative;
  width: 100%;
  height: 354px;
  overflow: hidden;
}

.purpose-art-image-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.purpose-art-image-slider .slide.active {
  opacity: 1;
  z-index: 2;
}

.purpose-art-image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s;
}

.slider-dots .dot.active {
  background: rgba(255, 255, 255, 0.95);
}

/* Content */
.purpose-art-title {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.purpose-art-text {
  font-size: 14px;
  line-height: 1.3;
  color: #333;
}

/* =========================
   Instructor Section
========================= */
.instructor {
  padding: 0px 16px;
}

.instructor-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.instructor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.instructor-header h2 {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* WHO WE ARE */
.who-tags {
  display: flex;
  gap: 3px;
}

.who-tags span {
  border: 2px solid;
  padding: 0px 7px;
  font-size: 11px;
  border-radius: 16px;
  letter-spacing: 1px;
  background: transparent;
}

.star-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  animation: spin 10s linear infinite;
  transform-origin: 50% 50%;
}
/* rotate icon */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Grid dashed table */
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px dashed #cfc7bc;
  border-left: 1px dashed #cfc7bc;
}

/* Each cell */
.instructor-card {
  position: relative;
  padding: 36px 18px 56px;
  border-right: 1px dashed #cfc7bc;
  border-bottom: 1px dashed #cfc7bc;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 520px;
  background: transparent;
  transition: background 0.3s ease;
}

.card-top {
  min-height: 88px;
  transition: all 0.28s ease;
}

.card-middle {
  text-align: center;
}

.card-bottom {
  margin-top: auto;
}

/* Ribbon title */
.card-title {
  position: absolute;
  top: 0;
  left: 0;
  background: #dcd6e8;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 700;
}

/* cut corner ribbon */
.card-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: -11px;
  width: 2px;
  height: 0;
  border-top: 26px solid #dcd6e8;
  border-right: 11px solid transparent;
}

/* Description */
.card-desc {
  font-size: 11px;
  line-height: 1.3;
  max-height: 240px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 1.08s ease, opacity 1s ease;
}

/* Avatar */
.card-avatar {
  margin-top: auto;
}

.card-avatar img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  margin: 8px 0 12px;
}

/* Role + Name center */
.card-role {
  text-align: center;
  color: #b89b7a;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
}

.card-name {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.card-meta {
  font-size: 11px;
  line-height: 1.3;
}

.card-extra {
  font-size: 11px;
  line-height: 1.3;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 1.08s ease, opacity 1s ease;
}

/* ===== HOVER (not active) ===== */
.instructor-card:not(.active):hover {
  background: #f7f2e9;
}

.instructor-card:not(.active):hover .card-desc {
  max-height: 0;
  opacity: 0;
}

.instructor-card:not(.active):hover .card-extra {
  max-height: 240px;
  opacity: 1;
  margin-top: 8px;
}

.instructor-card:not(.active):hover .card-top {
  min-height: unset;
}

.instructor-card:not(.active):hover .icon-circle {
  transform: rotate(180deg);
  background: #b89b7a;
}

.instructor-card:not(.active):hover .icon-circle .arrow-icon {
  color: #fff;
}

/* ===== ACTIVE (High prioritize) ===== */
.instructor-card.active {
  background: #f7f2e9;
}

.instructor-card.active .card-desc {
  max-height: 0;
  opacity: 0;
}

.instructor-card.active .card-extra {
  max-height: 240px;
  opacity: 1;
  margin-top: 8px;
}

.instructor-card.active .card-top {
  min-height: unset;
}

.instructor-card.active .icon-circle {
  transform: rotate(180deg);
  background: #b89b7a;
}

.instructor-card.active .icon-circle .arrow-icon {
  color: #fff;
}

/* Icon */
.icon-circle {
  background: transparent;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}

.card-bottom-icon {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

/* =========================
   Section: Instructor messages
========================= */
.instructor-messages {
  position: relative;
  background: url("../img/message-bg.png") center/cover no-repeat;
  color: #fff;
}

.instructor-messages .container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.instructor-messages::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.instructor-messages__container {
  display: flex;
  gap: 144px;
  align-items: stretch;
  min-height: 60vh;
}

.instructor-messages__card {
  width: 50%;
  padding: 16px;
  position: relative;
}

.instructor-messages__card--left {
  border-left: 2px solid rgba(255,255,255,0.4);
  align-self: flex-start;
  position: relative;
  padding-top: 48px;
}

/* vertical line bottom */
.instructor-messages__card--left::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 2px;
  background: rgba(255,255,255,0.4);
}

.instructor-messages__card--right {
  position: relative;
  border-left: 2px solid rgba(255,255,255,0.4);
  align-self: flex-end;
  padding-bottom: 48px;
}

/* vertical line bottom */
.instructor-messages__card--right::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 2px;
  background: rgba(255,255,255,0.4);
}

.instructor-messages__card-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.instructor-messages__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 12px;
}

.instructor-messages__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.instructor-messages__icon {
  width: 23px;
  height: 17px;
}

.instructor-messages__title {
  font-size: 19px;
  font-weight: bold;
  margin: 0;
}

.instructor-messages__text {
  font-size: 14px;
  line-height: 1.3;
  color: #ddd;
}

/* =========================
   Section: Program Management
========================= */
.program-management {
  background: #fff;
  padding: 48px 0;
  text-align: center;
}

.program-management .container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.program-management__content {
  max-width: 320px;
  margin: 0 auto;
}

.program-management__icon {
  width: 29px;
  height: 19px;
}

.program-management__title {
  font-size: 19px;
  font-weight: bold;
  margin: 0 0 6px;
}

.program-management__subtitle span {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  display: inline-block;
  margin-bottom: 3px;
}

.program-management__subtitle {
  font-size: 8px;
  color: #666;
  line-height: 0.6;
  margin: 0;
  white-space: pre-line;
}

/* =========================
   Section: Schedule 
========================= */
.fdp-schedule {
  position: relative;
  background: #f6f0e5;
  padding: 0 0 48px;
  overflow: hidden;
  background-image: url("../img/schedule-bg.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

/* container */
.fdp-schedule__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 19px;
  position: relative;
  padding-top: 56px;
  z-index: 2;
}

.fdp-schedule__container::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #cfc7bc;
}

.fdp-schedule__container::before {
  top: 0;
}

/* TOP GRID */
.fdp-schedule__top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* IMAGE */
.fdp-schedule__image {
  width: 100%;
  background: #fff;
}

.fdp-schedule__image img {
  width: 100%;
  height: 414px;
  display: block;
  object-fit: cover;
}

/* INFO RIGHT */
.fdp-schedule__info {
  font-size: 14px;
  color: #222;
}

/* TABLE */
.fdp-schedule__table {
  border-top: none;
}

.fdp-schedule__row {
  display: grid;
  grid-template-columns: 112px 1fr;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.fdp-schedule__label {
  font-weight: 600;
  color: #b89b7a;
}

.fdp-schedule__value {
  line-height: 1.3;
}

.fdp-schedule__value--split span b {
  color: #b89b7a;
  margin-right: 36px;
}

.fdp-schedule__value--split {
  display: flex;
  justify-content: flex-start;
  gap: 88px;
}

/* DETAIL SECTION */
.fdp-schedule__detail {
  margin-top: 4px;
}

.fdp-schedule__detail-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #b89b7a;
}

.fdp-schedule__detail-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 11px;
  padding: 4px 0;
  font-size: 14px;
  border-bottom: none;
}

.fdp-schedule__detail-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.fdp-schedule__icon {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fdp-schedule__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.fdp-schedule__day {
  font-weight: 700;
  color: #b89b7a;
}

.fdp-schedule__detail-right,
.fdp-schedule__detail-sub {
  font-size: 10px;
  color: #555;
  white-space: nowrap;
}

.fdp-schedule__detail-item--stack {
  display: block;
  padding: 4px 0;
}

.fdp-schedule__detail-item--stack .fdp-schedule__detail-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* TOTAL */
.fdp-schedule__total {
  display: flex;
  justify-content: flex-start;
  gap: 22px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 2px;
}

.fdp-schedule__total-label {
  font-weight: 600;
  color: #b89b7a;
}

/* PRICE BLOCK */
.fdp-schedule__price {
  text-align: center;
  margin-top: 64px;
  padding-bottom: 32px;
}

.fdp-schedule__price-title {
  font-size: 35px;
  letter-spacing: 5px;
  margin: 0 0 10px;
  font-weight: 700;
  color: #111;
}

.fdp-schedule__price-main {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px;
}

.fdp-schedule__price-tax {
  font-size: 10px;
  font-weight: 500;
}

.fdp-schedule__price-note {
  font-size: 14px;
  margin: 0 0 12px;
  color: #333;
}

.fdp-schedule__price-desc {
  font-size: 14px;
  line-height: 1.3;
  color: #333;
  margin-bottom: 19px;
}

.fdp-schedule__price-desc p {
  margin: 0;
}

/* BUTTON */
.fdp-schedule__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 120px;
  height: 32px;
  padding: 0 16px;
  background: #B18031;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  transition: 0.25s ease;
  border-radius: 2px;
}

.fdp-schedule__btn:hover {
  /* filter: brightness(1.1); */
  background: #977959;
}

.fdp-schedule__btn-arrow {
  font-size: 14px;
  line-height: 1;
}

.fdp-schedule__btn .arrow {
  display: inline-flex;
  align-items: center;
}

.fdp-schedule__btn .arrow svg {
  width: 13px;
  height: 13px;
  display: block;
}

/* =========================
   Section: Logo partners
========================= */
.partner-logos {
  padding: 64px 0;
  background: #fff;
}

.partner-logos .container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.partner-logos__title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 32px;
}

/* scroll */
.partner-logos__images {
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  margin-bottom: 44px;
}

.partner-logos__row {
  width: 100%;
  overflow: hidden;
}

.partner-logos__track {
  display: flex;
  width: max-content;
  animation: partnerScroll 25s linear infinite;
}

.partner-logos__track img {
  height: 56px;
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

/* animation loop */
@keyframes partnerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* CONTRACT BOX */
.partner-logos__contract {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding-top: 8px;
}

.partner-logos__contract-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-logos__contract-icon img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.partner-logos__contract-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px 0;
}

.partner-logos__contract-text {
  font-size: 14px;
  color: #333;
  margin: 4px;
}

.partner-logos__contract-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.partner-logos__contract-link-text {
  border-bottom: 1px solid #bca27b;
  font-size: 14px;
}

.partner-logos__contract-link .arrow-icon {
  flex-shrink: 0;
}

.partner-logos__contract-link:hover {
  color: #b8863b;
  border-bottom-color: #b8863b;
}

.partner-logos__contract-link:hover .partner-logos__contract-link-text {
  border-bottom-color: #b8863b;
}

/* ================== */
/* SECTION: Contact = */
/* ================== */
.fdp-contact {
  width: 100%;
  overflow: hidden;
}

.fdp-contact__wrap {
  position: relative;
  width: 100%;
  min-height: 560px;
  background-image: url("../img/contact-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fdp-contact__blur {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
}

/* content */
.fdp-contact__content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 448px;
  width: 100%;
  padding: 16px;
}

.fdp-contact__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fdp-contact__icon img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.fdp-contact__title {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: 2px;
}

.fdp-contact__desc {
  font-size: 13px;
  line-height: 1.8;
  margin: 0 0 18px;
  opacity: 0.9;
}

/* ================== */
/* Footer =========== */
/* ================== */
.fdp-footer {
  background: #0b0b0b;
  color: #fff;
  padding: 56px 0 0;
  position: relative;
}

.fdp-footer__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 0px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* LEFT BRAND */
.fdp-footer__brand {
  min-width: 176px;
  text-align: center;
}

.fdp-footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.fdp-footer__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

/* LINKS */
.fdp-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fdp-footer__list li {
  margin-bottom: 0px;
}

.fdp-footer__list a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: 0.25s ease;
}

.fdp-footer__list a:hover {
  opacity: 1;
}

/* RIGHT CTA */
.fdp-footer__cta {
  max-width: 320px;
}

.fdp-footer__desc {
  font-size: 11px;
  line-height: 1.3;
  opacity: 0.85;
  margin: 0 0 8px;
}

.fdp-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #B18031;
  color: #fff;
  text-decoration: none;
  height: 28px;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.25s ease;
}

.fdp-footer__btn:hover {
  background: #977959;
}

.fdp-footer__btn.arrow {
  display: inline-flex;
  align-items: center;
}

.fdp-footer__btn .arrow svg {
  width: 13px;
  height: 13px;
  display: block;
}

/* SCROLL TOP BUTTON */
.fdp-footer__top {
  position: fixed;
  bottom: 140px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #b68a2b;
  text-decoration: none;
  font-size: 30px;
  font-weight: 400;
  border: 2px solid #b68a2b;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
  transform: translateY(10px);
}

.fdp-footer__top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* BOTTOM COPYRIGHT */
.fdp-footer__bottom {
  text-align: center;
  padding: 14px 16px;
}

.fdp-footer__bottom p {
  margin: 0;
  font-size: 9px;
  opacity: 0.55;
}

/* ============ */
/* Responsive = */
/* ============ */
/* Desktop large: 1200px+ */
@media (min-width: 1200px) {
}

/* Tablet + small desktop: 768px - 1199px */
@media (min-width: 768px) and (max-width: 1199px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
  }

  .logo img {
    height: 36px;
  }

  .header-right {
    justify-content: center;
    width: 100%;
  }

  .nav {
    justify-content: center;
    display: flex;
    gap: 16px;
    font-size: 13px;
  }

  .hero-content h1 span,
  .hero-content p span {
    display: block;
  }

  .hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 0 16px;
    margin-bottom: 52px;
  }

  .hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .hero-content p {
    margin-top: 0px;
    font-size: 16px;
    letter-spacing: 1px;
  }

  .vision-title br {
    display: none;
  }

  .timeline-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }

  .timeline-content > div {
    width: 100%;
  }

  .timeline-content .right {
    display: flex;
    gap: 8px;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
  }

  .timeline-item {
    background-image: linear-gradient(to right, #d6d6d6 100%);
  }

  .retreat-title h2 {
    font-size: 26px;
    margin-bottom: 0px;
  }

  .retreat-title .subtitle {
    font-size: 13px;
  }

  .retreat-subrow {
    flex-wrap: wrap;
    gap: 24px;
  }

  .retreat-tabs {
    width: 100%;
    display: flex;
    gap: 0;
    font-size: 13px;
    padding-bottom: 0px;
  }

  .retreat-tabs span {
    width: 50%;
    text-align: center;
  }

  .retreat-track {
    display: flex;
    gap: 13px;
    width: max-content;
    animation: scrollRetreat 30s linear infinite;
  }

  .retreat-track img {
    width: 274px;
    height: 161px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .retreat-desc {
    font-size: 13px;
  }

  .section-title {
    font-size: 13px;
  }

  .about-retreat-desc {
    font-size: 13px;
  }

  .about-retreat-target {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 453px;
    margin: 0 auto;
  }

  .target-image img {
    aspect-ratio: 566 / 442;
    height: auto;
  }

  .target-right {
    padding-left: 0;
    gap: 48px;
    flex-direction: column;
    align-items: center;
  }

  .vertical-block {
    justify-content: center;
  }

  .vertical-text {
    font-size: 13px;
  }

  .vertical-text.bold {
    font-size: 32px;
  }

  .target-content {
    text-align: center;
  }

  .target-text,
  .target-note {
    text-align: center;
    font-size: 13px;
    letter-spacing: 2px;
  }

  .target-roles {
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .vision-private-flow {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  .vision-private-card {
    width: 45%;
    max-width: 480px;
  }

  .vision-private-arrow {
    margin: 0;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #b89b7a;
    border-bottom: none;
  }

  .vision-private-card h3 {
    font-size: 14px;
    font-weight: 500;
  }

  .vision-private-card h3 img {
    width: 20px;
    height: 20px;
  }

  .vision-private-card p {
    font-size: 13px;
  }

  .vision-private-desc {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .vision-private-desc.br {
    display: none;
  }

  .purpose-art-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 453px;
    margin: 0 auto;
  }

  .purpose-art-image-slider img {
    height: auto;
    aspect-ratio: 566 / 442;
  }

  .purpose-art-content {
    flex: unset;
    padding-left: 0;
  }

  .purpose-art-text {
    text-align: left;
    font-size: 13px;
  }

  .instructor-grid {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    scroll-behavior: smooth;
  }

  .instructor-card {
    border-right: 1px dashed #cfc7bc;
    border-bottom: 1px dashed #cfc7bc;
    transition: background 0.3s ease;
  }

  .instructor-messages__container {
    flex-direction: column;
    gap: 48px;
    min-height: auto;
  }

  .instructor-messages__card {
    width: 65%;
  }

  .instructor-messages__card--left {
    align-self: flex-start;
    padding-top: 48px;
  }

  .instructor-messages__card--right {
    align-self: flex-end;
    padding-bottom: 48px;
  }

  .fdp-schedule__top {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 453px;
    margin: 0 auto;
  }

  .fdp-schedule__image img {
    aspect-ratio: 566 / 518;
    height: auto;
  }

  .fdp-schedule__info {
    font-size: 13px;
  }

  .fdp-schedule__row {
    grid-template-columns: 128px 1fr;
  }

  .fdp-schedule__value--split {
    gap: 48px;
    flex-wrap: wrap;
  }

  .fdp-schedule__detail-item {
    font-size: 13px;
  }

  .fdp-schedule__detail-right {
    white-space: normal;
    text-align: right;
  }

  .fdp-schedule__detail-sub {
    white-space: normal;
    text-align: left;
  }

  .fdp-schedule__price-title {
    font-size: 29px;
  }

  .fdp-schedule__price-note,
  .fdp-schedule__price-desc {
    font-size: 13px;
  }

  .fdp-contact__content {
    max-width: 360px;
  }

  .fdp-contact__blur {
    width: calc(360px + 0px);
    max-width: calc(100% - 0px);
  }

  .fdp-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    padding: 0 80px 32px;
  }

  .fdp-footer__brand {
    min-width: auto;
    text-align: left;
  }

  .fdp-footer__logo-img {
    height: 28px;
  }

  .fdp-footer__cta {
    max-width: 480px;
    width: 100%;
  }

  .fdp-footer__btn {
    justify-content: center;
  }
}

/* Mobile: 1px - 767px */
@media (max-width: 767px) {
  .header-inner {
    padding: 8px 16px;
  }

  .nav {
    display: none;
  }

  .logo img {
    height: 28px;
  }

  .btn-contact {
    display: none;
  }

  .fdp-hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .fdp-hamburger span {
    width: 21px;
    height: 2px;
    background: #222;
    display: block;
  }

  .fdp-mobile-menu {
    position: fixed;
    top: 56px;
    right: 1px;
    width: calc(30% - 8px);
    min-width: 160px;
    max-width: 256px;
    background: #fff;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    z-index: 999;
    height: auto;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    align-items: flex-start;
  }

  .fdp-menu-toggle:checked ~ .fdp-mobile-menu {
    transform: translateX(0);
  }

  .fdp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 997;
  }

  .fdp-menu-toggle:checked ~ .fdp-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .fdp-mobile-menu .nav {
    display: flex;
    flex-direction: column;
  }

  .fdp-mobile-menu .btn-contact {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  .hero-content h1 span,
  .hero-content p span {
    display: block;
  }

  .hero {
    min-height: 50vh;
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 12px;
  }

  .vision-section {
    padding: 48px 8px;
  }

  .vision-title br {
    display: none;
  }

  .vision-title {
    font-size: 15px;
  }

  .vision-subtitle {
    font-size: 16px;
    font-weight: normal;
  }

  .timeline-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }

  .timeline-content > div {
    width: 100%;
  }

  .timeline-content .right {
    display: flex;
    gap: 8px;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
  }

  .timeline-item {
    background-image: linear-gradient(to right, #d6d6d6 100%);
  }

  .vision-title,
  .timeline-content p,
  .timeline-content .tag {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .retreat {
    padding: 48px 8px;
  }

  .retreat-title h2 {
    font-size: 19px;
    margin-bottom: 0px;
  }

  .retreat-title .subtitle {
    font-size: 11px;
  }

  .retreat-subrow {
    flex-wrap: wrap;
    gap: 24px;
  }

  .retreat-tabs {
    width: 100%;
    display: flex;
    gap: 0;
    font-size: 13px;
    padding-bottom: 0px;
  }

  .retreat-tabs span {
    width: 50%;
    text-align: center;
  }

  .retreat-desc {
    font-size: 11px;
  }

  .retreat-images-wrap {
    margin-bottom: 0px;
  }

  .retreat-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: scrollRetreat 30s linear infinite;
  }

  .retreat-track img {
    width: 274px;
    height: 161px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .about-retreat-desc {
    padding-left: 32px;
    padding-right: 32px;
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 11px;
  }

  .about-retreat-desc {
    font-size: 11px;
  }

  .about-retreat-target {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 274px;
    margin: 0 auto;
    padding: 0px 8px;
  }

  .target-image img {
    aspect-ratio: 343 / 268;
    height: auto;
  }

  .target-right {
    padding-left: 0;
    gap: 48px;
    flex-direction: column;
    align-items: center;
  }

  .vertical-block {
    justify-content: center;
  }

  .vertical-text {
    font-size: 11px;
  }

  .vertical-text.bold {
    font-size: 20px;
  }

  .target-content {
    text-align: center;
  }

  .target-text,
  .target-note {
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;
  }

  .target-text {
    letter-spacing: 3px;
  }

  .target-roles {
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
  }

  .vision-private-flow {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  .vision-private-card {
    width: 100%;
    max-width: 320px;
  }

  .vision-private-arrow {
    margin: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid #b89b7a;
    border-bottom: none;
  }

  .vision-private-title {
    font-size: 21px;
    line-height: 1.3;
  }

  .vision-private-title span {
    display: block;
  }

  .vision-private-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }

  .vision-private-card h3 {
    font-size: 14px;
    font-weight: 500;
  }

  .vision-private-card h3 img {
    width: 20px;
    height: 20px;
  }

  .vision-private-card p {
    font-size: 11px;
  }

  .vision-private-desc {
    font-size: 11px;
  }

  .vision-private-desc.br {
    display: none;
  }

  .purpose-art-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 274px;
    margin: 0 auto;
  }

  .purpose-art-title {
    font-size: 27px;
  }

  .purpose-art-image-slider {
    height: 214px;
  }

  .purpose-art-image-slider img {
    height: auto;
    aspect-ratio: 343 / 268;
  }

  .purpose-art-content {
    flex: unset;
    padding-left: 0;
  }

  .purpose-art-text {
    text-align: left;
    font-size: 11px;
  }

  .instructor-grid {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    scroll-behavior: smooth;
  }

  .instructor-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .who-tags {
    flex-wrap: wrap;
  }

  .instructor-card {
    border-right: 1px dashed #cfc7bc;
    border-bottom: 1px dashed #cfc7bc;
  }

  .instructor-messages__container {
    flex-direction: column;
    gap: 48px;
    min-height: auto;
  }

  .instructor-messages__card {
    width: 90%;
  }

  .instructor-messages__card--left {
    align-self: flex-start;
    padding-top: 48px;
  }

  .instructor-messages__card--right {
    align-self: flex-end;
    padding-bottom: 48px;
  }

  .fdp-schedule__top {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 343;
    margin: 0 auto;
  }

  .fdp-schedule__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 343 / 315;
  }

  .fdp-schedule__info {
    font-size: 11px;
  }

  .fdp-schedule__row {
    grid-template-columns: 80px 1fr;
    gap: 8px;
  }

  .fdp-schedule__value--split {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }

  .fdp-schedule__detail-item {
    display: block;
    font-size: 11px;
    padding: 6px 0;
  }

  .fdp-schedule__detail-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .fdp-schedule__detail-right,
  .fdp-schedule__detail-sub {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    text-align: left;
    white-space: normal;
  }

  .fdp-schedule__price {
    margin-top: 48px;
    padding-bottom: 24px;
  }

  .fdp-schedule__price-title {
    font-size: 19px;
    letter-spacing: 3px;
  }

  .fdp-schedule__price-note,
  .fdp-schedule__price-desc,
  .fdp-schedule__price-main {
    font-size: 11px;
  }

  .fdp-schedule__value--split span b {
    margin-left: -88px;
    margin-right: 42px;
  }

  .partner-logos__track img {
    height: 32px;
  }

  .fdp-contact__wrap {
    min-height: 480px;
  }

  .fdp-contact__blur {
    width: 100%;
    left: 0;
    transform: none;
  }

  .fdp-contact__content {
    max-width: 100%;
    padding: 16px;
  }

  .fdp-contact__title {
    font-size: 35px;
  }

  .fdp-contact__desc {
    font-size: 14px;
  }

  .fdp-contact__content .btn-contact {
    display: inline-flex;
    justify-content: center;
  }

  .fdp-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    padding: 0 32px 32px;
  }

  .fdp-footer__brand {
    min-width: auto;
    text-align: left;
  }

  .fdp-footer__logo-img {
    height: 24px;
  }

  .fdp-footer__cta {
    max-width: 480px;
    width: 100%;
  }

  .fdp-footer__btn {
    justify-content: center;
  }
}