:root {
  --bg: #050609;
  --bg-alt: #0c1016;
  --accent: #ff7a3c;
  --accent-soft: rgba(255, 122, 60, 0.2);
  --accent-2: #21c4ff;
  --text-main: #f5f7fb;
  --text-muted: #a8afc3;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-lg: 1.4rem;
  --radius-md: 0.9rem;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.75);
  --max-width: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151a24, #050609 55%);
  color: var(--text-main);
  line-height: 1.6;
}

/* Layout */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, rgba(33, 196, 255, 0.06), rgba(5, 6, 9, 0.98));
}

/* Header & Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 6, 9, 0.96);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text-main);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: conic-gradient(from 130deg, var(--accent), var(--accent-2), #f9f871, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(255, 122, 60, 0.7);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.2s ease-out;
}

.nav-link:hover::after,
.nav-link-active::after {
  width: 100%;
}

.nav-link-active {
  color: var(--text-main);
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  background: rgba(12, 16, 22, 0.9);
}

/* Hero */

.hero {
  padding: 3.2rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 2.3rem;
  align-items: center;
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  }
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  margin-bottom: 0.7rem;
}

.hero-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2rem, 3.1vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.7rem;
}

.highlight {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-note-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f9f871;
  box-shadow: 0 0 10px rgba(249, 248, 113, 0.9);
}

/* Hero photo */

.hero-photo-wrap {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}

.hero-photo {
  width: 100%;
  border-radius: 1.6rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  display: block;
  object-fit: cover;
}

.hero-photo-tag {
  position: absolute;
  left: 50%;
  bottom: -0.8rem;
  transform: translateX(-50%);
  background: rgba(5, 6, 9, 0.96);
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  max-width: 95%;
}

.tag-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
}

.tag-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.15s ease,
    border-color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #050609;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.9);
}

.btn-ghost {
  border-color: var(--border-subtle);
  background: rgba(7, 9, 13, 0.96);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(12, 16, 22, 0.98);
}

.btn-secondary {
  background: rgba(7, 9, 13, 0.96);
  border-color: var(--accent-soft);
  color: var(--text-main);
}

.btn-secondary:hover {
  border-color: var(--accent);
}

.btn-block {
  width: 100%;
}

/* Sections & Typography */

.section-header {
  margin-bottom: 1.8rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  margin-bottom: 0.3rem;
}

.section-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 40rem;
}

/* Pill row (who it's for) */

.pill-row {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 780px) {
  .pill-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pill-card {
  background: rgba(7, 10, 15, 0.96);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 1rem 0.9rem;
}

.pill-title {
  font-size: 0.98rem;
  margin: 0 0 0.4rem;
}

.pill-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Focus list */

.focus-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .focus-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.focus-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.focus-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: baseline;
}

.focus-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-top: 0.28rem;
}

/* Session card */

.session-card {
  background: rgba(7, 9, 13, 0.98);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.88rem;
}

.session-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  margin-bottom: 0.3rem;
}

.session-title {
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
}

.session-steps {
  padding-left: 1.1rem;
  margin: 0 0 0.7rem;
  color: var(--text-muted);
}

.session-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

/* Contact */

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

input,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.8rem;
  border: 1px solid var(--border-subtle);
  background: rgba(5, 7, 11, 0.98);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 1px rgba(33, 196, 255, 0.4);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  background: rgba(7, 9, 13, 0.98);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-subtle);
  padding: 1.3rem 1.1rem;
  font-size: 0.88rem;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-block {
  margin-top: 0.75rem;
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  margin-bottom: 0.15rem;
}

.contact-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.contact-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Services page */

.service-grid {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  background: rgba(7, 9, 13, 0.98);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.3rem 1.2rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: var(--shadow-soft);
}

.service-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
}

.service-title {
  font-size: 1.1rem;
  margin: 0;
}

.service-duration {
  font-size: 0.9rem;
}

.service-price {
  color: var(--accent);
  font-weight: 600;
}

.service-body {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.service-list {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  margin: 0 0 0.7rem;
}

.service-notes {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-notes h2 {
  font-size: 1rem;
}

/* Gallery */

.gallery-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  background: #050609;
}

.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
  transition: transform 0.3s ease-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1.2rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: rgba(5, 6, 9, 0.98);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
}

.footer-nav a:hover {
  color: var(--accent-2);
}

/* Responsive tweaks */

@media (max-width: 640px) {
  .main-nav {
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .brand-name {
    font-size: 0.9rem;
  }
}
