:root {
  --bg: #050a14;
  --surface: rgba(10, 20, 38, 0.84);
  --ink: #eef2f6;
  --muted: #7a90a8;
  --brand: #00c8b4;
  --brand-deep: #008f7e;
  --accent: #60b0ff;
  --line: rgba(120, 170, 210, 0.12);
  --radius: 18px;
  --shadow: 0 28px 52px rgba(2, 4, 12, 0.6);
  --bg-shift: 0%;
  --orb-primary: #0098d8;
  --orb-secondary: #00c8b4;
  --gradient-start: rgba(0, 152, 216, 0.12);
  --gradient-mid: rgba(0, 200, 180, 0.12);
  --cta-start: #06152a;
  --cta-mid: #0d4880;
  --cta-end: #00c8b4;
  --hero-dot-gradient: linear-gradient(90deg, #00c8b4, #60b0ff);
  --card-hover-border: rgba(0, 200, 180, 0.55);
}

/* Light Professional Theme */
[data-theme="light"] {
  --bg: #f4f6fa;
  --surface: rgba(255, 255, 255, 0.92);
  --ink: #0d1b2e;
  --muted: #4a5e78;
  --brand: #0066cc;
  --brand-deep: #004a99;
  --accent: #0088dd;
  --line: rgba(15, 40, 80, 0.1);
  --orb-primary: #a0d4ff;
  --orb-secondary: #00b8a0;
  --gradient-start: rgba(0, 102, 204, 0.06);
  --gradient-mid: rgba(0, 184, 160, 0.06);
  --cta-start: #0d2240;
  --cta-mid: #1a5290;
  --cta-end: #00b8a0;
  --hero-dot-gradient: linear-gradient(90deg, #0066cc, #00b8a0);
  --card-hover-border: rgba(0, 102, 204, 0.4);
  --shadow: 0 20px 44px rgba(15, 30, 60, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, var(--gradient-start), transparent 40%),
    radial-gradient(circle at 85% 12%, var(--gradient-mid), transparent 42%),
    radial-gradient(circle at 50% 120%, rgba(10, 40, 60, 0.4), transparent 55%),
    var(--bg);
  background-size: 120% 120%;
  animation: backdropShift 18s ease-in-out infinite alternate;
  overflow-x: hidden;
  line-height: 1.75;
  letter-spacing: 0.012em;
  text-rendering: optimizeLegibility;
  transition: background 0.5s ease, color 0.3s ease;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(133, 170, 235, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 170, 235, 0.11) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 25%, black 24%, transparent 78%);
}

body::after {
  z-index: -1;
  opacity: 0.32;
  background:
    radial-gradient(circle at 22% 22%, var(--gradient-start), transparent 30%),
    radial-gradient(circle at 78% 68%, var(--gradient-mid), transparent 32%);
  animation: glowFloat 14s ease-in-out infinite;
}

h1,
h2,
h3,
.brand-text,
.eyebrow {
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: 0.008em;
}

h1,
h2 {
  line-height: 1.08;
}

p {
  line-height: 1.85;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  filter: blur(18px);
  opacity: 0.5;
  animation: orbDrift 16s ease-in-out infinite;
}

.orb-one {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, var(--orb-primary), transparent 70%);
  top: -120px;
  right: -100px;
  transition: background 0.5s ease;
}

.orb-two {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at 60% 30%, var(--orb-secondary), transparent 75%);
  bottom: -180px;
  left: -120px;
  animation-delay: -8s;
  transition: background 0.5s ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(4, 10, 18, 0.88);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s ease, border-color 0.4s ease;
}

[data-theme="light"] .site-header {
  background: rgba(244, 246, 250, 0.92);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(4, 14, 24, 0.6);
  border: 1px solid rgba(0, 200, 180, 0.18);
  box-shadow: 0 14px 28px rgba(0, 5, 12, 0.5), 0 0 0 1px rgba(0, 200, 180, 0.06);
}

[data-theme="light"] .brand-mark {
  background: rgba(240, 244, 250, 0.8);
  border-color: rgba(0, 102, 204, 0.15);
  box-shadow: 0 8px 20px rgba(15, 30, 60, 0.08);
}

