:root {
  --bg: #0A0A0B;
  --bg-alt: #0E0E11;
  --text: #EDEAE3;
  --muted: #8A8780;
  --body: #B5B2AB;
  --gold: #D9A441;
  --border: rgba(255, 255, 255, 0.08);
  --sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --serif: "Instrument Serif", ui-serif, Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }
.muted { color: var(--muted); }
.italic { font-style: italic; }

h1, h2, h3 { font-weight: 400; }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow.muted { color: var(--muted); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(217, 164, 65, 0.3);
  background: rgba(217, 164, 65, 0.05);
  padding: 6px 16px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn .icon { flex-shrink: 0; }
.btn-gold { background: var(--gold); color: #0A0A0B; }
.btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
}
.btn-outline:hover { border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.04); }
.btn-gold-outline {
  background: rgba(217, 164, 65, 0.05);
  color: var(--gold);
  border-color: rgba(217, 164, 65, 0.3);
}
.btn-gold-outline:hover { background: rgba(217, 164, 65, 0.12); border-color: rgba(217, 164, 65, 0.5); }
.view-all-wrap { margin-top: 48px; display: flex; justify-content: center; }

/* ===== Header ===== */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled,
#site-header.header-solid {
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  gap: 7px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.brand.small { font-size: 22px; }
.nav { display: flex; gap: 34px; font-size: 14px; font-weight: 500; }
.nav a { color: var(--muted); transition: color 0.2s ease; }
.nav a:hover { color: var(--text); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay-x {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #0A0A0B, rgba(10, 10, 11, 0.85), rgba(10, 10, 11, 0.4));
}
.hero-overlay-y {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #0A0A0B, rgba(0, 0, 0, 0), rgba(10, 10, 11, 0.6));
}
.gold-rule {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  z-index: 1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(217, 164, 65, 0.6), rgba(0, 0, 0, 0));
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding-top: 96px; padding-bottom: 96px; }
.hero-content h1 {
  margin-top: 32px;
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1.05;
  color: var(--text);
}
.hero-sub { margin-top: 32px; max-width: 600px; font-size: 20px; color: var(--body); }
.hero-lead { margin-top: 20px; max-width: 620px; font-size: 18px; color: var(--body); }
.hero-actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted);
}

/* ===== Philosophy (approach) ===== */
.approach {
  position: relative;
  padding: 128px 0;
  background: var(--bg);
}
.approach-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}
.approach-visual { position: relative; }
.approach-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
}
.approach-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stat-badge {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--bg);
  border: 1px solid rgba(217, 164, 65, 0.2);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.stat-title { font-family: var(--serif); font-size: 30px; line-height: 1; }
.stat-sub { font-family: var(--serif); font-size: 24px; line-height: 1.1; color: var(--text); }
.stat-note {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.approach-text h2 {
  margin-top: 16px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1.15;
}
.approach-text p.body { margin-bottom: 18px; color: var(--body); font-size: 18px; }
.approach-text p.body.strong { color: var(--text); }

/* ===== Comparison ===== */
.comparison {
  padding: 128px 0;
  background: var(--bg-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.comparison-head { max-width: 672px; }
.comparison-head h2 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1.15;
}
.comparison-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.compare-lead {
  margin-top: 16px;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
  color: var(--text);
}
.compare-lead.muted { color: var(--muted); }
.compare-card {
  border-radius: 16px;
  border: 1px solid rgba(217, 164, 65, 0.2);
  background: rgba(217, 164, 65, 0.04);
  padding: 40px;
}
.comparison-note {
  margin-top: 48px;
  max-width: 768px;
  font-size: 18px;
  line-height: 1.625;
  color: var(--body);
}

/* Comparison lists — icon-in-circle markers */
.cmp-list { list-style: none; margin-top: 24px; }
.cmp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--body);
}
.cmp-list li:last-child { margin-bottom: 0; }
.cmp-badge {
  flex: none;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
}
.cmp-badge--neg { background: rgba(255, 255, 255, 0.05); color: var(--muted); }
.cmp-badge--pos { background: rgba(217, 164, 65, 0.15); color: var(--gold); }

