*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #111111;
  --white:      #F7F7F2;
  --blue:       #2F80ED;
  --blue-dark:  #1a6fd4;
  --blue-dim:   rgba(47,128,237,0.12);
  --blue-border:rgba(47,128,237,0.25);
  --gray:       #BBBBBB;
  --gray-dim:   #666666;
  --navy:       #0B152B;
  --surface:    #191919;
  --surface-2:  #222222;
  --border:     rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s;
}

#nav.scrolled {
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot { color: var(--blue); }

.nav-logo-mark {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  flex-shrink: 0;
}

.site-logo-img {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 22px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--blue-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: 0.2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 20px 40px 28px;
  gap: 4px;
}

.mobile-menu a {
  color: var(--gray);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .mobile-cta {
  margin-top: 14px;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 13px;
  font-weight: 600;
  border-bottom: none;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47,128,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,128,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(47,128,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 28px;
}

.hero h1 .blue { color: var(--blue); }

.hero-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 14px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--gray);
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.stat {}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-num span { color: var(--blue); }

.stat-label {
  font-size: 12px;
  color: var(--gray-dim);
  font-weight: 400;
}

/* ── SECTION COMMONS ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title .blue { color: var(--blue); }

.section-sub {
  font-size: 15px;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

.section-header { margin-bottom: 56px; }

/* ── WORK ── */
.work {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.work-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.work-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  flex: 1;
}

.work-carousel::-webkit-scrollbar { display: none; }

.work-card {
  flex: 0 0 420px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.work-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-4px);
}

.work-preview {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-2);
}

.work-preview-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.work-card:hover .work-preview-inner { transform: scale(1.03); }

.nail-salon    { background: url('Classy-Nails-Preview.png') center top / cover no-repeat; }
.guardian-inbox{ background: url('Guardian-Inbox-Preview.png') center top / cover no-repeat; }
.sunshine-pool { background: url('Sunshine-Pool-Preview.png') center top / cover no-repeat; }
.baur-marine   { background: url('Baur-Marine-Preview.png') center top / cover no-repeat; }

.work-info { padding: 28px; }

.work-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.work-tags span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  padding: 3px 10px;
}

.work-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.work-info p {
  font-size: 13px;
  color: var(--gray-dim);
  line-height: 1.7;
}

.carousel-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--gray);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}

.carousel-btn:hover {
  border-color: var(--blue-border);
  color: var(--blue);
}

/* Dot nav */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--blue);
  transform: scale(1.3);
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--surface);
  padding: 40px 32px;
  transition: background 0.2s;
  position: relative;
}

.service-card:hover { background: var(--surface-2); }

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.service-card p {
  font-size: 13px;
  color: var(--gray-dim);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-card ul li {
  font-size: 12px;
  color: var(--gray-dim);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.5;
}

/* ── PROCESS ── */
.process {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}

.process-step {
  background: var(--black);
  padding: 36px 28px;
}

.process-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.12;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  color: var(--gray-dim);
  line-height: 1.7;
}

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dim);
  font-size: 13px;
}

.about-photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--blue);
  opacity: 0.08;
  z-index: -1;
}

.about-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
}

.about-content p {
  font-size: 14px;
  color: var(--gray-dim);
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 300;
}

.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.about-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-num span { color: var(--blue); }

.about-stat-label {
  font-size: 11px;
  color: var(--gray-dim);
  line-height: 1.4;
}

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}

.contact-info p {
  font-size: 14px;
  color: var(--gray-dim);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
  text-decoration: none;
}

.contact-detail-value:hover { color: var(--white); }

.calendly-option {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.calendly-or {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 14px;
}

.calendly-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 13px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  background: transparent;
}

.calendly-btn:hover {
  border-color: var(--blue-border);
  color: var(--blue);
}

.calendly-btn svg {
  flex-shrink: 0;
  stroke: currentColor;
}

.calendly-note {
  font-size: 11px;
  color: var(--gray-dim);
  margin-top: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-dim); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-border); }

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group select { color: var(--gray-dim); }
.form-group select option { background: var(--surface); }

.form-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.form-submit:hover { background: var(--blue-dark); }

/* ── FORM SUCCESS OVERLAY ── */
.form-success {
  position: absolute;
  inset: 0;
  background: var(--surface);
  border: 1px solid var(--blue-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 10;
}

.form-success.visible {
  opacity: 1;
  pointer-events: auto;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.form-success-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 13px;
  color: var(--gray-dim);
  line-height: 1.75;
  max-width: 260px;
}

/* ── TAMPA BAY SECTION ── */
.tampa-section {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tampa-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.tampa-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.78);
}

.tampa-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.tampa-content h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 12px;
}

.tampa-content p {
  font-size: 15px;
  color: var(--gray);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
  font-size: 22px;
  margin-bottom: 14px;
  display: inline-flex;
}

.footer-brand p {
  font-size: 13px;
  color: var(--gray-dim);
  line-height: 1.75;
  max-width: 260px;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--gray-dim);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-col a:hover { color: var(--white); }

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

.footer-bottom p {
  font-size: 12px;
  color: var(--gray-dim);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .mobile-menu { padding: 20px 24px 28px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }

  .hero { padding: 120px 24px 80px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }

  .work { padding: 80px 0; }
  .work-card { flex: 0 0 85vw; }
  .carousel-btn { display: none; }

  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .process { padding: 80px 0; }
  .process-grid { grid-template-columns: 1fr; }

  .about { padding: 80px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-stats { gap: 24px; flex-wrap: wrap; }

  .contact { padding: 80px 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
