/* ===========================================
   TOKENS
   =========================================== */
:root {
  --white:        #FFFFFF;
  --bg:           #FFFFFF;
  --text:         #3D2E20;
  --text-muted:   #9B8878;
  --black-text:   #2D2F22;
  --olivewood:    #2D2F22;
  --brown:        #55431B;
  --brown-nav:    #D5C7AD;
  --brown-phone:  #D26612;
  --olive:        #757022;
  --hero-bar-bg:  rgba(96, 66, 18, 0.88);
  --badge-bg:     #FFFFFF;
  --badge-text:   #3D2E20;
  --line-color:   #C8BAA8;
  --bark:         #68604D;
  --nav-h:        76px;
  --main-top:     30px;
  --font-display: 'TeXGyreAdventor', -apple-system, sans-serif;
  --font-heading: 'TeXGyreAdventor', -apple-system, sans-serif;
  --font-body:    'TeXGyreAdventor', -apple-system, sans-serif;
}

/* ===========================================
   RESET / BASE
   =========================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
p   { margin: 0; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); }
a   { color: inherit; text-decoration: none; outline: none; }
ul  { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; background: none; border: none; padding: 0; font: inherit; outline: none; }
input, select, textarea {
  font-family: var(--font-body);
  word-spacing: 0;
}

/* ===========================================
   SITE HEADER
   =========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  transition: box-shadow 0.25s ease, border-color 0.25s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  border-bottom-color: rgba(0,0,0,0.06);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 20px;
}

/* Logo */
.site-header__logo {
  flex-shrink: 0;
  line-height: 0;
}
.site-header__logo .custom-logo-link {
  display: inline-flex;
  line-height: 0;
}
.site-header__logo img,
.site-header__logo .custom-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.site-header__logo-text {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* Primary Nav */
.site-nav { flex: 1; display: flex; justify-content: center; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-nav__list li { position: relative; }
.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-nav);
  padding: 10px 5px;
  white-space: nowrap;
  transition: color 0.2s;
}
.site-nav__link:hover, 
.current-menu-item .site-nav__link, .current-page-parent .site-nav__link,
.sub-menu .current-menu-item .site-nav__link { color: var(--brown); }
.site-nav__chevron { flex-shrink: 0; transition: transform 0.2s; }
.menu-item-has-children:hover > .site-nav__link .site-nav__chevron,
.menu-item-has-children:focus-within > .site-nav__link .site-nav__chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.site-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--white);
  border: 1px solid #eee7da;
  border-radius: 10px;
  /* box-shadow: 0 8px 28px rgba(0,0,0,0.09); */
  padding: 10px 20px; /* top padding bridges the visual gap */
  z-index: 20;
  margin-top: 10px;
}
/* Invisible bridge fills the gap so mouse can travel from link → sub-menu */
.site-nav__list .menu-item-has-children::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}
.site-nav__list li:hover > .sub-menu,
.site-nav__list li:focus-within > .sub-menu { display: block; }
.site-nav__list .sub-menu a {
  display: block;
  padding: 10px 10px;
  font-size: 14px;
  color: var(--brown-nav);
  transition: color 0.15s;
}
.site-nav__list .sub-menu a:hover { 
  color: var(--brown); 
}

/* Header actions */
.site-header__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* VN / EN */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1.2px solid var(--brown-nav);
  border-radius: 50px;
  background: #FFFDF7;
  padding: 3px;
}
.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--brown-nav);
  letter-spacing: 0.05em;
  line-height: 1;
  transition: color 0.2s;
}
.lang-switch__btn--active {
  background: var(--text);
  color: #fff;
  width: 30px;
  min-width: 30px;
  border-radius: 50%;
  padding: 0;
}
.lang-switch__btn:not(.lang-switch__btn--active) { padding: 0 2px; }
.lang-switch__btn:not(.lang-switch__btn--active):hover { color: var(--brown); }
.lang-switch__sep { display: none; }

/* Phone button — outlined */
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.2px solid var(--brown-nav);
  color: var(--brown-phone);
  border-radius: 50px;
  padding: 7px 16px 7px 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.phone-btn:hover {
  background: var(--brown-phone);
  color: #fff;
}
.phone-btn__sep {
  width: 1px;
  height: 14px;
  background: currentColor;
  opacity: 0.3;
  flex-shrink: 0;
}
.phone-btn__icon { flex-shrink: 0; }

/* Burger toggle */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  flex-shrink: 0;
}
.nav-burger__line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 88vw;
  background: #FFFDF7;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 12px;
  min-height: var(--nav-h);
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text);
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-nav__close:hover { background: rgba(0,0,0,0.05); }

.mobile-nav__list {
  flex: 1;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav__list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.mobile-nav__list > li > a {
  display: block;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-nav__list > li > a:hover { color: var(--brown); }
.mobile-nav__list .sub-menu {
  background: rgba(0, 0, 0, 0.03);
  padding: 4px 0;
}
.mobile-nav__list .sub-menu a {
  display: block;
  padding: 11px 28px 11px 44px;
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-nav__list .sub-menu a:hover { color: var(--brown); }

.mobile-nav__footer {
  padding: 20px 28px 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.mobile-nav__footer .lang-switch { display: flex; }


/* ===========================================
   HERO — full width
   =========================================== */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  min-height: 500px;
  overflow: hidden;
  background: #c9b89e;
}

/* Image col fills entire hero */
.hero__image-col {
  position: absolute;
  inset: 0;
}

/* Right col — hidden (full-width layout) */
.hero__right-col { display: none; }

/* Slides */
.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__image--placeholder {
  width: 100%;
  height: 100%;
  background: #c9b89e;
}

/* Overlay — flex column, justify end */
.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Gradient behind title block */
.hero__title-block {
  padding: 0 52px 22px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 12.5px rgba(157, 148, 135, 0.63);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

/* Badge — white oval */
.hero__badge {
  display: inline-block;
  background: var(--badge-bg);
  color: var(--badge-text);
  border-radius: 50px;
  padding: 6px 22px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  margin-left: 3.7%;
}
.hero__badge-first {
  color: #2D2F22;
  font-weight: 400;
}
.hero__badge-second {
  color: #757022;
  font-weight: 700;
  font-size: 18px;
}

/* Info bar — warm brown, text right-aligned */
.hero__info-bar {
  padding: 20px 52px 30px;
  text-align: right;
}
.hero__info-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
  line-height: 1.5;
}
.hero__info-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

/* Slider nav */
.hero__nav {
  position: absolute;
  bottom: 24px;
  right: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
.hero__nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.22);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}
.hero__nav-btn:hover { background: rgba(0,0,0,0.48); border-color: #fff; }
.hero__dots { display: flex; gap: 6px; }
.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  border: none;
  transition: background 0.2s, transform 0.2s;
}
.hero__dot.is-active { background: #fff; transform: scale(1.3); }


/* ===========================================
   TIMELINE
   =========================================== */
.timeline {
  position: relative;
  /* padding: 0 0 80px 64px; */
  background: var(--white);
  overflow: hidden;
}

.timeline__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.timeline__scroll::-webkit-scrollbar { display: none; }
.timeline__scroll { cursor: grab; }
.timeline__scroll.is-dragging { cursor: grabbing; user-select: none; -webkit-user-select: none; }

.timeline__track {
  display: flex;
  align-items: center;
  position: relative;
  height: 460px;
  width: max-content;
}

/* Dashed line at midpoint */
.timeline__line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 1px dashed var(--line-color);
  pointer-events: none;
}

.timeline__item {
  position: relative;
  width: 600px;
  flex-shrink: 0;
  height: 100%;
}

.timeline__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line-color);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.timeline__text {
  position: absolute;
  left: 10px;
  right: 10px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
  width: 400px;
  margin: 0 auto;
}

.timeline__text--top    { bottom: calc(50% + 50px); }
.timeline__text--bottom { top: calc(50% + 50px); }
.timeline__track > .timeline__item:nth-child(4) .timeline__text { width: 500px; }

/* End card */
.timeline__item--end {
  width: 600px;
  /* padding: 28px 0; */
}
.timeline__end-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #d6c8b8;
}
.timeline__end-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.timeline__end-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding: calc(50% - 20px) 18px 0;
  background: linear-gradient(to top, rgba(50,28,8,0.75) 0%, transparent 55%);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  text-align: center;
}

/* Arrow — SVG icon with bounce animation */
.timeline__arrow {
  position: absolute;
  bottom: 80px;
  left: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  animation: mm-bounce-x 1.8s ease-in-out infinite;
}
.timeline__arrow img { display: block; }

@keyframes mm-bounce-x {
  0%, 100% { transform: translateX(0); }
  45%       { transform: translateX(20px); }
  65%       { transform: translateX(0px); }
}

/* ===========================================
   PAGE LOADER
   =========================================== */
#mm-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  /* background: url('../images/background.webp') center center / cover no-repeat; */
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
#mm-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.mm-loader__logo {
  height: 160px;
  width: auto;
  animation: mm-loader-breathe 1.6s ease-in-out infinite;
}
@keyframes mm-loader-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.72; transform: scale(0.97); }
}
/* ===========================================
   PAGE LOAD — hero reveal (is-loaded on body)
   =========================================== */
html { scroll-behavior: smooth; }

.hero__title,
.hero__badge,
.hero__info-bar {
  opacity: 0;
  transform: translateY(18px);
  will-change: transform, opacity;
}