.brand-logo {
  width: 34px;
  height: 34px;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text {
  font-size: 0.96rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-subtext {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6890a8;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-contact a {
  text-decoration: none;
  color: #b8d6e3;
  font-weight: 600;
  font-size: 0.86rem;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.header-contact a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.76rem 1.3rem;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 30px rgba(0, 110, 96, 0.35);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 110, 96, 0.5);
}

.btn-sm {
  padding: 0.58rem 1rem;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: #c0d0e0;
}

.hero-banner .btn-ghost {
  background: rgba(5, 14, 30, 0.6);
  border-color: rgba(180, 210, 235, 0.22);
}

.hero-banner .btn-ghost:hover {
  background: rgba(8, 22, 46, 0.8);
}

.btn-light {
  background: linear-gradient(145deg, #00d4b8, #009e8c);
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 180, 160, 0.35);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: #f8fcff;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero {
  padding: 7.2rem 0 5rem;
}

.hero-banner {
    
  min-height: 88vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
}

.hero-banner-inner {
    margin-left: 2%;
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-carousel {
  position: absolute;
  inset: 0;

      z-index: -3;
    opacity: 0.7;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
background: linear-gradient(100deg, rgb(2 4 10 / 47%) 0%, rgb(3 7 16 / 0%) 26%, rgb(4 10 22 / 0%) 50%, rgb(4 10 22 / 0%) 70%, rgb(4 10 22) 100%), linear-gradient(180deg, rgba(4, 10, 24, 0.16) 0%, rgba(2, 6, 14, 0.92) 100%);
}

.hero-blur-left {
  position: absolute;
  inset: 0;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: transparent;
  mask-image: linear-gradient(95deg, black 0%, black 22%, transparent 52%);
  -webkit-mask-image: linear-gradient(95deg, black 0%, black 22%, transparent 52%);
  pointer-events: none;
}

.hero-glass {
max-width: 900px;
    border-radius: 28px;
    border: 1px solid rgba(160, 200, 230, 0.12);
    padding: clamp(1.2rem, 3vw, 2.3rem);
    background: linear-gradient(145deg, rgb(4 10 22 / 46%), rgba(5, 14, 30, 0.5));
    box-shadow: 0 28px 80px rgba(0, 3, 10, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}
}

[data-theme="light"] .hero-glass {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 255, 0.7));
  border-color: rgba(0, 80, 160, 0.1);
  box-shadow: 0 28px 60px rgba(15, 30, 60, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .hero h1 {
  color: #0d1b2e;
}

[data-theme="light"] .hero-accent {
  background: linear-gradient(135deg, #007a6e, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .hero-kicker {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 60, 120, 0.1);
  color: #2a4060;
}

[data-theme="light"] .hero-chip {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 60, 120, 0.1);
  color: #3a5070;
}

[data-theme="light"] .gallery-item {
  background: #e8edf4;
  border-color: rgba(0, 60, 120, 0.08);
}

[data-theme="light"] .bg-orb {
  opacity: 0.2;
}

.hero-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.35rem 0.86rem;
  border-radius: 999px;
  width: fit-content;
  background: rgba(8, 18, 36, 0.88);
  border: 1px solid rgba(160, 200, 230, 0.14);
  color: #d0dce8;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00d4b8;
  box-shadow: 0 0 0 6px rgba(0, 212, 184, 0.18);
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--brand);
  font-size: 0.95rem;
}

.hero h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
  color: #f0f4f8;
  letter-spacing: -0.025em;
}

.hero-accent {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, #00e0c8, #60b0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.08em;
}