/* ===== Value / Your time belongs elsewhere ===== */
.value { padding: 128px 0; background: var(--bg); }
.value-head { max-width: 896px; margin-inline: auto; text-align: center; }
.value-head h2 {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1.15;
}
.value-body {
  margin-top: 24px;
  font-size: 18px;
  color: var(--body);
}
.goal-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
}
.goal-card { background: var(--bg); padding: 28px; text-align: left; }
.goal-text {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

/* ===== Services ===== */
.services { padding: 128px 0; background: var(--bg); }
.services-head { max-width: 672px; }
.services-head h2 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1.15;
}
.services-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: inherit;
  padding: 32px;
  transition: background 0.3s ease;
}
.service-card:hover { background: #131316; }
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--gold);
  background: rgba(217, 164, 65, 0.1);
  box-shadow: inset 0 0 0 1px rgba(217, 164, 65, 0.2);
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 10px;
}
.service-card p { color: var(--muted); font-size: 15px; }

/* ===== Contact ===== */
.contact { position: relative; padding: 128px 0; overflow: hidden; background: var(--bg); }
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.contact-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, #0A0A0B, rgba(10, 10, 11, 0.6)),
    linear-gradient(to right, #0A0A0B, rgba(10, 10, 11, 0.5), #0A0A0B);
}
.contact-content { position: relative; z-index: 2; max-width: 720px; text-align: center; margin-inline: auto; }
.contact-content h2 {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1.1;
}
.contact-sub { margin-top: 24px; font-size: 18px; color: var(--body); }
.contact-actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact-note {
  margin-top: 26px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== Footer ===== */
.site-footer { border-top: 1px solid rgba(255, 255, 255, 0.05); background: var(--bg); padding: 64px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .brand { font-size: 24px; }
.footer-tagline {
  margin-top: 16px;
  max-width: 20rem;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.footer-badge {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(217, 164, 65, 0.25);
  background: rgba(217, 164, 65, 0.05);
  padding: 8px 16px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}
.footer-badge svg { flex-shrink: 0; }
.footer-heading {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(138, 135, 128, 0.7);
}
.footer-links { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--body); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--text); }
.footer-phone {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.2s ease;
}
.footer-phone:hover { color: #E0B040; }
.footer-phone svg { flex-shrink: 0; }
.footer-address {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
}
.footer-address svg { margin-top: 2px; flex-shrink: 0; color: var(--muted); }
.footer-address address { font-style: normal; }
.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-bottom .disclaimer { margin-top: 8px; max-width: 768px; line-height: 1.6; color: rgba(138, 135, 128, 0.6); }

/* ===== Services page ===== */
.svc-hero {
  padding: 144px 0 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.svc-eyebrow { letter-spacing: 0.25em; }
.svc-hero h1 {
  margin-top: 20px;
  max-width: 768px;
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1.08;
  color: var(--text);
}
.svc-intro { margin-top: 20px; max-width: 672px; font-size: 18px; color: var(--body); }
.svc-hero-actions { margin-top: 32px; }

.svc-catalog { padding: 80px 0; background: var(--bg); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg);
  padding: 28px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.cat-card:hover { border-color: rgba(217, 164, 65, 0.2); background: #131316; }
.cat-head { display: flex; align-items: center; gap: 12px; }
.cat-num { font-family: var(--serif); font-size: 24px; font-style: italic; color: var(--gold); line-height: 1; }
.cat-rule { height: 1px; flex: 1; background: rgba(255, 255, 255, 0.1); }
.cat-title {
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}
.pill-list { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.pill-sm {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  font-size: 12px;
  color: var(--body);
}

/* ===== Responsive (matches Tailwind sm=640 / md=768 / lg=1024) ===== */

/* Below lg: stack two-column layouts, services drop to 2 columns, h1 -> 60px */
@media (max-width: 1023px) {
  .hero-content h1 { font-size: 60px; }
  .approach-grid { grid-template-columns: 1fr; gap: 56px; }
  .stat-badge { display: none; }
  .comparison-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Below md: hide inline nav (phone button stays) */
@media (max-width: 767px) {
  .nav { display: none; }
}

/* Below sm: single-column grids, smaller type, tighter section padding */
@media (max-width: 639px) {
  .approach, .comparison, .value, .services, .contact { padding: 96px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .goal-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .svc-hero { padding: 120px 0 48px; }
  .svc-hero h1 { font-size: 36px; }
  .svc-catalog { padding: 64px 0; }
  .hero-content h1 { font-size: 48px; }
  .hero-sub { font-size: 18px; }
  .approach-text h2,
  .comparison-head h2,
  .services-head h2,
  .value-head h2 { font-size: 36px; }
  .contact-content h2 { font-size: 36px; }
  .compare-lead { font-size: 22px; }
  .hero-actions .btn,
  .contact-actions .btn { flex: 1 1 auto; }
}