body.is-loaded .hero__title {
  animation: mm-revealUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
body.is-loaded .hero__badge {
  animation: mm-revealUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}
body.is-loaded .hero__info-bar {
  animation: mm-revealUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.24s forwards;
}

@keyframes mm-revealUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   SCROLL REVEAL — IntersectionObserver
   =========================================== */
.mm-reveal {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.mm-reveal.mm-reveal--delay-1 { transition-delay: 0.08s; }
.mm-reveal.mm-reveal--delay-2 { transition-delay: 0.16s; }
.mm-reveal.mm-reveal--delay-3 { transition-delay: 0.26s; }
.mm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero__title, .hero__badge, .hero__info-bar { opacity: 1; transform: none; animation: none; }
  .mm-reveal { opacity: 1; transform: none; transition: none; }
  #mm-loader  { display: none !important; }
  #mm-progress { display: none; }
}


/* ===========================================
   EXPERIENCE PAGE (template-experience.php)
   =========================================== */
.experience-page {
  /* full bleed — no extra padding */
}
.exp-hero {
  position: relative;
  width: 100%;
  height: calc(100dvh - var(--nav-h));
  min-height: 500px;
  background-color: #c9b89e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.exp-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 52px 56px;
}
.exp-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.exp-hero__text {
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 400;
  color: var(--olivewood);
  line-height: 1.8;
  max-width: 780px;
  margin: 0;
}
.exp-hero__highlight {
  color: var(--olive);
}
.exp-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;  
  background: var(--badge-bg);
  color: #757022;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.exp-hero__btn:hover,
.exp-hero__btn:focus-visible {
  background: var(--olivewood);
  border-color: var(--olivewood);
  color: #fff;
}

/* ===========================================
   FEATURES / SERVICE CARDS (template-home.php)
   =========================================== */
.features {
  overflow: clip;
  width: 100%;
  background: #FFFDF7;
  /* min-height: 680px;
  height: calc(100dvh - 75px); */
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px;
}
.features__heading {
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--olivewood);
  line-height: 1.2;
  margin: 0 auto 60px;
  text-align: center;
  max-width: 980px;
}
.features__heading strong {
  color: #757022;
  font-size: clamp(26px, 3.6vw, 46px);
}
.features__scroll {
  overflow-x: auto;
  overflow-y: clip;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.features__scroll::-webkit-scrollbar { display: none; }
.features__scroll.is-dragging { cursor: grabbing; }
.features__scroll * { -webkit-user-drag: none; user-select: none; -webkit-user-select: none; }
.features__track {
  display: flex;
  gap: 60px;
  width: max-content;
}
.features__card {
  width: 27.5dvw;
  flex-shrink: 0;
  overflow: hidden;
}
.features__card-img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
  height: 480px;
  overflow: hidden;
}
.features__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.4s ease;
}
.features__card:hover .features__card-img {
  transform: scale(0.9);
  border-radius: 20px;
}
.features__card-body {
  padding: 20px 0 20px;
}
.features__card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--olivewood);
  line-height: 1.4;
  margin: 0 0 10px;
}
.features__card-desc {
  font-size: 14px;
  color: var(--olivewood);
  line-height: 1.4;
  margin: 0;
}

/* ===========================================
   HOME — NARRATIVE SECTION
   =========================================== */
.narrative {
  position: relative;
  min-height: 680px;
  height: calc(100dvh - 75px);
  background: #FFFDF7;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
}

.narrative__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 32%;
  padding: 60px 20px;
  position: relative;
  z-index: 2;
}

/* Left column */
.narrative__left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}

/* Circle image */
.narrative__circle {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
  width: clamp(180px, 20vw, 350px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.narrative__circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text items */
.narrative__items {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 6vw, 80px);
  flex: 1;
}
.narrative__item {
  font-size: 12px;
  color: var(--olivewood);
  line-height: 1.2;
  max-width: 350px;
  background: #FFFDF7;
  text-align: justify;
  margin: 0;
}
.narrative__item:nth-child(1) { margin-left: 5%; }
.narrative__item:nth-child(2) { margin-left: 40%; width: 260px; }
.narrative__item:nth-child(3) { margin-left: 50%; }
.narrative__item:nth-child(4) { margin-left: 38%; width: 240px; }
/* .narrative__item:nth-child(n+5) { margin-left: 20%; } */

.home-s1__deco {
    position: absolute;
    right: -5px;
    top: -150px;
    width: 40%;
    height: 300px;
    border: 1px solid #D5C7AD;
    border-radius: 300px 0 0 300px;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}
.home-s2__deco {
    position: absolute;
    left: -5px;
    bottom: 20px;
    width: 48%;
    height: 460px;
    border: 1px solid #D5C7AD;
    border-radius: 0 460px 460px 0;
    background-size: contain;
    transform-origin: center;
    pointer-events: none;
    z-index: 1;
}

/* Quote callout */
.narrative__quote {
  /* margin: clamp(36px, 5vw, 56px) 0 0;
  padding: 26px 36px;
  border: 1.5px solid var(--line-color);
  border-radius: 40px;
  font-size: clamp(14px, 1.3vw, 19px);
  font-weight: 700;
  font-style: normal;
  color: var(--olive);
  line-height: 1.5;
  max-width: 680px; */

  margin: clamp(36px, 5vw, 56px) 60px 0 auto;
  width: auto;
  max-width: 580px;
  background: #fff;
  border-radius: 300px;
  padding: 20px 40px;
  box-shadow: 0 0 15px #D5C7AD;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: #757022;
  text-align: center;
  z-index: 2;
}

/* Right column: tall photo, top-left rounded */
.narrative__right {
  grid-column: 2;
  align-self: flex-end;
  text-align: right;
}
.narrative__photo {
  /* width: 100%;
  height: 100%;
  object-fit: cover; */
  display: block;
  border-radius: clamp(120px, 15vw, 240px) 0 100px 0;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
}

/* ===========================================
   HOME — GALLERY GRID
   =========================================== */
.gallery-grid {
  width: 100%;
  height: 100dvh;
}
.gallery-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
}
.gallery-grid__item {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.gallery-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
  will-change: transform;
}
.gallery-grid__item:hover .gallery-grid__img {
  transform: scale(1.04);
}
.gallery-grid__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 72px 32px 28px;
  background: linear-gradient(to top, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0.18) 60%, transparent 100%);
  transform: translateY(calc(100% - 74px));
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.gallery-grid__item:hover .gallery-grid__caption {
  transform: translateY(0);
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.3) 60%, transparent 100%);
}
.gallery-grid__heading {
  position: absolute;
  inset: auto 0 0 0;
  padding: 72px 32px 28px;
  z-index: 2;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.gallery-grid__item:hover .gallery-grid__heading {
  transform: translateY(-50px);
}
.gallery-grid__arrow {
  display: block;
  width: 26px;
  height: 26px;
  margin-bottom: 0;
  color: var(--olivewood);
  transform: rotate(-45deg);
  transition: all 0.5s ease;
}
.gallery-grid__arrow svg {
  width: 100%;
  height: 100%;
}
.gallery-grid__item:hover .gallery-grid__arrow {
  transform: rotate(-150deg);
  opacity: 0;
  color: var(--olive, #b5a96a);
}
.gallery-grid__title {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  color: var(--olivewood);
  margin: 0 0 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.gallery-grid__item:hover .gallery-grid__title {
  color: var(--olive, #b5a96a);
}
.gallery-grid__desc {
  min-height: 40px;
  width: 100%;
  font-size: clamp(13px, 1vw, 14px);
  color: #000;
  line-height: 1.4;
  margin: 0;
}

/* ===========================================
   HOME — CTA SECTION
   =========================================== */
.home-cta {
  background: #FFFDF7;
  width: 100%;
  min-height: 680px;
  height: calc(100dvh - 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
}
.home-cta__inner {
  width: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.home-cta__image-wrap {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  border-radius: 300px;
  margin-bottom: 10px;
}
.home-cta__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.home-cta__image-wrap:hover .home-cta__image {
  transform: scale(1.04);
}
.home-cta__text {
  text-align: center;
  margin-bottom: 20px;
}
.home-cta__title {
  font-size: clamp(42px, 6.7vw, 80px);
  font-weight: 600;
  color: #55431B;
  line-height: 1.4;
  margin: 0;
}
.home-cta__badge {
  display: inline-block;
  border: 1px solid #68604D;
  border-radius: 999px;
  padding: 7px 22px;
  font-size: clamp(13px, 1.1vw, 16px);
  color: var(--olive);
  font-weight: 600;
}
.home-cta__badge strong { color: var(--olive); }
.home-cta__actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.home-cta__btn span {
  border: 1px solid #68604D;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  color: var(--olivewood);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.home-cta__btn:hover span {
  background: var(--olivewood);
  color: #fff;
}
.home-cta__btn-arrow {
  height: 10px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
/* ===========================================
   EXPERIENCE 1 PAGE (template-experience-1.php)
   =========================================== */

/* Shared highlight span */
.exp1-highlight {
  color: var(--olive);
}

/* ---- Hero ---- */
.exp1-hero {
  padding: 80px 64px;
}
.exp1-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.exp1-hero__heading {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 700;
  color: var(--olivewood);
  line-height: 1.2;
  margin: 0 0 14px;
}
.exp1-hero__subtitle {
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 400;
  color: var(--olivewood);
  margin: 0;
}

/* ---- Section 1: photo(left arch) + text(right) ---- */
.exp1-s1 {
  padding: 0 0 80px;
}
.exp1-s1__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 80px 0 0;
  display: grid;
  grid-template-columns: 62fr 38fr;
  gap: 0;
  align-items: center;
  min-height: 520px;
}
.exp1-s1__photo-wrap {
  overflow: hidden;
  border-radius: 0 0 250px 0;
  height: 600px;
}
.exp1-s1__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.exp1-s1__photo-wrap:hover .exp1-s1__photo {
  transform: scale(1.1);
}
.exp1-s1__text-col {
  position: relative;
  padding: 40px 40px 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
}
/* Decorative circle outline */
.exp1-s1__deco {
  position: absolute;
  right: -500px;
  top: -200px;
  width: 1000px;
  height: 400px;
  background: url(../images/experience-line.svg) left center no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}
.exp1-s1__text {
  font-size: 18px;
  line-height: 1.4;
  color: var(--olivewood);
  margin: 0;
}

/* ---- Section 2: full-width photo + caption ---- */
.exp1-s2 {
  padding: 0 64px 40px;
}
.exp1-s2__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.exp1-s2__slider {
  position: relative;
  overflow: hidden;
  z-index: 2;
  cursor: grab;
  user-select: none;
}
.exp1-s2__slider.is-dragging {
  cursor: grabbing;
}
.exp1-s2__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}
.exp1-s2__slide {
  flex: 0 0 100%;
  min-width: 100%;
  line-height: 0;
}
.exp1-s2__slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.exp1-s2__btn { display: none; }
.exp1-s2__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}
.exp1-s2__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.exp1-s2__dot.active {
  background: #fff;
  transform: scale(1.3);
}
.exp1-s2__caption {
  font-size: 18px;
  line-height: 1.4;
  color: var(--olivewood);
  width: 100%;
  border-left: 1px solid #D5C7AD;
  border-right: 1px solid #D5C7AD;
  border-bottom: 1px solid #D5C7AD;
  border-radius: 0 0 140px 0;
  padding: 40px 90px 40px 50px;
}

/* ---- Section 2 Layout 2: 2-column text+photo / photo+text ---- */
.exp2-s2 {
  padding: 0 64px 40px;
}
.exp2-s2__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 50px;
  align-items: center;
}
.exp2-s2__col {
  display: flex;
  flex-direction: column;
  gap: 50px;
  border: #D5C7AD 1px solid;
  background: #FFF;
  padding: 32px;
  z-index: 2;
}
.exp2-s2__col--right {
  padding-top: 64px;
}
.exp2-s2__text {
  font-size: 18px;
  line-height: 1.4;
  color: var(--olivewood);
  margin: 0;
  text-align: justify;
}
.exp2-s2__photo-wrap {
  overflow: hidden;
  line-height: 0;
}
.exp2-s2__photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.exp2-s2__photo-wrap:hover .exp2-s2__photo {
  transform: scale(1.04);
}

/* ---- exp3 Section 2: 2 cols swapped (copy of exp2-s2) ---- */
.exp3-s2 {
  padding: 0 64px 40px;
  position: relative;
}
.exp3-s2__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 50px;
  align-items: center;
}
.exp3-s2__col {
  display: flex;
  flex-direction: column;
  gap: 50px;
  border: #D5C7AD 1px solid;
  background: #FFF;
  padding: 32px;
  z-index: 2;
}
.exp3-s2__col--right {
  padding-top: 64px;
}
.exp3-s2__text {
  font-size: 18px;
  line-height: 1.4;
  color: var(--olivewood);
  margin: 0;
  text-align: justify;
}
.exp3-s2__photo-wrap {
  overflow: hidden;
  line-height: 0;
}
.exp3-s2__photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.exp3-s2__photo-wrap:hover .exp3-s2__photo {
  transform: scale(1.04);
}

/* ---- Section 3: text(left) + photo(right rounded) ---- */
.exp1-s3 {
  padding: 0;
}
.exp1-s3__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 0 64px;
  display: grid;
  grid-template-columns: 50fr 50fr;
  gap: 0;
  align-items: center;
  min-height: 460px;
  position: relative;
}
.exp1-s3__text-col {
  position: relative;
  padding: 40px 56px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Decorative circle outline */
.exp1-s3__deco {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 1000px;
  height: 400px;
  background: url(../images/experience-line.svg) left center no-repeat;
  background-size: contain;
  pointer-events: none;
}
.exp1-s3__text {
  font-size: 18px;
  line-height: 1.4;
  color: var(--olivewood);
  margin: 0;
  text-align: justify;
}
.exp1-s3__photo-wrap {
  overflow: hidden;
  border-radius: 0 300px 300px 0;
  height: 360px;
  z-index: 2;
}
.exp1-s3__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.exp1-s3__photo-wrap:hover .exp1-s3__photo {
  transform: scale(1.1);
}

/* ---- Shared title for Experience 5 sections ---- */
.exp5-section__title {
  font-size: 18px;
  font-weight: 700;
  color: #68604D;
  margin: 0 0 14px;
  line-height: 1.4;
}

/* ---- Experience 5 Section 2: Circle+Rect photos (left) / Deco circle+Text (right) ---- */
.exp5-s2 {
  padding: 0 0 40px;
}
.exp5-s2__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.exp5-s2__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
}
.exp5-s2__circle-wrap {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  align-self: center;
}
.exp5-s2__circle-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.exp5-s2__circle-wrap:hover .exp5-s2__circle-photo {
  transform: scale(1.06);
}
.exp5-s2__rect-wrap {
  width: 100%;
  /* aspect-ratio: 5/4; */
  overflow: hidden;
  border-radius: 300px 0 0 300px;
  height: 360px;
}
.exp5-s2__rect-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.exp5-s2__rect-wrap:hover .exp5-s2__rect-photo {
  transform: scale(1.04);
}
.exp5-s2__right {
  position: relative;
  padding-top: 60%;
}
.exp5-s2__deco {
  position: absolute;
  top: -20%;
  right: -150px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid #D5C7AD;
  pointer-events: none;
}
.exp5-s2__text-block {
  position: relative;
  z-index: 1;
}
.exp5-s2__text {
  font-size: 18px;
  line-height: 1.4;
  color: var(--olivewood);
  text-align: justify;
  margin: 0;
}

/* ---- Experience 4 Section 1: Large photo + overlays + small photo ---- */
.exp4-s1 {
  padding: 0 0 40px;
}
.exp4-s1__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px 60px;
  display: flex;
  align-items: flex-start;
  border-radius: 0 120px 0 120px;
  aspect-ratio: 4/3;
}
.exp4-s1__left {
  position: relative;
  flex: 0 0 60%;
  width: 60%;
  height: 100%;
}
.exp4-s1__right {
  flex: 1;
  padding-left: 40px;
  padding-top: 100px;
  text-align: justify;
}
.exp4-s1__main-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.exp4-s1__main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.exp4-s1__main-wrap:hover .exp4-s1__main-photo {
  transform: scale(1.03);
}
.exp4-s1__overlay-bl {
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: 60%;
  text-align: justify;
  z-index: 2;
}
.exp4-s1__ol-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.4;
}
.exp4-s1__ol-body {
  font-size: 18px;
  line-height: 1.4;
  color: #FFF;
  margin: 0;
}
.exp4-s1__small-wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
  /* border: #FFF 3px solid; */
  border-radius: 12px;
  margin-top: 50%;
}
.exp4-s1__small-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 12px;
  transition: transform 0.5s ease;
}
.exp4-s1__small-wrap:hover .exp4-s1__small-photo {
  transform: scale(1.05);
}
.exp4-s1__tr-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--olivewood);
  margin: 0 0 12px;
  line-height: 1.4;
}
.exp4-s1__tr-body {
  font-size: 18px;
  line-height: 1.4;
  color: var(--olivewood);
  margin: 0;
}
/* Section 2: Caption + 3-photo grid */
.exp4-s2 {
  padding: 30px 0 40px;
  position: relative;
}
.exp4-s2__caption {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 32px;
}
.exp4-s2__caption-title {
  font-size: 18px;
  font-weight: 600;
  color: #68604D;
  margin: 0 0 12px;
}
.exp4-s2__caption-text {
  font-size: 18px;
  line-height: 1.4;
  color: var(--olivewood);
  margin: 0;
  text-align: justify;
}
/* 3-photo grid */
.exp4-s2__photos {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}
.exp4-s2__photo-item {
  overflow: hidden;
  aspect-ratio: 1/1.1;
}
.exp4-s2__photo-item:first-child { border-radius: 0 0 0 120px; margin-top: 15%; }
.exp4-s2__photo-item:last-child { border-radius: 0 120px 0 0; margin-top: 15%; }
.exp4-s2__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.exp4-s2__photo-item:hover .exp4-s2__photo-img {
  transform: scale(1.04);
}
/* Decorative circle outline */
.exp4-s2__deco {
  position: absolute;
  right: -100px;
  bottom: 0;
  width: 1000px;
  height: 400px;
  background: url(../images/experience-line.svg) left center no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

/* ---- Section 3: Horizontal Carousel (exp3) ---- */
.exp3-s3 {
  padding: 40px 0 0;
}
.exp3-s3__caption {
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0 64px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--olivewood);
  text-align: justify;
}
.exp3-s3__track {
  display: flex;
  gap: 3px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;   /* IE/Edge */
}
.exp3-s3__track::-webkit-scrollbar {
  display: none;
}
.exp3-s3__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.exp3-s3__item {
  flex: 0 0 calc(100% / 2.5);
  aspect-ratio: 16 / 9;
  scroll-snap-align: start;
  overflow: hidden;
  line-height: 0;
}
.exp3-s3__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  /* transition: transform 0.5s ease; */
  pointer-events: none;
}
/* .exp3-s3__item:hover .exp3-s3__img {
  transform: scale(1.04);
} */

