:root {
  --bg: #050509;
  --bg-soft: #0b0b10;
  --text: #f9fafb;
  --muted: #9ca3af;
  --gold: #facc15;
  --gold-soft: #fbbf24;
  --border-subtle: rgba(249, 250, 251, 0.06);
  --sidebar-width: 260px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Mobile nav toggle: hidden by default (desktop) */
.mobile-nav-toggle {
  display: none;
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: #000000;
  border-right: 1px solid var(--border-subtle);
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 40;
}

.brand {
  padding: 0;
  border: none;
  display: inline-block;
}

.brand-logo {
  width: 160px;       /* adjust if needed */
  height: auto;
  display: block;
}

.sidebar-nav {
  margin-top: 40px;
  list-style: none;
}

.sidebar-nav li {
  margin-bottom: 16px;
}

.sidebar-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.2);
  transition: color 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
}

.sidebar-nav a span.arrow {
  font-size: 10px;
  opacity: 0.7;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--gold);
  border-color: var(--gold-soft);
  padding-left: 4px;
}

.sidebar-footer {
  font-size: 11px;
  color: var(--muted);
}

.sidebar-footer .social {
  margin: 12px 0 8px;
  display: flex;
  gap: 10px;
}

.sidebar-footer .social a {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(156, 163, 175, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  background: transparent;
}

.sidebar-footer .social a:hover {
  border-color: var(--gold-soft);
  background: rgba(250, 204, 21, 0.06);
}

.social-icon {
  width: 14px;
  height: 14px;
  display: block;
}

/* Main Content */
.main {
  margin-left: var(--sidebar-width);
  width: calc(100% - var(--sidebar-width));
  min-height: 100vh;
  background: radial-gradient(circle at top, #111827, #020617 55%);
}

/* Sections */
.section {
  padding: 72px 7vw;
  max-width: 1900px;
  margin: 0 auto;
  min-height: 600px;
}

/* Alternating background helpers */
.section.bg-dark {
  background: #0b0b10;
}

.section.bg-darker {
  background: #020617;
}

/* Optional background-image helpers */
.section.has-bg-image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section.has-bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9); /* 80% black overlay */
  z-index: 0;
}

.section.has-bg-image > * {
  position: relative;
  z-index: 1;
}

/* Section header */
.section-header {
  margin-bottom: 32px;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-subtitle {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

/* Hero */
.hero {
  min-height: 100vh;
  padding-top: 96px;
  padding-bottom: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: url('/images/hero-onyeisi.png'); /* adjust path as needed */
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0,0,0,0.15), rgba(0,0,0,0.75));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 720px;
}

.hero-copy small {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero-title {
  margin-top: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-sub {
  margin-top: 10px;
  font-size: 15px;
  color: var(--muted);
  max-width: 420px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #111827;
  border-color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(248, 250, 252, 0.12);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  background: rgba(15, 23, 42, 0.8);
}

.hero-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
}

.about-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
}

.about-highlight {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(250, 204, 21, 0.6);
  font-size: 12px;
  color: var(--gold-soft);
}

.about-meta {
  font-size: 13px;
  color: var(--muted);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  padding: 16px 14px;
  background: radial-gradient(circle at top, rgba(15,23,42,0.9), rgba(15,23,42,0.6));
}

.about-meta strong {
  color: var(--gold-soft);
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  border-radius: 18px;
  padding: 16px 14px;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(15,23,42,0.9), rgba(15,23,42,0.7));
  font-size: 13px;
}

.step-number {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 4px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.step-body {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.process-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

/* Measurements */
.measure-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.measure-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.measure-pill {
  margin-top: 8px;
  font-size: 12px;
  color: var(--gold-soft);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px dashed rgba(250, 204, 21, 0.6);
  display: inline-block;
}

.measure-card {
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  padding: 18px 16px;
  font-size: 13px;
  color: var(--muted);
  background: radial-gradient(circle at top right, rgba(15,23,42,0.9), rgba(15,23,42,0.6));
}

.measure-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

/* Booking */
.booking-wrapper {
  border-radius: 22px;
  border: 1px solid var(--border-subtle);
  padding: 18px 16px;
  background: radial-gradient(circle at top, rgba(15,23,42,0.95), rgba(15,23,42,0.7));
}

.booking-text {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--muted);
}

.calendly-inline-widget {
  min-width: 280px;
  height: 540px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
}

form {
  display: grid;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.form-field label {
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  background: #020617;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 10px 13px;
  font-size: 13px;
  color: var(--text);
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-field textarea {
  border-radius: 16px;
  min-height: 110px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.5);
  background: #020617;
}

.form-helper {
  font-size: 11px;
  color: var(--muted);
}

/* Honeypot */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
  pointer-events: none;
}

.contact-meta {
  font-size: 13px;
  color: var(--muted);
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  padding: 16px 14px;
  background: radial-gradient(circle at bottom, rgba(15,23,42,0.95), rgba(15,23,42,0.7));
}

.contact-meta strong {
  color: var(--gold-soft);
}

.footer {
  margin-top: 18px;
  font-size: 11px;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 960px) {
  :root {
    --sidebar-width: 0px;
  }

  body {
    display: block;
  }

  .sidebar {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #000000;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .sidebar-nav {
    display: none;
  }

  .sidebar-footer {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 16px;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
  }

  .sidebar.open .sidebar-nav {
    display: block;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #000000;
    padding: 12px 16px 14px;
  }

  .sidebar.open .sidebar-nav li {
    margin-bottom: 10px;
  }

  .main {
    margin-left: 0;
    width: 100%;
    padding-top: 64px;
  }

  .hero-inner,
  .about-grid,
  .process-steps,
  .measure-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 60px 18px;
    min-height: 400px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: 0.16em;
  }

  .hero-sub {
    max-width: none;
  }
}
/* Reduce the Clara chat title font size */
.n8n-chat-header-title {
  font-size: 10px !important;
  line-height: 1.2 !important;
}

/* Optional: shrink subtitle too */
.n8n-chat-header-subtitle {
  font-size: 10px !important;
  opacity: 0.85;
}

/* Change the floating chat button to gold */
.chat-window-wrapper .chat-window-toggle {
  background-color: #d4af37 !important;   /* Gold */
  border-color: #d4af37 !important;
}

/* Optional: gold hover state */
.n8n-chat-button:hover {
  background-color: #c19a2f !important;
  border-color: #c19a2f !important;
}
