:root {
  --navy: #052f56;
  --deep: #021a30;
  --turquoise: #08c9c4;
  --cyan: #11a9c5;
  --ink: #16344d;
  --muted: #6a8192;
  --line: rgba(6, 63, 114, .12);
  --white: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(8,201,196,.16), transparent 31rem),
    radial-gradient(circle at 95% 40%, rgba(9,80,130,.12), transparent 34rem),
    linear-gradient(180deg, #f8fcfd, #eaf5f8);
}

body.modal-open { overflow: hidden; }
.shell { width: min(100% - 32px, 1080px); margin: 0 auto; padding: 24px 0 64px; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo-frame { position: relative; width: 190px; height: 105px; overflow: hidden; }
.logo { position: absolute; top: 50%; left: 50%; width: 210px; max-width: none; transform: translate(-50%,-50%); mix-blend-mode: multiply; }
.back { padding: 11px 16px; color: var(--navy); background: rgba(255,255,255,.78); border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-weight: 800; text-decoration: none; }

.hero {
  position: relative;
  margin-top: 16px;
  padding: 54px 38px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(2,26,48,.98), rgba(5,67,105,.91)),
    radial-gradient(circle at 90% 10%, rgba(8,201,196,.35), transparent 20rem);
  border-radius: 32px;
  box-shadow: 0 24px 68px rgba(2,26,48,.2);
}

.hero::before,
.hero::after { position: absolute; content: ""; border-radius: 50%; pointer-events: none; }
.hero::before { top: -120px; right: -80px; width: 340px; height: 340px; border: 52px solid rgba(8,201,196,.08); }
.hero::after { bottom: -90px; right: 180px; width: 180px; height: 180px; background: rgba(17,169,197,.08); }
.eyebrow { position: relative; z-index: 1; color: #61dfdc; font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
h1 { position: relative; z-index: 1; margin: 10px 0 12px; font-size: clamp(42px,7vw,72px); line-height: .98; letter-spacing: -.045em; }
h1 span { color: var(--turquoise); }
.hero p { position: relative; z-index: 1; max-width: 650px; margin: 0; color: rgba(255,255,255,.75); font-size: clamp(16px,2.5vw,19px); line-height: 1.6; }

.filters { display: flex; justify-content: center; gap: 8px; margin: 28px 0; }
.filter { appearance: none; padding: 10px 18px; color: var(--navy); background: rgba(255,255,255,.84); border: 1px solid var(--line); border-radius: 999px; font: inherit; font-size: 14px; font-weight: 850; cursor: pointer; }
.filter.active { color: var(--white); background: var(--deep); border-color: var(--deep); }
.gallery { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-items: start; gap: 22px; }
.art-card { appearance: none; padding: 0; overflow: hidden; color: var(--ink); text-align: left; cursor: pointer; background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 18px 48px rgba(5,45,82,.09); transition: transform 180ms ease, box-shadow 180ms ease; }
.art-card:hover { transform: translateY(-4px); box-shadow: 0 25px 62px rgba(5,45,82,.15); }
.art-image-wrap { display: block; overflow: hidden; background: #dcebf0; }
.art-image-wrap img { width: 100%; height: auto; display: block; }
.art-copy { display: grid; gap: 5px; padding: 17px 18px 19px; }
.art-copy strong { color: var(--deep); font-size: 16px; }
.art-copy small { color: var(--muted); }
.format-badge { justify-self: start; margin-top: 6px; padding: 5px 9px; color: #007d80; background: rgba(8,201,196,.12); border-radius: 999px; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.videos { margin-top: 46px; }
.videos-head { max-width: 720px; margin: 0 auto 24px; text-align: center; }
.videos-head span { color: #078f99; font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.videos-head h2 { margin: 8px 0 10px; color: var(--deep); font-size: clamp(28px,4.5vw,42px); letter-spacing: -.035em; }
.videos-head p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.videos-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.video-card { margin: 0; overflow: hidden; padding: 9px; background: rgba(255,255,255,.95); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 16px 44px rgba(5,45,82,.1); }
.video-card video { display: block; width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: var(--deep); border-radius: 15px; }
.video-card figcaption { padding: 12px 6px 7px; color: #31566f; font-size: 13px; font-weight: 800; text-align: center; }
.consult { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 38px; padding: 24px 26px; color: var(--white); background: linear-gradient(135deg,var(--deep),var(--navy)); border-radius: 24px; }
.consult strong { display: block; font-size: 18px; }
.consult span { display: block; margin-top: 4px; color: rgba(255,255,255,.72); font-size: 14px; }
.consult a { flex: 0 0 auto; padding: 13px 18px; color: var(--deep); background: var(--turquoise); border-radius: 999px; font-weight: 850; text-decoration: none; }

.lightbox { position: fixed; inset: 0; z-index: 20; display: grid; place-items: center; padding: 24px; background: rgba(2,18,33,.9); }
.lightbox[hidden] { display: none; }
.lightbox-inner { position: relative; width: min(92vw,660px); max-height: 92vh; overflow: auto; background: var(--white); border-radius: 24px; }
.lightbox img { width: 100%; height: auto; display: block; }
.lightbox-copy { padding: 17px 20px 20px; }
.lightbox-copy strong { display: block; color: var(--deep); }
.lightbox-copy small { color: var(--muted); }
.lightbox-actions { display: flex; gap: 10px; margin-top: 16px; }
.lightbox-actions button,
.lightbox-actions a { flex: 1; appearance: none; padding: 11px 14px; border-radius: 999px; font: inherit; font-size: 14px; font-weight: 800; text-align: center; text-decoration: none; cursor: pointer; }
.lightbox-actions button { color: var(--white); background: var(--navy); border: 1px solid var(--navy); }
.lightbox-actions a { color: var(--navy); background: var(--white); border: 1px solid var(--line); }
.lightbox-close { position: absolute; top: 12px; right: 12px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: var(--white); background: rgba(2,22,39,.8); font-size: 25px; cursor: pointer; }

@media (max-width: 700px) {
  .shell { width: min(100% - 22px,560px); padding-top: 12px; }
  .logo-frame { width: 155px; height: 88px; }
  .logo { width: 175px; }
  .back { padding: 9px 12px; font-size: 12px; }
  .hero { padding: 40px 24px; border-radius: 25px; }
  .gallery { gap: 12px; }
  .art-card { border-radius: 18px; }
  .art-copy { padding: 13px 14px 15px; }
  .videos-grid { grid-template-columns: 1fr; gap: 14px; }
  .video-card { width: min(100%,430px); margin: 0 auto; }
  .consult { align-items: flex-start; flex-direction: column; }
}

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

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { transition-duration: .01ms !important; }
}