/* ---- Story page ---- */
body:has(.story-page) { background-color: #fff; }
.story-video {
  padding: 20px 40px;
  background-color: var(--olivewood);
  min-height: 680px;
  height: calc(100dvh - 75px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-video__wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background: var(--olivewood);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  margin: 0 auto;
}
.story-video__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: var(--olivewood);
}
.story-video__cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
.story-video__cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
.story-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  opacity: 1;
  z-index: 3;
  padding: 0;
}
.story-video__play:hover {
  opacity: 0.8;
}
.story-video__play img {
  width: 80px;
  height: 80px;
  display: block;
  /* slight offset right to optically centre triangle */
  margin-left: 4px;
}
.story-caption {
  padding: 20px 40px 0;
  margin-top: 0;
  text-align: center;
}
.story-caption__text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

/* ---- Story Gallery (Section 2) ---- */
.story-gallery {
  position: relative;
  background: #fdfaf5;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Header */
.story-gallery__header {
  width: 100%;
  max-width: 1280px;
  padding: 40px 64px 0;
  flex-shrink: 0;
  margin: 0 auto;
  z-index: 10;
}
.story-gallery__title {
  font-size: clamp(30px, 4vw, 56px);
  color: var(--olivewood);
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}
.story-gallery__title span {
  color: var(--olive);
}
.story-gallery__desc {
  max-width: 640px;
  color: var(--olivewood);
  line-height: 1.4;
  font-size: 16px;
  margin: 10px 0 0;
}

/* Decorative circle outline */
.story-s1__deco {
  position: absolute;
  right: -400px;
  top: 100px;
  width: 1000px;
  height: 400px;
  background: url(../images/experience-line.svg) left center no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

.story-s2__deco {
  position: absolute;
  left: -400px;
  bottom: -150px;
  width: 1000px;
  height: 400px;
  background: url(../images/experience-line.svg) left center no-repeat;
  background-size: contain;
  transform: scaleX(-1);
  transform-origin: center;
  pointer-events: none;
  z-index: 1;
}

/* Slider wrapper */
.story-gallery__slider-wrapper {
  position: relative;
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -40px;
  z-index: 2;
}

/* Decorative diagonal line */
.story-gallery__decor-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200vw;
  height: 1px;
  background: rgba(107, 112, 54, 0);
  transform: translate(-50%, -50%) rotate(-25deg);
  z-index: 0;
  pointer-events: none;
}

/* Stage */
.story-gallery__stage {
  position: relative;
  width: 800px;
  height: 460px;
  aspect-ratio: 4/3;
  max-width: 85vw;
  max-height: 55vh;
  z-index: 1;
}

/* Cards */
.story-gallery__card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translate(-100%, 100%) scale(0.65);
  pointer-events: none;
  z-index: 1;
}
.story-gallery__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

/* Card states */
.story-gallery__card.is-initial {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  pointer-events: auto;
  z-index: 40;
}
.story-gallery__card.is-active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  z-index: 40;
  pointer-events: auto;
}
.story-gallery__card.is-pending-1 {
  opacity: 1;
  transform: translate(-50%, 90%) scale(0.65);
  z-index: 30;
  pointer-events: auto;
  border-radius: 260px;
}
.story-gallery__card.is-pending-2 {
  opacity: 0;
}
.story-gallery__card.is-pending-3 {
  opacity: 0;
  transform: translate(50%, -90%) scale(0.65);
}
.story-gallery__card.is-exit {
  opacity: 1;
  transform: translate(50%, -90%) scale(0.65);
  z-index: 30;
  pointer-events: auto;
  border-radius: 260px;
}
.story-gallery__card.is-hidden {
  opacity: 0;
  transform: translate(72%, -135%) scale(0.48);
  z-index: 1;
  pointer-events: none;
}

