/* ============================================
   VECTOR SUMMIT — Shared Design System
   ============================================ */

/* --- VARIABLES --- */
:root {
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;

  --bg: #f5f2ec;
  --bg-alt: #eceae4;
  --surface: #fdfcf9;
  --surface-hover: #f9f7f3;
  --text: #17140f;
  --text-muted: #635b4f;
  --text-light: #958a7b;
  --accent: #9e8044;
  --accent-hover: #b69440;
  --accent-subtle: rgba(158, 128, 68, 0.07);
  --border: rgba(23, 20, 15, 0.07);
  --border-accent: rgba(158, 128, 68, 0.22);
  --divider: rgba(23, 20, 15, 0.05);
  --nav-bg: rgba(245, 242, 236, 0.88);
  --shadow-sm: 0 1px 3px rgba(23,20,15,0.04);
  --shadow-md: 0 6px 20px rgba(23,20,15,0.06);
  --shadow-lg: 0 16px 48px rgba(23,20,15,0.08);
  --gold-grad: linear-gradient(135deg, #9e8044, #c9a96e, #dbb86a, #c9a96e);
  --gold-text: linear-gradient(135deg, #9e8044 0%, #dbb86a 50%, #c9a96e 100%);
  --mesh-color: rgba(158, 128, 68, 0.08);
  --mesh-node: rgba(158, 128, 68, 0.3);
  --glow: rgba(158, 128, 68, 0.15);
}

[data-theme="dark"] {
  --bg: #0a0908;
  --bg-alt: #111010;
  --surface: #1a1714;
  --surface-hover: #211e1a;
  --text: #ece4d6;
  --text-muted: #897e6f;
  --text-light: #584f43;
  --accent: #c9a96e;
  --accent-hover: #dbb86a;
  --accent-subtle: rgba(201, 169, 110, 0.06);
  --border: rgba(236, 228, 214, 0.06);
  --border-accent: rgba(201, 169, 110, 0.18);
  --divider: rgba(236, 228, 214, 0.04);
  --nav-bg: rgba(10, 9, 8, 0.92);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
  --mesh-color: rgba(201, 169, 110, 0.04);
  --mesh-node: rgba(201, 169, 110, 0.2);
  --glow: rgba(201, 169, 110, 0.08);
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.5s, color 0.5s;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* --- LAYOUT --- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 28px; } }
@media (max-width: 480px) { .container { padding: 0 20px; } }

/* --- SCROLL PROGRESS --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-grad);
  z-index: 200;
  transition: width 0.1s linear;
}

/* --- NAVIGATION --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: background 0.5s, box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: default; }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu ul {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 12px 0;
  min-width: 260px;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s, padding-left 0.3s;
}

.nav-dropdown-menu li a:hover {
  padding-left: 30px;
  color: var(--accent);
}

.nav-dropdown-menu li a::after { display: none; }

/* Theme toggle */
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all 0.3s;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(20deg);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* --- TYPOGRAPHY --- */
.overline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.overline::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
  display: block;
}

.sh {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw + 0.5rem, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.ss {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

.gradient-text {
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- BUTTONS --- */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 42px;
  background: var(--accent);
  color: #0b0908;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.btn-p::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-p:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(158,128,68,0.25);
}

.btn-p:hover::before {
  transform: translateX(100%);
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 42px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-o:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
  transform: translateY(-2px);
}

/* --- SCROLL REVEAL --- */
.sr {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr.v {
  opacity: 1;
  transform: translateY(0);
}

.sr-delay-1 { transition-delay: 0.1s; }
.sr-delay-2 { transition-delay: 0.2s; }
.sr-delay-3 { transition-delay: 0.3s; }
.sr-delay-4 { transition-delay: 0.4s; }

/* --- PAGE HERO (shared across sub-pages) --- */
.page-hero {
  padding: 200px 0 120px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw + 0.5rem, 5rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroReveal 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-hero .ss {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
  opacity: 0;
  animation: heroReveal 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-hero .overline {
  opacity: 0;
  animation: heroReveal 0.6s 0.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- SERVICE ICON --- */
.svc-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--accent);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.svc-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- CARD BASE --- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover::before { transform: scaleX(1); }

.card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: 20px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.2;
}

.card h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.25;
}

.card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 24px;
  transition: gap 0.3s;
}

.card:hover .card-link { gap: 14px; }

.card-link .arrow {
  transition: transform 0.3s;
}

.card:hover .card-link .arrow {
  transform: translateX(4px);
}

/* --- SECTION DIVIDER --- */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--divider);
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -3px;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border: 1px solid var(--accent);
  transform: translateX(-50%) rotate(45deg);
}

/* --- CTA SECTION --- */
.cta-section {
  padding: 160px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--divider);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section .sh { margin: 0 auto 16px; max-width: 700px; }
.cta-section .ss { margin: 0 auto 48px; }

/* --- NOTE BLOCK --- */
.note-block {
  padding: 80px 0;
}

.note-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 48px 56px;
  position: relative;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.note-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-grad);
}

/* --- FOOTER --- */
footer {
  padding: 0;
  border-top: 1px solid var(--divider);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--gold-grad);
}

