/* ============================================================
   ROOT & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:      #FF5C4D;
  --accent-dark: #E03D31;
  --accent-dim:  rgba(255,92,77,0.12);
  --accent-glow: rgba(255,92,77,0.25);
  --bg:          #ffffff;
  --bg2:         #FFFFFF;
  --bg3:         #FFFFFF;
  --surface:     #ffffff;
  --surface2:    #FFFFFF;
  --surface3:    #FFFFFF;
  --text:        #666666;
  --heading:     #1F1F1F;
  --border:      #E5E5E5;
  --muted:       #999999;
  --dark:        #1F1F1F;
  --green:       #2ea836;
  --white:       #fff;
  --radius:      6px;
  --radius-lg:   10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ============================================================
   CUSTOM CURSOR — hidden
   ============================================================ */

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 36px; right: 36px;
  width: 48px; height: 48px;
  background: var(--heading);
  border: none;
  border-radius: 6px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-top:hover { background: var(--green); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: #fff;
  z-index: 8888;
  padding: 18px 24px;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
}
.cookie-content {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-content p { flex: 1; font-size: 14px; color: #ccc; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
}
.modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 480px; width: 90%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-box h3 {
  font-size: 20px; margin-bottom: 22px;
  color: var(--heading); font-weight: 600;
}
.cookie-option { margin-bottom: 16px; }
.cookie-option label {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; cursor: pointer; color: var(--heading);
}
.cookie-option label input { width: 16px; height: 16px; cursor: pointer; accent-color: var(--accent); }
.cookie-option p { font-size: 13px; color: var(--text); margin-top: 4px; padding-left: 26px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: var(--heading);
  color: #fff;
  padding: 13px 30px;
  border-radius: 14px;
  font-size: 15px; font-weight: 600;
  border: 2px solid var(--heading);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.18s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--heading);
  padding: 13px 30px; border-radius: 14px;
  font-size: 15px; font-weight: 600;
  border: 2px solid var(--heading);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-outline:hover {
  background: var(--heading);
  color: #fff;
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--heading);
  padding: 13px 30px; border-radius: 14px;
  font-size: 15px; font-weight: 600;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-ghost .arrow-icon {
  display: inline-block;
  transition: transform 0.2s;
}
.btn-ghost:hover .arrow-icon { transform: translateY(3px); }

.btn-large { padding: 16px 42px; font-size: 16px; }

/* Gold accent button variant */
.btn-gold {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-gold:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 0; }

section h2, .section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 400;
  color: var(--heading);
  line-height: 1.15;
}
section h2 em, .section-header h2 em {
  font-style: italic;
  color: var(--accent);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease var(--d, 0s),
              transform 0.65s ease var(--d, 0s);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.97) translateY(16px);
  transition: opacity 0.7s ease var(--d, 0s),
              transform 0.7s ease var(--d, 0s);
}
.reveal-up.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; font-weight: 400;
  color: var(--heading); letter-spacing: -0.3px;
}
.logo-dot { color: var(--accent); }

.nav-links {
  display: flex; list-style: none;
  gap: 32px; align-items: center;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--heading);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--heading) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 20px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background 0.22s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--green) !important;
  color: #fff !important;
}

.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span {
  display: block; width: 26px; height: 2px;
  background: var(--heading); border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg2);
}
.hero-bg-img {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-bg-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.6) brightness(0.15) sepia(0.3);
  opacity: 0.4;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(247,245,240,0.97) 0%,
    rgba(247,245,240,0.88) 45%,
    rgba(247,245,240,0.55) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1180px; margin: 0 auto;
  padding: 0 28px;
  min-height: 100vh;
  align-items: center;
  padding-top: 70px;
}

/* Hero Left */
.hero-left { padding: 60px 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,92,77,0.12);
  border: 1px solid rgba(255,92,77,0.35);
  color: var(--accent);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 30px;
  margin-bottom: 28px;
}
.badge-pulse {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,92,77,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(255,92,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,92,77,0); }
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 26px;
  color: var(--heading);
}
.title-row { display: block; }
.title-row.italic { font-style: italic; }
.title-row.accent { color: var(--accent); }

