:root {
  --bg: #0b0b0c;
  --bg-soft: #141416;
  --bg-panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f3f3f3;
  --muted: #b4b7bd;
  --silver: #c2c7cf;
  --silver-strong: #e2e6ec;
  --accent: #8e949d;
  --accent-dark: #646a73;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Figtree', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(180deg, #0b0b0c 0%, #111214 100%);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  z-index: 1000;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
  scroll-margin-top: calc(var(--header-height) + 1.35rem);
}

.alt-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--silver);
  font-size: 0.84rem;
  font-weight: 700;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: 'Barlow', Arial, sans-serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(75,75,79, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.08rem;
}

.brand-mark {
  width: 83px;
  display: grid;
  place-items: center;
  align-self: stretch;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  max-height: calc(var(--header-height) - 10px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.25));
}

.brand-text {
  display: flex;
  flex-direction: column;
  margin-left: -0.08rem;
  gap: 0.08rem;
  line-height: 1.1;
}

.brand-text strong {
  font-family: 'Figtree', Arial, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin: 0 0 0 10px;
  line-height: 1.05;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0 0 0 10px;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--silver);
  font-weight: 600;
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover {
  color: var(--silver-strong);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 10px;
  padding: 0.82rem 1.05rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;

}

.header-call {
  border: 1px solid rgba(255,255,255,0.15);
  background: #353535;
  padding: 0.55rem 0.95rem;
  gap: 0.46rem;
}

.header-call:hover,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.header-call {
  order: 3;
}

.nav-toggle {
  order: 4;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  border-radius: 12px;
  padding: 0;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: 0.2s ease;
}

.nav-backdrop {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 6.5rem;
  padding-bottom: 5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(11,11,12,0.76), rgba(11,11,12,0.92)),
    url('https://images.unsplash.com/photo-1530124566582-a618bc2615dc?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: auto -10% -20% auto;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(226,230,236,0.08), transparent 60%);
  filter: blur(8px);
}

.hero-grid,
.split-layout,
.location-layout,
.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero .container {
  position: relative;
}

.contact-layout {
  align-items: start;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2.4rem;
}

.about-layout {
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 1.25rem;
  align-self: start;
}

.about-copy p {
  margin-bottom: 0;
}

.bio-card {
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.bio-card h3 {
  margin-bottom: 0.7rem;
}

.bio-card p {
  margin: 0;
}

.contact-layout > div:first-child {
  padding-top: 0.15rem;
}

.location-layout {
  grid-template-columns: 0.82fr 1.48fr;
  align-items: stretch;
}

.hero-copy {
  max-width: 54rem;
}

.hero-text {
  max-width: 46rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.btn-primary {
  background: linear-gradient(145deg, #d3d7de, #9198a3);
  color: #0f1012;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  padding: 0;
  margin: 1.5rem 0 0;
  color: var(--silver);
  font-weight: 600;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-card,
.info-card,
.panel-card,
.stat-card,
.contact-form,
.map-card {
  background: var(--bg-panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.panel-card,
.contact-form,
.map-card {
  padding: 1.6rem;
}

.service-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-split article,
.info-card,
.stat-card {
  padding: 1.3rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
}

.service-icon,
.info-card > i,
.feature-list i,
.map-placeholder i,
.card-title-row i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--silver-strong);
  margin-bottom: 1rem;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.card-title-row i {
  margin-bottom: 0;
  flex: 0 0 auto;
}

.card-title-row h3 {
  margin: 0;
}

.section-heading {
  max-width: 44rem;
  text-align: center;
  margin: 0 auto 0rem;
}

.left-align {
  text-align: left;
  margin-left: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.1rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.35rem;
  align-items: stretch;
}

.section-link-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
}

.stats-grid {
  display: grid;
  gap: 1.25rem;
}


.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.gallery-card-link {
  display: block;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.gallery-card-link:hover,
.gallery-card-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: var(--shadow);
}

.gallery-card figure {
  margin: 0;
}

.gallery-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-grid-categories .gallery-card img {
  aspect-ratio: 5 / 4.2;
}

.gallery-card figcaption {
  padding: 0.9rem 1rem;
  color: var(--silver);
  font-weight: 600;
}

.gallery-card figcaption span {
  display: block;
  color: var(--silver-strong);
  font-family: 'Figtree', Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
  margin-bottom: 0.45rem;
}

.gallery-card figcaption small {
  display: block;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}


.info-card {
  padding: 1.5rem;
}

.info-card p {
  margin-bottom: 0;
}

.service-cards .info-card {
  height: 100%;
}


.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--silver-strong);
  font-weight: 700;
}

.stats-grid {
  grid-template-columns: repeat(2, 1fr);
}

.stat-card span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--silver-strong);
  font-family: 'Figtree', Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
}


.service-section-single {
  max-width: 58rem;
}

.service-section-note {
  margin: 1rem 0 0;
  color: var(--silver);
  font-weight: 500;
}

.service-page-copy {
  display: grid;
  gap: 1.2rem;
}

.service-page-copy p:last-child {
  margin-bottom: 0;
}

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

.service-detail-card {
  padding: 1.35rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.service-detail-card h3 {
  margin-bottom: 0.6rem;
}

.service-page-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.contact-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 1.75rem;
  row-gap: 0;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 0.75rem;
  margin-top: 0;
}

.contact-details a {
  white-space: nowrap;
}

.contact-details a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--silver);
  font-weight: 600;
}

.contact-stack {
  display: grid;
  gap: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  align-self: start;
}

