


:root {
  --color-dark: #333333;
  --color-white: #ffffff;
  --color-light: #f5f5f5;
  --color-blue: #2563eb;
  --color-blue-dark: #1e3a8a;
  --color-blue-light: #dbeafe;
  --color-border: #e5e7eb;
  --color-muted: #6b7280;

  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2.5vw, 1.5rem);
  --space-lg: clamp(1.5rem, 4vw, 2.5rem);
  --space-xl: clamp(2.5rem, 6vw, 4rem);
  --space-2xl: clamp(4rem, 10vw, 7rem);

  --container: 1200px;
  --header-h: 68px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; }


.container {
  width: min(var(--container), 100% - 2 * clamp(1rem, 4vw, 2.5rem));
  margin-inline: auto;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-md);
}


.logo {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-blue-dark);
  flex-shrink: 0;
}
.logo--light { color: var(--color-white); }
.logo-x { color: var(--color-blue); }


.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  flex-wrap: wrap;
}
.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-dark);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--color-blue); }
.nav-link--active { color: var(--color-blue); font-weight: 600; }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  padding: 0.55em 1.25em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 3px;
}
.btn:active { transform: scale(0.97); }

.btn--sm { font-size: 0.875rem; padding: 0.45em 1em; }
.btn--lg { font-size: 1rem; padding: 0.75em 1.6em; }

.btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}
.btn--primary:hover {
  background: var(--color-blue-dark);
  border-color: var(--color-blue-dark);
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--color-blue-dark);
  border-color: var(--color-blue-dark);
}
.btn--ghost:hover {
  background: var(--color-blue-dark);
  color: var(--color-white);
}
.btn--white {
  background: var(--color-white);
  color: var(--color-blue-dark);
  border-color: var(--color-white);
}
.btn--white:hover {
  background: var(--color-blue-light);
  border-color: var(--color-blue-light);
}
.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
}


.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 0.75rem;
}
.eyebrow--dark { color: var(--color-blue-dark); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}
.section-heading--light { color: var(--color-white); }
.section-sub { color: var(--color-muted); }
.section-sub--light { color: rgba(255,255,255,0.75); }


.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  padding-top: var(--space-2xl);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding-bottom: var(--space-2xl);
}
@media (min-width: 820px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-text { position: relative; z-index: 1; }
.hero-heading {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-blue-dark);
  line-height: 1.05;
  margin-bottom: var(--space-md);
}
.hero-heading br { display: block; }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--color-muted);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(30,58,138,0.14);
}
.hero-bar {
  background: var(--color-blue-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.9rem var(--space-md);
}
.bar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}


.services {
  background: var(--color-light);
  padding: var(--space-2xl) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 600px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(30,58,138,0.1);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--color-blue);
  flex-shrink: 0;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-blue-dark);
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
  flex: 1;
}
.service-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  object-fit: cover;
  margin-top: var(--space-xs);
}


.why {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 820px) {
  .why-inner { grid-template-columns: 1fr 1fr; }
}
.why-visual { position: relative; }
.why-img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 20px 56px rgba(30,58,138,0.12);
}
.why-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -0.5rem;
  background: var(--color-blue);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}
.badge-line {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}
.badge-line--large {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  opacity: 1;
}
.why-text { display: flex; flex-direction: column; gap: var(--space-md); }
.why-text .section-heading { margin-bottom: 0; }
.why-text p {
  color: var(--color-muted);
  line-height: 1.7;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--color-dark);
  font-weight: 500;
}
.why-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-blue);
  margin-top: 0.1em;
}
.why-check svg { width: 100%; height: 100%; }


.process {
  background: var(--color-blue-dark);
  padding: var(--space-2xl) 0;
}
.process .section-header { margin-bottom: var(--space-xl); }
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  counter-reset: step;
}
@media (min-width: 600px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}
.process-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: background 0.2s;
}
.process-step:hover { background: rgba(255,255,255,0.1); }
.step-num {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--color-blue);
  line-height: 1;
}
.process-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
}
.process-step p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}