/* Arrow hint on active card */
.story-gallery__arrow {
  position: absolute;
  bottom: 25px;
  right: 25px;
  color: white;
  background: rgba(107, 112, 54, 0.7);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.story-gallery__card.is-active .story-gallery__arrow {
  opacity: 1;
}

/* Close button */
.story-gallery__close {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: scale(0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-gallery__close.is-visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.story-gallery__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.story-gallery__close:hover img {
  transform: scale(1.1) rotate(-10deg);
}

/* Caption */
.story-gallery__cap {
    padding: 16px;
    flex-shrink: 0;
    font-size: clamp(12px, 1.4vw, 14px);
    color: var(--olivewood);
    line-height: 1.2;
    margin: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: justify;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
}
.story-gallery__card.is-active .story-gallery__cap {
  opacity: 1;
  visibility: visible;
}

/* ---- Story Section 3: Narrative ---- */
.story-s3 {
  position: relative;
  min-height: 680px;
  height: calc(100dvh - 75px);
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-s3__deco {
  position: absolute;
  right: 0;
  top: 100px;
  width: 1000px;
  height: 320px;
  border: 1px solid #D5C7AD;
  border-radius: 200px 0 0 200px;
  /* background: url(../images/experience-line.svg) left center no-repeat; */
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}
.story-s4__deco {
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 600px;
    height: 320px;
    border: 1px solid #D5C7AD;
    border-radius: 0 200px 200px 0;
    /* background: url(../images/experience-line.svg) left center no-repeat; */
    background-size: contain;
    transform-origin: center;
    pointer-events: none;
    z-index: 1;
}
.story-s3__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 64px;
  /* CSS grid-less layout — absolute/relative positioned elements */
  min-height: 680px;
  height: calc(100dvh - 75px);
}
/* Text cards */
.story-s3__card {
  position: absolute;
  border: 1px solid #e8dfd4;
  border-radius: 14px;
  background: #fff;
  padding: 24px 28px;
  max-width: 45%;
  box-shadow: 0 0 15px #D5C7AD;
}
.story-s3__card p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--olivewood);
  margin: 0;
  text-align: justify;
}
.story-s3__card--1 {
  top: 28%;
  left: 0;
}
.story-s3__card--2 {
  top: 48%;
  right: 0;
  max-width: 50%;
}
/* Photo 1 — top right, pill/arch crop */
.story-s3__photo1-wrap {
  position: absolute;
  top: -20px;
  right: 0;
  width: 700px;
  height: 320px;
  border-radius: 200px 0 0 200px;
  overflow: hidden;
  z-index: 1;
}
.story-s3__photo1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Photo 2 — bottom left, circle */
.story-s3__photo2-wrap {
  position: absolute;
  bottom: 4%;
  left: -6%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}
.story-s3__photo2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* CTA row */
.story-s3__cta-row {
  position: absolute;
  bottom: 9%;
  left: 594px;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 600px;
  z-index: 5;
}
.story-s3__cta-line-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.story-s3__cta-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #c0b49a;
  background: #FFF;
  flex-shrink: 0;
  display: block;
}
.story-s3__cta-line {
  display: block;
  width: 40px;
  height: 1px;
  background: #c0b49a;
  flex-shrink: 0;
}
.story-s3__cta-card {
  border: 1px solid #e8dfd4;
  box-shadow: 0 0 15px #D5C7AD;
  border-radius: 14px;
  background: #fff;
  padding: 18px 24px;
  flex: 1;
}
.story-s3__cta-text {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 700;
  color: var(--olive);
  margin: 0;
  line-height: 1.5;
}
.story-s3__cta-btn {
  flex-shrink: 0;
  margin-left: 16px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  text-decoration: none;
}
.story-s3__cta-btn:hover {
  transform: scale(1.08);
}
.story-s3__cta-btn img,
.story-s3__cta-btn svg {
  width: 60px;
  height: 60px;
  display: block;
}
/* ---- Bottom Navigation ---- */
.exp1-nav {
  padding: 0 0 40px;
}
.exp1-nav__line {
  width: 100%;
  line-height: 0;
  margin-bottom: 0;
}
.exp1-nav__line img {
  width: 100%;
  height: auto;
  display: block;
}
.exp1-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
.exp1-nav__item {
  display: flex;
  align-items: center;
  gap: 30px;
  text-decoration: none;
  color: var(--olivewood);
  transition: opacity 0.2s;
}
.exp1-nav__item:hover { opacity: 0.65; }
.exp1-nav__item--center {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  text-align: center;
}
.exp1-nav__item--center .exp1-nav__label1,
.exp1-nav__item--center .exp1-nav__label2 {
  flex: 0 0 100%;
}
.exp1-nav__item--next {
  justify-content: flex-end;
  text-align: right;
}
.exp1-nav__labels {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
}
.exp1-nav__label1 {
  font-size: 14px;
  color: #68604D;
  display: block;
  line-height: 1.4;
}
.exp1-nav__label2 {
  font-size: 14px;
  font-weight: 600;
  color: var(--olivewood);
  display: block;
  line-height: 1.4;
  transition: color 0.2s;
}
.exp1-nav__item:hover .exp1-nav__label2 { color: var(--olive); }
.exp1-nav__item--center .exp1-nav__label1,
.exp1-nav__item--center .exp1-nav__label2 { text-align: center; }
.exp1-nav__arrow {
  flex-shrink: 0;
  width: 32px;
  height: auto;
  opacity: 0.7;
}

/* Responsive 768px */
@media (max-width: 768px) {
  .exp1-hero { padding: 40px 20px 20px; }
  .exp1-hero__subtitle { font-size: 14px; }
  .exp1-s1__inner { grid-template-columns: 1fr; padding: 0 20px; min-height: auto; }
  .exp1-s1 { padding: 0 0 20px; }
  .exp1-s1__photo-wrap { height: 300px; border-radius: 0 0 50% 0 / 0 0 160px 0; }
  .exp1-s1__text-col { padding: 20px 0px; }
  .exp1-s1__deco { display: none; }
  .exp1-s2 { padding: 0 20px 30px; }
  .exp1-s2__caption { padding: 20px 30px 20px 20px; font-size: 14px; }
  .exp1-s2__slide img { height: 240px; }
  .exp2-s2 { padding: 0 20px 30px; }
  .exp2-s2__inner { grid-template-columns: 1fr; gap: 32px; }
  .exp2-s2__col, .exp3-s2__col { gap: 20px; padding: 18px;}
  .exp2-s2__text, .exp3-s2__text { font-size: 14px; }
  .exp3-s2 { padding: 0 20px 40px; }
  .exp3-s2__inner { grid-template-columns: 1fr; gap: 20px; }
  .exp1-s3__inner { grid-template-columns: 1fr; padding: 0 20px; }
  .exp1-s3 { padding: 10px 0 30px; }
  .exp1-s3__inner { min-height: auto; gap: 30px; }
  .exp1-s3__photo-wrap { height: 250px; }
  .exp1-s3__text-col { padding: 0; }
  .exp1-s3__text { font-size: 14px;}
  .exp1-s3__deco { left: -450px; top: auto; bottom: -40%; width: 800px; height: 270px; }
  .exp1-nav__inner { gap: 10px; padding: 20px 10px 0; grid-template-columns: 0.7fr 1.1fr 1.2fr; }
  .exp1-s1__text { font-size: 14px; }
  .exp1-nav__arrow { width: 20px; }
  .exp1-nav__item { gap: 10px; }
  .exp1-nav__label1, .exp1-nav__label2 { font-size: 11px; line-height: 1.2;}
  .exp1-nav__item--center { gap: 0}

  .exp3-s3 { padding: 0 }
  .exp3-s3__caption { font-size: 14px; }
  .exp3-s3__item { flex: 0 0 80vw; }
  .exp3-s3__img   { height: 180px; }
  .exp3-s3__caption { padding: 0 20px; }

  .exp4-s1 { padding: 0 0 10px; }
  .exp4-s1__inner { flex-direction: column; padding: 60px 20px 40px; }
  .exp4-s1__left { width: 100%; flex: none; order: 1; }
  .exp4-s1__main-wrap { height: 380px; border-radius: 0 0 0 60px; }
  .exp4-s1__small-wrap { width: 170px; height: 140px; bottom: -20px; right: -10px; }
  .exp4-s1__right { padding-left: 0; padding-top: 0; width: 100%; }
  .exp4-s2__caption { padding: 0 20px 24px; }
  .exp4-s2__caption-title { font-size: 17px; }
  .exp4-s2__photos { padding: 0 20px 40px; grid-template-columns: 1fr; }
  .exp4-s1__tr-title { font-size: 16px; }
  .exp4-s1__tr-body { font-size: 14px; max-width: 70%; }
  .exp4-s1__small-wrap { margin-top: 15%; }
  .exp4-s1__inner { background-position: center left !important;}
  .exp4-s1__ol-title { font-size: 16px; }
  .exp4-s1__ol-body { font-size: 14px; }
  .exp4-s1__overlay-bl { top: 30px; bottom: auto; right: 0; left: auto; }
  .exp4-s1__main-wrap { height: auto; }
  .exp4-s2 { padding: 30px 0 0; overflow: hidden; }
  .exp4-s2__caption-text { font-size: 14px;}
  .exp4-s2__photo-item:first-child, .exp4-s2__photo-item:last-child { margin-top: 0;}
  .exp4-s2__photos { gap: 20px; padding: 0 20px 20px; }
  .exp4-s2__deco { right: -600px; bottom: 20%; width: 900px; height: 400px;}
  
  .exp5-s2__inner { grid-template-columns: 1fr; padding: 0 20px; }
  .exp5-s2__deco { display: none; }
  .exp5-s2__circle-wrap { width: 180px; height: 180px; }
  .exp5-s2__rect-wrap { width: 100%; height: 280px; }
  .exp5-section__title { font-size: 16px; }
  .exp5-s2__text { font-size: 14px; }
  .exp5-s2__left { gap: 30px;}
  .exp5-s2__right { padding-top: 0; }

  .site-header__logo img, .site-header__logo .custom-logo {
    width: 40px;
    height: auto;
  }
}
@media (max-width: 1200px) {
  .story-s3__deco {
    width: 900px;
  }
  .story-s4__deco {
    width: 400px;
  }
  .story-s3__cta-row {
    left: 394px;
  }
  .story-s3__card {
    max-width: 30%;
  }
  .story-s3__card--1 {
    top: 24%;
    left: 40px;
  }
  .story-s3__card.story-s3__card--2 {
    max-width: 50%;
    top: 44%;
    right: 40px;
  }
  .story-s3__photo1-wrap {
    width: 650px;
  }
  .story-s3__photo2-wrap {
    left: -4%;
  }
  .story-gallery__stage {
    width: 600px;
    height: 400px;
  }
  .story-gallery__slider-wrapper {
    top: -80px;
  }
  .story-gallery__close {
    bottom: -20px;
    right: -20px;
    width: 16px;
    height: 16px;
  }
  .story-gallery__card.is-pending-1 {
  transform: translate(-50%, 85%) scale(0.6);
  }
  .story-gallery__card.is-pending-3 {
    transform: translate(50%, -85%) scale(0.6);
  }
  .story-gallery__card.is-exit {
    transform: translate(50%, -85%) scale(0.6);
  }
  .story-caption__text {
    font-size: 18px;
  }
  .story-gallery__title {
    font-size: 40px;
  }
  .story-gallery__desc {
    font-size: 14px;
  }
  .story-s3__card p {
    font-size: 14px;
  }
  .story-s3__cta-text {
    font-size: 16px;
  }
  .story-s3__cta-btn img, .story-s3__cta-btn svg {
    width: 48px;
    height: 48px;
  }
}


