:root {
  --bg-dark: #03101d;
  --bg-mid: #11243c;
  --card: #0d1d31;
  --card-soft: #12263f;
  --text: #eef2f6;
  --muted: #bfc8d4;
  --gold: #caa25a;
  --gold-deep: #b78c45;
  --line: rgba(255,255,255,0.08);
  --shadow: 0 16px 40px rgba(0,0,0,0.28);
  --radius: 4px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin: 0;
  color: #fff;
}

p {
  margin: 0;
}

.py-90 { padding: 92px 0; }
.py-80 { padding: 80px 0; }
.py-70 { padding: 68px 0; }
.section-dark { background: var(--bg-dark); }
.section-midnight { background: var(--bg-mid); }
.gold { color: var(--gold); }

#mainNav {
  padding: 12px 0;
  transition: background-color .3s ease, box-shadow .3s ease;
}

#mainNav.scrolled {
  background: rgba(3, 16, 29, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.nav-shell {
  align-items: center;
}

.navbar-brand {
  text-decoration: none;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1;
  color: #fff;
  letter-spacing: .2px;
}

.nav-link {
  color: rgba(255,255,255,0.82);
  font-size: 0.84rem;
  padding: .5rem .35rem !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold);
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.theme-toggle,
.btn-request {
  border-radius: 999px;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(202, 162, 90, 0.5);
  background: rgba(255,255,255,0.04);
  color: var(--gold);
}

.btn-request {
  background: linear-gradient(180deg, #d1aa68, #ba8b3b);
  border: 0;
  color: #0c1420;
  font-weight: 600;
  font-size: .82rem;
  padding: .72rem 1.2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

.btn-request:hover {
  color: #0c1420;
  background: linear-gradient(180deg, #dbb77a, #c49341);
}

.hero-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-image,
.hero-overlay,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(3,16,29,.62), rgba(3,16,29,.78));
}

.hero-vignette {
  background: radial-gradient(circle at center, rgba(0,0,0,0.08), rgba(0,0,0,0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: .95;
  font-weight: 600;
  letter-spacing: -.02em;
}

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

.hero-subtitle {
  max-width: 690px;
  margin-top: 22px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
}

.hero-tags {
  margin-top: 30px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .62rem 1rem;
  border-radius: 999px;
  font-size: .78rem;
  color: #fff;
  border: 1px solid rgba(202, 162, 90, 0.45);
  background: rgba(7, 18, 32, 0.68);
  backdrop-filter: blur(8px);
}

.service-tag i {
  color: var(--gold);
}

.section-heading {
  margin: 0 auto 42px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  margin-bottom: 8px;
}

.section-heading p {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.85;
}

.info-card,
.reason-card,
.testimonial-card,
.contact-mini-card,
.contact-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16,31,50,.95), rgba(10,22,37,.98));
  box-shadow: var(--shadow);
}

.info-card {
  overflow: hidden;
  height: 100%;
  border-radius: var(--radius);
}

.card-media {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.card-media.wide {
  height: 188px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.info-card:hover .card-media img {
  transform: scale(1.05);
}

.card-copy {
  padding: 16px 16px 18px;
}

.card-copy h3,
.reason-card h3,
.process-title {
  font-size: 1.42rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-copy p,
.reason-card p,
.testimonial-card p,
.process-copy {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.8;
}

.mini-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 13, 23, 0.85);
  border: 1px solid rgba(202, 162, 90, 0.45);
  color: var(--gold);
  font-size: .82rem;
}

.mini-badge.static {
  position: static;
  flex: 0 0 28px;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.reason-card {
  padding: 28px 18px;
  border-radius: var(--radius);
}

.reason-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(202, 162, 90, 0.48);
  background: rgba(202, 162, 90, 0.06);
  margin-bottom: 18px;
}

.testimonial-card {
  padding: 26px 22px;
  border-radius: var(--radius);
  height: 100%;
}

.quote-mark {
  color: var(--gold);
  opacity: .85;
  font-size: 1.25rem;
  display: inline-block;
  margin-bottom: 10px;
}

.testimonial-meta {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-meta strong {
  font-size: .82rem;
  color: #fff;
}

.testimonial-meta span {
  font-size: .72rem;
  color: #9ca8b6;
}

.process-row {
  max-width: 980px;
  margin: 0 auto;
}

.contact-mini-row {
  max-width: 950px;
  margin: 0 auto 22px;
}

.contact-mini-card {
  min-height: 74px;
  padding: 16px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
}

.contact-mini-card i {
  color: var(--gold);
}

.contact-mini-card span {
  font-size: .77rem;
  line-height: 1.55;
  word-break: break-word;
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
  border-radius: var(--radius);
}

.form-control {
  border-radius: 3px;
  min-height: 46px;
  background: #081625;
  border: 1px solid rgba(255,255,255,0.09);
  color: #fff;
  font-size: .9rem;
}

textarea.form-control {
  min-height: 132px;
}

.form-control::placeholder {
  color: #97a4b6;
}

.form-control:focus {
  background: #081625;
  color: #fff;
  border-color: rgba(202, 162, 90, 0.75);
  box-shadow: 0 0 0 .2rem rgba(202, 162, 90, 0.12);
}

.small-line {
  font-size: .82rem !important;
}

.site-footer {
  background: #d8dadd;
  color: #59616b;
  padding: 26px 0 24px;
}

.footer-brand {
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.footer-copy {
  font-size: .8rem;
  margin-bottom: 4px;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  color: #7b838c;
  font-size: .92rem;
}

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

body.light-mode {
  --bg-dark: #f4f6f8;
  --bg-mid: #ffffff;
  --card: #ffffff;
  --card-soft: #fff;
  --text: #1f2937;
  --muted: #5b6470;
  --line: rgba(15, 23, 42, 0.1);
  background: #f4f6f8;
}

body.light-mode #mainNav.scrolled {
  background: rgba(255,255,255,0.92);
}

body.light-mode .brand-text,
body.light-mode .nav-link,
body.light-mode .section-heading h2,
body.light-mode .hero-title,
body.light-mode .card-copy h3,
body.light-mode .reason-card h3,
body.light-mode .process-title,
body.light-mode .testimonial-meta strong {
  color: #1f2937;
}

body.light-mode .navbar-toggler-icon {
  filter: none;
}

body.light-mode .theme-toggle {
  background: #fff;
}

body.light-mode .hero-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.68));
}