.cta-band {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  padding: var(--space-2xl) 0;
}
.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
  text-align: left;
}
@media (min-width: 820px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-band-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.cta-band-text p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  font-size: 0.9375rem;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  flex-shrink: 0;
}


.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.65);
  padding-top: var(--space-xl);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}
@media (min-width: 700px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.footer-email {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-blue);
  transition: color 0.2s;
}
.footer-email:hover { color: #93c5fd; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: flex-start;
}
.footer-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--color-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-sm) 0;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}



.about-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  padding: var(--space-2xl) 0;
}
.about-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 820px) {
  .about-hero-inner { grid-template-columns: 1fr 1fr; }
}
.about-hero-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-blue-dark);
  line-height: 1.08;
  margin-bottom: var(--space-md);
}

.about-story {
  background: var(--color-light);
  padding: var(--space-2xl) 0;
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 820px) {
  .about-story-inner { grid-template-columns: 1fr 1fr; }
}
.about-story-img-wrap { position: relative; }
.about-story-img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 20px 56px rgba(30,58,138,0.12);
}
.about-story-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.about-story-text .section-heading { margin-bottom: 0; }
.about-story-text p {
  color: var(--color-muted);
  line-height: 1.7;
}

.about-values {
  background: var(--color-white);
  padding: var(--space-2xl) 0;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 600px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}
.value-card:hover {
  box-shadow: 0 12px 40px rgba(30,58,138,0.1);
  transform: translateY(-4px);
}
.value-icon {
  width: 44px;
  height: 44px;
  color: var(--color-blue);
  flex-shrink: 0;
}
.value-icon svg { width: 100%; height: 100%; }
.value-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-blue-dark);
}
.value-card p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.about-approach {
  background: var(--color-blue-dark);
  padding: var(--space-2xl) 0;
}
.about-approach-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 820px) {
  .about-approach-inner { grid-template-columns: 1fr 1fr; }
}
.about-approach-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.about-approach-lead {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
}
.approach-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.approach-list li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.approach-list li strong {
  display: block;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.approach-num {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--color-blue);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.about-approach-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.about-expertise {
  background: var(--color-light);
  padding: var(--space-2xl) 0;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 600px) {
  .expertise-grid { grid-template-columns: 1fr 1fr; }
}
.expertise-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.expertise-item:hover {
  box-shadow: 0 12px 40px rgba(30,58,138,0.1);
  transform: translateY(-4px);
}
.expertise-img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
.expertise-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.expertise-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-blue-dark);
}
.expertise-body p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
}



.contact-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  padding-top: var(--space-2xl);
  padding-bottom: 0;
}
.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding-bottom: var(--space-2xl);
}
@media (min-width: 820px) {
  .contact-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-hero-text {
  position: relative;
  z-index: 1;
}
.contact-hero-visual {
  position: relative;
  z-index: 1;
}
.contact-hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(30,58,138,0.14);
}
.contact-direct-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.contact-direct-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-direct-link:hover {
  border-color: var(--color-blue);
  box-shadow: 0 4px 16px rgba(37,99,235,0.1);
}
.contact-direct-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
}
.contact-direct-icon svg {
  width: 18px;
  height: 18px;
}
.contact-direct-link span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.contact-direct-link strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-dark);
}
.contact-direct-link span span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-blue);
}

.contact-body {
  background: var(--color-light);
  padding: var(--space-2xl) 0;
}
.contact-body-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (min-width: 900px) {
  .contact-body-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-card .section-heading {
  margin-bottom: 0;
}
.contact-card-intro {
  color: var(--color-muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.contact-email-btn {
  align-self: flex-start;
}
.contact-checklist {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.contact-checklist-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-info-block {
  background: var(--color-blue-dark);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.contact-info-block h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-white);
}
.contact-info-block p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.contact-steps {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}
.contact-step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--color-blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--color-blue-dark);
}
.contact-step strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.2rem;
}
.contact-step p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

.contact-service-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.contact-service-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
