*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #3D9970;
  --green-dark:  #2A7A53;
  --green-mid:   #5DB886;
  --green-pale:  #E8F5EE;
  --green-faint: #F2FBF6;
  --hero-bg:     #FFFCE0;
  --yellow:      #F5E642;
  --yellow-pale: #FFFDE6;
  --dark:        #152B1E;
  --black:       #0D0C1D;
  --gray-70:     #374151;
  --gray-50:     #6B7280;
  --gray-30:     #9CA3AF;
  --gray-10:     #E5E7EB;
  --gray-05:     #F3F4F6;
  --white:       #FFFFFF;
  --r:           12px;
  --r-sm:        8px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── UTILS ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 60px; }
.label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 800; line-height: 1.12; letter-spacing: -1.8px; }
.sub { font-size: 19px; color: var(--gray-50); line-height: 1.75; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 22px; border-radius: var(--r-sm); font-size: 14px;
  font-weight: 700; cursor: pointer; border: none; transition: all .18s;
  white-space: nowrap; letter-spacing: .2px;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 2px 12px rgba(61,153,112,.35); }
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 6px 20px rgba(61,153,112,.4); }
.btn-ghost { background: transparent; color: var(--gray-70); }
.btn-ghost:hover { background: var(--gray-05); }
.btn-outline { border: 1.5px solid var(--gray-10); color: var(--gray-70); background: transparent; }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
.btn-dark-outline { border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.85); background: transparent; }
.btn-dark-outline:hover { border-color: var(--white); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); font-weight: 800; }
.btn-white:hover { background: var(--gray-05); }
.btn-hero-cta {
  background: var(--green);
  color: var(--white);
  padding: 16px 38px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 4px 20px rgba(61,153,112,.45);
  transition: background .18s, box-shadow .18s, transform .18s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-cta:hover {
  background: var(--green-dark);
  box-shadow: 0 8px 28px rgba(61,153,112,.55);
  transform: translateY(-2px);
}

/* ── HERO ENTRANCE ANIMATIONS ── */
@keyframes heroFadeLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroScaleIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes heroBounceIn {
  0%   { opacity: 0; transform: scale(0.75) translateY(16px); }
  65%  { opacity: 1; transform: scale(1.06) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.nav-wrap      { animation: heroFadeUp    0.8s ease            both; }
.hero h1       { animation: heroFadeLeft  1.1s ease            both 0.25s; }
.hero-sub      { animation: heroFadeLeft  1.1s ease            both 0.50s; }
.btn-hero-cta  { animation: heroFadeUp    1.0s ease            both 0.70s; }
.yellow-dot-accent { animation: heroScaleIn 1.2s cubic-bezier(.34,1.56,.64,1) both 0.25s; }
.person-wrap   { animation: heroFadeUp    1.4s ease            both 0.40s; }
.float-chat    { animation: heroBounceIn  1.0s ease            both 1.20s; }

@media (prefers-reduced-motion: reduce) {
  .nav-wrap, .hero h1, .hero-sub, .btn-hero-cta,
  .yellow-dot-accent, .person-wrap, .float-chat { animation: none; }
  .person-strip { animation: none; }
}

/* ════════════════════════════════
   ABOVE-FOLD: announcement + nav + hero = 100vh
════════════════════════════════ */
.above-fold {
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #FFF8CC 0%, #D4EFE3 100%);
  overflow: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement {
  flex-shrink: 0;
  background: rgba(61,153,112,.1);
  color: var(--green-dark);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(61,153,112,.15);
}
.announcement a { color: var(--green-dark); font-weight: 700; margin-left: 6px; text-decoration: underline; text-underline-offset: 2px; }
.announcement a:hover { color: var(--black); }

/* ── NAV ── */
nav {
  flex-shrink: 0;
  background: transparent;
  position: relative;
  z-index: 99;
}
.nav-wrap {
  max-width: 1180px; margin: 0 auto; padding: 0 60px;
  display: flex; align-items: center; height: 64px; gap: 8px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 900; font-size: 20px; letter-spacing: -0.5px;
  color: var(--black); flex-shrink: 0; margin-right: 20px;
}
.logo-mark {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green);
  border-radius: 9px;
  padding: 3px;
  flex-shrink: 0;
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-handwriting {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: 17px;
  color: var(--green-dark);
  letter-spacing: 0;
  margin-left: 2px;
}
.nav-links { display: flex; align-items: center; gap: 0; margin-left: auto; }
.nav-links a {
  padding: 6px 14px; border-radius: 6px; font-size: 14px;
  font-weight: 500; color: var(--gray-70); transition: background .15s, color .15s;
  display: flex; align-items: center; gap: 4px;
}
.nav-links a:hover { background: rgba(0,0,0,.05); color: var(--black); }

/* ── HERO ── */
.hero {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 0 60px;
  overflow: visible;
  position: relative;
}
.hero-inner {
  max-width: 1180px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
  pointer-events: none;
}
.hero-content {
  pointer-events: auto;
  padding-left: 0;
  padding-top: 15vh;
}
.hero h1 {
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 1.15; letter-spacing: -3px;
  margin-bottom: 36px;
}
.h1-light {
  display: block;
  font-weight: 300;
  color: var(--gray-50);
  padding-left: 0;
  margin-bottom: 8px;
}
.h1-bold {
  display: block;
  font-weight: 900;
  background: linear-gradient(135deg, #C47F00 0%, #2A7A53 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2.5px;
  margin-bottom: 6px;
}
.h1-i1 { padding-left: 0; }
.h1-i2 { padding-left: 0; }
.hero-sub {
  font-size: 18px; color: var(--gray-70);
  line-height: 1.9; max-width: 480px; margin-bottom: 52px;
}
.hero-sub em {
  font-style: italic;
  color: var(--green-dark);
  font-weight: 500;
}

/* ── HERO VISUAL (right side) ── */
.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: stretch;
  overflow: visible;
}
.hero-scene {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Yellow dot accent */
.yellow-dot-accent {
  position: absolute;
  right: 46%; top: 55%;
  width: 110px; height: 110px;
  background: #F5E642;
  background-image: radial-gradient(circle, rgba(0,0,0,.10) 2px, transparent 2px);
  background-size: 11px 11px;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

/* Person slideshow — full 100vh, diagonal triangle border */
.person-wrap {
  position: absolute;
  left: 50%; right: 0;
  top: 0; bottom: 0;
  width: auto;
  z-index: 3;
  overflow: hidden;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  filter:
    drop-shadow(-8px  0px 0 #fff)
    drop-shadow(-6px  0px 0 #fff)
    drop-shadow(-4px  0px 0 #fff)
    drop-shadow(-2px  0px 0 #fff)
    drop-shadow( 0px -8px 0 #fff)
    drop-shadow( 0px  8px 0 #fff);
}
.person-strip {
  display: flex;
  flex-direction: column;
  width: 100%;
  animation: personSlide 30s ease-in-out infinite;
}
.person-slide {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
@keyframes personSlide {
  0%       { transform: translateY(0); }
  13.33%   { transform: translateY(0); }
  16.66%   { transform: translateY(-16.6667%); }
  30%      { transform: translateY(-16.6667%); }
  33.33%   { transform: translateY(-33.3333%); }
  46.66%   { transform: translateY(-33.3333%); }
  50%      { transform: translateY(-50%); }
  63.33%   { transform: translateY(-50%); }
  66.66%   { transform: translateY(-66.6667%); }
  80%      { transform: translateY(-66.6667%); }
  83.33%   { transform: translateY(-83.3333%); }
  100%     { transform: translateY(-83.3333%); }
}

/* Icon badge */
.icon-badge {
  position: absolute;
  top: 88px; right: 24px; left: auto;
  z-index: 5;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.2px;
}
.icon-badge img {
  width: 28px; height: 28px;
  object-fit: contain;
}

/* Floating chat card */
.float-chat {
  position: absolute;
  bottom: 60px; right: 16px;
  z-index: 4;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  width: 230px;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.fc-from { font-size: 10px; font-weight: 700; color: var(--green); margin-bottom: 3px; }
.fc-msg {
  font-size: 14px; font-weight: 700; color: var(--black);
  display: flex; align-items: center; justify-content: space-between;
}
.fc-msg span { font-size: 12px; color: var(--green); }
.fc-reply {
  margin-top: 8px;
  background: var(--gray-05); border-radius: 10px;
  padding: 8px 12px; font-size: 13px; color: var(--gray-70);
  display: flex; align-items: center; justify-content: space-between;
}
.fc-avatar {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--yellow); flex-shrink: 0;
}

/* ── HERO MOBILE PHOTO ── */
.hero-mobile-photo {
  display: none;
}
@keyframes mobileFade {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  20%  { opacity: 1; }
  24%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ── SHARED SECTION ── */
.section { padding: 96px 60px; }

/* ── SERVICES ── */
.services-section {
  background: var(--white);
  padding: 96px 60px;
}
.services-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.services-head .h2 { margin-bottom: 14px; }
.srv-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.srv-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border: 1.5px solid transparent;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.srv-card:hover {
  border-color: var(--green-pale);
  box-shadow: 0 8px 32px rgba(61,153,112,.12);
  transform: translateY(-3px);
}
.srv-icon {
  width: 56px; height: 56px;
  background: var(--green-pale);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.srv-icon svg { width: 26px; height: 26px; color: var(--green-dark); }
.srv-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.3px;
  line-height: 1.25;
}

/* ── SECTION HEADS ── */
.team-head { margin-bottom: 52px; }
.team-head .h2 { margin-bottom: 14px; }

/* ── ABOUT BENTO ── */
.about-bento { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr auto; gap: 0; border-radius: var(--r); overflow: hidden; }
.abt-left { grid-row: 1 / 3; background: var(--white); display: flex; flex-direction: column; }
.abt-text { padding: 40px 36px 28px; display: flex; flex-direction: column; gap: 16px; }
.abt-name { font-size: 24px; font-weight: 900; color: var(--black); letter-spacing: -.5px; }
.abt-role { font-size: 12px; font-weight: 700; color: var(--green); letter-spacing: .2px; }
.abt-text p { font-size: 15px; color: var(--gray-70); line-height: 1.75; }
.abt-photo-area { flex: 1; position: relative; overflow: hidden; min-height: 260px; background: var(--green-pale); }
.abt-circle { position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%); width: 340px; height: 340px; background: var(--green-pale); border-radius: 50%; }
.abt-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.abt-photo-fade { position: absolute; top: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to bottom, var(--white), transparent); pointer-events: none; }
.abt-tr { padding: 36px; display: flex; align-items: stretch; gap: 24px; }
.abt-tr-text { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.abt-h3 { font-size: 26px; font-weight: 800; color: var(--white); letter-spacing: -.5px; line-height: 1.2; }
.abt-tr-text p { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.75; }
.abt-bars { position: relative; flex-shrink: 0; width: 130px; }
.abt-bar { position: absolute; height: 11px; background: rgba(255,255,255,.3); border-radius: 100px; }
.abt-br { background: var(--green-faint); padding: 36px; display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.abt-h3-green { font-size: 22px; font-weight: 800; color: var(--green-dark); letter-spacing: -.4px; }
.abt-br p { font-size: 15px; color: var(--green-dark); line-height: 1.75; font-style: italic; }

/* ── TESTIMONIALS ── */
.cs-head { margin-bottom: 52px; }
.cs-show-more { display: none; }
.cs-head .h2 { margin-bottom: 14px; }
.cs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.cs-card { border: 1.5px solid var(--gray-10); border-radius: var(--r); padding: 32px; position: relative; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.cs-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--green-mid)); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.cs-card:hover::after { transform: scaleX(1); }
.cs-card:hover { box-shadow: 0 8px 32px rgba(61,153,112,.1); transform: translateY(-3px); }
.cs-co { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.cs-logo-box { width: 40px; height: 40px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; color: var(--white); flex-shrink: 0; }
.cs-co-name { font-size: 15px; font-weight: 800; }
.cs-co-type { font-size: 12px; color: var(--gray-50); }
.cs-result-box { background: var(--gray-05); border-radius: var(--r-sm); padding: 14px; font-size: 13px; color: var(--gray-70); line-height: 1.7; font-style: italic; }

/* ── CONTACT / 3-WAY CTA ── */
.cta-paths { background: linear-gradient(135deg, #FFF8CC 0%, #D4EFE3 100%); padding: 96px 60px; }
.cta-paths-inner { max-width: 1180px; margin: 0 auto; }
.cta-paths .label { color: var(--green-dark); }
.cta-paths .h2 { color: var(--black); margin-bottom: 52px; }
.choose-list {
  border-top: 1.5px solid rgba(0,0,0,.1);
  margin-bottom: 52px;
}
.choose-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1.5px solid rgba(0,0,0,.1);
  text-decoration: none;
  transition: background .18s, padding .18s;
  border-radius: 0;
  cursor: pointer;
}
.choose-item:hover { padding-left: 16px; padding-right: 16px; background: rgba(255,255,255,.6); border-radius: var(--r); border-color: transparent; margin: 0 -16px; width: calc(100% + 32px); }
.choose-item:hover .choose-num { color: var(--green); }
.choose-item:hover .choose-title { color: var(--green-dark); }
.choose-item:hover .choose-arrow { transform: translateX(6px); color: var(--green); }
.choose-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-30);
  letter-spacing: 1px;
  flex-shrink: 0;
  width: 32px;
  transition: color .18s;
}
.choose-body { flex: 1; }
.choose-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.5px;
  line-height: 1.15;
  margin-bottom: 6px;
  transition: color .18s;
}
.choose-desc {
  font-size: 15px;
  color: var(--gray-50);
  line-height: 1.6;
}
.choose-arrow {
  font-size: 28px;
  color: var(--gray-30);
  flex-shrink: 0;
  transition: transform .2s, color .18s;
}
.cta-map-row {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: stretch;
}
.cta-map-info {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.06);
  border-radius: var(--r);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-map-info h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.3px;
  margin-bottom: 4px;
}
.cta-map-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-50);
  line-height: 1.5;
}
.cta-map-detail .icon { flex-shrink: 0; font-size: 15px; }
.cta-map-detail a { color: var(--gray-70); transition: color .15s; }
.cta-map-detail a:hover { color: var(--black); }
.cta-map-embed {
  border-radius: var(--r);
  overflow: hidden;
  min-height: 280px;
}
.cta-map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}
.cta-contact-strip {
  margin-top: 52px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 15px; color: rgba(255,255,255,.5);
}
.cta-contact-strip a { color: rgba(255,255,255,.8); font-weight: 600; transition: color .15s; }
.cta-contact-strip a:hover { color: var(--white); }
.cta-contact-strip .divider { color: rgba(255,255,255,.2); }

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  border: 2px dashed var(--gray-10);
  border-radius: var(--r);
  background: var(--gray-05);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-30);
  font-size: 13px; font-weight: 500;
  min-height: 200px;
  text-align: center;
  padding: 24px;
}

/* ── FOOTER ── */
footer { background: #111A14; color: rgba(255,255,255,.45); padding: 68px 60px 36px; }
.footer-top { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; margin-bottom: 52px; }
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 10px; }
.footer-brand a { font-size: 13px; color: var(--green-mid); }
.footer-col h4 { font-size: 12px; font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: .3px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .15s; }
.footer-col li a:hover { color: var(--white); }
.footer-bottom { max-width: 1180px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07); display: flex; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.footer-legal { font-size: 11.5px; line-height: 1.7; flex: 1; color: rgba(255,255,255,.25); }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }
.footer-legal-links a { font-size: 12px; color: rgba(255,255,255,.3); transition: color .15s; }
.footer-legal-links a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1280px) {
  .person-wrap { clip-path: polygon(22% 0%, 100% 0%, 100% 100%, 0% 100%); }
}
@media (max-width: 1024px) {
  .srv-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: repeat(2,1fr); }
  .person-wrap { clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%); }
}
@media (max-width: 768px) {
  .section { padding: 64px 24px; }
  .services-section { padding: 64px 24px; }
  .services-section { display: none; }
  .above-fold { height: auto; min-height: 100svh; }
  .hero { padding: 28px 24px 40px; align-items: flex-start; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: flex; height: 300px; }
  .hero-scene { height: 300px; max-height: 300px; }
  .yellow-dot-accent { display: none; }
  .person-wrap { display: none; }
  .icon-badge { display: none; }
  .float-chat { display: none; }
  .hero-content { padding-top: 8px; }
  .hero-mobile-photo {
    display: block;
    position: relative;
    width: 72%;
    height: 300px;
    margin: 36px auto 0;
    background: #fff;
    padding: 10px 10px 36px;
    border-radius: 6px;
    box-shadow: 0 16px 48px rgba(0,0,0,.18);
    transform: rotate(-3deg);
    overflow: hidden;
  }
  .hero-mobile-photo .mslide {
    position: absolute;
    inset: 10px 10px 36px;
    width: calc(100% - 20px);
    height: calc(100% - 46px);
    object-fit: cover;
    object-position: center top;
    border-radius: 3px;
    animation: mobileFade 25s linear infinite both;
  }
  .hero-mobile-photo .s1 { animation-delay:  0s; }
  .hero-mobile-photo .s2 { animation-delay:  5s; }
  .hero-mobile-photo .s3 { animation-delay: 10s; }
  .hero-mobile-photo .s4 { animation-delay: 15s; }
  .hero-mobile-photo .s5 { animation-delay: 20s; }
  .yellow-circle { width: 160px; height: 160px; right: 150px; bottom: -10px; }
  .float-chat { right: 10px; bottom: 10px; width: 170px; }
  .cs-grid { grid-template-columns: 1fr; }
  .cs-card-extra { display: none; }
  .cs-show-more { display: flex; justify-content: center; margin-top: 24px; }
  .choose-item { gap: 16px; padding: 24px 0; }
  .choose-item:hover { margin: 0 -12px; padding-left: 12px; padding-right: 12px; width: calc(100% + 24px); }
  .choose-num { display: none; }
  .choose-arrow { font-size: 22px; }
  .cta-paths { padding: 64px 24px; }
  footer { padding: 48px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-col { display: none; }
  .footer-bottom { display: none; }
  .nav-links { display: none; }
  .about-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .abt-left { grid-row: auto; }
  .abt-photo-area { min-height: 220px; }
  .abt-tr { flex-direction: column; gap: 16px; }
  .abt-bars { display: none; }
  .cta-contact-strip { gap: 12px; flex-direction: column; text-align: center; }
  .cta-contact-strip .divider { display: none; }
  .cta-map-row { grid-template-columns: 1fr; }
  .cta-map-embed { min-height: 240px; }
  .cta-map-embed iframe { min-height: 240px; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-wrap { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; }
}
