/* =========================
   Base
   ========================= */

:root {
  --bg: #020617;
  --bg-light: #f1f5f9;
  --card: #ffffff;
  --accent: #1d4ed8;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.18);
  --transition: 0.2s ease-out;
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-light);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

/* =========================
   Header / Navigation
   ========================= */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.7);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

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

.logo img {
  height: 56px;
  width: auto;
}

/* Logo text: white & larger */
.logo-text {
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.logo-text strong {
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.logo-text span {
  font-size: 0.9rem;
  font-weight: 400;
}

/* Main nav */
nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.95rem;
}

nav a {
  position: relative;
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  font-weight: 500;
  padding-bottom: 0.1rem;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: #60a5fa;
  transition: width var(--transition);
}

nav a:hover {
  color: #ffffff;
}

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

.nav-cta {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #60a5fa;
  background: transparent;
  color: #e5e7eb;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: #60a5fa;
  color: #020617;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(96, 165, 250, 0.5);
}

/* =========================
   Hero (Home)
   ========================= */

.hero-shell {
  background: radial-gradient(circle at top left, #1f2937 0, #020617 45%, #020617 100%);
  color: #e5e7eb;
  border-radius: 0 0 32px 32px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.8);
  margin-bottom: 2.7rem;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.2rem 1.4rem 3.4rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.8fr);
  gap: 2.4rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.3rem, 3.3vw + 1rem, 3.1rem);
  line-height: 1.08;
  margin-bottom: 0.7rem;
}

.hero-title span {
  color: #bfdbfe;
}

.hero-subtitle {
  font-size: 1rem;
  color: #d1d5db;
  max-width: 32rem;
  margin-bottom: 1.7rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, #60a5fa, #1d4ed8);
  color: #020617;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.95);
  transition: transform var(--transition), box-shadow var(--transition),
    filter var(--transition);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 22px 55px rgba(37, 99, 235, 1);
}

/* Hero media + slideshow */

.hero-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  position: relative;
  box-shadow: var(--shadow-soft);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 290px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-caption {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  font-size: 0.8rem;
  color: #e5e7eb;
  text-shadow: 0 2px 6px rgba(15, 23, 42, 0.9);
}

.hero-dots {
  position: absolute;
  bottom: 0.9rem;
  right: 1rem;
  display: flex;
  gap: 0.3rem;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
}

.hero-dot.is-active {
  background: #ffffff;
}

/* =========================
   Sections & Cards
   ========================= */

main section {
  padding: 0 0 2.4rem;
}

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

.section-heading h1,
.section-heading h2 {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.section-heading p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 42rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  font-size: 0.96rem;
}

.card p + p {
  margin-top: 0.7rem;
}

/* Generic 2-column grid */

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

/* =========================
   About page layout
   ========================= */

.about-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 1.6rem;
  align-items: flex-start;
  margin-bottom: 2.1rem;
}

.about-headshot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-headshot img {
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
}

.my-story-heading {
  margin-top: 0.2rem;
}

/* =========================
   Contact form (in case you add one later)
   ========================= */

.contact-form {
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem;
  background: #020617;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.9);
  font-size: 0.9rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
  margin-bottom: 0.85rem;
}

.field label {
  font-size: 0.8rem;
  color: #cbd5f5;
}

.field input,
.field textarea {
  border-radius: 10px;
  border: 1px solid rgba(51, 65, 85, 0.95);
  padding: 0.6rem 0.75rem;
  font-size: 0.86rem;
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition),
    background var(--transition);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #64748b;
}

.field input:focus,
.field textarea:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.85);
  background: rgba(15, 23, 42, 0.99);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
  max-height: 260px;
}

.form-note {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}

/* =========================
   Pricing page
   ========================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.pricing-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.pricing-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
}

.pricing-title-row h3 {
  font-size: 1.02rem;
}

.pricing-amount {
  font-weight: 600;
  font-size: 0.94rem;
  color: #1d4ed8;
  white-space: nowrap;
}

.listing-sublist {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  list-style: none;
}

.listing-sublist li::before {
  content: "• ";
}

/* =========================
   Footer
   ========================= */

footer {
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

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

/* =========================
   Responsive tweaks
   ========================= */

/* Hero & grids */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-block: 2.6rem 3rem;
  }

  .hero-media {
    order: -1;
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-top {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .about-headshot {
    justify-content: flex-start;
  }

  .about-headshot img {
    max-width: 230px;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Mobile layout: header, nav, padding, typography */

@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  nav {
    flex-wrap: wrap;
    gap: 0.9rem;
    font-size: 0.82rem;
  }

  .nav-cta {
    align-self: stretch;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .page {
    padding: 0 1rem 2.4rem;
  }

  .card {
    padding: 1.1rem 1.2rem;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 1.5rem;
  }
}