.hero-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-mini-stats {
  display: flex; align-items: center; gap: 0;
  padding: 20px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  max-width: 440px;
}
.mini-stat {
  display: flex; flex-direction: column;
  align-items: center; flex: 1;
}
.mini-num {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; color: var(--accent); font-weight: 400;
}
.mini-lbl { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 0.5px; }
.mini-divider {
  width: 1px; height: 36px;
  background: var(--border); flex-shrink: 0;
}

/* Hero Right — Mosaic */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 60px 0;
}
.hero-mosaic {
  position: relative;
  width: 100%; max-width: 520px;
  display: grid;
  grid-template-columns: 58% 42%;
  grid-template-rows: 56% 44%;
  gap: 10px;
  height: 520px;
}
.mosaic-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s;
}
.mosaic-item:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.mosaic-item img { transition: transform 0.6s ease; }
.mosaic-item:hover img { transform: scale(1.05); }
.mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.mosaic-a { grid-column: 1; grid-row: 1 / 3; }
.mosaic-b { grid-column: 2; grid-row: 1; }
.mosaic-c { grid-column: 2; grid-row: 2; }
.mosaic-d {
  position: absolute;
  bottom: -14px; left: -14px;
  width: 120px; height: 120px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--bg2);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  z-index: 3;
}

.mosaic-float {
  position: absolute;
  top: 18px; right: -18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  z-index: 4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.float-star {
  font-size: 20px; color: var(--accent);
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.float-text {
  font-size: 14px; font-weight: 700; color: var(--heading); line-height: 1.3;
}
.float-text span { color: var(--accent); font-size: 12px; }

.mosaic-badge {
  position: absolute;
  bottom: 18px; right: -8px;
  background: var(--accent);
  color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px;
  padding: 7px 14px; border-radius: 30px;
  display: flex; align-items: center; gap: 6px;
  z-index: 4;
  box-shadow: 0 4px 16px rgba(255,92,77,0.4);
  animation: floatCard 5s ease-in-out infinite reverse;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.scroll-track {
  width: 1.5px; height: 50px;
  background: rgba(0,0,0,0.12);
  border-radius: 2px; overflow: hidden;
  position: relative;
}
.scroll-thumb {
  width: 100%; height: 40%;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(-100%); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(250%); opacity: 0; }
}
.hero-scroll-hint span {
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  overflow: hidden;
  background: var(--heading);
  padding: 28px 0;
}
.ticker-track {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}
.ticker-sep { font-size: 10px; color: var(--accent); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.philosophy::before { display: none; }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.phil-left h2 { margin-bottom: 20px; }
.phil-left p {
  font-size: 16px; color: var(--text);
  line-height: 1.8; margin-bottom: 36px; max-width: 440px;
}
.phil-right {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 12px;
}
.phil-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 26px 26px 22px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: default;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.phil-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(255,92,77,0.15);
  transform: translateX(5px);
}
.phil-num {
  font-family: 'DM Serif Display', serif;
  font-size: 30px; color: var(--accent);
  opacity: 0.5; line-height: 1;
  flex-shrink: 0; min-width: 44px;
}
.phil-card h4 {
  font-size: 17px; font-weight: 600;
  color: var(--heading); margin-bottom: 6px;
}
.phil-card p { font-size: 14px; color: var(--text); line-height: 1.65; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px 0;
  background: var(--bg);
}
.services-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-item {
  display: grid;
  grid-template-columns: 70px 1fr auto 55px;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: relative;
  transition: background 0.25s;
  cursor: default;
}
.service-item:last-child { border-bottom: none; }
.service-item::before { display: none; }
.service-item:hover { background: var(--bg2); }

.svc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 34px; color: var(--accent);
  opacity: 0.3; font-weight: 400;
  line-height: 1; flex-shrink: 0;
  transition: opacity 0.3s;
}
.service-item:hover .svc-num { opacity: 0.7; }

.svc-content h3 {
  font-size: 20px; font-weight: 600;
  color: var(--heading); margin-bottom: 8px;
  transition: color 0.2s;
}
.service-item:hover .svc-content h3 { color: var(--accent); }
.svc-content p { font-size: 14.5px; color: var(--text); line-height: 1.65; max-width: 500px; }
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px;
}
.svc-tags span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px; border-radius: 30px;
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.service-item:hover .svc-tags span {
  border-color: rgba(255,92,77,0.4);
  color: var(--accent);
}

