:root {
  --bg-deep: #0f1923;
  --bg-card: #162231;
  --bg-warm: #1a1410;
  --fg-primary: #f4efe8;
  --fg-secondary: #a8a096;
  --fg-muted: #6b6560;
  --accent-gold: #c8a45e;
  --accent-gold-light: #dfc07a;
  --accent-warm: #e8c87a;
  --border-subtle: rgba(200, 164, 94, 0.15);
  --border-light: rgba(244, 239, 232, 0.08);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --max-width: 1140px;
  --section-pad: clamp(4rem, 8vw, 7rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--bg-deep) 0%, #11181f 40%, var(--bg-warm) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(200, 164, 94, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  width: fit-content;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg-primary);
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--fg-secondary);
  max-width: 48ch;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.hero-stat h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--accent-gold);
  font-weight: 400;
}

.hero-stat p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ---- SERVICES ---- */
.services {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg-primary);
  max-width: 20ch;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.25rem;
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: var(--border-subtle);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(200, 164, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--fg-primary);
}

.service-card p {
  color: var(--fg-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---- ADVANTAGE ---- */
.advantage {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #131c26 100%);
}

.advantage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.advantage-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.advantage-list li {
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent-gold);
}

.advantage-list li h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--fg-primary);
  margin-bottom: 0.35rem;
}

.advantage-list li p {
  color: var(--fg-secondary);
  font-size: 0.9rem;
}

.advantage-right {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
}

.advantage-right .carriers-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.carriers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.carrier {
  padding: 0.85rem 1rem;
  background: rgba(244, 239, 232, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-secondary);
  text-align: center;
}

.carriers-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ---- ABOUT ---- */
.about {
  padding: var(--section-pad) 0;
  background: var(--bg-warm);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.about-intro {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--fg-primary);
  font-weight: 400;
  line-height: 1.5;
  font-style: italic;
}

.about-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-detail p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-detail .location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-gold);
  width: fit-content;
}

/* ---- CLOSING ---- */
.closing {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-deep) 100%);
  text-align: center;
}

.closing-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg-primary);
  max-width: 22ch;
  margin: 0 auto 1.5rem;
}

.closing-sub {
  color: var(--fg-secondary);
  font-size: 1rem;
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---- FOOTER ---- */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-light);
  background: var(--bg-deep);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fg-primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.footer-contact a {
  color: var(--accent-gold);
  text-decoration: none;
}

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

.footer-areas {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .advantage-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .carriers-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { align-items: flex-start; }
}