/* ===========================================
   ABOUT PAGE
   =========================================== */

/* --- Shared about vars --- */
.about-page {
  /* padding-top: var(--main-top); */
}
/* Line row */
.about-s1__cta-line-wrap {
  display: none;
  align-items: center;
  flex-shrink: 0;
}
.about-s1__cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #c0b49a;
  background: #FFF;
  flex-shrink: 0;
  display: block;
}
.about-s1__cta-line {
  display: block;
  width: 1px;
  height: 30px;
  background: #c0b49a;
  flex-shrink: 0;
}

/* ---- INTRO ---- */
.about-intro, .about-investors, .about-inv-dark, .about-philosophy, .about-experts {
  min-height: calc(100dvh - 75px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-intro {
  padding: 20px 20px;
  overflow-x: hidden;
}
.about-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Decorative SVG lines */
.about-intro__line-svg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.about-intro__line-img {
  width: 100%;
  height: auto;
  display: block;
}
.about-intro__line-svg--1 {
  top: 20px;
  right: 0;
  width: 900px;
}
.about-intro__line-svg--2 {
  top: 252px;
  left: 0;
  width: 440px;
}
.about-intro__line-svg--3 {
  top: 410px;
  right: 0;
  width: 290px;
}

/* Content sits above lines */
.about-intro__header,
.about-intro__quote-section,
.about-intro__content-grid,
.about-intro__footer-cta {
  position: relative;
  z-index: 2;
}

/* Header area */
.about-intro__header {
  /* margin-top: 30px; */
  margin-bottom: 70px;
}
.about-intro__badge {
  display: inline-block;
  border: 1px solid var(--olive);
  border-radius: 50px;
  padding: 8px 80px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  background: var(--bg);
  color: var(--olive);
}
.about-intro__heading {
  font-size: clamp(3rem, 14vw, 7.7rem);
  font-weight: 800;
  letter-spacing: -4px;
  line-height: 0.85;
  margin: 0 0 0 -8px;
  color: var(--black-text);
}

/* Quote section (centered) */
.about-intro__quote-section {
  display: flex;
  justify-content: center;
}
.about-intro__quote-wrapper {
  padding: 0 10px;
  text-align: center;
  max-width: 265px;
  background: var(--bg);
}
.about-intro__quote {
  font-size: 0.95rem;
  color: var(--olive);
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
}

/* Content grid (2 cols, offset right) */
.about-intro__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 26% 0 10%;
  margin-top: 100px;
}
.about-intro__content-item {
  font-size: 0.95rem;
  color: var(--olivewood);
  line-height: 1.2;
  text-align: justify;
  background: var(--bg);
  padding: 10px;
}

/* Footer CTA (right-aligned) */
.about-intro__footer-cta {
  margin-top: 60px;
  margin-right: 120px;
  display: flex;
  justify-content: flex-end;
}
.about-intro__cta-box {
  border: 1px solid var(--olive);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--olive);
  background: var(--bg);
}

/* ---- INVESTORS LIGHT ---- */
.about-investors {
  padding: 56px 64px;
  background: #F7F3EE;
}
.about-investors__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.about-investors__label {
  font-size: 18px;
  font-weight: 600;
  color: var(--olive);
  margin: 0;
}
.about-investors__logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.about-investors__logo-card {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a2a2a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-investors__logo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}
.about-investors__card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
  padding: 32px;
}
.about-investors__logo {
  height: auto;
  max-height: 90px;
  max-width: 260px;
  width: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.about-investors__card-subtitle {
  color: #fff;
  font-size: 12px;
  margin: 0;
}
.about-investors__desc {
  font-size: 18px;
  line-height: 1.4;
  color: var(--olivewood);
  max-width: 680px;
  text-align: center;
  margin: 0;
}

/* ---- INVESTORS DARK ---- */
.about-inv-dark {
  position: relative;
  color: #FFFDF7;
  overflow: hidden;
  justify-content: flex-start; /* override shared center — overlay fills full height */
  z-index: 2;
}
.about-inv-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}
.about-inv-dark__panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.about-inv-dark__panel {
  background-color: #2D2F22;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-inv-dark__overlay {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
  padding: 80px 64px 60px;
}
.about-inv-dark__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.about-inv-dark__heading {
  font-size: clamp(30px, 6vw, 70px);
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFDF7;
  margin: 0;
  line-height: 1;
}
.about-inv-dark__subtitle {
  font-size: 22px;
  font-weight: 600;
  margin: -10px 0 0;
}
.about-inv-dark__diamond {
  display: block;
  width: 10px;
  height: 10px;
  background: #FFFDF7;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.about-inv-dark__content {
  font-size: 18px;
  line-height: 1.4;
  max-width: 600px;
  margin: 0;
}
.about-inv-dark__logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin-top: 10%;
}
.about-inv-dark__logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 48px;
  text-align: center;
}
.about-inv-dark__logo {
  height: auto;
  max-height: 44px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.about-inv-dark__logo-subtitle {
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

/* ---- INVESTORS DARK — caption block ---- */
.about-inv-dark__caption-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 40px;
  gap: 20px;
}
.about-inv-dark__caption-arch {
  width: min(640px, 90%);
  height: 64px;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  margin-bottom: -8px;
}
.about-inv-dark__caption-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin-top: -12px;
}
.about-inv-dark__caption-svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
}
.about-inv-dark__caption-label {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  background: #2D2F22;
  padding: 40px 20px 0; 
}
.about-inv-dark__caption-heading {
  font-size: clamp(30px, 6vw, 70px);
  font-weight: 700;
  color: #AEAE7C;
  margin: 0;
  line-height: 1.2;
}
.about-inv-dark__caption-content {
  font-size: 14px;
  line-height: 1.4;
  color: #FFF;
  max-width: 100%;
  margin: 0;
}

/* ---- DIVIDER ---- */
.about-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 30px;
  background: #2D2F22;
  position: relative;
  z-index: 1;
}
/* ---- PHILOSOPHY ---- */
.about-philosophy {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: url('../images/about-philosophy-line.svg') top 20% right / cover no-repeat;
  background-color: #FFF;
}
.about-philosophy__bg-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-philosophy__bg-line img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-philosophy__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-philosophy__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 80px;
}
.about-philosophy__badge {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--olivewood);
  text-align: justify;
}
.about-philosophy__heading {
  font-size: clamp(30px, 5vw, 70px);
  font-weight: 700;
  color: var(--olive);
  margin: 0;
  line-height: 1.2;
}
.about-philosophy__subtitle {
  font-size: 18px;
  color: var(--olivewood);
  max-width: 100%;
  line-height: 1.4;
  margin: 0;
}
.about-philosophy__content-grid {
  width: 100%;
  max-width: 800px;
  padding: 0 5%;
  margin-top: 8px;
}
.about-philosophy__content {
  font-size: 14px;
  line-height: 1.4;
  color: var(--olivewood);
  text-align: justify;
  margin: 0;
}
.about-philosophy__rows {
  display: flex;
  flex-direction: column;
}
.about-philosophy__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  align-items: center;
}
.about-philosophy__row--reverse {
  direction: rtl;
}
.about-philosophy__row--reverse > * {
  direction: ltr;
}
.about-philosophy__icon-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.about-philosophy__icon {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  display: block;
}
.about-philosophy__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 48px 56px;
  background: #FFF;
}
.about-philosophy__item-heading {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: var(--olive);
  margin: 0;
}
.about-philosophy__item-text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--olivewood);
  margin: 0;
  max-width: 480px;
  text-align: justify;
}

/* ---- EXPERTS ---- */
.about-experts {
  padding: 80px 64px 150px;
  background: #FFFDF7;
}
.about-experts__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.about-experts__pre {
  font-size: 18px;
  font-weight: 600;
  color: var(--olivewood);
  text-align: center;
  margin: 0 0;
}
.about-experts__heading {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  text-align: center;
  color: var(--olive);
  margin: 0 0 80px;
}
.about-experts__list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.about-experts__row {
  display: grid;
  grid-template-columns: 62fr 38fr;
  min-height: 500px;
  align-items: stretch;
}
.about-experts__row.about-experts__row--reverse {
  grid-template-columns: 38fr 62fr;
}
.about-experts__row--reverse .about-experts__photo-wrap {
  order: 2;
}
.about-experts__row--reverse .about-experts__info {
  order: 1;
}
.about-experts__photo-wrap {
  overflow: hidden;
  border-radius: 300px 0 0 300px;
}
.about-experts__row--reverse .about-experts__photo-wrap {
  border-radius: 0 300px 300px 0;
}
.about-experts__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.about-experts__photo-wrap:hover .about-experts__photo {
  transform: scale(1.1);
}
.about-experts__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
}
.about-experts__row--reverse .about-experts__info {
  text-align: right;
}
.about-experts__prefix {
  font-size: 14px;
  font-weight: 600;
  color: var(--olivewood);
  display: block;
  margin-bottom: 4px;
}
.about-experts__name {
  font-size: clamp(50px, 6vw, 100px);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--olivewood);
  margin: 0 0 24px;
  word-spacing: 100vw;
  transition: color 0.5s ease;
}
.about-experts__name:hover {
  color: var(--olive);
}
.about-experts__bio {
  font-size: 12px;
  line-height: 1.4;
  color: var(--olivewood);
  margin: 0;
  text-align: justify;
}


/* ===========================================
   SITE FOOTER
   =========================================== */
.site-footer {
  background: #2D2F22;
  color: #FFFDF7;
  position: relative;
}
.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: flex-end;
}
.site-footer__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Brand: logo circle + text */
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 100px;
}
.site-footer__logo-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #FFFDF7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.site-footer__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.site-footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__brand-tag {
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
}
.site-footer__brand-name {
  font-size: clamp(30px, 3.2vw, 60px);
  font-weight: 600;
  color: #FFF;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  transition: color 0.5s ease;
}
.site-footer__brand-name:hover {
  color: var(--olive);
}
.site-footer__tagline {
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  margin: 0;
  line-height: 1.5;
}

/* Divider */
.site-footer__divider {
  border: none;
  border-top: 1px solid #FFFDF7;
  margin: 0;
  position: absolute;
  top: 55%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

/* Contact buttons */
.site-footer__contact-btns {
  display: flex;
  gap: 16px;
}
.site-footer__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #AEAE7C;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 500;
  color: #AEAE7C;
  text-decoration: none;
  transition: background 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  white-space: nowrap;
}
.site-footer__btn:hover {
  background: var(--olive);
  color: #FFF;
  border-color: #FFF;
}