.svc-img {
  width: 100px; height: 76px;
  border-radius: 14px; overflow: hidden;
  flex-shrink: 0;
  opacity: 0.6;
  transform: scale(0.95);
  transition: opacity 0.3s, transform 0.3s;
}
.service-item:hover .svc-img { opacity: 1; transform: scale(1); }

.svc-arrow {
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1.5px solid var(--border);
  border-radius: 14px; flex-shrink: 0;
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
}
.service-item:hover .svc-arrow {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateX(4px);
}

/* ============================================================
   IMAGE GALLERY
   ============================================================ */
.gallery-section {
  padding: 80px 0 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.gallery-label {
  padding: 0 0 48px;
  text-align: center;
}
.gallery-label h2 { margin-bottom: 0; }

.gallery-strip {
  display: flex;
  gap: 12px;
  padding: 0 0 80px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-left: max(28px, calc((100vw - 1180px)/2 + 28px));
  padding-right: max(28px, calc((100vw - 1180px)/2 + 28px));
  scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 320px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  cursor: grab;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.gallery-item--tall { height: 460px; margin-top: -30px; }

.gallery-item img { transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 26px;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; color: #fff;
  font-style: italic;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 100px 0;
  background: var(--heading);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats-bg-text {
  position: absolute;
  font-family: 'DM Serif Display', serif;
  font-size: 28vw;
  color: rgba(255,255,255,0.04);
  font-weight: 400;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  position: relative; z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 20px 40px;
  display: flex; flex-direction: row;
  align-items: flex-start; justify-content: center;
  gap: 0;
  cursor: default;
  position: relative; padding-bottom: 52px;
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(52px, 6.5vw, 80px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  transition: color 0.3s;
}
.stat-item:hover .stat-number { color: var(--accent); }
.stat-plus {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--accent);
  line-height: 1;
  margin-top: 8px;
  font-weight: 400;
}
.stat-label {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
  margin-top: 12px;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: -28px; left: 0;
}
.stat-divider {
  width: 1px; height: 70px;
  background: rgba(255,255,255,0.12); flex-shrink: 0;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-step {
  position: relative;
  padding: 0 32px 0 0;
  cursor: default;
}
.step-connector {
  position: absolute;
  top: 28px;
  left: calc(44px + 28px);
  right: 0;
  height: 1px;
  background: var(--border);
}
.step-num-wrap {
  width: 56px; height: 56px;
  border-radius: 20px;
  background: #fff;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  position: relative; z-index: 1;
  transition: background 0.3s, border-color 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.process-step:hover .step-num-wrap {
  background: var(--accent);
  border-color: var(--accent);
}
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; font-weight: 400;
  color: var(--accent);
  transition: color 0.3s;
}
.process-step:hover .step-num { color: #fff; }
.step-body h4 {
  font-size: 17px; font-weight: 600;
  color: var(--heading); margin-bottom: 10px;
  transition: color 0.2s;
}
.process-step:hover .step-body h4 { color: var(--accent); }
.step-body p { font-size: 14px; color: var(--text); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
}
.testimonial-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 20px 10px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.testimonial-card:hover::before { opacity: 1; }

.t-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 64px; line-height: 0.7;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 16px;
  display: block;
}
.t-text {
  font-size: 15px; color: var(--text);
  line-height: 1.75; margin-bottom: 24px;
  font-style: italic;
}
.t-author {
  display: flex; align-items: center; gap: 12px;
}
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff;
  flex-shrink: 0; font-weight: 700;
}
.t-info { flex: 1; }
.t-name { font-size: 14px; font-weight: 700; color: var(--heading); }
.t-role { font-size: 12px; color: var(--muted); }
.t-stars { color: var(--accent); font-size: 12px; letter-spacing: 1px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  height: 540px;
}
.about-img-main {
  width: 100%; height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  transition: box-shadow 0.35s, transform 0.35s;
}
.about-img-main:hover {
  box-shadow: 0 16px 60px rgba(0,0,0,0.18);
  transform: translateY(-5px);
}
.about-img-accent {
  position: absolute;
  bottom: -22px; right: -22px;
  width: 150px; height: 150px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--bg2);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  z-index: 2;
}
.about-exp-badge {
  position: absolute;
  top: 26px; left: -18px;
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(255,92,77,0.35);
  z-index: 3;
  animation: floatCard 5s ease-in-out infinite 1s;
}
.exp-num {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; font-weight: 400; line-height: 1;
}
.exp-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; line-height: 1.3; margin-top: 4px; }

.about-text h2 { margin-bottom: 20px; }
.about-text > p { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 28px; }

.about-features {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 36px;
}
.about-feat {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--text); line-height: 1.5;
}
.feat-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 6px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,92,77,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.about-feat strong { color: var(--heading); }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 80px;
  overflow: hidden;
}
.map-header {
  text-align: center;
  padding: 0 28px 48px;
}
.map-header h2 { margin-bottom: 12px; }
.map-header p { font-size: 16px; color: var(--text); max-width: 480px; margin: 0 auto; }