body.light-mode .hero-vignette {
  background: radial-gradient(circle at center, rgba(255,255,255,0.05), rgba(255,255,255,0.2));
}

body.light-mode .hero-subtitle,
body.light-mode .service-tag,
body.light-mode .contact-mini-card,
body.light-mode .card-copy p,
body.light-mode .reason-card p,
body.light-mode .testimonial-card p,
body.light-mode .process-copy,
body.light-mode .section-heading p,
body.light-mode .testimonial-meta span {
  color: #4b5563;
}

body.light-mode .service-tag {
  background: rgba(255,255,255,0.78);
}

body.light-mode .info-card,
body.light-mode .reason-card,
body.light-mode .testimonial-card,
body.light-mode .contact-mini-card,
body.light-mode .contact-form {
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,23,42,0.08);
}

body.light-mode .form-control {
  background: #fff;
  color: #1f2937;
}

body.light-mode .form-control:focus {
  background: #fff;
  color: #1f2937;
}

@media (max-width: 991.98px) {
  #navbarNav {
    margin-top: 10px;
    background: rgba(3,16,29,.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 6px 14px;
  }

  body.light-mode #navbarNav {
    background: rgba(255,255,255,.98);
  }

  .hero-section {
    min-height: 640px;
  }
}

@media (max-width: 767.98px) {
  .py-90 { padding: 72px 0; }
  .py-80 { padding: 68px 0; }
  .py-70 { padding: 58px 0; }

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

  .hero-content {
    padding-top: 84px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: .95rem;
  }

  .card-media,
  .card-media.wide {
    height: 200px;
  }

  .contact-form {
    padding: 20px;
  }
}