/* Social text links */
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer__social-label {
  font-size: 11px;
  color: #D5C7AD;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer__social-link {
  font-size: 16px;
  color: #D5C7AD;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__social-link:hover { color: #FFFDF7; }

/* Map right column */
.site-footer__map {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  width: 420px;
  z-index: 2;
}
.site-footer__map-link {
  display: block;
  border-top-left-radius: 16px;
  overflow: hidden;
  line-height: 0;
}
.site-footer__map-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-top-left-radius: 16px;
}
.site-footer__address {
  font-size: 14px;
  line-height: 1.4;
  color: #D5C7AD;
  margin: 0;
}

/* ===========================================
   CONTACT PAGE
   =========================================== */

/* Hero */
.contact-page {
  background-color: #FFFDF7;
}
.contact-hero {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}
.contact-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background: linear-gradient(
    to bottom,
    rgba(255, 253, 247, 0) 0%,
    rgba(255, 253, 247, 0.7) 80%,
    #FFFDF7 100%
  );
  pointer-events: none;
}
.contact-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}

/* Main section */
.contact-main {
  padding: 10px 40px 60px;
}

/* Brand — full-width row above the 2-col grid */
.contact-brand--row {
  max-width: 1200px;
  margin: 0 auto 52px;
  padding: 0;
}

.contact-main__inner {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

/* --- Brand --- */
.contact-brand {
  margin-bottom: 0;
}
.contact-brand__tag {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: var(--olivewood);
  margin-bottom: 6px;
}
.contact-brand__heading {
  font-size: 68px;
  color: var(--olivewood);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 5px;
}
.contact-brand__tagline {
  font-size: 22px;
  font-weight: 600;
  color: var(--olivewood);
}

/* --- Form wrapper --- */
.contact-form-wrap__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--bark);
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* --- Form --- */
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form__field {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
}
.contact-form__num {
  font-size: 11px;
  color: var(--bark);
  font-weight: 600;
  padding-top: 2px;
  min-width: 20px;
  flex-shrink: 0;
}
.contact-form__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-form__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--bark);
}
.contact-form__input {
  background: none;
  border: none;
  padding: 6px 0;
  font-size: 16px;
  color: var(--olivewood);
  outline: none;
  width: 100%;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: var(--olivewood);
  opacity: 0.5;
}
.contact-form__input:focus {
  border-bottom-color: var(--text);
}
.contact-form__input.has-error {
  border-bottom-color: #c0392b;
}
.contact-form__inner {
  position: relative;
}
.contact-form__textarea {
  resize: none;
  min-height: 56px;
  font-size: 16px;
  color: var(--olivewood);
}
.contact-form__error {
  display: block;
  font-size: 11px;
  color: #c0392b;
  min-height: 14px;
}

/* Submit + status */
.contact-form__footer {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-form__submit {
  display: inline-block;
  border: 1px solid var(--text);
  padding: 8px 60px;
  font-size: 18px;
  border-radius: 50px;
  color: var(--olivewood);
  background: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border 0.25s;
  margin: 0 auto;
}
.contact-form__submit:hover:not(:disabled) {
  background: #D5C7AD;
  border: 1px solid #D5C7AD;
  color: #fff;
}
.contact-form__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.contact-form__status {
  font-size: 13px;
}
.contact-form__status--success { color: #27ae60; }
.contact-form__status--error   { color: #c0392b; }

/* --- Right: Info --- */
/* .contact-main__right {
  padding-top: 8px;
} */
.contact-info__arrow {
  display: block;
  width: 14px;
  height: auto;
  margin-bottom: 36px;
}
.contact-info-block {
  margin-bottom: 36px;
}
.contact-info-block__heading {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #D5C7AD;
  margin-bottom: 10px;
}
.contact-info-block__item {
  display: block;
  font-size: 16px;
  color: var(--olivewood);
  line-height: 1.65;
  transition: color 0.2s;
}
.contact-info-block__item:hover { color: #D5C7AD; }
.contact-info-block__phone { font-size: 18px; }

.contact-info-block__map-link {
  display: block;
  border-radius: 4px;
  overflow: hidden;
}
.contact-info-block__map-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}
.contact-info-block__address {
  font-size: 14px;
  color: var(--olivewood);
  margin-top: 10px;
  line-height: 1.65;
}
.contact-info-block__hours-days {
  font-size: 16px;
  color: var(--olivewood);
  margin-bottom: 10px;
}
.contact-info-block__hours-range {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-info-block__hours-time {
  font-size: 16px;
  color: var(--text);
}
.contact-info-block__hours-bar {
  flex: 0 0 32px;
  height: 1px;
  background: var(--line-color);
  display: block;
}
.contact-info-block__social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-info-block__social-link {
  display: block;
  font-size: 16px;
  color: var(--olivewood);
  transition: color 0.2s;
}
.contact-info-block__social-link:hover { color: #D5C7AD; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .contact-main__inner { grid-template-columns: 1fr; gap: 52px; }
}
@media (max-width: 600px) {
  .contact-hero { height: 200px; }
  .contact-main { padding: 40px 20px 60px; }
}

/* ===========================================
   TOAST NOTIFICATIONS
   =========================================== */
.mm-toast-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  pointer-events: none;
}
.mm-toast {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px 18px 18px;
  background: #FFFDF7;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
  border-left: 4px solid transparent;
  min-width: 280px;
  max-width: 360px;
  pointer-events: auto;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.28s ease;
}
.mm-toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}
.mm-toast.is-hiding {
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.25s ease;
}
.mm-toast--success { border-left-color: #3aab6d; }
.mm-toast--error   { border-left-color: #c0392b; }
.mm-toast__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 1px;
}
.mm-toast__body { flex: 1; }
.mm-toast__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.mm-toast__msg {
  font-size: 12.5px;
  color: var(--bark);
  line-height: 1.55;
}
.mm-toast__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 12px 12px;
  background: currentColor;
  opacity: 0.2;
  transform-origin: left;
  animation: mmToastProgress 4.8s linear forwards;
}
.mm-toast__close {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  margin-top: -1px;
}
.mm-toast__close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
}
@keyframes mmToastProgress {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}
@media (max-width: 600px) {
  .mm-toast-container { right: 16px; left: 16px; bottom: 20px; }
  .mm-toast { min-width: 0; max-width: 100%; }
}


/* ===========================================
   K-CARE PAGE (template-kcare.php)
   =========================================== */

.kcare-concept, .kcare-criteria, .kcare-trust, .kcare-training {
  min-height: 680px;
  height: calc(100dvh - 75px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- S1: Hero heading ---- */
.kcare-hero {
  padding: 72px 0 0;
  text-align: center;
}
.kcare-hero__inner {
  max-width: 1200px;
  margin: 0px auto;
  text-align: center;
}
.kcare-hero__heading {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 700;
  color: #757022;
  line-height: 1.2;
  margin: 0;
}

/* ---- S2: Korean concept ---- */
.kcare-concept {
  padding: 0 40px 64px;
}
.kcare-concept__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.kcare-concept__text {
  position: relative;
  width: 100%;
}
.kcare-concept__content {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 500px;
  max-width: 90%;
  padding: 80px 0;
  gap: 4px;
  z-index: 2;
}
.kcare-concept__location {
  font-size: 18px;
  line-height: 1.4;
  color: var(--olivewood);
  margin: 0;
}
.kcare-concept__korean {
  font-size: 110px;
  font-weight: 300;
  color: var(--olivewood);
  line-height: 1;
  margin: 0;
}
.kcare-concept__romanize {
  font-size: 18px;
  line-height: 1.4;
  text-align: right;
  color: var(--olivewood);
  display: block;
  margin-bottom: 0;
}
.kcare-concept__desc {
  font-size: 18px;
  line-height: 1.4;
  color: var(--olivewood);
  text-align: justify;
  margin: 0;
}
.kcare-concept__photo-wrap {
  overflow: hidden;
  border-radius: 300px 300px 0 300px;
  height: 480px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.kcare-concept__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.kcare-concept__photo-wrap:hover .kcare-concept__photo {
  transform: scale(1.04);
}

/* ---- S3: Stats ---- */
.kcare-stats {
  padding: 30px 0 0 0;
  max-width: 900px;
  margin: 0 0 0 auto;
}
.kcare-stats__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  padding: 10px 0;
}
.kcare-stats__col {
  font-size: 12px;
  line-height: 1.4;
  color: var(--olivewood);
  text-align: justify;
}
.kcare-stats__col strong {
  color: var(--olivewood);
}

/* ---- S4: Label badge ---- */
.kcare-label-section {
  padding: 0 40px 40px;
  text-align: center;
}
.kcare-label-section__inner {
  width: auto;
  max-width: 90%;
  margin: 0 auto;
}
.kcare-label {
  display: inline-block;
  border: 1px solid #757022;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #757022;
  line-height: 1.4;
  max-width: 90%;
  width: auto;
}

/* ---- S5: 4 Criteria ---- */
.kcare-criteria {
  padding: 60px 40px 80px;
}
.kcare-criteria__grid {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 0;
}
.kcare-criteria__item {
  display: flex;
  align-items: center;
  position: relative;
}
.kcare-criteria__item--left {
  justify-content: flex-end;
}
.kcare-criteria__item--left .kcare-criteria__content {
  text-align: left;
  padding-right: 40px;
}
.kcare-criteria__item--left .kcare-criteria__letter {
  margin-left: 0;
}
.kcare-criteria__item--right {
  justify-content: flex-start;
}
.kcare-criteria__item--right .kcare-criteria__content {
  text-align: left;
  padding-left: 40px;
}
.kcare-criteria__item--right .kcare-criteria__letter {
  margin-right: 0;
}
.kcare-criteria__content {
  width: 55%;
  z-index: 2;
}
.kcare-criteria__heading {
  font-size: 16px;
  font-weight: 600;
  color: #757022;
  margin: 0 0 10px;
}
.kcare-criteria__subheading {
  font-size: 16px;
  line-height: 1.2;
  color: #757022;
  margin: 0 0 14px;
}
.kcare-criteria__text {
  font-size: 14px;
  line-height: 1.2;
  color: var(--olivewood);
  text-align: justify;
  margin: 0;
}
.kcare-criteria__letter {
  font-size: clamp(160px, 18vw, 260px);
  font-weight: 600;
  line-height: 0.8;
  color: #D5C7AD;
  -webkit-text-stroke: 2px #D5C7AD;
  user-select: none;
  pointer-events: none;
  flex-shrink: 0;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(-24px);
}
.kcare-criteria__item:hover .kcare-criteria__letter {
  -webkit-text-stroke-color: #FFF;
  /* filter: drop-shadow(0 0 18px #D5C7AD); */
}
.kcare-criteria__connector {
  position: absolute;
  top: 62%;
  width: 35px;
  height: 1px;
  background: var(--line-color);
  z-index: 2;
}
.kcare-criteria__item--left .kcare-criteria__connector {
  right: 230px;
}
.kcare-criteria__item--left .kcare-criteria__connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -4px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--line-color);
  border-radius: 50%;
  background: #fff;
}
.kcare-criteria__item--right .kcare-criteria__connector {
  left: 160px;
}
.kcare-criteria__item--right .kcare-criteria__connector::after {
  content: '';
  position: absolute;
  left: -6px;
  top: -4px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--line-color);
  border-radius: 50%;
  background: #fff;
}

