/* ══════════════════════════════════════
   品牌色系
══════════════════════════════════════ */
:root {
  --brand-navy: #22395C;
  --brand-ivory: #F7F5EE;
  --background: #F7F5EE;
  --surface: #FFFDF8;
  --surface-muted: #F1ECE3;
  --surface-subtle: #EDE8DE;
  --text-primary: #172033;
  --text-secondary: #4F5663;
  --text-muted: #7A756D;
  --text-inverse: #FFFDF8;
  --border-subtle: #E5DED2;
  --border-default: #D8CDBE;
  --border-strong: #C3BBAF;
  --primary: #22395C;
  --primary-hover: #1B2F4D;
  --primary-active: #14243D;
  --primary-soft: #EEF2F6;
  --accent: #B89455;
  --accent-hover: #7A4A22;
  --accent-soft: #F6EEDB;
  --accent-border: #E6D2A3;
  --card: #FFFDF8;
  --card-muted: #F8F4EC;
  --card-border: #E5DED2;
  --focus-ring: rgba(34, 57, 92, 0.28);
  --success-background: #ECFDF5;
  --success-border: #A7F3D0;
  --success-title: #007A5A;
  --success-text: #008060;
  --success-icon: #059669;
  --warning-background: #FFFBEB;
  --warning-border: #FCD34D;
  --warning-title: #C2410C;
  --warning-text: #C2410C;
  --warning-icon: #D97706;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-card: 18px;
  --radius-pill: 999px;
  --radius-control: 12px;
  --radius-inputs: 10px;
  --shadow-1: 0 12px 34px rgba(34, 57, 92, 0.08);
  --shadow-2: 0 22px 60px rgba(34, 57, 92, 0.14);
  --shadow-3: 0 34px 90px rgba(34, 57, 92, 0.18);
  --shadow-accent: 0 0 0 4px var(--focus-ring);
  --navy: var(--primary);
  --navy-mid: var(--primary-hover);
  --navy-light: #2D456B;
  --gold: var(--accent);
  --gold-light: var(--accent-border);
  --gold-pale: var(--accent-soft);
  --white: var(--surface);
  --off-white: var(--background);
  --text-dark: var(--text-primary);
  --ease: 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--background);
  line-height: 1.62;
  letter-spacing: 0;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="mynaui-"],
[class*=" mynaui-"] {
  font-size: inherit;
  line-height: 1;
  color: currentColor;
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 70px;
  background: var(--primary-active);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230,210,163,0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: var(--ease);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  display: block;
  width: 146px;
  height: auto;
}

.nav-links {
  display: contents;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav-links a,
.nav-actions a {
  text-decoration: none;
  color: rgba(255,253,248,0.72);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: var(--ease);
}
.nav-actions > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 38px;
  text-align: left;
  line-height: 1;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-actions a:hover { color: var(--accent-border); }

.nav-menu a.active {
  color: var(--accent-border);
}

.nav-cta {
  background: #B89455 !important;
  color: #ffffff !important;
  padding: 9px 24px !important;
  font-weight: 400 !important;
  font-size: 12.5px !important;
  letter-spacing: 0.04em !important;
  border-radius: var(--radius-control);
  box-shadow: 0 8px 20px rgba(184,148,85,0.14);
}
.nav-cta:hover {
  background: #a58346 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(122,74,34,0.18);
}

.nav-consultant {
  border: 1px solid rgba(255,255,255,0.72) !important;
  color: rgba(255,255,255,0.92) !important;
  padding: 7px 16px !important;
  font-size: 12.5px !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  border-radius: var(--radius-control);
  transition: var(--ease) !important;
}
.nav-consultant:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: var(--primary-active) !important;
}

