:root {
  --navy: #081427;
  --deep: #111827;
  --slate: #475569;
  --muted: #64748b;
  --gold: #d4af37;
  --soft-gold: #f7e7b4;
  --cream: #fffaf0;
  --soft: #f8fafc;
  --white: #ffffff;
  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.10);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.13), transparent 35%),
    linear-gradient(180deg, #fffaf0 0%, #f8fafc 45%, #ffffff 100%);
  color: var(--deep);
}

a {
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 20, 39, 0.94);
  backdrop-filter: blur(14px);
  padding: 16px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: 0 14px 35px rgba(8, 20, 39, 0.25);
}

.brand {
  color: white;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.brand span {
  color: var(--gold);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.nav a {
  color: #e5e7eb;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--gold);
}

.hero {
  padding: 86px 6% 72px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 34px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.20), transparent 65%);
  top: -220px;
  left: -160px;
  z-index: -1;
}

.hero-card,
.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  line-height: 1;
  margin: 14px 0 22px;
  color: var(--navy);
  letter-spacing: -0.055em;
}

.hero p,
.card p,
.service-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.06rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--soft-gold));
}

.note {
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  border-left: 5px solid var(--gold);
  padding: 20px;
  border-radius: 18px;
  color: #334155;
  line-height: 1.7;
  margin-top: 20px;
}

.hero-img-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-card img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15,23,42,0.16);
}

.btn.primary {
  background: linear-gradient(135deg, var(--navy), #1e293b);
  color: white;
}

.btn.gold {
  background: linear-gradient(135deg, var(--gold), #f7d56a);
  color: var(--navy);
}

.btn.secondary {
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  border-color: rgba(15,23,42,0.14);
}

.section {
  padding: 68px 6%;
}

.section-head {
  max-width: 900px;
  margin-bottom: 30px;
}

.section h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.1;
  margin: 10px 0;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15,23,42,0.08);
  border-left: 6px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.card:hover,
.photo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card h3,
.card h3 {
  font-size: 1.45rem;
  color: var(--navy);
  margin-top: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.pill {
  background: linear-gradient(135deg, #fef3c7, #e2e8f0);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 900;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.photo-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.photo-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.photo-card div {
  padding: 18px;
}

.photo-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.highlight-section {
  margin: 40px 6%;
  padding: 44px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.22), transparent 35%),
    linear-gradient(135deg, #081427, #111827 60%, #1e293b);
  color: white;
  box-shadow: var(--shadow);
}

.highlight-section h2,
.highlight-section p {
  color: white;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.stat {
  background: rgba(255,255,255,0.95);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--gold);
}

.stat span {
  color: var(--navy);
  font-weight: 800;
}

.footer {
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.14), transparent 32%),
    linear-gradient(135deg, #081427, #111827);
  color: #cbd5e1;
  padding: 48px 6% 24px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer h3,
.footer h4 {
  color: white;
}

.footer a {
  display: block;
  color: #cbd5e1;
  margin: 9px 0;
  font-weight: 700;
}

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  margin-top: 28px;
  padding-top: 18px;
  color: #94a3b8;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-cta a {
  box-shadow: var(--shadow);
}

@media (max-width: 1000px) {
  .hero,
  .grid,
  .grid.two,
  .footer-grid,
  .photo-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 56px;
  }

  .floating-cta {
    position: static;
    padding: 0 6% 30px;
  }
}