.hero-lead {
  color: var(--muted);
  max-width: 55ch;
  margin: 1rem 0 0;
  font-size: 1.04rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.25rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  border: 1px solid rgba(140, 190, 220, 0.14);
  background: rgba(5, 12, 26, 0.78);
  color: #b8cce0;
  padding: 0.52rem 0.95rem;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-chip svg {
  flex-shrink: 0;
  color: var(--brand);
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-left: 6px;
}

.hero-dot-btn {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: rgba(227, 237, 255, 0.33);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero-dot-btn.active {
  background: var(--hero-dot-gradient);
  transform: scaleX(1.08);
}

.hero-metrics {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-metrics article {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero-metrics h3 {
  margin: 0;
  font-size: 1.4rem;
}

.hero-metrics p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-cards {
  display: grid;
  gap: 14px;
}

.info-card {
  background: linear-gradient(165deg, rgba(10, 30, 54, 0.6), rgba(6, 16, 32, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.1rem;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-hover-border);
}

.info-card.offset {
  margin-left: 28px;
}

.info-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.info-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.section {
  padding: 4.7rem 0;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
  margin: 0;
}

.section p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.pillars {
  display: grid;
  gap: 14px;
}

.pillars article {
 background: rgb(8 18 36 / 22%);
    border: 1px solid rgb(120 170 210 / 40%);
    border-radius: 14px;
    padding: 1rem;
    backdrop-filter: blur(44px);
}

[data-theme="light"] .pillars article,
[data-theme="light"] .services-grid article {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 16px rgba(15, 30, 60, 0.06);
}

.pillars h3 {
  margin: 0;
  font-size: 1.35rem;
}

.pillars p {
  margin: 0.4rem 0 0;
}

.band {
  background: linear-gradient(140deg, rgba(0, 60, 90, 0.35), rgba(0, 200, 180, 0.08));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.services-grid article {
background: rgb(8 18 36 / 22%);
    border: 1px solid rgb(120 170 210 / 40%);
    border-radius: 14px;
    padding: 1rem;
    backdrop-filter: blur(44px);
}

.services-grid h3 {
  margin: 0;
  font-size: 1.32rem;
}

.services-grid p {
  margin: 0.5rem 0 0;
}

.portfolio-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}

.masonry {
  column-count: 4;
  column-gap: 18px;
  margin-top: 1.5rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(140, 190, 220, 0.16);
  cursor: pointer;
  background: #0c1e38;
  box-shadow: 0 18px 40px rgba(4, 12, 30, 0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: tileIn 0.7s cubic-bezier(0.21, 0.68, 0.2, 1.01) forwards;
  animation-delay: calc(var(--i, 0) * 40ms);
}

.gallery-item::before {
  content: "+";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(5, 10, 22, 0.58);
  backdrop-filter: blur(2px);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: 2;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 18, 0) 44%, rgba(4, 8, 18, 0.58) 100%);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.08);
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: var(--card-hover-border);
  box-shadow: 0 28px 48px rgba(2, 8, 22, 0.68);
}

.gallery-item:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover::after {
  opacity: 0.7;
}

.item-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 0.78rem;
  color: #f4f8ff;
  background: rgba(8, 17, 38, 0.62);
  border: 1px solid rgba(223, 233, 255, 0.24);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  z-index: 2;
}

.cta-wrap {
  border-radius: 22px;
  background: linear-gradient(130deg, var(--cta-start), var(--cta-mid) 62%, var(--cta-end));
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.5s ease;
}

.cta-wrap p,
.cta-wrap .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact-inline {
  margin: 0.7rem 0 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  place-items: center;
  padding: 24px;
  z-index: 60;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes backdropShift {
  0% {
    background-position: 0% 0%, 100% 0%, 50% 100%, 0 0;
  }
  100% {
    background-position: 6% 8%, 93% 12%, 46% 94%, 0 0;
  }
}

@keyframes glowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@keyframes orbDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
}

@keyframes tileIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Theme Toggle */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle {
  position: relative;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.theme-toggle:hover {
  border-color: var(--brand);
}

.theme-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-icon-dark {
  left: 4px;
  background: linear-gradient(135deg, #0a1a30, #142840);
  border: 1px solid rgba(100, 160, 220, 0.3);
  opacity: 1;
  box-shadow: 0 2px 8px rgba(10, 26, 48, 0.5);
}

.theme-icon-light {
  right: 4px;
  background: linear-gradient(135deg, #e8edf4, #fff);
  border: 1px solid rgba(0, 80, 160, 0.2);
  opacity: 0.4;
  box-shadow: 0 2px 8px rgba(200, 210, 225, 0.4);
}

[data-theme="light"] .theme-icon-dark {
  opacity: 0.4;
  box-shadow: 0 2px 8px rgba(10, 26, 48, 0.2);
}

[data-theme="light"] .theme-icon-light {
  opacity: 1;
  box-shadow: 0 2px 8px rgba(200, 210, 225, 0.6);
}

/* Gallery Expand */
.gallery-expand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.btn-expand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
}

.btn-expand svg {
  transition: transform 0.3s ease;
}

.btn-expand:hover svg {
  transform: translateY(3px);
}

.btn-expand.expanded svg {
  transform: rotate(180deg);
}

.gallery-count {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.gallery-count span {
  color: var(--brand);
  font-weight: 600;
}

.gallery-item.hidden {
  display: none;
}

@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    min-height: 80vh;
  }

  .hero-glass {
    max-width: 780px;
  }

  .masonry {
    column-count: 3;
  }
}

@media (max-width: 760px) {
  .site-header .btn {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .theme-toggle {
    width: 42px;
    height: 24px;
  }

  .theme-icon {
    width: 16px;
    height: 16px;
  }

  .hero {
    padding-top: 5.4rem;
    padding-bottom: 3.6rem;
  }

  .hero-banner {
    min-height: 76vh;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 7vw, 3.2rem);
  }

  .hero-glass {
    border-radius: 20px;
    padding: 1.1rem;
  }

  .hero-meta {
    gap: 8px;
  }

  .hero-dots {
    margin-left: 0;
  }

  .hero-dot-btn {
    width: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .masonry {
    column-count: 2;
  }

  .cta-wrap {
    padding: 1.2rem;
  }
}

@media (max-width: 520px) {
  .brand-text {
    font-size: 0.8rem;
  }

  .brand-subtext {
    font-size: 0.64rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .masonry {
    column-count: 1;
  }
}