/* ---- S6: Sự an tâm ---- */
.kcare-trust {
  padding: 72px 40px 80px;
  background: #FFFDF7;
  position: relative;
  overflow: hidden;
}
.kcare-trust__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}
.kcare-trust__heading {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: #757022;
  margin: 0;
}
.kcare-trust__subheading {
  font-size: 18px;
  font-weight: 600;
  color: var(--olivewood);
  margin: 0;
}
.kcare-trust__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}
.kcare-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px 36px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 15px #D5C7AD;
}
.kcare-trust__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 20px;
}
.kcare-trust__item-heading {
  font-size: 22px;
  font-weight: 700;
  color: #757022;
  line-height: 1.4;
  margin-bottom: 14px;
}
.kcare-trust__item-text {
  font-size: 14px;
  line-height: 1.2;
  color: var(--olivewood);
  text-align: justify;
  margin: 0;
}

.kcare-s1__deco {
  position: absolute;
  right: -800px;
  top: 100px;
  width: 1000px;
  height: 400px;
  background: url(../images/experience-line.svg) left center no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

.kcare-s2__deco {
  position: absolute;
  left: -300px;
  bottom: -50px;
  width: 1000px;
  height: 400px;
  background: url(../images/experience-line.svg) left center no-repeat;
  background-size: contain;
  transform: scaleX(-1);
  transform-origin: center;
  pointer-events: none;
  z-index: 1;
}

/* ---- S7: Training ---- */
.kcare-s3__deco {
  position: absolute;
  right: -5px;
  top: 300px;
  width: 55%;
  height: 220px;
  border: 1px solid #D5C7AD;
  border-radius: 200px 0 0 200px;
  /* background: url(../images/experience-line.svg) left center no-repeat; */
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}
.kcare-s4__deco {
    position: absolute;
    left: -5px;
    bottom: -100px;
    width: 35%;
    height: 400px;
    border: 1px solid #D5C7AD;
    border-radius: 0 400px 400px 0;
    /* background: url(../images/experience-line.svg) left center no-repeat; */
    background-size: contain;
    transform-origin: center;
    pointer-events: none;
    z-index: 1;
}
.kcare-training {
  padding: 72px 40px 80px;
  position: relative;
  overflow: hidden;
  flex-direction:row;
}
.kcare-training__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.kcare-training__header {
  text-align: center;
  margin-bottom: 16px;
}
.kcare-training__heading {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
  color: #757022;
  margin: 0 0 12px;
  line-height: 1.4;
}
.kcare-training__deco {
  width: 14px;
  height: auto;
  display: inline-block;
}
.kcare-training__desc {
  font-size: 16px;
  line-height: 1.4;
  color: var(--olivewood);
  text-align: justify;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto 56px;
}
.kcare-training__card1 {
  bottom: 170px;
  left: 0px;
}

.kcare-training__card2 {
  right: 15%;
  top: 190px;
}

.kcare-training__card3 {
  bottom: 10px;
  left: 12%;
}

.kcare-training__card4 {
  right: 0;
  top: 400px;
}

/* Training tree layout */
.kcare-training__tree {
  /* display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0; */
}
.kcare-training__row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 0;
}
.kcare-training__main {
  background: none;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.kcare-training__main span {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--olivewood);
  line-height: 1.4;
}
.kcare-training__card {
  position: absolute;
  display: inline-block;
  width: auto;
  max-width: 450px;
  background: #fff;
  border-radius: 300px;
  padding: 20px 40px;
  box-shadow: 0 0 15px #D5C7AD;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #757022;
  text-align: center;
  z-index: 2;
}

/* Connectors */
.kcare-training__connector--h {
  height: 1px;
  background: var(--line-color);
  position: relative;
}
.kcare-training__connector--h::before,
.kcare-training__connector--h::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--line-color);
  background: #fff;
}
.kcare-training__connector--h::before { left: -3px; }
.kcare-training__connector--h::after  { right: -3px; }

.kcare-training__connector--v {
  width: 1px;
  height: 40px;
  background: var(--line-color);
  margin: 0 auto;
  position: relative;
}

/* Row 2 — main skill repeated: left card, connector, right card */
.kcare-training__row--2 .kcare-training__card {
  text-align: center;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1200px) {
  .mm-loader__logo { 
    height: 120px;
  }
  .site-nav__link, .phone-btn, .site-nav__list .sub-menu a {
    font-size: 12px;
  }
  .site-footer__logo-wrap, .site-footer__logo {
    width: 100px;
    height: 100px;
  }
  .site-footer__brand-tag, .site-footer__tagline {
    font-size: 16px;
    line-height: 1.4;
  }
  .site-footer__brand-name {
    font-size: 34px;
  }
  .site-footer__btn {
    padding: 8px 20px;
    font-size: 16px;
  }
  .site-footer__social-link {
    font-size: 14px;
  }
  .site-footer__address {
    font-size: 12px;
  }
  .about-intro__badge {
    padding: 8px 60px;
    font-size: 1rem;
  }
  .about-intro__heading {
    font-size: 80px;
  }
  .about-intro__heading {
    font-size: 100px;
  }
  .about-intro__quote {
    font-size: 0.9rem;
  }
  .about-intro__content-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 1100px) {
  .site-header__inner { padding: 0 24px; }
  .site-nav__list { gap: 22px; }
  .hero__title-block,
  .hero__info-bar { padding-left: 32px; padding-right: 32px; }
  .hero__nav { right: 32px; }
  .timeline { padding-left: 32px; }
  .timeline__arrow { left: 32px; }

  .about-intro { padding: 40px; }
  .about-intro__content-grid { padding: 0 20% 0 8%; }
  .about-intro__footer-cta { margin-right: 60px; }
  .about-investors { padding: 48px 40px; }
  .about-inv-dark__overlay { padding: 64px 40px 48px; }
  .about-philosophy { padding: 64px 0; }
  .about-philosophy__inner { padding: 0 40px; }
  .about-philosophy__icon-col { padding: 32px; }
  .about-philosophy__text-col { padding: 32px 40px; }
  .about-experts { padding: 64px 40px; }
  .about-experts__list { gap: 60px; }
  .about-experts__info { padding: 40px 36px; }
  .site-footer__inner { padding: 40px 40px; gap: 48px; }
  .site-footer__map { width: 300px; }
}

