:root {
  --bg: #0f1419;
  --bg-elevated: #1a222c;
  --surface: #232d3a;
  --text: #e8ecf1;
  --text-muted: #9aa5b5;
  --accent: #e8a54b;
  --accent-soft: rgba(232, 165, 75, 0.15);
  --accent-glow: rgba(232, 165, 75, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Source Sans 3", Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --space: clamp(1rem, 4vw, 2rem);
  --max: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space);
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg) !important;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

code {
  font-size: 0.9em;
  padding: 0.15em 0.4em;
  background: var(--surface);
  border-radius: 4px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--space);
  background: rgba(15, 20, 25, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.logo:hover .logo-text {
  color: inherit;
}

.logo-img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.logo-footer .logo-img {
  width: 36px;
  height: 36px;
}

.logo-text {
  color: var(--text);
}

.logo-dot {
  color: var(--accent);
}

.logo-footer {
  justify-content: center;
  margin-bottom: 0.75rem;
}

.nav {
  display: none;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

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

.nav-cta {
  padding: 0.5rem 1rem;
  background: var(--accent-soft);
  color: var(--accent) !important;
  border-radius: 999px;
  border: 1px solid rgba(232, 165, 75, 0.35);
}

.nav-cta:hover {
  background: rgba(232, 165, 75, 0.25);
  text-decoration: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem var(--space) 1.5rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-nav a {
  color: var(--text);
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

.hero {
  position: relative;
  min-height: auto;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, var(--accent-glow), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(100, 140, 200, 0.12), transparent 50%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }
}

.hero-inner {
  max-width: 40rem;
}

.hero-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 36rem;
}

.hero-bullets {
  margin: 0 0 1.75rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero-bullets li {
  margin-bottom: 0.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg) !important;
  border-color: var(--accent);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  color: var(--text) !important;
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  background: var(--surface);
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.section {
  padding: clamp(3rem, 7vw, 5rem) var(--space);
}

.section-alt {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 36rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-intro {
  margin: 0 0 2rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.trust-strip {
  padding-top: 0;
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  text-align: center;
}

.trust-label {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9375rem;
}

.trust-list li {
  padding: 0.35rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.about-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.about-copy .section-title {
  margin-bottom: 0.5rem;
}

.about-lead {
  font-size: 1.125rem;
  color: var(--text);
  margin: 0 0 1rem;
  font-weight: 600;
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.about-checks {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.about-checks li {
  margin-bottom: 0.35rem;
}

.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(232, 165, 75, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.service-card[id] {
  scroll-margin-top: 5.5rem;
}

.service-photo {
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.service-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}

.service-tagline {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

.service-body > p:last-of-type {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.service-list li {
  margin-bottom: 0.3rem;
}

.portfolio-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.portfolio-link {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.portfolio-link:hover {
  text-decoration: none;
}

.portfolio-link img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-link:hover img {
  transform: scale(1.04);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(transparent 20%, rgba(15, 20, 25, 0.92) 100%);
}

.portfolio-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.portfolio-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.portfolio-desc {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.stats {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonial-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  margin: 0;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-initials {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(232, 165, 75, 0.4);
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: 1rem;
  color: var(--text);
}

.testimonial-role {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonial p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 800px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.price-card-featured {
  border-color: rgba(232, 165, 75, 0.45);
  box-shadow: 0 0 0 1px rgba(232, 165, 75, 0.12);
  position: relative;
}

.price-badge {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.price-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.price-amount {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-amount strong {
  color: var(--accent);
  font-size: 1.35rem;
}

.price-blurb {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.price-list {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-grow: 1;
}

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

.price-btn {
  width: 100%;
}

.process-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .process-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.process-intro {
  margin-bottom: 1.5rem;
}

.steps-detailed {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps-detailed li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.35rem;
  color: var(--text-muted);
}

.steps-detailed li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(232, 165, 75, 0.35);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-detailed strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.steps-detailed span {
  display: block;
  font-size: 0.95rem;
}

.process-aside {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.process-aside-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 1rem;
}

.process-aside-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.process-aside-list li {
  margin-bottom: 0.5rem;
}

.cta-band {
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg-elevated) 100%);
  border-top: 1px solid var(--border);
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  max-width: 900px;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

.cta-inner.contact-copy {
  text-align: left;
  max-width: none;
}

.contact-copy .cta-title {
  margin-bottom: 0.75rem;
}

.contact-copy .cta-text {
  margin-bottom: 1.25rem;
}

.contact-meta {
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-meta a {
  color: var(--accent);
}

.contact-meta .muted {
  font-size: 0.8rem;
  opacity: 0.85;
}

.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}

.contact-logo {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 1rem;
}

.contact-card p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-service-links {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.contact-service-links a {
  color: var(--accent);
  text-decoration: none;
}

.contact-service-links a:hover {
  text-decoration: underline;
}

.contact-sep {
  color: var(--text-muted);
  font-weight: 400;
}

.contact-card-details {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
}

.contact-card-details li {
  margin-bottom: 0.5rem;
}

.contact-card-details li:last-child {
  margin-bottom: 0;
}

.contact-card-details a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-card-details a:hover {
  text-decoration: underline;
}

.cta-inner .btn-primary {
  word-break: break-word;
}

.site-footer {
  padding: 2.5rem var(--space);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.footer-tagline {
  margin: 0 0 1rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-tagline a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.footer-tagline a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.8125rem;
  opacity: 0.85;
  margin: 0;
}