/* ── Mobile hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
  outline: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-border);
  transition: var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  body.menu-open { overflow: hidden; }

  nav {
    padding: 0 24px;
    backdrop-filter: none;
  }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 70px 0 0;
    height: calc(100dvh - 70px);
    background: var(--primary-active);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-top: 1px solid rgba(200,168,75,0.15);
    gap: 0;
    z-index: 998;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-menu {
    position: static;
    transform: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    list-style: none;
    text-align: center;
  }
  .nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-left: 0;
    align-items: center;
  }
  .nav-menu li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links a {
    display: block;
    padding: 14px 32px;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
  }
  .nav-cta {
    width: 200px !important;
    height: auto !important;
    margin: 24px 24px 0 !important;
    padding: 13px 24px !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  .nav-consultant {
    width: 200px !important;
    height: auto !important;
    margin: 8px 24px 0 !important;
    padding: 11px 24px !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: url('../img/hero-main.webp') center center / cover no-repeat var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 42% 0 0;
  display: block;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 120%; height: 200%;
  display: none;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-mark {
  display: block;
  width: 58px;
  height: auto;
  margin: 0 auto 24px;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 24px;
}

.hero-pillar {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--accent-border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-pillar b {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.hero-pillar-sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.4vw, 68px);
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 8px;
  font-weight: 400;
}
.hero-title em {
  color: #ffffff;
  font-style: normal;
}

.hero-line {
  width: 72px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.78), transparent);
  margin: 28px auto;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.92);
  max-width: 500px;
  margin: 0 auto 52px;
  font-weight: 400;
  line-height: 1.72;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  background: #B89455;
  color: #ffffff;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: var(--ease);
  display: inline-block;
  border-radius: var(--radius-control);
  box-shadow: 0 8px 20px rgba(184,148,85,0.14);
}
.btn-gold:hover {
  background: #a58346;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(122,74,34,0.18);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.94);
  padding: 13px 34px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-control);
  transition: var(--ease);
  display: inline-block;
}
.btn-ghost:hover {
  border-color: #ffffff;
  color: var(--primary-active);
  background: #ffffff;
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.68);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.72), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ══════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════ */
section { padding: 100px 48px; }

.s-inner { max-width: 1140px; margin: 0 auto; }

#about,
#process,
#team {
  position: relative;
  overflow: hidden;
}

#about::after,
#process::before,
#team::after {
  content: '';
  position: absolute;
  width: clamp(104px, 13vw, 200px);
  aspect-ratio: 1;
  background: url('../img/section-corner-accent.svg') center / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 2;
}

#about::after,
#team::after {
  right: -1px;
  bottom: -1px;
}

#team::after {
  background-image: url('../img/section-corner-accent-testimonials.svg');
}

#process::before {
  top: -1px;
  left: -1px;
  transform: rotate(180deg);
}

.s-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.s-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 48px);
  color: var(--primary);
  line-height: 1.18;
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: 0;
}
.s-title.light { color: var(--text-inverse); }

.s-bar {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 22px;
}

.s-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.68;
}
.s-desc.light { color: rgba(255,253,248,0.68); }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
#about { background: var(--background); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: stretch;
}

.about-body {
  margin-top: 22px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.72;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}

.stat {
  position: relative;
  min-height: 116px;
  padding: 24px 112px 24px 20px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-border));
}

.stat-num {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 38px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num sup {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  color: var(--accent);
  line-height: 1;
  vertical-align: baseline;
  margin-left: 2px;
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0;
}

.stat-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 72px;
  height: 72px;
  object-fit: contain;
  transform: translateY(-50%);
  pointer-events: none;
}

.about-visual {
  position: relative;
  min-height: 0;
}

.about-box {
  height: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}

.about-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
#services { background: var(--primary); }

.services-head { margin-bottom: 64px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 34px 34px 36px;
  position: relative;
  transition: var(--ease);
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-border));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.svc-card:hover::after { transform: scaleX(1); }

