:root {
  --bg: #13171d;
  --bg-elevated: #1a1f27;
  --surface: #212831;
  --text: #e8edf2;
  --muted: #8b98a8;
  --blue: #3d9ee5;
  --blue-dim: #2a7ab8;
  --border: rgba(255, 255, 255, 0.09);
  --radius: 6px;
  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  --light-bg: #e6ebf0;
  --light-text: #1c2430;
  --light-muted: #4d5969;
}

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
.brand span {
  font-family: var(--font-display);
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: #6bb8ef;
}

a.btn,
a.btn:hover {
  text-decoration: none;
}

a.btn-primary,
a.btn-primary:hover,
button.btn-primary,
button.btn-primary:hover {
  color: #fff;
}

a.btn-secondary,
a.btn-secondary:hover,
a.btn-ghost,
a.btn-ghost:hover,
button.btn-secondary,
button.btn-secondary:hover,
button.btn-ghost,
button.btn-ghost:hover {
  color: var(--text);
}

.container {
  width: min(1080px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(19, 23, 29, 0.94);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand img,
.logo-mark {
  width: 40px;
  height: 40px;
  max-width: none;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
}

.logo-mark-sm {
  width: 34px;
  height: 34px;
}

.brand span {
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.45rem 0.7rem;
  font: inherit;
  font-size: 0.875rem;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
  flex-wrap: wrap;
}

.nav-divider {
  width: 1px;
  height: 1rem;
  background: var(--border);
  margin: 0 0.15rem;
}

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

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

.header-cta {
  flex-shrink: 0;
  font-size: 0.875rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--blue-dim);
  color: #fff;
  border-color: var(--blue-dim);
}

.btn-primary:hover {
  background: #256fa8;
  border-color: #256fa8;
  color: #fff;
}

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

.btn-secondary:hover,
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

/* Hero */

.hero {
  position: relative;
  padding: 3.5rem 0 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/hero-bg.jpg") center center / cover no-repeat;
  opacity: 0.14;
  pointer-events: none;
}

.hero-has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(19, 23, 29, 0.97) 40%, rgba(19, 23, 29, 0.82) 100%);
  pointer-events: none;
}

.hero-has-bg .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.12;
  margin: 0 0 0.85rem;
  letter-spacing: -0.025em;
}

.hero p.lead,
.page-hero p.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0;
}

