:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fc;
  --surface: #ffffff;
  --text: #101828;
  --muted: #5f6c7b;
  --line: #e6e8ef;
  --primary: #16233b;
  --accent: #c9a96a;
  --shadow: 0 20px 60px rgba(16, 24, 40, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  background: var(--primary);
  color: #fff;
  font-size: 0.92rem;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.topbar p {
  margin: 0;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 232, 239, 0.85);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #22365b);
  color: #fff;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
}

.brand-text {
  font-size: 1.02rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

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

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(201, 169, 106, 0.14), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-tag,
.card-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1,
.section-heading h2,
.info-panel h2,
.summary-card h2,
.footer h3 {
  margin: 0 0 1rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  max-width: 10ch;
}

.hero-text {
  font-size: 1.15rem;
  max-width: 42rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.hero-card-inner {
  width: min(100%, 420px);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(230,232,239,0.9);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card-inner ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-card-inner li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.hero-card-inner li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.hero-shape-1 {
  width: 220px;
  height: 220px;
  background: rgba(201, 169, 106, 0.08);
  top: 80px;
  right: -40px;
}

.hero-shape-2 {
  width: 180px;
  height: 180px;
  background: rgba(22, 35, 59, 0.06);
  bottom: 20px;
  left: -50px;
}

.section {
  padding: 4.75rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.info-panel p,
.summary-card p,
.footer p,
.service-card p {
  color: var(--muted);
  margin: 0;
}

.overview {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card,
.info-panel,
.summary-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 1.6rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(22,35,59,0.08), rgba(201,169,106,0.16));
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}

.info-panel {
  padding: 2rem;
}

.summary-card {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.summary-list {
  display: grid;
  gap: 1rem;
}

.summary-list div {
  display: grid;
  gap: 0.35rem;
}

.summary-list strong {
  color: var(--primary);
}

.footer {
  background: var(--primary);
  color: #fff;
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer p {
  color: rgba(255,255,255,0.85);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .service-grid,
  .info-grid,
  .summary-card,
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

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

  .summary-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .service-grid,
  .info-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .topbar-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-card-inner,
  .service-card,
  .info-panel,
  .summary-card {
    padding: 1.35rem;
  }

  .btn {
    width: 100%;
  }
}
