:root {
  --ink: #0f0f10;
  --ink-2: #1f1f22;
  --paper: #f7f4f0;
  --paper-2: #ffffff;
  --accent: #b01284;
  --accent-2: #f6a6d7;
  --gold: #c6a05b;
  --muted: #6c6a68;
  --shadow: 0 20px 60px rgba(15, 15, 16, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fdf6fb 0%, #f9f0f6 25%, #f7f4f0 55%, #f0ece9 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(92vw, var(--max));
  margin: 0 auto;
}

.top-bar {
  background: var(--ink);
  color: var(--paper-2);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 10px 0;
  align-items: center;
  justify-content: space-between;
  line-height: 1.4;
}

.top-bar .cta-links {
  display: flex;
  gap: 16px;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(247, 244, 240, 0.85);
  border-bottom: 1px solid rgba(15, 15, 16, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Serif Display", "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.brand img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  border: none;
  filter: drop-shadow(0 6px 18px rgba(15, 15, 16, 0.28));
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 600;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--ink);
  color: var(--paper-2);
}

.hero {
  position: relative;
  padding: 44px 0 30px;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(255, 245, 250, 0.58)), url("../images/herobg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.35;
  z-index: 0;
}

.hero::before {
  background: radial-gradient(circle, rgba(176, 18, 132, 0.26), transparent 65%);
  right: -120px;
  top: -40px;
}

.hero::after {
  background: radial-gradient(circle, rgba(198, 160, 91, 0.25), transparent 70%);
  right: 80px;
  bottom: -140px;
}

.hero-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-card {
  background: linear-gradient(160deg, #ffffff 0%, #fdf7fb 60%, #faf4f0 100%);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 15, 16, 0.12);
  padding: 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(176, 18, 132, 0.08);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(176, 18, 132, 0.28), transparent 70%);
  z-index: 0;
}

.hero-card h1 {
  font-family: "DM Serif Display", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.08;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.hero-card .subhead {
  color: var(--ink-2);
  font-weight: 700;
  font-size: 1.02rem;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}

.hero-card .hero-body {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.btn {
  border: none;
  border-radius: 14px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  letter-spacing: 0.01em;
}

.btn .icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.btn .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.cta-arrow {
  font-weight: 800;
  margin-left: 8px;
  display: inline-flex;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: linear-gradient(140deg, #0f0f10, #1c1c21);
  color: var(--paper-2);
  box-shadow: 0 12px 28px rgba(15, 15, 16, 0.28);
}

.btn.secondary {
  background: rgba(15, 15, 16, 0.04);
  color: var(--ink);
  border: 1px solid rgba(15, 15, 16, 0.12);
}

.btn.ghost {
  background: rgba(176, 18, 132, 0.14);
  color: #4a0e33;
  border: 1px solid rgba(176, 18, 132, 0.3);
  box-shadow: 0 8px 20px rgba(176, 18, 132, 0.18);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(15, 15, 16, 0.16);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(15, 15, 16, 0.14);
}

.btn:focus-visible {
  outline: 3px solid rgba(176, 18, 132, 0.25);
  outline-offset: 2px;
}

.btn.primary:hover .cta-arrow {
  transform: translateX(3px);
}

.hero-visual {
  background: linear-gradient(150deg, rgba(22, 17, 31, 0.94), rgba(28, 24, 36, 0.86));
  border-radius: 20px;
  padding: 20px;
  color: var(--paper-2);
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(15, 15, 16, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 14% 6% auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  transform: rotate(12deg);
  pointer-events: none;
}

.hero-visual:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 32px 80px rgba(15, 15, 16, 0.32);
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual,
  .btn {
    transition: none;
  }
  .hero-visual:hover {
    transform: none;
    box-shadow: 0 20px 60px rgba(15, 15, 16, 0.2);
  }
}

.hero-visual .tag {
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.hero-visual .placeholder {
  background: linear-gradient(160deg, rgba(176, 18, 132, 0.6), rgba(255, 255, 255, 0.1));
  border-radius: var(--radius-md);
  min-height: 240px;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.hero-media {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.hero-photo {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero-info-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #f3edf8;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
  font-size: 0.9rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.15);
  display: inline-flex;
}

.location-chip .chip-icon {
  font-size: 1rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 12px;
  align-items: center;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(176, 18, 132, 0.1), rgba(198, 160, 91, 0.1));
  border: 1px solid rgba(176, 18, 132, 0.14);
  color: var(--ink-2);
  font-weight: 700;
  font-size: 0.9rem;
}

.rating-score {
  font-size: 1rem;
  padding: 5px 9px;
  border-radius: 10px;
  background: var(--paper-2);
  box-shadow: 0 10px 30px rgba(176, 18, 132, 0.12);
}

.rating-text {
  color: var(--muted);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(15, 15, 16, 0.04);
  border: 1px solid rgba(15, 15, 16, 0.05);
  font-weight: 700;
  color: var(--ink-2);
  font-size: 0.9rem;
}

.trust-chip::before {
  content: attr(data-icon);
  font-size: 0.85rem;
  color: var(--accent);
}

.card:hover,
.service-card:hover,
.image-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15, 15, 16, 0.18);
}

.feature-card,
.feature-card:hover {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 15, 16, 0.14);
  border-color: rgba(176, 18, 132, 0.18);
}

.feature-card:hover .feature-icon {
  background: rgba(176, 18, 132, 0.16);
  color: #5f0c45;
}
.section {
  padding: 70px 0;
}

.section-alt {
  background: radial-gradient(circle at 15% 10%, rgba(176, 18, 132, 0.04), rgba(255, 255, 255, 0.65) 40%), linear-gradient(180deg, #ffffff 0%, #fbf7fa 100%);
  border-top: 1px solid rgba(15, 15, 16, 0.05);
  border-bottom: 1px solid rgba(15, 15, 16, 0.05);
}

.section-lined {
  background: var(--paper-2);
  border-top: 1px solid rgba(15, 15, 16, 0.05);
}

.section h2 {
  font-family: "DM Serif Display", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 16px;
  line-height: 1.08;
}

.section p.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.section .lead.narrow {
  max-width: 720px;
  font-size: 1rem;
}

.section-header {
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(108, 106, 104, 0.8);
}

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cards.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.featured-split {
  grid-template-columns: minmax(0, 2.1fr) minmax(260px, 0.9fr);
  align-items: start;
  gap: 24px;
}

.card {
  background: var(--paper-2);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(15, 15, 16, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card h3 {
  margin-top: 0;
}

.feature-card {
  position: relative;
  border: 1px solid rgba(15, 15, 16, 0.06);
  padding: 28px;
  border-radius: 18px;
  min-height: 220px;
  display: grid;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(15, 15, 16, 0.08);
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(176, 18, 132, 0.05), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.feature-card .feature-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(176, 18, 132, 0.1);
  color: #7a0f58;
  border: 1px solid rgba(176, 18, 132, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
}

.feature-card .feature-icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  border-top: 2px solid rgba(176, 18, 132, 0.3);
  opacity: 0.7;
}

.feature-card svg {
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 15, 16, 0.14);
  border-color: rgba(176, 18, 132, 0.18);
}

.feature-card:hover .feature-icon {
  background: rgba(176, 18, 132, 0.16);
  color: #5f0c45;
}

.feature-cta {
  margin-top: 28px;
}

.feature-cta .btn {
  min-width: 170px;
}

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .feature-card:hover {
    transition: none;
    transform: none;
    box-shadow: 0 12px 32px rgba(15, 15, 16, 0.08);
  }

  .service-card,
  .service-card:hover,
  .service-media img {
    transition: none;
    transform: none;
  }
}

.card .meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.image-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.image-tile {
  background: linear-gradient(135deg, #f2d4e4, #f7f1ea);
  border-radius: var(--radius-sm);
  min-height: 160px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

img.image-tile {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

.gallery-thumb {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(15, 15, 16, 0.18);
}

.metrics {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.metric {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(15, 15, 16, 0.05);
  height: 100%;
}

.metric span {
  font-size: 2rem;
  font-weight: 800;
  display: block;
}

.hours-card {
  display: grid;
  gap: 12px;
}

.hours-card h3 {
  margin: 0;
}

.hours-card .meta {
  margin: 0;
}

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

.icon-chip {
  background: rgba(15, 15, 16, 0.05);
  border: 1px solid rgba(15, 15, 16, 0.1);
}

.hours-actions {
  margin-top: 6px;
}

.metrics.stats {
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.metrics.stats .metric {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  background: linear-gradient(180deg, rgba(176, 18, 132, 0.06), rgba(247, 244, 240, 0.8));
  border: 1px solid rgba(176, 18, 132, 0.12);
}

.stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.service-list,
.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
  justify-items: stretch;
}

.service-grid.single {
  grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(15, 15, 16, 0.05);
  border: 1px solid rgba(15, 15, 16, 0.08);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-2);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 249, 0.98));
  border-radius: 18px;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(15, 15, 16, 0.08);
  border: 1px solid rgba(15, 15, 16, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.service-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, rgba(176, 18, 132, 0.3), rgba(198, 160, 91, 0.2));
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.service-tags {
  position: absolute;
  inset: 10px auto auto 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 1;
}

.service-tag {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-content h3 {
  margin: 0;
  font-size: 1.1rem;
}

.service-content .meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.service-meta-chips .chip {
  background: rgba(15, 15, 16, 0.05);
  border: 1px solid rgba(15, 15, 16, 0.08);
  padding: 6px 10px;
  font-size: 0.85rem;
  border-radius: 10px;
}

.service-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink-2);
}

.service-card .btn {
  padding: 10px 14px;
  white-space: nowrap;
  font-size: 0.95rem;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(15, 15, 16, 0.14);
  border-color: rgba(176, 18, 132, 0.2);
}

.service-card:hover .service-media img {
  transform: scale(1.02);
}

.service-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.skeleton-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 244, 240, 0.9));
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(15, 15, 16, 0.06);
  box-shadow: 0 12px 30px rgba(15, 15, 16, 0.08);
  overflow: hidden;
}

.skeleton-bar,
.skeleton-thumb {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.06));
  background-size: 200% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: 10px;
}

