:root {
  --ink: #0D1117;
  --white: #FFFFFF;
  --gold: #C9943A;
  --gold-light: #E8C06A;
  --teal: #0B6E72;
  --teal-light: #128F94;
  --cream: #F9F5EE;
  --muted: #6B7280;
  --border: #E5DDD0;
  --section-dark: #0D1117;
  --section-mid: #0B2C35;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}

/* ─── PRINT ─── */
@media print {
  .no-print { display: none !important; }
  body { background: white; }
  .hero, .section-dark, .section-mid { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  section { page-break-inside: avoid; }
}

/* ─── PRINT BAR ─── */
.print-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--white);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.print-bar span { opacity: 0.6; }
.btn-print {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 7px 22px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-print:hover { background: var(--gold-light); }

/* ─── HERO ─── */
.hero {
  background: var(--section-dark);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(11,110,114,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,148,58,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 32px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  max-width: 800px;
  margin-bottom: 12px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-tagline {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  max-width: 560px;
  margin-top: 24px;
  line-height: 1.6;
}
.hero-divider {
  width: 64px; height: 2px;
  background: var(--gold);
  margin: 40px 0;
}
.hero-meta { display: flex; gap: 60px; flex-wrap: wrap; }
.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  display: block;
}

/* ─── SECTIONS ─── */
section { padding: 100px 80px; }
.section-dark { background: var(--section-dark); color: var(--white); }
.section-mid { background: var(--section-mid); color: var(--white); }
.section-light { background: var(--cream); color: var(--ink); }
.section-white { background: var(--white); color: var(--ink); }

.section-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-dark .section-label,
.section-mid .section-label { color: var(--gold); }
.section-light .section-label,
.section-white .section-label { color: var(--teal); }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-dark h2, .section-mid h2 { color: var(--white); }
.section-light h2, .section-white h2 { color: var(--ink); }

p.lead {
  font-size: 17px;
  line-height: 1.75;
  max-width: 680px;
  opacity: 0.85;
}

/* ─── MISSION / VISION ─── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}
.mv-card {
  background: rgba(255,255,255,0.04);
  padding: 48px 44px;
  border-top: 3px solid var(--gold);
}
.mv-card:last-child { border-top-color: var(--teal-light); }
.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.mv-card p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.72); }

/* ─── VALUES ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 60px;
}
.value-item { border-left: 3px solid var(--teal); padding-left: 20px; }
.value-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.value-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2px;
  margin-top: 60px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 44px 40px;
  transition: border-color 0.25s;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover { border-color: rgba(201,148,58,0.4); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  background: rgba(11,110,114,0.3);
  border: 1px solid var(--teal);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.service-card .service-tagline {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 11px;
}
.service-card .service-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Sub-service groups */
.sub-group { margin-top: 18px; }
.sub-group-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(201,148,58,0.25);
}
.sub-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sub-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.sub-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-size: 11px;
  top: 2px;
}
.sub-list li strong {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ─── SERVICE LINK ─── */
.service-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,148,58,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.service-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ─── ADVANTAGES ─── */
.advantages-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 60px;
  margin-top: 50px;
  max-width: 900px;
}
.advantage-item { display: flex; gap: 16px; align-items: flex-start; }
.adv-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  min-width: 40px;
  opacity: 0.7;
}
.adv-text h4 { font-weight: 600; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.adv-text p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}
.testimonial-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 10px; left: 28px;
  line-height: 1;
}
.testimonial-card p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  padding-top: 28px;
}
.testimonial-author {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 80px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-item label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.contact-item a, .contact-item span {
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  opacity: 0.85;
}
.contact-item a:hover { color: var(--gold-light); }
.contact-cta { display: flex; flex-direction: column; justify-content: center; }
.contact-cta h2 { font-size: clamp(28px, 3.5vw, 46px); line-height: 1.15; }
.contact-cta p { color: rgba(255,255,255,0.6); font-size: 16px; margin-top: 16px; max-width: 380px; line-height: 1.7; }

/* ─── SOCIAL ROW ─── */
.social-row {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.social-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 3px;
  transition: all 0.2s;
}
.social-link:hover { color: var(--gold); border-color: var(--gold); }

/* ─── LOCATIONS ─── */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.location-tag {
  font-size: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.location-tag:hover {
  color: var(--gold);
  border-color: rgba(201,148,58,0.5);
  background: rgba(201,148,58,0.08);
}

/* ─── FOOTER ─── */
footer {
  background: #060A0E;
  color: rgba(255,255,255,0.35);
  padding: 28px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.05em;
}
footer strong { color: rgba(255,255,255,0.6); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  section { padding: 60px 24px; }
  .hero { padding: 100px 24px 60px; }
  .mv-grid, .advantages-list, .contact-section { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 8px; text-align: center; padding: 24px; }
  .print-bar { padding: 10px 16px; }
  .contact-section { padding: 60px 24px; }
}
