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

:root {
  --ink: #0e0e0e;
  --ink-muted: #4a4a4a;
  --ink-faint: #8a8a8a;
  --gold: #b8963e;
  --gold-light: #d4af6a;
  --gold-pale: #f7f0e3;
  --cream: #faf8f4;
  --white: #ffffff;
  --rule: rgba(184,150,62,0.25);
  --rule-light: rgba(184,150,62,0.12);
  --shadow-soft: 0 4px 32px rgba(14,14,14,0.08);
  --shadow-card: 0 2px 20px rgba(14,14,14,0.06);
}

html { scroll-behavior: smooth; }

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

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-light);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-decoration: none;
}

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

.nav-links {
  display: flex; gap: 36px; list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5vw 80px 5vw;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}

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

.hero-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-muted);
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 14px 32px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }

.btn-ghost {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--gold); }

.btn-ghost::after { content: '→'; font-size: 16px; }

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.hero-right-bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(184,150,62,0.04) 60px,
      rgba(184,150,62,0.04) 61px
    );
}

.hero-right-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8% 80px 10%;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 40px;
}

.hero-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,62,0.15);
  padding: 28px 24px;
  transition: background 0.3s;
}

.hero-stat:hover { background: rgba(184,150,62,0.08); }

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(184,150,62,0.2);
  padding-top: 28px;
  line-height: 1.6;
}

/* PARTNERS TICKER */
.partners-bar {
  background: var(--white);
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.partners-label {
  position: absolute;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 5;
  background: var(--white);
  padding-right: 20px;
  white-space: nowrap;
}

.partners-label::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: var(--rule);
}

.partners-track-wrapper {
  padding-left: calc(5vw + 110px);
  overflow: hidden;
  position: relative;
}

.partners-tracks-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.partners-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.partners-track.top-track {
  animation: ticker-top 28s linear infinite;
}

.partners-track.bottom-track {
  animation: ticker-bottom 28s linear infinite;
  margin-left: -200px;
}

.partners-track:hover { animation-play-state: paused; }

@keyframes ticker-top {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ticker-bottom {
  0% { transform: translateX(200px); }
  100% { transform: translateX(-50%); }
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-right: 1px solid var(--rule-light);
  white-space: nowrap;
  cursor: default;
  transition: background 0.2s;
  position: relative;
}

.partner-item:hover { background: var(--gold-pale); }

.partner-item:hover .partner-tooltip {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.partner-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.partner-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.partner-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  z-index: 50;
}

.partner-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
}

/* SERVICES */
.section {
  padding: 100px 5vw;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: end;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}

.section-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.9;
  font-weight: 300;
  align-self: end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
}

.service-card {
  background: var(--cream);
  padding: 36px 28px;
  transition: background 0.25s, transform 0.2s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover { background: var(--white); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  font-size: 13px;
  color: var(--ink-faint);
  line-height: 1.75;
  font-weight: 300;
}

/* ABOUT */
.about-section {
  background: var(--ink);
  padding: 100px 5vw;
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-left .section-eyebrow { color: var(--gold-light); }
.about-left .section-eyebrow::before { background: var(--gold-light); }

.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}

.about-body {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 20px;
}

.owner-portrait {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(184,150,62,0.15);
  border: 1px solid rgba(184,150,62,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.owner-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.owner-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

/* NISM CERTS */
.nism-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(184,150,62,0.12);
  margin-top: 36px;
}

.nism-card {
  background: rgba(255,255,255,0.04);
  padding: 24px;
  transition: background 0.25s;
  border: 1px solid rgba(184,150,62,0.1);
}

.nism-card:hover { background: rgba(184,150,62,0.07); }

.nism-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.nism-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  background: rgba(184,150,62,0.12);
  border: 1px solid rgba(184,150,62,0.25);
  padding: 4px 10px;
  border-radius: 2px;
}

.nism-series {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.nism-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}

.nism-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
}

.nism-permits {
  margin-top: 10px;
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.nism-permits::before {
  content: '◆';
  font-size: 7px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* WHY US */
.why-section {
  padding: 100px 5vw;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.why-card {
  border-top: 2px solid var(--rule);
  padding-top: 32px;
}

.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 1px var(--gold-light);
}

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* CTA */
.cta-section {
  background: var(--gold-pale);
  padding: 100px 5vw;
  text-align: center;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 20px;
}

.cta-title em { font-style: italic; color: var(--gold); }

.cta-sub {
  font-size: 14px;
  color: var(--ink-muted);
  max-width: 440px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 64px 5vw 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

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

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
}

.footer-heading {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links { list-style: none; }

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
}

/* Decorative line */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
  opacity: 0.4;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .section-header { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .nism-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}