.skeleton-thumb {
  height: 160px;
}

.skeleton-bar.small { height: 12px; width: 60%; }
.skeleton-bar.medium { height: 14px; width: 80%; }
.skeleton-bar.large { height: 18px; width: 50%; }

.empty-state {
  background: var(--paper-2);
  border: 1px dashed rgba(15, 15, 16, 0.12);
  border-radius: 16px;
  padding: 20px;
  margin-top: 12px;
  box-shadow: 0 10px 26px rgba(15, 15, 16, 0.08);
}

.empty-title {
  font-weight: 800;
  margin-bottom: 6px;
}

.empty-copy {
  color: var(--muted);
  margin: 0 0 10px;
}

.form-card {
  background: var(--paper-2);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 16px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 15, 16, 0.15);
  font-family: inherit;
  background: var(--paper);
}

textarea {
  min-height: 120px;
}

.notice {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(176, 18, 132, 0.12);
  color: var(--ink-2);
}

.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 16, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table th,
.table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(15, 15, 16, 0.12);
  text-align: left;
}

.table th {
  background: rgba(15, 15, 16, 0.05);
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(15, 15, 16, 0.08);
}

.badge.success {
  background: rgba(46, 125, 50, 0.15);
  color: #1b5e20;
}

.badge.pending {
  background: rgba(176, 18, 132, 0.15);
  color: #7d0c5b;
}

.badge.info {
  background: rgba(15, 15, 16, 0.12);
  color: #0f0f10;
}

.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(15, 15, 16, 0.1);
  background: var(--paper-2);
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer p {
  color: var(--muted);
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-photo,
.service-card img,
.image-grid img,
.brand img {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.9s ease forwards;
}

.image-grid img:nth-child(2) { animation-delay: 0.05s; }
.image-grid img:nth-child(3) { animation-delay: 0.1s; }
.image-grid img:nth-child(4) { animation-delay: 0.15s; }
.service-card img { animation-delay: 0.05s; }
.brand img { animation-delay: 0.05s; }
.hero-photo { animation-delay: 0.08s; }

@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-visual {
    order: 0;
    padding: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .hero-actions a,
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cards,
  .service-list,
  .service-grid,
  .metrics,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .service-card {
    width: 100%;
  }

  .feature-cta .btn {
    width: 100%;
  }

  .featured-split {
    grid-template-columns: 1fr;
  }
}