@media (max-width: 900px) {
  .kcare-concept__inner { grid-template-columns: 1fr; gap: 32px; }
  .kcare-concept__photo-wrap { height: 320px; border-radius: 160px 160px 0 0; }
  .kcare-stats__inner { grid-template-columns: 1fr; gap: 24px; }
  .kcare-criteria__grid { grid-template-columns: 1fr; }
  .kcare-criteria__item--left,
  .kcare-criteria__item--right { justify-content: flex-start; }
  .kcare-criteria__item--left .kcare-criteria__content,
  .kcare-criteria__item--right .kcare-criteria__content { text-align: left; padding: 0 0 0 16px; }
  .kcare-trust__grid { grid-template-columns: 1fr; max-width: 480px; }
  .kcare-training__row { grid-template-columns: 1fr; gap: 16px; }
  .kcare-training__connector--h { display: none; }
  .kcare-training__connector--v { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .site-header__inner { padding: 0 16px; gap: 10px; }
  .site-nav { display: none; }
  .lang-switch { display: none; }
  .phone-btn { font-size: 11px; line-height: 1; padding: 4px 10px; gap: 5px; }
  .nav-burger { display: flex; }
  .site-nav__chevron { display: none;}
  .mobile-nav__list li:last-child { border-bottom: none;}

  .hero__image { object-position: center right; }
  .hero__badge-second { font-size: 14px; }

  .hero { height: calc(100vh - var(--nav-h)); min-height: 300px; }
  .hero__title { font-size: clamp(38px, 10vw, 64px); }
  .hero__title-block { padding: 0 20px 16px; }
  .hero__info-bar { padding: 20px 28px 50px; text-align: left; }
  .hero__info-title { font-size: 14px; margin-bottom: 6px; }
  .hero__info-subtitle { font-size: 13px; }
  .hero__badge { font-size: 12px; padding: 4px 16px 6px; }

  .timeline { padding: 0 0 0 16px; }
  .timeline__track { height: 360px; }
  .timeline__item { width: 250px; }
  .timeline__item--end { width: 300px; margin-left: 60px; }
  .timeline__text { font-size: 13px; width: 280px; }
  .timeline__track > .timeline__item:nth-child(4) .timeline__text { width: 280px;}
  .timeline__arrow { left: 16px; bottom: 60px; }
  .timeline__arrow img { width: 35px; height: auto;}
  .timeline__end-text { font-size: 16px; line-height: 1.4; }

  /* Features mobile */
  .features { min-height: 500px; padding: 60px 20px 40px; }
  .features__card { width: 240px; }
  .features__card-img-wrap { height: 320px; }
  .features__track { gap: 20px; }
  .features__heading { margin: 0 auto 40px; }
  .features__card-title { font-size: 18px; }
  
  .gallery-grid { height: auto;}
  .gallery-grid__heading { padding: 20px 20px 20px; }
  .gallery-grid__inner {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
  .gallery-grid__caption {
    transform: translateY(calc(100% + 20px));
    padding: 30px 20px 30px;
  }
  .gallery-grid__title { font-size: 16px; }
  .gallery-grid__desc  { font-size: 12px; min-height: 50px; }
  .gallery-grid__item { height: 350px; }
  .gallery-grid__item:hover .gallery-grid__heading {
    transform: translateY(-60px);
  }

  .home-cta { padding: 40px 20px; min-height: 500px; height: auto; }
  .home-cta__image-wrap { width: 100%; margin-bottom: 20px; border-radius: 160px; }
  .home-cta__title { font-size: clamp(36px, 10vw, 56px); }
  .home-cta__actions { flex-direction: column; gap: 16px; }
  .home-cta__btn { width: 100%; justify-content: center; gap: 5px; }
  .home-cta__btn-arrow { height: 8px; display: none;}

  .narrative {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }
  .narrative__grid {
    display: block;
    padding-bottom: 0;
  }
  .narrative__left { padding: 0; }
  .narrative__circle {
    position: static;
    transform: none;
    width: 220px;
    margin: 0 0 32px 0;
  }
  .narrative__item { width: 100% !important;}
  .narrative__item:nth-child(n) { margin-left: 0; }
  .narrative__quote { max-width: 100%; margin: clamp(36px, 5vw, 56px) 0 0 auto; padding: 10px 20px; font-size: 16px; }
  .narrative__photo { border-radius: clamp(120px, 15vw, 240px) 0 40px 0; }
  .narrative__right { margin-top: 30px; }

  /* About mobile */
  .about-intro__header { text-align: center;}
  .about-intro__badge, .about-intro__cta-box { font-size: 14px; line-height: 1.4; padding: 6px 40px; }
  .about-intro__heading { font-size: 80px; line-height: 0.9; }
  .about-intro__header { margin-bottom: 25px; }
  .about-intro { padding: 32px 16px; }
  .about-intro__line-svg { display: none; }
  .about-intro__content-grid { grid-template-columns: 1fr; padding: 0 5%; margin: 10px 0; gap: 5px; }
  .about-intro__footer-cta { margin-right: 0; margin-top: 20px; justify-content: center; }
  .about-intro__cta-box { text-align: center; }
  .about-investors { padding: 40px 20px; }
  .about-investors__logos { grid-template-columns: 1fr; gap: 16px; }
  .about-investors__logo-card { aspect-ratio: 16 / 9; width: 100%; }
  .about-inv-dark__overlay { padding: 48px 20px 40px; }
  .about-inv-dark__logo-item { padding: 0 20px; }
  .about-philosophy { padding: 52px 0; }
  .about-philosophy__inner { padding: 0 20px; }
  .about-philosophy__header { margin-bottom: 48px; }
  .about-philosophy__row { grid-template-columns: 1fr; min-height: auto; }
  .about-philosophy__row--reverse { direction: ltr; }
  .about-philosophy__icon-col { padding: 10px; }
  .about-philosophy__icon { max-width: 100px; }
  .about-philosophy__text-col { padding: 24px 20px; }
  .about-experts { padding: 40px 20px; }
  .about-experts__heading { margin-bottom: 40px; }
  .about-experts__list { gap: 48px; }
  .about-experts__row, .about-experts__row.about-experts__row--reverse { grid-template-columns: 1fr; min-height: auto; }
  .about-experts__row--reverse .about-experts__photo-wrap { order: 0; }
  .about-experts__row--reverse .about-experts__info { order: 0; }
  .about-experts__photo-wrap, .about-experts__row--reverse .about-experts__photo-wrap { border-radius: 50% 50% 0 0; height: 320px; }
  .about-experts__info { padding: 20px 24px; background: #F5F0EA; }
  .about-experts__row--reverse .about-experts__info { text-align: left; }
  .about-experts__bio { font-size: 13px; }
  .about-experts__row--reverse .about-experts__info { background: #F5F0EA; }
  .about-experts__name { font-size: clamp(28px, 8vw, 48px); word-spacing: normal; }
  .about-intro__quote { margin: 20px 0;}
  .about-investors__inner { gap: 30px; }
  .about-investors__desc { font-size: 16px; }
  .about-inv-dark__content { font-size: 16px; }
  .about-intro, .about-investors, .about-inv-dark, .about-philosophy, .about-experts { min-height: 600px; }
  .about-inv-dark__overlay { justify-content: center; }
  .about-inv-dark__subtitle { font-size: 18px; }
  .about-inv-dark__caption-label { padding: 20px 20px 0; font-size: 16px; }
  .about-investors__card-content { gap: 10px;}
  .about-divider { padding: 0 0 10px; }
  .about-philosophy__badge, .about-philosophy__subtitle { font-size: 16px; }
  .about-philosophy { background: none;}

  .about-s1__cta-line-wrap { display: flex; flex-direction:column; }

  /* Experience mobile */
  .exp-hero__overlay { padding: 60px 20px; align-items: start; }
  .exp-hero { background-position: center right 20%; }
  .exp-hero__text { font-weight: 600; line-height: 1.4; }
  .exp-hero__content { gap: 18px; }
  .exp-hero__btn { padding: 10px 22px; font-size: 14px; }

  /* Story mobile */
  .story-caption__text { font-size: 14px; }
  .story-video { padding: 60px 20px 30px; min-height: 300px; }
  .story-video__play { width: 64px; height: 64px; }
  .story-video__play img { width: 50px; height: 50px; }
  .story-caption { padding: 16px 0; }
  .story-gallery__title { font-size: 28px; }
  .story-gallery { min-height: 600px; }
  .story-gallery__stage { max-width: 90vw; }
  .story-gallery__header { padding: 40px 24px 16px; }
  .story-gallery__stage  { max-height: 50vw; }
  .story-gallery__cap    { font-size: 11px; padding: 10px 10px; line-height: 1;}
  .story-gallery__card.is-pending-1 { transform: translate(-40%, 85%) scale(0.6); }
  .story-gallery__card.is-exit { transform: translate(40%, -85%) scale(0.6); opacity: 0.2; }
  .story-s1__deco { right: -250px; top: 80px; width: 400px; height: 300px; }
  .story-s2__deco { left: -200px; bottom: 50px; width: 400px; height: 300px; }
  .story-gallery__close { bottom: -25px; right: -10px; width: 14px; height: 14px; }

  .story-s3__deco { right: -10px; top: 80px; width: 100%; height: 200px; }
  .story-s4__deco { width: 100%; left: -10px; bottom: 90px; height: 180px; }
  .story-s3 { min-height: 600px; height: auto; flex-direction: column; padding: 0 0 60px; }
  .story-s3__inner {
    padding: 0 20px 20px;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
  }
  .story-s3__card,
  .story-s3__photo1-wrap,
  .story-s3__photo2-wrap,
  .story-s3__cta-row { position: relative; transform: none; }
  .story-s3__photo1-wrap { width: 100%; height: 240px; text-align: right; border-radius: 0; }
  .story-s3__photo1 { width: 90%; margin: 0 0 0 auto; border-radius: 200px 0 0 200px; object-position: right top;}
  .story-s3__card { max-width: 90%; }
  .story-s3__cta-line-wrap { display: none; }
  .story-s3__card p { font-size: 12px; line-height: 1.2; }
  .story-s3__card { padding: 12px 15px; }
  .story-s3__card.story-s3__card--2 { max-width: 90%; top: 0; right: 0;}
  .story-s3__photo2-wrap { left: -2%; width: 200px; height: 200px; }
  .story-s3__cta-row { left: 0; }
  .story-s3__cta-card { padding: 10px 15px; max-width: 260px; }
  .story-s3__cta-text { font-size: 14px; line-height: 1.4;}
  .story-s3__cta-btn { margin-left: 0; }
  .story-s3__cta-btn img, .story-s3__cta-btn svg { width: 40px; height: 40px;}

  /* Contact mobile */
  .contact-brand__tag, .contact-brand__tagline { font-size: 16px; }
  .contact-brand__heading { font-size: 42px; }
  .contact-form-wrap__label { margin-bottom: 30px; }
  .contact-main__inner { gap: 30px; margin: 50px auto 0; }
  .contact-form__field { padding: 0; }
  .contact-form__footer { margin-top: 10px; }
  .contact-main__right { margin-top: 30px; }
  .contact-form__submit { padding: 8px 50px; font-size: 16px; }

  /* Experience mobile */
  .exp1-hero__heading { font-size: 24px; margin: 0 0 10px; }

  /* KCare mobile */
  .kcare-hero { padding: 40px 0px 20px; }
  .kcare-concept { padding: 0 20px 30px; }
  .kcare-stats { padding: 0; }
  .kcare-label-section { padding: 0 0 30px; }
  .kcare-label { padding: 12px 24px; font-size: 14px; }
  .kcare-criteria { padding: 0 0 40px; }
  .kcare-trust { padding: 30px 20px 40px; }
  .kcare-training { padding: 30px 20px 40px; }
  .kcare-training__main span { font-size: 22px; }
  .kcare-concept__inner { gap: 0px; }
  .kcare-concept__korean { font-size: 70px; }
  .kcare-concept__content { width: 100%; max-width: 100%; padding: 10px 20px 30px; }
  .kcare-concept__location, .kcare-concept__romanize, .kcare-concept__desc { font-size: 16px; }
  .kcare-concept__photo-wrap { height: 300px; border-radius: 120px 0 120px 0; position: relative; }
  .kcare-stats__inner { padding: 30px 0 20px; }
  .kcare-concept__photo { object-position: right bottom; }
  .kcare-hero__heading { font-size: 24px; margin: 0 0 5px; }
  .kcare-label-section__inner { max-width: 100%;}
  .kcare-criteria__grid { padding-left: 0; gap: 30px; }
  .kcare-criteria__item--right .kcare-criteria__letter { order: 2 }
  .kcare-criteria__subheading { font-size: 14px; margin: 0 0 8px; }
  .kcare-criteria__text { font-size: 13px; }
  .kcare-criteria__item--left, .kcare-criteria__item--right { gap: 30px;}
  .kcare-criteria__content { width: 50%; }
  .kcare-criteria__connector { width: 25px; }
  .kcare-criteria__item--left .kcare-criteria__connector { right: auto; left: 52.9%; top: 55%; }
  .kcare-criteria__item--right .kcare-criteria__connector { right: auto; left: 51.9%; top: 55%; }
  .kcare-criteria__item--right .kcare-criteria__connector::after { left: auto; right: -6px; top: -4px; }
  .kcare-trust__subheading { font-size: 16px; }
  .kcare-concept, .kcare-criteria, .kcare-trust, .kcare-training { min-height: 600px; height: auto; }
  .kcare-trust__header { margin-bottom: 30px; }
  .kcare-trust__icon { width: 54px; height: 54px; }
  .kcare-trust__grid { gap: 30px; }
  .kcare-trust__item { padding: 30px 20px; }

  .kcare-s2__deco { left: -650px; }

  .kcare-training__desc { font-size: 14px; line-height: 1.4; width: 100%; }
  .kcare-training__card { position: relative; font-size: 13px; font-weight: 600; line-height: 1.2; padding: 10px 20px }
  .kcare-training__card2 { right: -80px; top: -70px; left: auto; }
  .kcare-training__card4 { right: -160px; top: -50px; left: auto; }

  .kcare-s3__deco { top: 305px; width: 90%; height: 120px; }
  .kcare-s4__deco { bottom: -50px; width: 250px; height: 200px; }

  .kcare-training__card1 { bottom: auto; left: 0px; top: 178px; }
  .kcare-training__card3 { bottom: auto; left: 80px; top: 150px; }

  .kcare-training__inner { height: 580px; }

  .exp1-nav__item--prev img { display: none;}

  /* Footer mobile */
  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
  .site-footer__map { width: 100%; }
  .site-footer__map-img { height: 200px; }
  .site-footer__address { text-align: left; }
  .site-footer__contact-btns { flex-direction: row; }

  .site-footer__logo-wrap, .site-footer__logo { width: 80px; height: 80px; }
  .site-footer__brand { gap: 20px; margin-bottom: 20px; }
  .site-footer__brand-tag, .site-footer__tagline { font-size: 14px; }
  .site-footer__brand-name { font-size: 30px; }
  .site-footer__brand-text { gap: 6px; }
  .site-footer__btn { padding: 6px 10px; }
  .site-footer__social { gap: 10px; }
  .site-footer__divider { top: 70%; }
}