.svc-card:hover {
  background: #ffffff;
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.svc-card.featured {
  background: var(--surface);
  border-color: var(--accent-border);
}
.svc-card.featured::after { transform: scaleX(1); }

.svc-plan {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 30px;
  margin-bottom: 24px;
}

.svc-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0;
  margin-bottom: 0;
  border-radius: var(--radius-pill);
  border: 0;
  white-space: nowrap;
}
.svc-tag.gold,
.svc-tag.green,
.svc-tag.gray {
  color: var(--text-secondary);
  background: transparent;
}
/* 流程/推薦標籤：輕量 pill（A1「專人深度服務」） */
.svc-tag.soft {
  min-height: 24px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--accent-hover);
  background: var(--accent-soft);
}
/* 價格下方附註（A1「一次性顧問分析費用」） */
.svc-price-cap {
  font-size: 12px;
  color: var(--text-muted);
  margin: -12px 0 20px;
}
/* A2 輕量狀態文字（取代大型「即將推出」）；min-height 對齊價格列，維持三卡按鈕水平 */
.svc-state {
  display: flex;
  align-items: flex-end;
  min-height: 58px;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-muted);
}
/* 按鈕下方流程提醒（A1）；負上距抵銷 svc-link 的 28px，貼近按鈕 */
.svc-reminder {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: -14px 0 24px;
}

.svc-num {
  font-family: var(--font-body);
  font-size: 32px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0;
  font-weight: 500;
}

.svc-name {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-height: 28px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: 0;
}

.svc-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-height: 58px;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: 0;
}

.svc-price span {
  display: inline-flex;
  align-items: flex-end;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  padding-bottom: 6px;
}

.svc-price strong {
  display: inline-flex;
  align-items: flex-end;
  font-family: var(--font-body);
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
  color: var(--accent);
}

.svc-price-soon strong {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1;
  padding-bottom: 4px;
}

.svc-price.svc-price-soon strong {
  font-size: 28px;
}

.svc-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 28px;
}

.svc-list {
  list-style: none;
  border-top: 1px solid var(--border-subtle);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
  line-height: 1.58;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.svc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin: 0 0 28px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius-control);
  border: 1px solid transparent;
  transition: var(--ease);
}

.svc-link-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(20,36,61,0.14);
}
.svc-link-primary:hover {
  background: var(--primary-active);
  color: #ffffff;
}

.svc-link-gold {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(184,148,85,0.18);
}
.svc-link-gold:hover {
  background: #a58346;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(122,74,34,0.18);
}

.svc-link-disabled {
  background: #A8ADB5;
  color: #ffffff;
  border-color: #A8ADB5;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.svc-note {
  min-height: 20px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
#process { background: var(--surface); }

.process-head {
  text-align: center;
  margin-bottom: 76px;
}
.process-head .s-bar { margin: 0 auto 22px; }
.process-head .s-desc { margin: 0 auto; max-width: 520px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--accent-border);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.75s ease;
}

.steps.on::before {
  transform: scaleX(1);
}

.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
  transition: var(--ease);
}
.step-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.step-circle:hover {
  box-shadow: 0 0 0 6px rgba(230,210,163,0.14);
}

.step-icon { font-size: 22px; line-height: 1; }

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.62;
}

/* ══════════════════════════════════════
   TEAM
══════════════════════════════════════ */
#team { background: var(--background); }

.team-head { margin-bottom: 56px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.team-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-1);
  transition: var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--border-default);
}

.team-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px 28px;
}

.team-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-cert {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.team-role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.team-bio {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.68;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  margin-bottom: 16px;
}

.team-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

.team-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  font-size: 12px;
  font-weight: 700;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-pill);
  color: var(--accent-hover);
  padding: 0 10px;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
#testimonials {
  background: var(--primary-hover);
}

.testi-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  margin-bottom: 28px;
}
.testi-head .s-bar { margin: 0; }

.testi-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.testi-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,253,248,0.22);
  background: rgba(255,253,248,0.04);
  color: rgba(255,253,248,0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: var(--ease);
}