.ft-top {
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 56px;
}

.ft-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.ft-brand-name span { color: var(--accent); }

.ft-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.ft-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ft-col ul a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.3s, padding-left 0.3s;
}

.ft-col ul a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.ft-newsletter {
  display: flex;
  gap: 0;
  margin-top: 4px;
}

.ft-newsletter input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  outline: none;
  border-radius: 2px 0 0 2px;
  transition: border-color 0.3s;
}

.ft-newsletter input:focus { border-color: var(--accent); }
.ft-newsletter input::placeholder { color: var(--text-light); }

.ft-newsletter button {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 20px;
  background: var(--accent);
  color: #0b0908;
  border: none;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.ft-newsletter button:hover { background: var(--accent-hover); }

.ft-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-light);
}

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

.ft-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all 0.3s;
}

.ft-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.ft-social a svg {
  width: 16px;
  height: 16px;
}

/* --- DOT GRID PATTERN --- */
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--mesh-color) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}

/* --- GLOW ORB --- */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

/* ============================
   MOBILE RESPONSIVE
   ============================ */

@media (max-width: 960px) {
  .ft-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* --- NAV --- */
  nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: var(--bg) !important;
  }

  .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  .nav-inner {
    padding: 0 20px;
    height: 64px;
  }

  .nav-logo { font-size: 1.45rem; }

  /* --- MOBILE MENU OVERLAY --- */
  .nav-links {
    display: flex !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 100px 32px 48px;
    border-bottom: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links > li > a {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    font-family: var(--font-display);
    font-size: 1.65rem !important;
    font-weight: 500;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    min-height: 64px;
    padding: 8px 0;
    color: var(--text) !important;
    transition: color 0.3s;
  }

  .nav-links > li > a::after { display: none !important; }

  .nav-links > li > a:hover,
  .nav-links > li > a.active { color: var(--accent) !important; }

  /* Services dropdown in mobile */
  .nav-dropdown-toggle {
    display: flex !important;
    font-family: var(--font-display) !important;
    font-size: 1.65rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    color: var(--text) !important;
    min-height: 64px !important;
    padding: 8px 0 !important;
    cursor: pointer !important;
  }

  .nav-dropdown-toggle::after { display: none !important; }

  .nav-dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0 0 12px 0 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .nav-dropdown-menu ul {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: auto;
    gap: 0;
  }

  .nav-dropdown-menu li a {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    padding: 6px 0 6px 20px !important;
    font-family: var(--font-body) !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    min-height: 40px;
    color: var(--text-muted) !important;
    border-left: 2px solid var(--border-accent);
    transition: color 0.2s, border-color 0.2s;
  }

  .nav-dropdown-menu li a:hover,
  .nav-dropdown-menu li a.active {
    color: var(--accent) !important;
    border-left-color: var(--accent) !important;
    padding-left: 20px !important;
  }

  /* Theme toggle at bottom */
  .nav-links > li:last-child {
    border-bottom: none;
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-links > li:last-child::before {
    content: 'Theme';
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-light);
  }

  /* --- PAGE HERO --- */
  .page-hero { padding: 120px 0 64px; }
  .page-hero h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); margin-bottom: 18px; }
  .page-hero .ss { font-size: 0.98rem; line-height: 1.7; }

  /* --- SECTION HEADINGS --- */
  .sh { font-size: clamp(2rem, 7vw, 2.8rem); margin-bottom: 16px; }
  .ss { font-size: 0.95rem; line-height: 1.75; }
  .overline { font-size: 0.68rem; margin-bottom: 12px; }

  /* --- SECTIONS --- */
  .cta-section { padding: 80px 0; }
  .cta-section .ss { margin-bottom: 36px; }
  .note-block { padding: 48px 0; }
  .note-inner { padding: 28px 24px; font-size: 0.95rem; }

  /* --- BUTTONS --- */
  .btn-p, .btn-o {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 0.76rem;
  }

  /* --- CARDS --- */
  .card { padding: 32px 24px; }
  .card h3 { font-size: 1.45rem; }
  .card h4 { font-size: 1.3rem; }
  .card p { font-size: 0.92rem; }

  /* --- SVC ICON --- */
  .svc-icon { width: 40px; height: 40px; margin-bottom: 18px; }

  /* --- FOOTER --- */
  .ft-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 32px;
  }

  .ft-brand p { max-width: 100%; }

  .ft-col h4 { margin-bottom: 14px; }
  .ft-col ul { gap: 10px; }

  .ft-newsletter { margin-top: 12px; }
  .ft-newsletter input { padding: 14px 16px; font-size: 0.85rem; }
  .ft-newsletter button { padding: 14px 18px; }

  .ft-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 0;
    font-size: 0.75rem;
  }

  .ft-social a { width: 32px; height: 32px; }
  .ft-social a svg { width: 14px; height: 14px; }
}

@media (max-width: 480px) {
  .page-hero { padding: 100px 0 48px; }
  .page-hero h1 { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .nav-links { padding: 90px 24px 36px; }
  .nav-links > li > a,
  .nav-dropdown-toggle { font-size: 1.4rem !important; min-height: 56px !important; }
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
