:root {
  --color-navy: #14304d;
  --color-navy-dark: #0c2036;
  --color-navy-deep: #071120;
  --color-orange: #ec6a2c;
  --color-orange-dark: #d0551b;
  --color-gold: #e3a55c;
  --color-gold-light: #f0c98a;
  --color-gold-deep: #c17f34;
  --color-bg: #fffdfa;
  --color-bg-alt: #f6f4f0;
  --color-panel: rgba(255,255,255,0.06);
  --color-glass: rgba(207,230,240,0.35);
  --color-glass-2: rgba(188,219,232,0.3);
  --color-text: #1c2b3a;
  --color-text-muted: #5a6a7c;
  --radius: 12px;
  --max-width: 1120px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  padding-bottom: 64px; /* space for sticky call bar on mobile */
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--color-navy-dark);
  margin: 0 0 16px;
}

h2 { font-size: clamp(1.7rem, 2.6vw, 2.35rem); }
h3 { font-size: 1.2rem; }

p { color: var(--color-text-muted); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

ul { padding: 0; list-style: none; margin: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 45%, var(--color-gold-deep) 100%);
  color: #241705;
  box-shadow: 0 10px 26px rgba(198, 138, 58, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(198, 138, 58, 0.48);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.btn-outline:hover { background: var(--color-navy); color: #fff; }

.btn-outline-light {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.7); }

.btn-lg { padding: 15px 28px; font-size: 1.05rem; }

.btn-header {
  background: var(--color-navy);
  color: #fff;
  padding: 10px 18px;
  font-size: 0.9rem;
}
.btn-header:hover { background: var(--color-navy-dark); }

/* Sticky mobile call bar */
.sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-orange);
  color: #fff;
  padding: 14px;
  font-weight: 700;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}
.sticky-call span { font-weight: 400; opacity: 0.9; }

@media (max-width: 720px) {
  .sticky-call { display: flex; }
}

/* Header */
.site-header {
  border-bottom: 1px solid #e4e9ee;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-navy-dark);
}
.logo span { color: var(--color-gold-deep); }

.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--color-navy); }

@media (max-width: 720px) {
  .main-nav { display: none; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-navy-deep) 0%, var(--color-navy-dark) 45%, var(--color-navy) 100%);
  padding: 64px 0 96px;
  isolation: isolate;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.blob-1 {
  width: 480px; height: 480px;
  top: -140px; left: -100px;
  background: radial-gradient(circle, rgba(227,165,92,0.55) 0%, rgba(227,165,92,0) 70%);
  animation: float1 24s ease-in-out infinite alternate;
}
.blob-2 {
  width: 440px; height: 440px;
  bottom: -160px; right: -80px;
  background: radial-gradient(circle, rgba(61,126,166,0.5) 0%, rgba(61,126,166,0) 70%);
  animation: float2 28s ease-in-out infinite alternate;
}
.blob-3 {
  width: 340px; height: 340px;
  top: 35%; left: 52%;
  background: radial-gradient(circle, rgba(122,79,176,0.35) 0%, rgba(122,79,176,0) 70%);
  animation: float3 32s ease-in-out infinite alternate;
}

@keyframes float1 { from { transform: translate(0,0) scale(1); } to { transform: translate(70px, 90px) scale(1.15); } }
@keyframes float2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-80px,-60px) scale(1.1); } }
@keyframes float3 { from { transform: translate(0,0) scale(1); } to { transform: translate(-50px, 70px) scale(1.2); } }

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
}

.eyebrow {
  color: var(--color-gold-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin: 0 0 14px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

.hero-sub {
  font-size: 1.05rem;
  max-width: 46ch;
  color: rgba(255,255,255,0.72);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 22px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.hero-trust li::before {
  content: "✓ ";
  color: var(--color-gold);
  font-weight: 700;
}

.hero-photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.5),
    0 0 44px rgba(227,165,92,0.16),
    0 0 0 1px rgba(227,165,92,0.35);
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,17,32,0) 55%, rgba(7,17,32,0.4) 100%);
  pointer-events: none;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transform-origin: center;
  animation: kenBurns 22s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.08) translate(-1.5%, -1%); }
}

/* Sections */
.section { padding: 64px 0; }
.section-sub { max-width: 60ch; margin-bottom: 32px; }
.services { background: var(--color-bg); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid #e8e3da;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(20,48,77,0.1);
  border-color: var(--color-gold);
}
.icon-tile {
  width: 152px;
  height: 152px;
  border-radius: 32px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow:
    0 6px 16px rgba(20,48,77,0.1),
    inset 0 0 0 1px rgba(20,48,77,0.05);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
}
.service-card:hover .icon-tile {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 10px 24px rgba(20,48,77,0.16),
    inset 0 0 0 1px rgba(227,165,92,0.4);
}
.service-card .icon {
  width: 92px;
  height: 92px;
  object-fit: contain;
}
.service-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.service-card p { margin: 0; font-size: 0.92rem; }

/* Why */
.why { background: var(--color-navy-dark); color: #fff; }
.why h2 { color: #fff; }
.why-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .why-inner { grid-template-columns: 1fr; } }

.why-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.why-list li:last-child { border-bottom: none; }
.why-list strong { color: #fff; font-size: 1.02rem; }
.why-list span { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

.why-note {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px;
}
.why-note p { color: rgba(255,255,255,0.75); margin: 0; font-size: 0.9rem; }
.why-note strong { color: #fff; display: block; margin-bottom: 6px; }

/* How it works */
.how { background: var(--color-bg-alt); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid #e4e9ee;
  text-align: center;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-deep));
  color: #241705;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 auto 14px;
}
.step {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(20,48,77,0.08); }
.step p { margin: 0; font-size: 0.92rem; }

/* Area */
.area {
  background: var(--color-navy);
  color: #fff;
  text-align: center;
}
.area h2 { color: #fff; }
.area p { color: rgba(255,255,255,0.75); max-width: 60ch; margin: 0 auto 26px; }
.area-inner { display: flex; justify-content: center; }
.area-inner > div { max-width: 640px; }

/* Contact */
.contact { text-align: center; }
.contact-inner p { max-width: 50ch; margin: 0 auto 32px; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 760px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--color-bg-alt);
  border: 1px solid #e8e3da;
  border-radius: var(--radius);
  padding: 26px 16px;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(20,48,77,0.12); border-color: var(--color-gold); }
.contact-icon { font-size: 1.6rem; }
.contact-label { font-weight: 700; color: var(--color-navy-dark); }
.contact-value { color: var(--color-text-muted); font-size: 0.92rem; word-break: break-word; }
.contact-card.is-revealed .contact-value { color: var(--color-gold-deep); font-weight: 600; }
.contact-card.is-revealed .contact-value::after { content: " →"; }

/* Footer */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}
.footer-inner a { color: #fff; font-weight: 600; }
