
:root {
  --bg: #050608;
  --bg-alt: #0b0d12;
  --card-bg: #101219;
  --accent: #f9c74f;
  --accent-soft: rgba(249, 199, 79, 0.15);
  --text-main: #f7f7ff;
  --text-muted: #a0a4b8;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --danger: #ff6b6b;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #171821 0, #050608 55%);
  color: var(--text-main);
}

body {
  min-height: 100vh;
}

/* Layout */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 7vw;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.95), rgba(5, 6, 8, 0.4));
  border-bottom: 1px solid var(--border-subtle);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffe29f, #ffb347, #f9c74f 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1b1b1f;
  box-shadow: 0 0 18px rgba(249, 199, 79, 0.6);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.brand-sub {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.15rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f9c74f, #ffb347);
  transition: width 0.18s ease-out;
}

.nav a:hover {
  color: var(--text-main);
}

.nav a:hover::after {
  width: 100%;
}

/* Hero */

.hero {
  padding: 4.5rem 7vw 3rem;
}

.hero-content {
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  margin-bottom: 1rem;
}

.hero p {
  color: var(--text-muted);
  max-width: 540px;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Sections */

.section {
  padding: 3.5rem 7vw;
}

.section.alt {
  background: radial-gradient(circle at top, #151623 0, #050608 60%);
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.section-heading p {
  color: var(--text-muted);
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.card {
  background: linear-gradient(145deg, rgba(12, 14, 20, 0.96), rgba(6, 7, 12, 0.96));
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 1.6rem 1.6rem 1.9rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(249, 199, 79, 0.12), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0.4rem 0 0.8rem;
}

.price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 0.25rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card ul li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.card ul li::before {
  content: "⟡";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.6rem;
  top: 0.25rem;
}

.badge {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(249, 199, 79, 0.6);
}

.card.recommended {
  border-color: rgba(249, 199, 79, 0.9);
}

.card.premium {
  box-shadow: 0 0 32px rgba(249, 199, 79, 0.6);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.65rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out;
}

.btn.primary {
  background: linear-gradient(90deg, #f9c74f, #ffb347);
  color: #22160b;
  box-shadow: 0 10px 25px rgba(249, 199, 79, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(249, 199, 79, 0.5);
}

.btn.ghost {
  border-color: var(--border-subtle);
  color: var(--text-main);
  background: rgba(10, 11, 18, 0.9);
}

.btn.ghost:hover {
  border-color: rgba(249, 199, 79, 0.9);
}

.btn.full {
  width: 100%;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 1.6rem;
}

.contact-card {
  background: linear-gradient(145deg, rgba(12, 14, 20, 0.98), rgba(5, 6, 10, 0.98));
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.intake-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

input,
select,
textarea {
  border-radius: 0.75rem;
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 0.7rem;
  background: rgba(5, 6, 8, 0.85);
  color: var(--text-main);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(249, 199, 79, 0.85);
  box-shadow: 0 0 0 1px rgba(249, 199, 79, 0.45);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-list li {
  margin-bottom: 0.35rem;
}

/* Footer */

.site-footer {
  padding: 2rem 7vw 2.5rem;
  border-top: 1px solid var(--border-subtle);
  background: #050608;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-small {
  margin-top: 0.3rem;
  font-size: 0.75rem;
}

/* Responsive */

@media (max-width: 800px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.logo-image{height:48px;width:auto;display:block;}


/* Intake status messaging */
.intake-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #f5d77a; /* soft gold to match theme */
}

.intake-status.error {
  color: #ff8a8a;
}