.contact-form textarea {
  min-height: 9.75rem;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-row-full {
  grid-column: 1 / -1;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

label {
  font-weight: 700;
  color: var(--silver-strong);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-radius: 12px;
  padding: 0.95rem 1rem;
}

input::placeholder,
textarea::placeholder {
  color: #a0a5ae;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.map-card {
  min-height: 360px;
  overflow: hidden;
  padding: 0;
  display: flex;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  flex: 1 1 auto;
}

.map-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  gap: 0.75rem;
  color: var(--silver);
  background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.55)),
    linear-gradient(135deg, #22252b, #111214);
  text-align: center;
  padding: 1.5rem;
}

.site-footer {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(75, 75, 79, 0.78);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
}

.footer-left p {
  margin: 0;
  color: var(--silver);
  font-weight: 600;
}


.footer-branding {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.footer-copy {
  margin-right: 0.35rem;
}

.footer-year {
  margin-right: 0.45rem;
}

.footer-name {
  margin-right: 0.45rem;
}

.footer-flag-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 18px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 4px 12px rgba(0,0,0,0.22);
  opacity: 0.82;
}

.footer-flag-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.88) contrast(0.95);
}

.footer-right {
  display: grid;
  gap: 0.8rem;
  justify-items: end;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-strong);
  font-size: 1.25rem;
  padding: 0.15rem;
}



.contact-info-panel {
  display: grid;
  gap: 0.9rem;
  align-self: start;
}

.contact-info-panel .section-heading {
  margin-bottom: 0.1rem;
}

.contact-info-panel .section-heading p:last-child {
  margin-bottom: 0;
}

.contact-hours {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.contact-hours h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--silver);
  font-weight: 600;
}

.contact-hours h3 i {
  color: var(--silver-strong);
  font-size: 1rem;
}

.contact-hours h3 span {
  font-size: 1rem;
  font-weight: 600;
}

.contact-hours p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--silver);
  font-weight: 600;
  white-space: nowrap;
}

.contact-photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.contact-photo-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 65;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(72vw, 320px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.25rem;
    padding: calc(var(--header-height) + 1rem) 1rem 1rem;
    background: rgba(10, 10, 11, 0.98);
    border-left: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 60;
  }

  .site-nav a {
    padding: 0.95rem 0.85rem;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: rgba(255,255,255,0.05);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 55;
  }

  body.nav-open {
    overflow: hidden;
  }

  .split-layout,
  .location-layout,
  .about-layout,
  .service-split,
  .service-cards,
  .stats-grid,
  .gallery-grid,
  .gallery-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-layout,
  .location-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  
.service-section-single {
  max-width: 58rem;
}

.service-section-note {
  margin: 1rem 0 0;
  color: var(--silver);
  font-weight: 500;
}

.service-page-copy {
  display: grid;
  gap: 1.2rem;
}

.service-page-copy p:last-child {
  margin-bottom: 0;
}

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

.service-detail-card {
  padding: 1.35rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.service-detail-card h3 {
  margin-bottom: 0.6rem;
}

.service-page-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.contact-meta-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .header-call span {
    display: none;
  }

  .brand-mark {
    width: 92px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.5rem 0;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .brand-mark {
    width: 84px;
  }

  .brand-text small {
    display: none;
  }

  .gallery-grid,
  .gallery-detail-grid,
  .service-cards,
  .stats-grid,
  .service-split,
  .form-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  #services .service-cards {
    gap: 0;
    margin-top: 1.2rem;
  }

  #services .service-cards .info-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 0 1rem;
    align-items: start;
    padding: 1.45rem 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  #services .service-cards .info-card + .info-card {
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  #services .card-title-row {
    display: contents;
  }

  #services .card-title-row i {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 64px;
    height: 64px;
    margin: 0;
  }

  #services .card-title-row h3 {
    grid-column: 2;
    align-self: center;
    line-height: 1.1;
  }

  #services .service-cards .info-card p {
    grid-column: 2;
    margin-top: 0.35rem;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-points {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .site-nav {
    width: min(84vw, 320px);
  }

  .brand-text strong {
    font-size: 1.3rem;
  }

  .gallery-card figcaption span {
    font-size: 1.35rem;
  }

  .lightbox {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .lightbox-nav {
    display: none;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 72vh;
  }
}


.subhero {
  position: relative;
  overflow: hidden;
  padding-top: 5.5rem;
  padding-bottom: 4rem;
}

.subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(11,11,12,0.88), rgba(11,11,12,0.92)), linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
}

.subhero-inner {
  position: relative;
  max-width: 60rem;
}

.gallery-detail-section {
  padding-top: 2rem;
}

.gallery-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.detail-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.detail-thumb {
  display: block;
}

.detail-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.detail-thumb:hover img,
.detail-thumb:focus-visible img {
  transform: scale(1.03);
}

.detail-copy {
  padding: 0.9rem 0.95rem 1rem;
}

.detail-copy h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.detail-copy p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(5, 5, 6, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
}

.lightbox-image {
  max-width: min(92vw, 1200px);
  max-height: 76vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
}

.lightbox-caption {
  margin-top: 0.85rem;
  color: var(--silver);
  font-weight: 600;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
}

.lightbox-prev {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-page .site-header {
  position: sticky;
}


@media (max-width: 980px) {
  .gallery-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .gallery-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gallery-detail-grid {
    grid-template-columns: 1fr;
  }

  .lightbox {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .lightbox-nav {
    display: none;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 72vh;
  }
}
