@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --navy: #1A2B4A;
  --navy-mid: #243656;
  --blue: #3B6BA5;
  --blue-light: #5585BE;
  --gold: #C8A96E;
  --gold-light: #D9BF8A;
  --slate: #F8F9FA;
  --slate-mid: #EEF0F3;
  --gray: #6B7280;
  --gray-dark: #374151;
  --white: #ffffff;
  --text: #1F2937;
  --border: #DDE1E7;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(26,43,74,0.08);
  --shadow-md: 0 4px 16px rgba(26,43,74,0.10);
  --shadow-lg: 0 8px 32px rgba(26,43,74,0.13);
  --radius: 4px;
  --radius-lg: 8px;
  --max-w: 1200px;
  --header-h: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-light); }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: var(--radius);
  text-decoration: none;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.75;
}

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 28px;
}

.page-hero {
  background: var(--navy);
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, transparent 100%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-placeholder {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-placeholder span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 3px;
}

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

nav a:hover, nav a.active {
  color: var(--navy);
  background: var(--slate-mid);
}

nav a.active {
  font-weight: 600;
}

.nav-cta {
  margin-left: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: all 0.25s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0 24px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-dark);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.18s;
}

.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--navy);
  background: var(--slate-mid);
  border-left-color: var(--gold);
}

.mobile-nav .mobile-cta {
  margin: 16px 32px 0;
  display: block;
  text-align: center;
}

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.45); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
  color: rgba(255,255,255,0.60);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

.hero {
  background: var(--navy);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80') center/cover no-repeat;
  opacity: 0.18;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--navy) 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 80px 0;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.05em;
}

.services-strip {
  background: var(--slate-mid);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.services-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
}

.strip-item i { color: var(--gold); font-size: 16px; }
.strip-divider { color: var(--border); font-size: 20px; flex-shrink: 0; }

.about-intro { padding: 96px 0; }

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  right: 0; top: 60%;
  background: linear-gradient(to top, rgba(26,43,74,0.35), transparent);
}

.about-intro-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-intro-badge-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.about-intro-badge-icon i { color: var(--gold); font-size: 18px; }
.about-intro-badge-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.about-intro-badge-text span { font-size: 12px; color: var(--gray); }

.pillar-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }

.pillar-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pillar-icon {
  width: 42px; height: 42px;
  background: var(--slate-mid);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.pillar-icon i { color: var(--navy); font-size: 18px; }

.pillar-item h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.pillar-item p { font-size: 14px; color: var(--gray); }

.services-section { padding: 96px 0; background: var(--slate); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

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

.service-card-icon {
  width: 52px; height: 52px;
  background: var(--slate-mid);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-card-icon i { font-size: 24px; color: var(--navy); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap 0.18s;
}
.service-card .learn-more:hover { gap: 10px; color: var(--navy); }

.why-us { padding: 96px 0; }

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }

.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }

.why-feature {
  display: flex;
  gap: 16px;
}

.why-feature-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  min-width: 24px;
  padding-top: 3px;
}

.why-feature h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-feature p { font-size: 14px; color: var(--gray); }

.cta-band {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.60);
  margin-top: 8px;
}

.cta-band-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

.testimonials { padding: 96px 0; background: var(--slate); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 18px;
}
.testimonial-stars i { color: var(--gold); font-size: 14px; }

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--slate-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-avatar i { color: var(--navy); font-size: 18px; }
.testimonial-author strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.testimonial-author span { font-size: 12px; color: var(--gray); }

.about-values { padding: 96px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s;
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-card-icon {
  width: 56px; height: 56px;
  background: var(--slate);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.value-card-icon i { font-size: 24px; color: var(--navy); }
.value-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--gray); }

.team-section { padding: 96px 0; background: var(--slate); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.team-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--slate-mid);
  display: flex; align-items: center; justify-content: center;
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-img i { font-size: 48px; color: var(--gray); }
.team-card-body { padding: 24px; }
.team-card-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card-body span { font-size: 13px; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.team-card-body p { font-size: 14px; color: var(--gray); margin-top: 10px; line-height: 1.7; }

.services-detail { padding: 96px 0; }
.services-detail-grid {
  display: grid;
  gap: 40px;
  margin-top: 52px;
}
.service-detail-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.22s;
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); }
.service-detail-img {
  aspect-ratio: initial;
  overflow: hidden;
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-body {
  padding: 40px 44px;
  background: var(--white);
}
.service-detail-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-detail-body p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-detail-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-detail-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-dark);
}
.service-detail-feature i { color: var(--gold); font-size: 16px; }

.process-section { padding: 96px 0; background: var(--slate); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: var(--border);
}
.process-step { text-align: center; padding: 0 16px; }
.process-step-num {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}
.process-step h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--gray); }

.contact-section { padding: 96px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-info p { font-size: 15px; color: var(--gray); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon i { color: var(--gold); font-size: 18px; }
.contact-detail strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-detail span { font-size: 15px; color: var(--gray-dark); }
.contact-detail a { color: var(--blue); text-decoration: none; }
.contact-detail a:hover { color: var(--navy); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.18s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,107,165,0.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--gray); margin-top: 12px; }
.form-success { display: none; padding: 16px 20px; background: #EBF5EB; border: 1px solid #B2D9B2; border-radius: var(--radius); color: #2D6A2D; font-size: 14px; font-weight: 500; margin-top: 16px; }
.form-success.show { display: block; }

.legal-section { padding: 80px 0; }
.legal-content {
  max-width: 780px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 14px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { font-size: 15px; color: var(--gray-dark); line-height: 1.85; margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.legal-content ul li { font-size: 15px; color: var(--gray-dark); line-height: 1.85; margin-bottom: 6px; }
.legal-content a { color: var(--blue); }
.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  background: var(--slate-mid);
  border-radius: var(--radius);
  padding: 8px 14px;
  margin-bottom: 40px;
}
.legal-meta i { color: var(--gold); }

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 24px rgba(26,43,74,0.12);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.cookie-text p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.cookie-text a { color: var(--blue); }

.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

.btn-accept {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.18s;
}
.btn-accept:hover { background: var(--navy-mid); }
.btn-decline {
  background: transparent;
  color: var(--gray);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.18s;
}
.btn-decline:hover { border-color: var(--gray); color: var(--gray-dark); }

.map-embed {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 320px;
  background: var(--slate-mid);
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder {
  text-align: center;
  color: var(--gray);
}
.map-placeholder i { font-size: 40px; margin-bottom: 12px; }
.map-placeholder p { font-size: 14px; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-img { max-height: 320px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-img { height: 220px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .container { padding: 0 20px; }
  nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: fit-content; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 28px 20px; }
  .page-hero { padding: 72px 0 52px; }
  .services-strip-inner { gap: 20px; }
  .strip-divider { display: none; }
  .process-steps { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