.testi-nav:hover {
  border-color: var(--accent-border);
  background: rgba(230,210,163,0.12);
  color: var(--accent-border);
}

.testi-nav:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.testi-nav:disabled:hover {
  border-color: rgba(255,253,248,0.22);
  background: rgba(255,253,248,0.04);
  color: rgba(255,253,248,0.72);
}

.testi-viewport {
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testi-track.is-resetting {
  transition: none;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  min-height: 228px;
  flex: 0 0 100%;
}

.testi-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,253,248,0.06);
  border: 1px solid rgba(230,210,163,0.20);
  border-radius: 10px;
  padding: 64px 28px 24px;
  position: relative;
  min-height: 210px;
  transition: var(--ease);
}
.testi-card:hover {
  background: rgba(255,253,248,0.09);
  border-color: rgba(230,210,163,0.42);
}

.testi-quote {
  position: absolute;
  top: 22px;
  left: 28px;
  width: 34px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(83%) sepia(25%) saturate(602%) hue-rotate(358deg) brightness(96%) contrast(88%);
  opacity: 0.95;
  pointer-events: none;
}

.testi-stars {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 18px;
  color: var(--accent-border);
  letter-spacing: 2px;
  margin-bottom: 0;
}

.testi-text {
  font-size: 14px;
  color: rgba(255,253,248,0.74);
  line-height: 1.62;
  margin-bottom: 22px;
  padding-top: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.testi-name {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-inverse);
}

.testi-role {
  font-size: 11px;
  color: rgba(255,253,248,0.74);
  margin-top: 2px;
  font-weight: 400;
}

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
#cta {
  background:
    url('../img/cta-family-bg.webp') center center / cover no-repeat,
    var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 42% 0 0;
  display: block;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
}

#cta::after {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 120%; height: 200%;
  background: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  border: 0;
  border-radius: 0;
  color: var(--accent-border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  color: var(--text-inverse);
  line-height: 1.16;
  margin-bottom: 0;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}
.cta-title em { color: var(--accent-border); font-style: normal; }

.cta-line {
  width: 72px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.78), transparent);
  margin: 24px auto 18px;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255,253,248,0.68);
  line-height: 1.68;
  margin-bottom: 52px;
}

.cta-block {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.qr-box {
  width: 140px;
  height: 140px;
  border: 1.5px solid rgba(200,168,75,0.4);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Corner decorations */
.qr-box::before, .qr-box::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--gold);
  border-style: solid;
}
.qr-box::before { top: -4px; left: -4px; border-width: 2px 0 0 2px; }
.qr-box::after  { bottom: -4px; right: -4px; border-width: 0 2px 2px 0; }

.qr-box::before,
.qr-box::after {
  display: none;
}

.qr-inner {
  font-size: 60px;
  color: rgba(200,168,75,0.4);
  line-height: 1;
}

.cta-qr {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: #ffffff;
  border-radius: 10px;
  object-fit: contain;
}

.qr-box {
  border-radius: 10px;
  overflow: hidden;
}

.cta-sep[hidden],
.cta-opts[hidden] {
  display: none !important;
}

.qr-lbl {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

.cta-sep {
  width: 1px;
  height: 100px;
  background: rgba(255,255,255,0.1);
}

.cta-opts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.cta-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: var(--ease);
}
.cta-opt:hover { color: var(--gold-light); }