.map-container {
  position: relative;
  width: 100%;
}
.map-container iframe {
  display: block;
  filter: none;
  transition: none;
}
.map-info-card {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.97);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  min-width: 300px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.map-info-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,92,77,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.map-info-card strong { display: block; color: var(--heading); font-size: 14px; margin-bottom: 4px; }
.map-info-card p { font-size: 13px; color: var(--text); line-height: 1.5; margin-bottom: 6px; }
.map-open-link {
  font-size: 12px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.3px;
  transition: color 0.2s;
  display: inline-block;
}
.map-open-link:hover { color: var(--green); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.contact-sub {
  font-size: 16px; color: var(--text);
  margin-top: 12px;
}
.section-header p { margin-top: 12px; }

.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  display: flex; flex-direction: column; gap: 22px;
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky; top: 90px;
}
.info-item { display: flex; align-items: flex-start; gap: 14px; }
.info-icon {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: var(--accent-dim); border: 1px solid rgba(255,92,77,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.info-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.info-value { font-size: 14px; color: var(--heading); line-height: 1.55; }
.info-value a { color: var(--heading); transition: color 0.2s; }
.info-value a:hover { color: var(--accent); }

/* Form */
.registration-form {
  display: flex; flex-direction: column; gap: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--heading);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg2);
  color: var(--heading);
  transition: border-color 0.22s, background 0.22s;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

.form-policy { padding: 4px 0; }
.policy-check-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 13px; color: var(--text); line-height: 1.6;
}
.policy-check-label input[type="checkbox"] {
  width: 17px; height: 17px; min-width: 17px;
  accent-color: var(--accent); cursor: pointer; margin-top: 1px;
}
.policy-check-label a { color: var(--accent); text-decoration: underline; }
.policy-check-label a:hover { color: var(--green); }

