
:root {
  --blue: #0099ff;
  --blue-dark: #006bb3;
  --black: #030303;
  --ink: #111827;
  --muted: #5b6575;
  --line: #dbe4ee;
  --soft: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(9, 20, 33, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  background: #000;
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.brand-mini { display: none; align-items: center; margin-right: auto; }
.brand-mini img { width: 118px; max-height: 48px; object-fit: contain; }
.nav-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 24px; }
.nav-links a { font-size: 15px; text-transform: uppercase; letter-spacing: 0; white-space: nowrap; transition: color .2s ease; }
.nav-links a:hover { color: var(--blue); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.25); border-radius: 4px; background: transparent; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: #fff; }
.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.74)),
    var(--hero-image) center/cover no-repeat;
}
.hero-inner { width: min(1120px, calc(100% - 40px)); padding: 42px 0 58px; }
.hero-kicker { margin: 0 auto 24px; color: rgba(255,255,255,.72); font-size: clamp(20px, 2.4vw, 30px); font-weight: 800; }
.hero-logo { width: min(310px, 62vw); margin: 0 auto 32px; }
.hero h1 { margin: 0 0 4px; font-size: clamp(42px, 6vw, 72px); line-height: 1.05; color: #fff; }
.hero-services {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: -8px;
  color: rgba(255,255,255,.68);
  font-size: clamp(22px, 2.6vw, 31px);
  line-height: 1.35;
  font-weight: 600;
}
.hero-services div { display: flex; flex-direction: column; }
.hero-services strong { color: rgba(255,255,255,.78); }
.hero-mail {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(0,153,255,.32);
}
.section-band { background: var(--blue); color: #fff; }
.section-band .container { min-height: 60px; display: flex; align-items: center; gap: 20px; }
.section-band h2 { margin: 0; font-size: clamp(24px, 3vw, 32px); line-height: 1.2; }
.section-band span { flex: 0 1 84px; height: 2px; background: rgba(255,255,255,.35); }
.section { padding: 72px 0; }
.lead-block { max-width: 840px; margin-bottom: 34px; }
.lead-block h2, .subhead { margin: 0 0 14px; font-size: clamp(26px, 3vw, 38px); line-height: 1.2; }
.lead-block p, .page-intro { color: var(--muted); font-size: 18px; }
.split-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1fr);
  align-items: stretch;
  gap: 42px;
  margin-bottom: 56px;
}
.split-row.reverse .split-image { order: 2; }
.split-image img, .detail-media img, .article-card img, .service-card img, .album-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 4px;
}
.split-copy { align-self: center; }
.split-copy h3, .service-card h3, .album-card h3, .video-card h3, .article-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
}
.split-copy p, .service-card p, .album-card p, .article-card p { color: var(--muted); margin: 0 0 18px; }
.text-link { color: var(--blue-dark); font-weight: 800; border-bottom: 2px solid currentColor; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); background: var(--blue-dark); }
.button.small { min-height: 38px; padding: 0 16px; font-size: 14px; }
.button.outline { color: var(--blue-dark); background: #fff; border: 1px solid var(--blue); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-grid.featured { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 54px; }
.service-card, .album-card, .article-card, .contact-card, .contact-panel, .contact-form {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(9,20,33,.06);
  overflow: hidden;
}
.service-card img { height: 210px; min-height: 210px; }
.service-card div, .album-card div, .article-card div { padding: 22px; }
.media-grid, .video-grid, .article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 34px;
}
.category-grid.preview { margin-top: 0; }
.category-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  padding: 0;
  background: #0b121a;
  color: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(9,20,33,.12);
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.78));
}
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.category-card:hover img { transform: scale(1.04); }
.category-card span, .category-card h3, .category-card p {
  position: relative;
  z-index: 1;
  display: block;
  margin-left: 20px;
  margin-right: 20px;
}
.category-card span {
  margin-top: 116px;
  width: fit-content;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.category-card h3 {
  margin-top: 10px;
  margin-bottom: 7px;
  font-size: 20px;
  line-height: 1.2;
}
.category-card p {
  margin-top: 0;
  margin-bottom: 18px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.4;
}
.filter-bar {
  position: sticky;
  top: 66px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0;
  margin-bottom: 22px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
}
.filter-bar button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
.filter-bar button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.curated-grid {
  columns: 3 260px;
  column-gap: 16px;
  margin-bottom: 42px;
}
.curated-grid.service-samples {
  columns: 3 220px;
  margin-bottom: 48px;
}
.curated-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(9,20,33,.07);
  break-inside: avoid;
}
.curated-item[hidden] { display: none; }
.curated-item img {
  width: 100%;
  height: auto;
  min-height: 160px;
  object-fit: cover;
  background: var(--soft);
}
.curated-item span {
  display: block;
  padding: 14px 16px 0;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.curated-item strong {
  display: block;
  padding: 4px 16px 16px;
  font-size: 16px;
  line-height: 1.25;
}
.album-archive {
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.album-card img { height: 240px; min-height: 240px; }
.page-hero {
  background: #101820;
  color: #fff;
  padding: 86px 0 54px;
}
.page-hero p { margin: 0 0 12px; color: var(--blue); font-weight: 800; text-transform: uppercase; }
.page-hero h1 { margin: 0; font-size: clamp(34px, 5vw, 62px); line-height: 1.08; max-width: 960px; }
.detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}
.detail-media img { max-height: 520px; }
.rich-text { font-size: 18px; color: #263241; }
.rich-text p, .rich-text ul { margin-top: 0; margin-bottom: 18px; }
.rich-text h2, .rich-text h3, .rich-text h4 { color: var(--ink); line-height: 1.25; margin: 28px 0 14px; }
.rich-text a { color: var(--blue-dark); font-weight: 800; text-decoration: underline; }
.cta-strip {
  margin: 58px 0;
  padding: 32px;
  border-radius: 6px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-strip h2 { margin: 0; }
.faq-list { display: grid; gap: 14px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0;
  background: #fff;
}
.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 800;
  font-size: 18px;
}
.faq-list details div { padding: 0 24px 22px; color: var(--muted); }
.album-section { margin-bottom: 54px; }
.album-section h2 { margin: 0 0 18px; font-size: 28px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 1 / .76;
  padding: 0;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--soft);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.video-card button {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}
.video-card img { width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.video-card span {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 24px;
}
.video-card h3 { margin-top: 14px; }
.article-card { display: grid; grid-template-rows: 230px auto; }
.article-card img { min-height: 230px; height: 230px; }
.contact-overview { background: var(--soft); }
.contact-card { padding: 34px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.contact-card h2 { margin: 0 0 8px; }
.contact-card p { margin: 0; max-width: 620px; color: var(--muted); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 28px;
}
.contact-panel, .contact-form { padding: 28px; }
.contact-panel h2 { margin-top: 0; }
.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-weight: 800;
}
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 6px; font-weight: 800; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  font: inherit;
}
.form-note { color: var(--blue-dark); font-weight: 800; }
.site-footer {
  background: #050505;
  color: #fff;
  padding: 46px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
}
.site-footer img { width: 190px; margin-bottom: 14px; }
.site-footer p, .site-footer span { color: rgba(255,255,255,.68); }
.site-footer h3 { margin: 0 0 12px; }
.site-footer a, .site-footer span { display: block; margin-bottom: 8px; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.84);
}
.modal.visible { display: flex; }
.lightbox-content, .video-content { position: relative; width: min(1100px, 96vw); }
.lightbox-content img { max-height: 82vh; width: 100%; object-fit: contain; }
#lightbox-caption { color: #fff; text-align: center; margin-top: 12px; }
.modal button.close, .modal button.prev, .modal button.next {
  position: absolute;
  border: 0;
  color: #fff;
  background: rgba(0,0,0,.5);
  cursor: pointer;
}
.modal .close { top: -46px; right: 0; width: 42px; height: 42px; font-size: 28px; }
.modal .prev, .modal .next {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 64px;
  font-size: 34px;
}
.modal .prev { left: 0; }
.modal .next { right: 0; }
.video-content iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; background: #000; }
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 80;
  width: min(520px, calc(100vw - 48px));
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 4px;
}
.cookie-banner h2 { margin: 0 0 8px; font-size: 18px; }
.cookie-banner p { margin: 0 0 16px; color: var(--muted); }
.cookie-banner[hidden] { display: none; }
@media (max-width: 980px) {
  .site-nav { justify-content: space-between; }
  .brand-mini, .menu-toggle { display: flex; }
  .brand-mini { display: flex; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px 20px 22px;
    background: #000;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .site-nav.open .nav-links { display: grid; gap: 14px; justify-content: stretch; }
  .hero-services { grid-template-columns: 1fr; }
  .hero-mail { order: 3; }
  .service-grid, .service-grid.featured, .media-grid, .video-grid, .article-grid, .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .detail-layout, .contact-layout, .footer-grid { grid-template-columns: 1fr; }
  .contact-card, .cta-strip { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { min-height: 640px; }
  .hero h1 { font-size: 42px; }
  .hero-services { font-size: 20px; gap: 16px; }
  .section { padding: 48px 0; }
  .split-row, .split-row.reverse { grid-template-columns: 1fr; gap: 22px; }
  .split-row.reverse .split-image { order: 0; }
  .service-grid, .service-grid.featured, .media-grid, .video-grid, .article-grid, .gallery-grid, .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 220px; }
  .filter-bar { top: 66px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 12px; }
  .filter-bar button { white-space: nowrap; }
  .page-hero { padding: 58px 0 42px; }
  .cookie-banner { left: 14px; bottom: 14px; width: calc(100vw - 28px); }
}
