/* ============================================
   Haz Service — Shared Stylesheet
   ============================================ */

:root {
  --brand: #064488;
  --brand-dark: #043266;
  --brand-deep: #021e3e;
  --brand-100: #dae6f5;
  --brand-200: #b5cce9;
  --brand-300: #84a8d6;
  --brand-800: #064488;
  --brand-900: #043266;
  --brand-950: #021e3e;
  --gold: #D4A24A;
  --gold-300: #dbb677;
  --gold-400: #D4A24A;
  --gold-600: #9c6c34;
  --cream: #FAF8F5;
  --ink: #0A1628;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
svg { display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container-narrow { padding: 0 32px; } }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}
.header.scrolled,
.header.solid {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 68, 136, 0.1);
  box-shadow: 0 2px 20px rgba(6, 68, 136, 0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
@media (min-width: 768px) { .header-inner { height: 84px; } }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo img { width: 44px; height: 44px; border-radius: 10px; box-shadow: 0 2px 8px rgba(6, 68, 136, 0.15); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .name { font-family: "Fraunces", serif; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--brand-900); }
.logo-text .tag { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; margin-top: 4px; color: rgba(10, 67, 136, 0.7); font-weight: 500; }

.nav-desktop { display: none; }
@media (min-width: 1024px) { .nav-desktop { display: flex; align-items: center; gap: 40px; } }
.nav-desktop a {
  font-size: 15px; font-weight: 500;
  color: rgba(10, 67, 136, 0.85);
  position: relative; padding: 4px 0;
  transition: color 0.2s;
}
.nav-desktop a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: currentColor; transition: width 0.4s; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--brand-800); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: flex; align-items: center; gap: 20px; } }
.phone-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: var(--brand-900);
  font-variant-numeric: tabular-nums;
}
.phone-link .icon { width: 36px; height: 36px; border-radius: 999px; background: rgba(6, 68, 136, 0.08); display: inline-flex; align-items: center; justify-content: center; transition: background 0.3s; }
.phone-link:hover .icon { background: rgba(212, 162, 74, 0.25); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  font-size: 15px; font-weight: 500;
  border-radius: 999px;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--brand-800); color: white; }
.btn-primary:hover:not(:disabled) { background: var(--brand-900); transform: translateY(-1px); box-shadow: 0 14px 32px -12px rgba(6, 68, 136, 0.55); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-primary::after { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(212, 162, 74, 0.3), transparent); transition: left 0.7s ease; }
.btn-primary:hover::after { left: 100%; }
.btn-secondary { background: transparent; color: var(--brand-800); border: 1.5px solid var(--brand-800); }
.btn-secondary:hover { background: var(--brand-800); color: white; }
.btn-on-dark { background: white; color: var(--brand-800); }
.btn-on-dark:hover { background: var(--cream); transform: translateY(-1px); box-shadow: 0 14px 32px -12px rgba(0,0,0,0.3); }
.btn-on-dark-outline { background: transparent; color: white; border: 1.5px solid rgba(255, 255, 255, 0.4); }
.btn-on-dark-outline:hover { background: white; color: var(--brand-800); border-color: white; }
.header .btn-header { padding: 11px 20px; font-size: 14px; }