.cta-opt-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200,168,75,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: var(--ease);
}
.cta-opt:hover .cta-opt-icon {
  border-color: var(--gold);
  background: rgba(200,168,75,0.08);
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact {
  background: var(--navy);
  border-top: 1px solid rgba(200,168,75,0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 88px;
  align-items: start;
}

.contact-info .s-title { color: var(--white); }

.contact-info-txt {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 2;
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ci {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ci-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200,168,75,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.ci-text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.ci-text a {
  color: inherit;
  text-decoration: none;
  transition: var(--ease);
}

.ci-text a:hover {
  color: var(--accent);
}

.ci-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* Form */
.form-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,168,75,0.12);
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fg { margin-bottom: 20px; }

.fg label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  margin-bottom: 9px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: var(--ease);
  border-radius: 0;
  appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: rgba(200,168,75,0.5);
  background: rgba(255,255,255,0.07);
}
.fg input::placeholder,
.fg textarea::placeholder { color: rgba(255,255,255,0.2); }
.fg select option { background: var(--navy); }
.fg textarea { resize: none; min-height: 106px; }

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: var(--ease);
  margin-top: 4px;
}
.form-submit:hover { background: var(--gold-light); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #080e1a;
  border-top: 1px solid rgba(200,168,75,0.1);
  padding: 72px 44px 30px;
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 1.55fr) minmax(180px, 0.65fr) minmax(320px, 1fr);
  gap: 80px;
  align-items: start;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}

.footer-logo {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
.footer-logo img {
  display: block;
  width: 178px;
  height: auto;
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.95;
  max-width: 520px;
  margin-bottom: 28px;
}

.footer-col h4 {
  font-size: 20px;
  letter-spacing: 0;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.66);
  text-decoration: none;
  transition: var(--ease);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact li {
  font-size: 15px;
  color: rgba(255,255,255,0.66);
  line-height: 1.75;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.32);
}
.footer-legal a {
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: var(--ease);
}
.footer-legal a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(200,168,75,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  transition: var(--ease);
}
.footer-social a:hover {
  border-color: #ffffff;
  color: var(--primary-active);
  background: #ffffff;
  transform: translateY(-2px);
}

.footer-social svg {
  display: block;
  width: 22px;
  height: 22px;
  color: currentColor;
}

.footer-social-img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: var(--ease);
}

.footer-social a:hover .footer-social-img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(40%) saturate(1082%) hue-rotate(177deg) brightness(91%) contrast(92%);
}

.footer-social [class^="mynaui-"],
.footer-social [class*=" mynaui-"] {
  display: block;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  color: currentColor;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer-social a:hover .mynaui-threads {
  font-weight: 600;
}

.footer-social a {
  display: grid;
  place-items: center;
  position: relative;
}

.footer-social a > svg,
.footer-social a > .footer-social-img,
.footer-social a > [class^="mynaui-"],
.footer-social a > [class*=" mynaui-"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

/* Haven Stone visual layer */
.qr-box {
  border: 1px solid rgba(230,210,163,0.48);
  border-radius: var(--radius-lg);
  background: rgba(255,253,248,0.06);
}
.qr-box { border-radius: 10px; }
.qr-box::before,
.qr-box::after { border-color: var(--accent-border); }
.qr-inner { color: rgba(230,210,163,0.58); }
.qr-lbl {
  letter-spacing: 0.08em;
  color: rgba(255,253,248,0.46);
}
.cta-sep { background: rgba(255,253,248,0.12); }
.cta-opt { color: rgba(255,253,248,0.72); }
.cta-opt:hover { color: var(--accent-border); }
.cta-opt-icon {
  border-color: rgba(230,210,163,0.34);
  border-radius: var(--radius-md);
}
.cta-opt:hover .cta-opt-icon {
  border-color: var(--accent-border);
  background: rgba(230,210,163,0.13);
}

.cta-opt-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(230,210,163,0.34) !important;
  border-radius: var(--radius-md);
  background: transparent !important;
  color: #ffffff;
  position: relative;
}

.cta-opt:hover .cta-opt-icon {
  border-color: var(--accent-border) !important;
  background: rgba(230,210,163,0.13) !important;
}

.cta-opt-icon > svg {
  display: none;
}

.cta-opt-icon::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  margin: auto;
  background: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}