.hero-aside {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: min(180px, 55vw);
  height: auto;
  max-width: none;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.simple-list {
  margin: 1.25rem 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.simple-list li {
  margin-bottom: 0.4rem;
}

/* Sections */

.section {
  padding: 3.75rem 0;
}

.section-elevated {
  background: var(--bg-elevated);
}

.section-light {
  background: var(--light-bg);
  color: var(--light-text);
}

.section-light a:not(.btn) {
  color: #1a6fb5;
}

.section-light a:not(.btn):hover {
  color: #125691;
}

.section-light .callout .btn-primary,
.section-light .callout a.btn.btn-primary,
.section-light .callout a.btn.btn-primary:hover,
.section-light .callout a.btn.btn-primary:focus-visible {
  background: var(--blue-dim);
  border-color: var(--blue-dim);
  color: #fff;
}

.section-light .callout .btn-primary:hover,
.section-light .callout a.btn.btn-primary:hover {
  background: #256fa8;
  border-color: #256fa8;
  color: #fff;
}

.section-light .callout h2 {
  color: var(--light-text);
}

.section-light .callout {
  background: #fff;
  border-color: rgba(28, 36, 48, 0.12);
}

.section-light .callout p {
  color: var(--light-muted);
}

.section-header {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--muted);
  margin: 0;
  font-size: 1.0625rem;
}

.section-note {
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 42rem;
  line-height: 1.6;
}

.section-note a {
  text-decoration: none;
  font-weight: 500;
}

.section-note a:hover {
  text-decoration: underline;
}

.prose-intro {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  max-width: 36rem;
}

.split h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.service-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.service-item {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1rem 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.service-item dt {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
}

.service-item dt a {
  color: var(--text);
  text-decoration: none;
}

.service-item dt a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.service-item dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.contact-actions {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.section-cta {
  margin: 1.75rem 0 0;
}

.spotlight h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.spotlight p {
  color: var(--muted);
}

/* Cards → lighter treatment */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 1.25rem 1.35rem;
}

.card:nth-child(3n) {
  border-right: none;
}

.cards .card:nth-last-child(-n + 3) {
  border-bottom: none;
}

.cards:not(.cards-3) .card:nth-child(3n) {
  border-right: 1px solid var(--border);
}

.cards:not(.cards-3) .card:nth-child(2n) {
  border-right: none;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

.card h3 a {
  color: inherit;
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--blue);
  text-decoration: underline;
}

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

.card-badge {
  display: none;
}

/* Platform panel */

.platform-panel {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.platform-row {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 1rem 1.15rem;
}

.platform-row:last-child {
  border-bottom: none;
}

.platform-row strong {
  display: block;
  margin-bottom: 0.15rem;
  font-weight: 600;
  font-size: 0.9375rem;
}

.platform-row span {
  color: var(--muted);
  font-size: 0.875rem;
}

.check-list {
  margin: 1rem 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.check-list li {
  margin-bottom: 0.4rem;
  padding-left: 0;
}

.check-list li::before {
  content: none;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.list {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.list-item {
  padding: 1rem 1.15rem;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
}

.list-item:last-child {
  border-bottom: none;
}

.list-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.list-item span {
  color: var(--muted);
  font-size: 0.9375rem;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  padding: 1rem 0 1rem 1.15rem;
  border-left: 2px solid var(--border);
  background: transparent;
  border-radius: 0;
  margin-left: 0.25rem;
}

.timeline-item + .timeline-item {
  margin-top: 0.25rem;
}

.timeline-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.timeline-item span {
  color: var(--muted);
  font-size: 0.9375rem;
}

.callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}

.callout h2 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.callout p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
  font-size: 0.9375rem;
}

.testimonial {
  margin: 0;
  padding: 0 0 0 1.25rem;
  border-left: 2px solid var(--border);
  background: transparent;
  border-radius: 0;
}

.testimonial p {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-style: normal;
  color: var(--text);
  line-height: 1.6;
}

.testimonial footer {
  color: var(--muted);
  font-size: 0.875rem;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-list details {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 1rem 0;
}

.faq-list details:first-child {
  border-top: 1px solid var(--border);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  color: var(--muted);
  margin: 0.65rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-panel {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  max-width: 640px;
}

.contact-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.375rem;
}

.contact-panel p {
  color: var(--muted);
  margin: 0 0 1rem;
  font-size: 0.9375rem;
}

.contact-links {
  display: grid;
  gap: 0.35rem;
  font-size: 1rem;
}

.contact-links a:not(.btn) {
  font-weight: 500;
}

.page-hero {
  padding: 2.75rem 0 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.page-grid h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.page-grid p,
.page-grid li {
  color: var(--muted);
  font-size: 0.9375rem;
}

.page-cta {
  text-align: left;
  padding: 1.5rem 0 0;
}

.page-cta h2 {
  margin: 0 0 0.75rem;
  font-size: 1.375rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  font-size: 0.9375rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(61, 158, 229, 0.35);
  outline-offset: 1px;
  border-color: rgba(61, 158, 229, 0.4);
}

.form-note {
  color: var(--muted);
  font-size: 0.8125rem;
  margin: 0;
  line-height: 1.5;
}

.form-note a {
  color: var(--muted);
}

.contact-aside {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9375rem;
}

.contact-aside h2 {
  margin: 1rem 0 0.15rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.contact-aside h2:first-child {
  margin-top: 0;
}

.contact-aside p {
  color: var(--muted);
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
}

.contact-aside a {
  text-decoration: none;
  font-weight: 500;
}

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

.about-founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.about-founder .hero-logo {
  width: 140px;
  height: 140px;
  max-width: none;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 0.9375rem;
}

.prose ul {
  padding-left: 1.25rem;
}

.prose h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.75rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 1.75rem;
}

.footer-grid strong {
  display: block;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.3rem;
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-grid a:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-tagline {
  margin: 0.65rem 0 0;
  max-width: 20rem;
  line-height: 1.55;
  font-size: 0.875rem;
}

.footer-brand {
  text-decoration: none;
  color: inherit;
}

.footer-brand:hover {
  text-decoration: none;
}

.footer-note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted);
}

.embed-frame {
  width: 100%;
  min-height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.embed-frame.is-loaded {
  background: #fff;
}

.embed-frame iframe {
  display: block;
  width: 100%;
}

/* Preview: photography & logos */

.preview-banner {
  background: #3d2e00;
  border-bottom: 1px solid rgba(255, 200, 80, 0.25);
  color: #ffe8a3;
  font-size: 0.8125rem;
}

.preview-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.55rem 0;
}

.preview-banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
}

.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.hero-photo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(19, 23, 29, 0.94) 42%, rgba(19, 23, 29, 0.55) 100%);
}

.hero-photo-grid {
  position: relative;
  z-index: 1;
  align-items: end;
}

.hero-photo-content {
  padding: 3.5rem 0 3rem;
}

.hero-aside-photo {
  display: block;
  padding-bottom: 0;
}

.hero-photo-accent {
  width: 100%;
  max-width: 420px;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.section-logos {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.logo-strip-label {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.logo-strip-label-partners {
  margin-top: 1.5rem;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.logo-strip img {
  display: block;
  max-width: none;
  height: auto;
  opacity: 0.85;
  filter: grayscale(1);
  transition: opacity 0.15s ease, filter 0.15s ease;
}

.logo-strip a:hover img,
.logo-strip img:hover {
  opacity: 1;
  filter: none;
}

.logo-strip-partners img {
  opacity: 0.7;
}

.logo-strip-note {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
}

.photo-frame {
  margin: 0;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.photo-frame figcaption {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.split-photo {
  align-items: center;
}

.page-hero-photo {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.page-hero-photo-bg {
  position: absolute;
  inset: 0;
}

.page-hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.page-hero-photo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 23, 29, 0.78);
}

.page-hero-photo-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 2.75rem;
}

@media (max-width: 900px) {
  .hero-photo-accent {
    max-width: 280px;
    margin: 0 auto 2rem;
  }

  .hero-aside-photo {
    order: -1;
  }

  .split-photo {
    grid-template-columns: 1fr;
  }

  .photo-frame {
    order: -1;
  }

  .hero-grid,
  .cards,
  .cards-3,
  .split,
  .spotlight-grid,
  .page-grid,
  .contact-layout,
  .about-founder,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .card:nth-child(3n),
  .cards:not(.cards-3) .card:nth-child(3n),
  .cards:not(.cards-3) .card:nth-child(2n) {
    border-right: none;
  }

  .card:last-child {
    border-bottom: none;
  }

  .hero-aside {
    order: -1;
  }

  .hero-logo {
    width: 120px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav-divider {
    display: none;
  }

  .site-header .container,
  .header-inner {
    position: relative;
  }

  .section {
    padding: 2.75rem 0;
  }
}

@media (max-width: 600px) {
  .cards,
  .cards-3 {
    grid-template-columns: 1fr;
  }
}