/* ===== MOBILE MENU ===== */
.mobile-controls { display: flex; align-items: center; gap: 12px; }
@media (min-width: 1024px) { .mobile-controls { display: none; } }
.icon-btn { width: 44px; height: 44px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
.icon-btn.primary { background: var(--brand-800); color: white; box-shadow: 0 4px 12px rgba(6, 68, 136, 0.25); }
.icon-btn.outline { border: 1px solid rgba(6, 68, 136, 0.2); color: var(--brand-900); background: rgba(255,255,255,0.5); }
.hamburger { position: relative; width: 20px; height: 16px; }
.hamburger span { position: absolute; left: 0; width: 100%; height: 1.8px; background: var(--brand-900); transition: all 0.3s ease; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.mobile-menu-open .hamburger span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-menu-open .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu-open .hamburger span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 72px 0 0 0;
  background: var(--cream);
  padding: 32px 20px;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  overflow-y: auto;
  z-index: 40;
}
.mobile-menu-open .mobile-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(6, 68, 136, 0.1);
  color: var(--brand-900);
  font-family: "Fraunces", serif;
  font-size: 28px; font-weight: 500; letter-spacing: -0.01em;
}
.mobile-menu nav a .arrow {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(6, 68, 136, 0.15);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.mobile-menu nav a:hover .arrow { background: var(--brand-800); color: white; border-color: var(--brand-800); }
.mobile-menu .menu-bottom { margin-top: auto; padding-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .btn { width: 100%; }
.mobile-menu .hours { text-align: center; font-size: 12px; padding-top: 16px; color: rgba(6, 68, 136, 0.6); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--brand-950); }
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; animation: heroCycle 24s infinite; }
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: kenBurns 24s ease-in-out infinite alternate;
}
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2, 30, 62, 0.65) 0%, rgba(6, 68, 136, 0.72) 55%, rgba(2, 30, 62, 0.88) 100%);
}
@keyframes heroCycle { 0%, 22% { opacity: 1; } 28%, 100% { opacity: 0; } }
@keyframes kenBurns { 0% { transform: scale(1) translate(0, 0); } 100% { transform: scale(1.12) translate(-1.5%, -1.5%); } }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 128px 0 64px; color: white; }
@media (min-width: 768px) { .hero-content { padding: 160px 0 96px; } }

/* Short hero for sub-pages */
.hero-short { min-height: 60vh; }
.hero-short .hero-content { padding: 140px 0 80px; }
@media (min-width: 768px) { .hero-short { min-height: 50vh; } .hero-short .hero-content { padding: 180px 0 100px; } }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.kicker::before { content: ""; display: block; width: 32px; height: 1px; background: var(--gold); }
.kicker-center { justify-content: center; }
.kicker-light { color: var(--gold-300); }
.kicker-light::before { background: var(--gold-300); }

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.75rem, 8vw, 6rem);
  font-weight: 500; line-height: 1;
  letter-spacing: -0.025em;
  margin: 24px 0 0;
  color: white;
}
.hero-short h1 { font-size: clamp(2.25rem, 6vw, 4rem); }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--gold-300); }
.hero p.lead {
  margin-top: 32px;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}
.hero-ctas { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; gap: 16px; } }

.hero-stats { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 640px; }
@media (min-width: 768px) { .hero-stats { margin-top: 96px; gap: 40px; } }
.hero-stats > div { padding-left: 16px; border-left: 1px solid rgba(255,255,255,0.15); }
.hero-stats > div:first-child { padding-left: 0; border-left: 0; }
@media (min-width: 768px) { .hero-stats > div { padding-left: 40px; } }
.hero-stat-num { font-family: "Fraunces", serif; font-variant-numeric: tabular-nums; font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 500; color: white; line-height: 1; }
.hero-stat-lbl { margin-top: 8px; font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.3; }
@media (min-width: 768px) { .hero-stat-lbl { font-size: 14px; } }

.fade-up { opacity: 0; animation: fadeUp 0.8s ease-out forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Breadcrumbs */
.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: var(--gold-300); }
.breadcrumbs .sep { opacity: 0.4; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }
.section-cream { background: var(--cream); position: relative; }
.section-white { background: white; }
.section h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--brand-900);
  margin: 24px 0 0;
}
.section h2 em { font-style: italic; font-weight: 400; color: var(--brand-800); }
.section p.lead { margin-top: 32px; font-size: 18px; line-height: 1.65; color: rgba(10, 22, 40, 0.75); }
.section-head { max-width: 780px; margin-bottom: 64px; }
@media (min-width: 768px) { .section-head { margin-bottom: 80px; } }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 5fr 7fr; gap: 80px; } }
.about-visual { position: relative; }
.about-image {
  position: relative; aspect-ratio: 4/5;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(6, 68, 136, 0.4);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4, 50, 102, 0.25), transparent 50%); }
.about-quote-card {
  position: absolute; bottom: -32px; right: -16px;
  background: white;
  padding: 24px; border-radius: 16px;
  box-shadow: 0 20px 50px -10px rgba(6, 68, 136, 0.25);
  max-width: 240px;
  border: 1px solid var(--brand-100);
}
@media (min-width: 1024px) { .about-quote-card { right: -40px; padding: 28px; } }
.stars { display: flex; gap: 2px; margin-bottom: 12px; color: var(--gold); }
.about-quote-card p { font-size: 14px; line-height: 1.5; margin: 0; color: var(--brand-900); }
.about-quote-card .attr { margin-top: 12px; font-size: 12px; color: rgba(10, 67, 136, 0.7); font-weight: 500; }

