/* ==================== THEME TOKENS ==================== */
:root {
  --bg-primary: #0c0f14;
  --bg-secondary: #141820;
  --bg-card: #1a1f2b;
  --bg-card-hover: #212838;
  --fg-primary: #f0ece4;
  --fg-secondary: #9a958c;
  --fg-muted: #5e5a53;
  --accent: #d4a34a;
  --accent-glow: rgba(212, 163, 74, 0.15);
  --accent-subtle: #b8892e;
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ==================== RESET & BASE ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ==================== SHARED COMPONENTS ==================== */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212,163,74,0.3);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--fg-primary);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  max-width: 480px;
  line-height: 1.7;
}
.section-header.center .section-sub { margin: 0 auto; }

/* Buttons */
.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: #e0b65e; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--fg-secondary);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-ghost:hover { color: var(--fg-primary); border-color: rgba(255,255,255,0.25); transform: translateY(-1px); }

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212,163,74,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(212,163,74,0.04) 0%, transparent 50%),
    var(--bg-primary);
}

.hero-monogram {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.12;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -4px;
  user-select: none;
  pointer-events: none;
}

.hero-inner {
  max-width: 720px;
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 0.95;
  color: var(--fg-primary);
  margin-bottom: 28px;
}

.lede {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--fg-muted);
  opacity: 0.5;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ==================== SERVICES ==================== */
.services {
  padding: 120px 24px;
  background: var(--bg-secondary);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--bg-card);
  padding: 44px 40px;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  background: var(--bg-card-hover);
}

.service-icon {
  color: var(--accent);
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg-primary);
  letter-spacing: -0.3px;
}

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

/* ==================== ABOUT ==================== */
.about {
  padding: 120px 24px;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-lede {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-card {
  background: var(--bg-card);
  border-left: 2px solid var(--accent);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.3s ease;
}
.about-card:hover { background: var(--bg-card-hover); }

.about-card-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.about-card-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg-primary);
  letter-spacing: -0.3px;
}

/* ==================== SOCIAL PROOF / EXPERIENCES ==================== */
.social-proof {
  padding: 120px 24px;
  background: var(--bg-secondary);
}

.social-proof-inner {
  max-width: 900px;
  margin: 0 auto;
}

.experiences-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.experience-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.experience-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.experience-mark {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 4px;
  opacity: 0.8;
}

.experience-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 8px;
}

.experience-desc {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==================== CLOSING / CONTACT FORM ==================== */
.closing {
  padding: 120px 24px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,163,74,0.06) 0%, transparent 60%),
    var(--bg-primary);
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.closing-monogram {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--fg-primary);
  margin-bottom: 16px;
}

.closing > .closing-inner > p {
  color: var(--fg-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 56px;
}

/* Form */
.inquiry-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--fg-secondary);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--fg-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(212,163,74,0.5);
  background: var(--bg-card-hover);
}

.form-group select {
  color: var(--fg-secondary);
  cursor: pointer;
}
.form-group select option { background: var(--bg-card); color: var(--fg-primary); }

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 16px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: -4px;
}

/* ==================== FOOTER ==================== */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  justify-self: center;
}

.footer-links {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-secondary);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--accent); }

.footer-base {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .footer-tagline { justify-self: center; }
  .footer-links { justify-content: center; }
  .footer-base { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 100px 20px 60px; }
  .services, .about, .social-proof, .closing { padding: 80px 20px; }
  .service-card { padding: 32px 28px; }
  .hero h1 { letter-spacing: -1px; }
}