.form-submit-row { padding-top: 4px; }
.form-success {
  display: flex; align-items: center; gap: 10px;
  background: rgba(46,168,54,0.08);
  color: var(--green);
  border-radius: 6px;
  padding: 13px 18px;
  font-size: 14px; font-weight: 600;
  border: 1px solid rgba(46,168,54,0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  border-top: none;
}
.footer-top {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 56px 0;
}
.footer-top-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.footer-cta-text h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 2.8vw, 36px); font-weight: 400;
  color: #fff; line-height: 1.2;
}
.footer-cta-text h3 em { font-style: italic; color: var(--accent); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { font-size: 28px; margin-bottom: 14px; display: block; color: #fff; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 8px; }
.footer-brand .disclaimer { font-size: 12px; color: rgba(255,255,255,0.3); font-style: italic; }
.footer-links h4 {
  font-size: 14px; color: #fff; margin-bottom: 18px; font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; max-width: 1180px; margin: 0 auto;
  font-size: 13px; color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

.cookie-pref-btn {
  background: none; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4); padding: 5px 12px;
  border-radius: 4px; cursor: pointer;
  font-size: 12px; font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-pref-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding: 150px 0 80px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 54px); font-weight: 400;
  color: var(--heading); line-height: 1.15; margin-bottom: 18px;
}
.page-hero p { font-size: 17px; color: var(--text); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.page-breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 26px;
}
.page-breadcrumb a { color: var(--accent); }
.page-breadcrumb span { color: var(--muted); }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-content {
  max-width: 800px; margin: 0 auto; padding: 80px 24px 100px;
}
.policy-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; font-weight: 400;
  color: var(--heading); margin: 44px 0 12px; line-height: 1.2;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 16px; }
.policy-content ul { list-style: disc; padding-left: 24px; margin-bottom: 20px; }
.policy-content ul li { font-size: 16px; color: var(--text); line-height: 1.7; }
.policy-content a { color: var(--accent); }
.policy-content a:hover { text-decoration: underline; }
.policy-updated { font-size: 13px; color: var(--muted); margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }

/* ============================================================
   ABOUT PAGE EXTRAS
   ============================================================ */
.team-section { padding: 100px 0; background: var(--bg); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.team-card {
  background: var(--bg2); border-radius: 20px; padding: 32px 24px;
  border: 1px solid var(--border); text-align: center;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.team-card:hover { box-shadow: 0 8px 28px rgba(255,92,77,0.15); transform: translateY(-4px); border-color: var(--accent); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'DM Serif Display', serif; font-size: 24px; color: #fff;
}
.team-card h3 { font-size: 18px; font-weight: 600; color: var(--heading); margin-bottom: 6px; }
.team-card .team-role { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.team-card p { font-size: 14px; color: var(--text); line-height: 1.65; }

.values-section { padding: 100px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.value-card {
  background: #fff; border-radius: 14px; padding: 28px 24px;
  border: 1px solid var(--border); display: flex; gap: 18px; align-items: flex-start;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.value-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(255,92,77,0.1); }
.value-num { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--accent); opacity: 0.4; line-height: 1; flex-shrink: 0; }
.value-card h3 { font-size: 18px; font-weight: 600; color: var(--heading); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text); line-height: 1.7; }

.cta-section { padding: 100px 0; background: var(--bg); text-align: center; border-top: 1px solid var(--border); }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: var(--text); margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-mosaic { height: 460px; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 80px 0; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { height: 360px; }
  .about-img-accent { bottom: -14px; right: -12px; width: 110px; height: 110px; }
  .about-exp-badge { top: 20px; left: -10px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 44px 28px; }
  .step-connector { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-item { grid-template-columns: 55px 1fr 50px; }
  .svc-img { display: none; }
  .stats-grid { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 24px 28px; gap: 0; border-bottom: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-links li:last-child { border-bottom: none; }
  .burger { display: flex; }
}

@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .registration-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 44px 1fr 38px; gap: 14px; padding: 22px 18px; }
  .svc-arrow { width: 34px; height: 34px; }
  .hero-mini-stats { display: none; }
  .footer-top-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .stats-grid { gap: 32px 0; }
  .stat-item { padding: 10px 20px 40px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