.feature-grid { margin-top: 40px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature-item { display: flex; gap: 12px; }
.feature-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 999px; background: var(--brand-800); color: white; display: inline-flex; align-items: center; justify-content: center; }
.feature-item h3 { font-size: 16px; font-weight: 600; color: var(--brand-900); margin: 0; }
.feature-item p { font-size: 14px; margin: 2px 0 0; color: rgba(10, 67, 136, 0.6); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }
.service-card {
  position: relative;
  background: var(--cream);
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(6, 68, 136, 0.08);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  display: block;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(6, 68, 136, 0.3); }
.service-card-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-card:hover .service-card-image img { transform: scale(1.08); }
.service-card-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2, 30, 62, 0.65), rgba(2, 30, 62, 0.1) 40%, transparent); }
.service-card-icon { position: absolute; top: 16px; left: 16px; width: 44px; height: 44px; border-radius: 999px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); display: inline-flex; align-items: center; justify-content: center; color: var(--brand-800); z-index: 2; }
.service-card-num { position: absolute; top: 16px; right: 16px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.9); font-variant-numeric: tabular-nums; z-index: 2; letter-spacing: 0.1em; }
.service-card-body { padding: 24px; }
@media (min-width: 768px) { .service-card-body { padding: 28px; } }
.service-card-body h3 { font-family: "Fraunces", serif; font-size: 22px; font-weight: 500; color: var(--brand-900); margin: 0; letter-spacing: -0.01em; }
.service-card-tag { margin-top: 4px; font-size: 13px; color: var(--gold-600); font-style: italic; font-weight: 500; }
.service-card-desc { margin-top: 16px; font-size: 15px; line-height: 1.6; color: rgba(10, 67, 136, 0.7); }
.service-card-link { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--brand-800); transition: gap 0.3s; }
.service-card:hover .service-card-link { gap: 12px; }