.cta-opt:nth-child(1) .cta-opt-icon::before {
  background: url('../img/line-solid.svg') center / contain no-repeat;
  -webkit-mask: none;
  mask: none;
}

.cta-opt:nth-child(2) .cta-opt-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 2a3 3 0 0 0-3 3v1H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-1V5a3 3 0 0 0-3-3zm0 4V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 2a3 3 0 0 0-3 3v1H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-1V5a3 3 0 0 0-3-3zm0 4V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1z'/%3E%3C/svg%3E");
}

.cta-opt:nth-child(3) .cta-opt-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.46 15.46 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24a11.36 11.36 0 0 0 3.56.57a1 1 0 0 1 1 1V21a1 1 0 0 1-1 1C10.61 22 2 13.39 2 3a1 1 0 0 1 1-1h4.25a1 1 0 0 1 1 1a11.36 11.36 0 0 0 .57 3.56a1 1 0 0 1-.25 1.01z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.46 15.46 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24a11.36 11.36 0 0 0 3.56.57a1 1 0 0 1 1 1V21a1 1 0 0 1-1 1C10.61 22 2 13.39 2 3a1 1 0 0 1 1-1h4.25a1 1 0 0 1 1 1a11.36 11.36 0 0 0 .57 3.56a1 1 0 0 1-.25 1.01z'/%3E%3C/svg%3E");
}

.cta-opt:nth-child(2) .cta-opt-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04a1 1 0 0 0 0-1.41l-2.34-2.34a1 1 0 0 0-1.41 0l-1.83 1.83l3.75 3.75z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04a1 1 0 0 0 0-1.41l-2.34-2.34a1 1 0 0 0-1.41 0l-1.83 1.83l3.75 3.75z'/%3E%3C/svg%3E");
}

#contact {
  background: var(--primary);
  border-top: 1px solid rgba(230,210,163,0.18);
}
.contact-info-txt {
  color: rgba(255,253,248,0.68);
  line-height: 1.72;
}
.ci-icon {
  border-color: rgba(230,210,163,0.34);
  border-radius: var(--radius-md);
  color: var(--accent-border);
}
.ci-text { color: rgba(255,253,248,0.72); }
.ci-label {
  font-size: 12px;
  color: rgba(255,253,248,0.46);
  font-weight: 400;
  letter-spacing: 0.08em;
}
.ci-text {
  font-size: 14px;
}
.form-box {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-2);
}
.fg label {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.fg input,
.fg select,
.fg textarea {
  min-height: 46px;
  background: #ffffff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-inputs);
  color: var(--text-primary);
  font-size: 14px;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(184,148,85,0.14);
}
.fg input::placeholder,
.fg textarea::placeholder { color: var(--text-muted); }
.fg select option {
  background: var(--surface);
  color: var(--text-primary);
}

.contact-native-select {
  position: absolute !important;
  width: 1px !important;
  min-width: 0 !important;
  height: 1px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-custom-select {
  position: relative;
  width: 100%;
}

.contact-custom-select-trigger {
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-inputs);
  background: #ffffff;
  color: var(--text-primary);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  transition: var(--ease);
}

.contact-custom-select-trigger:hover {
  border-color: var(--border-strong);
}

.contact-custom-select.open .contact-custom-select-trigger,
.contact-custom-select-trigger:focus-visible {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(184,148,85,0.14);
  outline: none;
}

.contact-custom-select-value {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: var(--text-primary);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-custom-select-trigger i {
  display: inline-grid;
  flex-shrink: 0;
  color: var(--text-secondary);
  font-size: 18px;
  transition: var(--ease);
}

.contact-custom-select.open .contact-custom-select-trigger i {
  color: var(--accent);
  transform: rotate(180deg);
}

.contact-custom-select-list {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 9200;
  display: none;
  max-height: 232px;
  padding: 6px;
  overflow-y: auto;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-2);
}

.contact-custom-select.open-up .contact-custom-select-list {
  top: auto;
  bottom: calc(100% + 10px);
}

.contact-custom-select.open .contact-custom-select-list {
  display: grid;
  gap: 2px;
}

.contact-custom-select-option {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  transition: var(--ease);
}

.contact-custom-select-option:hover,
.contact-custom-select-option.selected {
  background: var(--accent-soft);
  color: var(--accent);
}

.contact-custom-select-option.selected {
  font-weight: 400;
}

.contact-custom-select-option i {
  display: none;
  color: var(--accent);
}

.contact-custom-select-option.selected i {
  display: inline-grid;
}

.form-submit {
  min-height: 44px;
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-control);
  font-size: 15px;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(184,148,85,0.14);
}
.form-submit:hover {
  background: #a58346;
  color: #ffffff;
  transform: translateY(-1px);
}

