:root {
  --bg: #050505;
  --bg-soft: #0d0f10;
  --panel: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --teal: #19c6bb;
  --teal-bright: #32ddd2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(25, 198, 187, 0.16), transparent 26%),
    radial-gradient(circle at bottom right, rgba(25, 198, 187, 0.10), transparent 24%),
    linear-gradient(180deg, #020202 0%, #090b0c 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
code {
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--teal-bright);
}
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  height: 56px;
}

.logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.brand-name {
  font-weight: 800;
  letter-spacing: 0.28em;
  font-size: 1rem;
}
.brand-sub {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.85rem;
}
.menu {
  display: flex;
  gap: 28px;
  color: var(--muted);
}
.menu a:hover { color: var(--teal); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.25s ease;
}
.btn-solid {
  background: var(--teal);
  color: #041211;
  box-shadow: 0 12px 30px rgba(25, 198, 187, 0.24);
}
.btn-solid:hover {
  background: var(--teal-bright);
  transform: translateY(-1px);
}
.btn-outline {
  border-color: var(--teal);
  color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: #041211;
}
.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.hero { padding: 76px 0 44px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(25, 198, 187, 0.28);
  background: rgba(25, 198, 187, 0.08);
  color: var(--teal);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(3.3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.3rem, 4.6vw, 4rem); }
h3 { margin: 0; }
.hero-copy p,
.section-head p,
.muted,
.card p,
.note {
  color: var(--muted);
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.glass,
.card,
.scheduler-card,
.cta-box,
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.glass {
  padding: 20px;
  border-radius: 26px;
}
.glass strong {
  display: block;
  font-size: 1.02rem;
}
.glass span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 26px 90px rgba(0,0,0,0.45);
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.24));
  backdrop-filter: blur(10px);
}
.hero-overlay span {
  color: rgba(255,255,255,0.78);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.hero-overlay h3 {
  margin-top: 10px;
  font-size: 2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.05;
}
section { padding: 56px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head.single { grid-template-columns: 1fr; }
.services-grid,
.process-grid,
.projects-grid {
  display: grid;
  gap: 18px;
}
.services-grid { grid-template-columns: repeat(4, 1fr); }
.process-grid { grid-template-columns: repeat(2, 1fr); }
.projects-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  padding: 24px;
  border-radius: 28px;
}
.card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
}
.project-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.project-card:hover img { transform: scale(1.05); }
.project-body {
  padding: 22px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.74);
}
.project-body span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.project-body h3 {
  margin-top: 8px;
  font-size: 1.35rem;
}
.scheduler-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.scheduler-card,
.contact-card,
.cta-box {
  padding: 28px;
  border-radius: 32px;
}
.scheduler-notes {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.note {
  padding-left: 14px;
  border-left: 3px solid var(--teal);
}
.calendly-inline-widget {
  min-width: 320px;
  height: 760px;
  overflow: hidden;
  border-radius: 20px;
}
.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
input,
textarea {
  width: 100%;
  margin-top: 14px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font: inherit;
  outline: none;
}
input::placeholder,
textarea::placeholder { color: rgba(255,255,255,0.42); }
input:focus,
textarea:focus { border-color: var(--teal); }
textarea {
  min-height: 150px;
  resize: vertical;
}
.footer {
  padding: 22px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}
@media (max-width: 980px) {
  .menu { display: none; }
  .hero-grid,
  .section-head,
  .services-grid,
  .process-grid,
  .projects-grid,
  .scheduler-layout,
  .cta-box,
  .contact-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav { padding: 14px 0; }
  .field-row { grid-template-columns: 1fr; }
  .btn { padding: 13px 18px; }
  .calendly-inline-widget { height: 700px; }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}
.project-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* mobile */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.ba-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.ba-card img {
  display: block;
  width: 50%;
  height: 50px;
  object-fit: cover;
}

.ba-tag {
  padding: 12px 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(0,0,0,0.45);
  border-bottom: 1px solid var(--line);
}

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

  .ba-card img {
    height: 260px;
  }
}
.simple-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.simple-gallery img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

  .simple-gallery img {
    height: 220px;
  }
}
.featured-image {
  margin-top: 32px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.featured-image img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  cursor: pointer;
}

.simple-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.simple-gallery img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.simple-gallery img:hover,
.featured-image img:hover {
  transform: scale(1.02);
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 30px;
  cursor: pointer;
}

#lightbox-img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
  .featured-image img {
    height: 280px;
  }

  .simple-gallery {
    grid-template-columns: 1fr;
  }

  .simple-gallery img {
    height: 220px;
  }
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.socials {
  display: flex;
  align-items: center;
}

.socials a {
  margin-left: 16px;
  display: inline-flex;
}

.socials svg {
  width: 22px;
  height: 22px;
  fill: #aaa;
  transition: 0.3s ease;
}

.socials a:hover svg {
  fill: white;
  transform: translateY(-2px);
}