/* ===== WHY US (dark with bg slideshow) ===== */
.why-section { position: relative; overflow: hidden; color: white; padding: 80px 0; background: var(--brand-950); }
@media (min-width: 768px) { .why-section { padding: 128px 0; } }
.why-section-bg { position: absolute; inset: 0; z-index: 0; }
.why-scene { position: absolute; inset: 0; opacity: 0; background-size: cover; background-position: center; animation: whyBgCycle 30s infinite; }
.why-scene:nth-child(1) { animation-delay: 0s; }
.why-scene:nth-child(2) { animation-delay: 10s; }
.why-scene:nth-child(3) { animation-delay: 20s; }
@keyframes whyBgCycle { 0%, 28% { opacity: 1; } 33%, 100% { opacity: 0; } }
.why-section .overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(2, 30, 62, 0.94) 0%, rgba(6, 68, 136, 0.88) 50%, rgba(2, 30, 62, 0.95) 100%); z-index: 1; }
.why-section .container { position: relative; z-index: 2; }
.why-section h2 { color: white; }
.why-section h2 em { color: var(--gold-300); }
.pillars { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pillars { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.pillar { padding: 32px; border-radius: 16px; background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(4px); border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.5s; }
.pillar:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(212, 162, 74, 0.4); }
.pillar-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.pillar-icon { width: 48px; height: 48px; border-radius: 999px; background: rgba(212, 162, 74, 0.15); border: 1px solid rgba(212, 162, 74, 0.3); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; }
.pillar-num { font-family: "Fraunces", serif; font-variant-numeric: tabular-nums; font-size: 24px; font-weight: 300; color: rgba(255, 255, 255, 0.25); }
.pillar h3 { font-family: "Fraunces", serif; font-size: 20px; font-weight: 500; margin: 0 0 12px; }
.pillar p { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.75); margin: 0; }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 32px; position: relative; }
@media (min-width: 768px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.process-line { display: none; position: absolute; top: 32px; left: 12%; right: 12%; height: 1px; background-image: radial-gradient(circle, var(--brand-300) 1px, transparent 1px); background-size: 8px 1px; background-repeat: repeat-x; }
@media (min-width: 1024px) { .process-line { display: block; } }
.process-step { position: relative; }
@media (min-width: 1024px) { .process-step { text-align: center; } }
.step-number { display: inline-flex; width: 64px; height: 64px; border-radius: 999px; background: white; border: 2px solid var(--brand-800); color: var(--brand-800); font-family: "Fraunces", serif; font-size: 20px; font-weight: 500; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; z-index: 2; }
.process-step h3 { font-family: "Fraunces", serif; font-size: 20px; font-weight: 500; color: var(--brand-900); margin: 0 0 8px; }
.process-step p { font-size: 15px; line-height: 1.6; color: rgba(10, 67, 136, 0.65); margin: 0; max-width: 280px; }
@media (min-width: 1024px) { .process-step p { margin: 0 auto; } }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.testi-card { padding: 32px; border-radius: 16px; background: var(--cream); border: 1px solid rgba(6, 68, 136, 0.08); }
@media (min-width: 768px) { .testi-card { padding: 36px; } }
.testi-quote-icon { color: var(--gold); margin-bottom: 24px; }
.testi-card p.quote { font-size: 15px; line-height: 1.65; color: rgba(10, 67, 136, 0.8); margin: 0 0 24px; }
@media (min-width: 768px) { .testi-card p.quote { font-size: 16px; } }
.testi-attr { padding-top: 20px; border-top: 1px solid rgba(6, 68, 136, 0.1); }
.testi-attr .name { font-weight: 600; color: var(--brand-900); font-size: 15px; }
.testi-attr .role { font-size: 13px; color: rgba(10, 67, 136, 0.55); margin-top: 2px; }

/* ===== CONTACT ===== */
.contact-section { padding: 80px 0; background: var(--cream); position: relative; }
@media (min-width: 768px) { .contact-section { padding: 128px 0; } }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 80px; } }
.contact-info h2 { font-family: "Fraunces", serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; color: var(--brand-900); margin: 24px 0 0; }
.contact-info h2 em { font-style: italic; color: var(--brand-800); font-weight: 400; }
.contact-info p.lead { margin-top: 24px; font-size: 17px; line-height: 1.65; color: rgba(10, 67, 136, 0.7); }
.contact-info-list { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .icon-wrap { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: white; border: 1px solid rgba(6, 68, 136, 0.1); display: inline-flex; align-items: center; justify-content: center; color: var(--brand-800); }
.contact-info-item h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold-600); font-weight: 600; margin: 0; }
.contact-info-item p { font-size: 16px; color: var(--brand-900); margin: 4px 0 0; font-weight: 500; }
.contact-info-item p.small { font-size: 14px; font-weight: 400; color: rgba(10, 67, 136, 0.7); }