footer {
  background: var(--primary-active);
  border-top: 1px solid rgba(230,210,163,0.18);
}
.footer-main { border-bottom-color: rgba(255,253,248,0.10); }
.footer-logo {
  color: inherit;
}
.footer-tagline,
.footer-links a,
.footer-contact li {
  color: rgba(255,253,248,0.68);
}
.footer-col h4 {
  color: var(--accent-border);
  font-family: var(--font-display);
  font-weight: 500;
}
.footer-links a:hover,
.footer-legal a:hover { color: var(--accent-border); }
.footer-copy,
.footer-legal { color: rgba(255,253,248,0.38); }
.footer-legal a { color: rgba(255,253,248,0.52); }
.footer-social a {
  border-color: rgba(255,253,248,0.14);
  background: rgba(230,210,163,0.08);
  color: #ffffff;
}
.footer-social a:hover {
  border-color: #ffffff;
  color: var(--primary-active);
  background: #ffffff;
}

/* ══════════════════════════════════════
   FADE-UP ANIMATION
══════════════════════════════════════ */
.fu {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fu.on {
  opacity: 1;
  transform: translateY(0);
}
.fu:nth-child(2) { transition-delay: 0.1s; }
.fu:nth-child(3) { transition-delay: 0.2s; }
.fu:nth-child(4) { transition-delay: 0.3s; }
/* ══════════════════════════════════════
   RESPONSIVE REFINEMENT
══════════════════════════════════════ */
@media (max-width: 1180px) {
  nav {
    padding: 0 32px;
  }

  .nav-menu,
  .nav-actions {
    gap: 22px;
  }

  .nav-actions {
    gap: 16px;
  }

  .about-grid,
  .contact-grid {
    gap: 56px;
  }

  .services-grid,
  .team-grid,
  .testi-grid {
    gap: 20px;
  }

  .testi-track {
    gap: 20px;
  }

  .svc-card {
    padding: 34px 26px;
  }

  .testi-card {
    padding: 64px 26px 24px;
  }
}

@media (max-width: 960px) {
  #hero {
    min-height: 100dvh;
    padding: 120px 28px 88px;
  }

  .hero-title {
    font-size: clamp(36px, 8vw, 56px);
  }

  .hero-sub br,
  .cta-desc br {
    display: none;
  }

  section {
    padding: 82px 28px;
  }

  .s-inner {
    max-width: 720px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-box {
    height: min(420px, 62vw);
    min-height: 280px;
  }

  .services-grid,
  .team-grid,
  .testi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 20px;
  }

  .steps::before {
    display: none;
  }

  .step {
    padding: 0 14px;
  }

  .contact-grid {
    gap: 44px;
  }

  .form-box {
    padding: 34px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  #about::after,
  #process::before,
  #team::after {
    width: clamp(80px, 13vw, 200px);
  }

  nav {
    height: 64px;
    padding: 0 18px;
  }

  .nav-logo {
    max-width: 132px;
  }

  .nav-logo img {
    width: 132px;
  }

  .nav-links {
    inset: 64px 0 0;
    height: calc(100dvh - 64px);
    max-height: none;
  }

  #hero {
  align-items: flex-start;
    min-height: 100dvh;
    padding: 96px 20px 58px;
  }

  .hero-pillars {
    max-width: 100%;
    margin-bottom: 24px;
    gap: 8px 12px;
  }

  .hero-mark {
    width: 48px;
    margin-bottom: 24px;
  }

  .hero-title {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.2;
  }

  .hero-sub {
    margin-bottom: 34px;
    font-size: 14.5px;
    line-height: 1.72;
  }

  .hero-btns {
    width: 100%;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .btn-gold,
  .btn-ghost {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    padding: 13px 10px;
    font-size: 14px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .hero-scroll {
    display: none;
  }

  section {
    padding: 70px 20px;
  }

  .s-label,
  .cta-badge {
    letter-spacing: 0.08em;
  }

  .s-title,
  .cta-title {
    font-size: clamp(28px, 9vw, 38px);
  }

  .about-stats,
  .services-grid,
  .steps,
  .team-grid,
  .testi-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 112px;
    padding: 20px 106px 20px 18px;
  }

  .stat-icon {
    right: 18px;
    width: 72px;
    height: 72px;
  }

  .services-head,
  .process-head,
  .team-head,
  .testi-head {
    margin-bottom: 42px;
  }

  .testi-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
  }

  .svc-card,
  .team-body {
    padding: 28px 22px;
  }

  .testi-card {
    padding: 64px 22px 24px;
  }

  .svc-card:hover,
  .team-card:hover,
  .testi-card:hover,
  .footer-social a:hover {
    transform: none;
  }

  .step-circle {
    margin-bottom: 18px;
  }

  .cta-block {
    gap: 28px;
    justify-content: center;
    align-items: center;
  }

  #cta {
    text-align: center;
  }

  .cta-inner {
    margin: 0 auto;
  }

  .cta-line {
    margin: 24px auto 18px;
  }

  .qr-wrap {
    align-items: center;
  }

  .cta-sep {
    width: 100%;
    height: 1px;
  }

  .cta-opts {
    width: 100%;
  }

  .cta-sep,
  .cta-opts {
    display: none;
  }

  .cta-opt {
    align-items: flex-start;
  }

  .form-box {
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-row {
    display: contents;
  }

  .fg {
    margin-bottom: 0;
  }

  .about-visual {
    width: calc(100% + 40px);
    margin-inline: -20px;
  }

  #about {
    padding-bottom: 0;
  }

  .about-box {
    height: clamp(400px, 125vw, 560px);
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .about-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
  }

  .fg input,
  .fg select,
  .fg textarea {
    min-height: 46px;
  }

  footer {
    padding: 54px 20px 28px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(31px, 10.5vw, 40px);
  }

  .hero-pillars {
    flex-wrap: nowrap;
    max-width: 100%;
    gap: 0 clamp(6px, 2vw, 12px);
  }
  .hero-pillar {
    flex: 0 0 auto;
    gap: 4px;
    white-space: nowrap;
    letter-spacing: 0.04em;
    font-size: clamp(7px, 2.2vw, 10px);
  }
  .hero-pillar b {
    font-size: clamp(12px, 3.6vw, 17px);
  }

  .s-label,
  .svc-link,
  .form-submit {
    letter-spacing: 0.04em;
  }

  .qr-box {
    width: 140px;
    height: 140px;
  }

  .qr-inner {
    font-size: 52px;
  }

  .footer-bottom {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fu {
    opacity: 1;
    transform: none;
  }
}


/* Footer mobile correction */
@media (max-width: 960px) {
  footer {
    padding: 56px 24px 28px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
    padding-bottom: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    max-width: 360px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  footer {
    padding: 48px 20px 28px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-copy,
  .footer-legal {
    width: 100%;
    text-align: center;
    line-height: 1.7;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-legal {
    justify-content: center;
  }
}
