@charset "UTF-8";
/* Base (reef) — oceanic with coral + yellow accents */
:root {
  --bg: #07111a;
  --panel: #0b1726;
  --text: #eef7ff;
  --muted: #9fb6cc;
  --primary: #00d1ff;
  --secondary: #ff7a59;
  --tertiary: #23d18b;
  --accent: #ffd95e;
  --grad-1: linear-gradient(135deg, #00d1ff 0%, #23d18b 32%, #ff7a59 68%, #ffd95e 100%);
  --ring: 0 0 0 2px rgba(0, 209, 255, 0.35), 0 10px 30px -10px rgba(0, 209, 255, 0.4);
  --radius: 22px;
}

/* Lagoon — teal + ocean blue + orange */
[data-theme=lagoon] {
  --bg: #06131a;
  --panel: #0a1b24;
  --text: #e8f3ff;
  --muted: #a4c1d1;
  --primary: #00c9c9;
  --secondary: #ff8a3d;
  --tertiary: #0077ff;
  --accent: #ffd166;
  --grad-1: linear-gradient(140deg, #00c9c9 0%, #0077ff 35%, #ff8a3d 60%, #ffd166 85%);
  --ring: 0 0 0 2px rgba(0, 209, 255, 0.35), 0 10px 30px -10px rgba(0, 209, 255, 0.4);
  --radius: 22px;
}

/* Aurora — purple ➜ green (northern-lights feel) */
[data-theme=aurora] {
  --bg: #090814;
  --panel: #0c0f22;
  --text: #f0eaff;
  --muted: #b8b3e6;
  --primary: #8a5cff;
  --secondary: #2ef79e;
  --tertiary: #3b2fe0;
  --accent: #eaff70;
  --grad-1: linear-gradient(135deg, #8a5cff 0%, #3b2fe0 38%, #2ef79e 78%, #eaff70 100%);
  --ring: 0 0 0 2px rgba(0, 209, 255, 0.35), 0 10px 30px -10px rgba(0, 209, 255, 0.4);
  --radius: 22px;
}

/* Miami — classic pastel sunburst (pink/orange/yellow/blue) */
[data-theme=miami] {
  --bg: #0a0a14;
  --panel: #101628;
  --text: #f3f7ff;
  --muted: #a3b1cc;
  --primary: #ff6b6b;
  --secondary: #ffd166;
  --tertiary: #4d9fff;
  --accent: #ff80bf;
  --grad-1: linear-gradient(145deg, #ff6b6b 0%, #ff8a3d 35%, #ffd166 60%, #ff80bf 80%, #4d9fff 100%);
  --ring: 0 0 0 2px rgba(0, 209, 255, 0.35), 0 10px 30px -10px rgba(0, 209, 255, 0.4);
  --radius: 22px;
}

/* Peacock — deep blues + emeralds + violets */
[data-theme=peacock] {
  --bg: #080a18;
  --panel: #101436;
  --text: #f4eeff;
  --muted: #c2b6e6;
  --primary: #00b7ff;
  --secondary: #00ffd1;
  --tertiary: #b86bff;
  --accent: #ff00ae;
  --grad-1: linear-gradient(145deg, #00b7ff 0%, #00ffd1 38%, #b86bff 72%, #ff3dcf 100%);
  --ring: 0 0 0 2px rgba(0, 209, 255, 0.35), 0 10px 30px -10px rgba(0, 209, 255, 0.4);
  --radius: 22px;
}

/* Fuchsia — hot pinks, violets, aqua */
[data-theme=fuchsia] {
  --bg: #100015;
  --panel: #170022;
  --text: #ffe7ff;
  --muted: #efb3cc;
  --primary: #ff2b6b;
  --secondary: #7f7cff;
  --tertiary: #00eaff;
  --accent: #ffd658;
  --grad-1: linear-gradient(140deg, #ff2b6b 0%, #7f7cff 55%, #00eaff 85%, #ffd658 100%);
  --ring: 0 0 0 2px rgba(0, 209, 255, 0.35), 0 10px 30px -10px rgba(0, 209, 255, 0.4);
  --radius: 22px;
}

/* Sunburst (Option A) — deep blue → purple → red → orange → yellow */
[data-theme=sunburst] {
  --bg: #0b0f1a;
  --panel: #10162b;
  --text: #fff7f0;
  --muted: #c9cbd6;
  --primary: #ff7a3d;
  --secondary: #ff2b55;
  --tertiary: #2e6cff;
  --accent: #ffd952;
  --grad-1: linear-gradient(135deg, #2e6cff 0%, #7a3cff 24%, #ff2b55 50%, #ff7a3d 76%, #ffd952 100%);
  --ring: 0 0 0 2px rgba(0, 209, 255, 0.35), 0 10px 30px -10px rgba(0, 209, 255, 0.4);
  --radius: 22px;
}

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

img, svg, video, canvas, picture {
  display: block;
  max-width: 100%;
}

html, body {
  margin: 0;
  /* Theme-aware background glows */
  --glow-1: color-mix(in srgb, var(--primary) 34%, transparent);
  --glow-2: color-mix(in srgb, var(--tertiary) 34%, transparent);
  background: radial-gradient(100vmax 70vmax at 80% -10%, var(--glow-1), transparent 55%), radial-gradient(90vmax 60vmax at 0% 100%, var(--glow-2), transparent 50%), var(--bg);
  background-repeat: no-repeat;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  line-height: 1.6;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(16px, 2vw, 28px);
}

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  opacity: 0.9;
}

.site-header {
  background: color-mix(in srgb, var(--bg) 78%, rgba(255, 255, 255, 0.12));
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: saturate(140%) blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-actions {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.muted {
  opacity: 0.6;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad-1);
}

.phone {
  color: var(--text);
  opacity: 0.9;
  text-decoration: none;
  font-weight: 600;
}

.phone:hover {
  opacity: 1;
}

/* HERO single-column, centered */
.hero {
  isolation: isolate;
  position: relative;
  padding: clamp(36px, 5vw, 88px) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.hero-centered {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}

.headline {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(26px, 6.8vw, 60px);
  line-height: 1.15;
  letter-spacing: 0.2px;
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  hyphens: auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lede {
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
}

.hero-card {
  border: none;
  box-shadow: none;
  padding: clamp(16px, 2.5vw, 24px);
  background: transparent;
}

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.stack .pill em {
  opacity: 0.9;
  color: var(--accent);
  font-style: normal;
}

.hero-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 520px) {
  .nav-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }
  .phone {
    display: block;
    line-height: 1.2;
  }
  .hero {
    padding: 22px 0 28px;
  }
  .headline {
    font-size: clamp(24px, 9vw, 34px);
  }
  .hero-card {
    padding: 12px;
  }
  .pill {
    font-size: 12px;
    padding: 5px 8px;
  }
  .btn {
    padding: 10px 14px;
  }
}
section {
  padding: clamp(34px, 2vw, 96px) 0;
}

.section-title {
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.2px;
  margin: 0 0 12px;
}

/* CTA component */
.cta {
  padding: 40px 28px 36px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--ring);
}

.cta .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cta h3 {
  margin: 0 0 0.2rem;
}

/* CTA section sizing */
.cta-section {
  padding: clamp(40px, 5vw, 90px) 0;
}

/* Two-column CTA layout */
.wrap.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.6vw, 28px);
}

@media (min-width: 900px) {
  .wrap.grid-2 {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
/* ABOUT cards */
.about-narrow {
  max-width: 980px;
}

.about-grid {
  display: grid;
  gap: clamp(12px, 2vw, 18px);
  grid-template-columns: 1fr;
}

.about-card {
  border: 1px solid color-mix(in srgb, var(--primary) 22%, rgba(255, 255, 255, 0.14));
  padding: 20px;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* Balanced card grid (compact visuals) */
.cards {
  display: grid;
  gap: clamp(12px, 2vw, 18px);
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 900px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .grid-2 {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.card {
  border: 1px solid color-mix(in srgb, var(--primary) 22%, rgba(255, 255, 255, 0.14));
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.card-media {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  display: grid;
  place-items: center;
  position: relative;
  max-height: 220px;
}

@media (min-width: 900px) {
  .card-media {
    max-height: 260px;
  }
}
.card-media .mock {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kicker {
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--muted);
  text-transform: uppercase;
}

.card h3 {
  margin: 0 0 0.2rem;
  font-size: clamp(18px, 2vw, 24px);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}
.tag--pill {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
}
.btn.primary {
  background: var(--grad-1);
  color: #0b0e15;
  font-weight: 800;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card .row {
  margin-top: 8px;
}

/* Gallery using real screenshots (kept for previews) */
html {
  scroll-behavior: smooth;
}

.gallery {
  display: grid;
  gap: clamp(12px, 2vw, 16px);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1080px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  aspect-ratio: 16/9;
}

.thumb:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25));
  opacity: 0.08;
  transition: opacity 0.3s ease;
}

.thumb:hover:after {
  opacity: 0.28;
}

.shine {
  position: absolute;
  inset: -150% -50%;
  background: linear-gradient(75deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: rotate(8deg);
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.thumb:hover .shine {
  transform: translateX(120%) rotate(8deg);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 12, 0.8);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.8);
}
.lightbox .close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 28px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 12px;
  color: var(--text);
  cursor: pointer;
}
.lightbox .caption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  right: 22px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

footer {
  padding: 36px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pills {
  display: flex;
  gap: 10px;
  align-items: center;
}

section {
  padding: clamp(34px, 2vw, 96px) 0;
}

.section-title {
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.2px;
  margin: 0 0 12px;
}

.section-sub {
  color: var(--muted);
  margin: 0 0 28px;
}

/* Work grid (compact cards, no giant images) */
.work-grid {
  display: grid;
  gap: clamp(12px, 2vw, 18px);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1080px) {
  .work-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.work {
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, rgba(255, 255, 255, 0.16));
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transition: transform 0.25s ease;
}

.work:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 48%, rgba(255, 255, 255, 0.28));
}

.work img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Title/kicker alignment — force same line counts across tiles */
:root {
  --kicker-lh:1.12;
  --kicker-lines:2;
  --title-lh:1.18;
  --title-lines:2;
}

.work-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.work-body .kicker {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--muted);
  text-transform: uppercase;
  line-height: var(--kicker-lh);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--kicker-lines);
  overflow: hidden;
  min-height: calc(var(--kicker-lh) * 1em * var(--kicker-lines));
}

.work-body h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(19px, 1.6vw, 19px);
  line-height: var(--title-lh);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--title-lines);
  overflow: hidden;
}

.work-body .muted {
  color: var(--muted);
}

/* preserve existing utilities */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Gallery using real screenshots */
html {
  scroll-behavior: smooth;
}

.gallery {
  display: grid;
  gap: clamp(12px, 2vw, 16px);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1080px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
}

.thumb:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25));
  opacity: 0.08;
  transition: opacity 0.3s ease;
}

.thumb:hover:after {
  opacity: 0.28;
}

.shine {
  position: absolute;
  inset: -150% -50%;
  background: linear-gradient(75deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: rotate(8deg);
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.thumb:hover .shine {
  transform: translateX(120%) rotate(8deg);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 12, 0.8);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.8);
}
.lightbox .close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 28px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 12px;
  color: var(--text);
  cursor: pointer;
}
.lightbox .caption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  right: 22px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

footer {
  padding: 36px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pills {
  display: flex;
  gap: 10px;
  align-items: center;
}

/*# sourceMappingURL=main.css.map */