.contact-form-wrap { background: white; padding: 32px; border-radius: 20px; border: 1px solid rgba(6, 68, 136, 0.08); box-shadow: 0 30px 60px -30px rgba(6, 68, 136, 0.15); }
@media (min-width: 768px) { .contact-form-wrap { padding: 48px; } }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } }
.form-field label { display: block; font-size: 13px; font-weight: 500; color: var(--brand-900); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-field label .req { color: var(--gold-600); }
.input { width: 100%; padding: 16px 18px; border: 1.5px solid rgba(6, 68, 136, 0.14); border-radius: 10px; font-size: 15px; font-family: inherit; background: white; color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s; }
.input:focus { outline: none; border-color: var(--brand-800); box-shadow: 0 0 0 4px rgba(6, 68, 136, 0.08); }
.input::placeholder { color: #8891A0; }
textarea.input { resize: vertical; min-height: 140px; font-family: inherit; }
select.input { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23064488' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 48px; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: rgba(10, 67, 136, 0.75); line-height: 1.5; cursor: pointer; }
.consent input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--brand-800); margin-top: 2px; flex-shrink: 0; }
.consent a { color: var(--brand-800); text-decoration: underline; }
.form-status { padding: 16px; border-radius: 10px; font-size: 14px; display: none; line-height: 1.5; }
.form-status.success { display: block; background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.3); color: #15803d; }
.form-status.error { display: block; background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.3); color: #b91c1c; }
.submit-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.submit-row p { font-size: 13px; color: rgba(10, 67, 136, 0.55); margin: 0; }
/* Honeypot — hidden from humans */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ===== LEGAL / CONTENT PAGES ===== */
.legal-section { padding: 60px 0 80px; background: var(--cream); }
@media (min-width: 768px) { .legal-section { padding: 80px 0 128px; } }
.legal-content {
  background: white;
  border-radius: 20px;
  padding: 40px 28px;
  border: 1px solid rgba(6, 68, 136, 0.08);
  box-shadow: 0 30px 60px -40px rgba(6, 68, 136, 0.15);
}
@media (min-width: 768px) { .legal-content { padding: 64px 56px; } }
.legal-content h1 { font-family: "Fraunces", serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 500; letter-spacing: -0.02em; color: var(--brand-900); margin: 0 0 8px; line-height: 1.1; }
.legal-content .updated { font-size: 13px; color: rgba(10, 67, 136, 0.5); margin: 0 0 32px; }
.legal-content h2 { font-family: "Fraunces", serif; font-size: clamp(1.375rem, 3vw, 1.75rem); font-weight: 500; color: var(--brand-900); margin: 40px 0 16px; letter-spacing: -0.01em; }
.legal-content h2:first-of-type { margin-top: 32px; }
.legal-content h3 { font-family: "Fraunces", serif; font-size: 1.125rem; font-weight: 600; color: var(--brand-800); margin: 24px 0 8px; }
.legal-content p { margin: 0 0 16px; color: rgba(10, 22, 40, 0.8); font-size: 15px; line-height: 1.75; }
@media (min-width: 768px) { .legal-content p { font-size: 16px; } }
.legal-content a { color: var(--brand-800); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--brand-900); }
.legal-content ul { margin: 0 0 16px; padding-left: 24px; }
.legal-content li { margin-bottom: 6px; color: rgba(10, 22, 40, 0.8); font-size: 15px; line-height: 1.7; }
@media (min-width: 768px) { .legal-content li { font-size: 16px; } }
.legal-content .placeholder {
  background: rgba(212, 162, 74, 0.12);
  border-left: 3px solid var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
  color: var(--gold-600);
  font-style: italic;
}
.legal-content .info-box {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  border: 1px solid var(--brand-100);
}
.legal-content .info-box p:last-child { margin-bottom: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--brand-950);
  color: rgba(250, 248, 245, 0.8);
  position: relative; overflow: hidden;
  padding: 80px 0 32px;
}
@media (min-width: 768px) { .footer { padding: 96px 0 32px; } }
.footer::before { content: ""; position: absolute; top: -128px; right: -128px; width: 384px; height: 384px; border-radius: 999px; background: rgba(212, 162, 74, 0.06); filter: blur(80px); pointer-events: none; }
.footer::after { content: ""; position: absolute; bottom: -160px; left: -80px; width: 384px; height: 384px; border-radius: 999px; background: rgba(10, 67, 136, 0.25); filter: blur(80px); pointer-events: none; }
.footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 5fr 4fr 3fr; gap: 32px; } }
.footer .logo-text .name { color: var(--cream); }
.footer .logo-text .tag { color: rgba(250, 248, 245, 0.7); }
.footer-intro { margin-top: 24px; font-size: 15px; line-height: 1.7; max-width: 360px; color: rgba(250, 248, 245, 0.7); }
.footer-contacts { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.footer-contacts a { font-size: 14px; display: inline-flex; align-items: center; gap: 12px; color: inherit; transition: color 0.2s; }
.footer-contacts a:hover { color: var(--gold); }
.footer-contacts .icon-circle { width: 32px; height: 32px; border-radius: 999px; background: rgba(250, 248, 245, 0.05); display: inline-flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer-contacts a:hover .icon-circle { background: rgba(212, 162, 74, 0.2); }
.footer-col h3 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); font-weight: 500; margin: 0 0 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 15px; color: rgba(250, 248, 245, 0.8); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom { margin-top: 64px; padding-top: 32px; border-top: 1px solid rgba(250, 248, 245, 0.1); display: flex; flex-direction: column; gap: 16px; font-size: 12px; color: rgba(250, 248, 245, 0.5); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ===== UTILS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.tnum { font-variant-numeric: tabular-nums; }
