/* ==========================================================================
   HKS Events — Premium Stylesheet
   Design tokens, base, layout, components
   ========================================================================== */

:root {
  --purple: #6A1B9A;
  --purple-dark: #4A1170;
  --purple-soft: #F4ECFA;
  --gold: #D4AF37;
  --gold-dark: #A8862D;
  --gold-soft: #FBF5E3;
  --white: #FFFFFF;
  --ink: #222222;
  --muted: #5B5B6B;
  --bg-soft: #F8F9FB;
  --border: #E9E9F0;
  --wa: #25D366;
  --wa-dark: #1DAE54;
  --danger: #D64545;
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(34, 34, 34, 0.06);
  --shadow-md: 0 12px 32px rgba(34, 34, 34, 0.10);
  --shadow-lg: 0 24px 60px rgba(34, 34, 34, 0.16);
  --header-h: 74px;
  --container: 1200px;
  --ease: cubic-bezier(0.25, 0.8, 0.35, 1);
}

/* ---------- Reset & Base ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--purple-dark);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.22;
  color: var(--ink);
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.05rem; }

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

::selection {
  background: var(--purple);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout utilities ---------- */

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  isolation: isolate;
  padding: 4.5rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.75rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
}

.section-head.center .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
}

.section-head p {
  margin-top: 0.9rem;
  font-size: 1.05rem;
}

.center { text-align: center; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.hidden { display: none !important; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 10px 24px rgba(106, 27, 154, 0.28);
}

.btn-primary:hover {
  background: var(--purple-dark);
  color: #fff;
  box-shadow: 0 14px 30px rgba(74, 17, 112, 0.34);
}

.btn-gold {
  background: linear-gradient(135deg, #E4C55B, var(--gold) 55%, #C19E2D);
  color: #2B2305;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  color: #2B2305;
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.45);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
}

.btn-wa:hover {
  background: var(--wa-dark);
  color: #fff;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.btn-call {
  background: #fff;
  color: var(--purple);
  border-color: var(--purple);
}

.btn-call:hover {
  background: var(--purple);
  color: #fff;
}

.btn-sm {
  padding: 0.65rem 1.2rem;
  font-size: 0.87rem;
}

.btn-lg {
  padding: 1.05rem 2.1rem;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -64px;
  z-index: 2000;
  background: var(--purple);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  transition: top 0.25s var(--ease);
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 18px rgba(34, 34, 34, 0.07);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--purple), var(--purple-dark));
  box-shadow: 0 6px 16px rgba(106, 27, 154, 0.28);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}

.brand-text strong {
  color: var(--purple);
  font-weight: 700;
}

/* Navigation */

.site-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 999px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.18rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover {
  color: var(--purple);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--purple);
  font-weight: 600;
}

.nav-link.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: none;
}

/* Hamburger */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(17, 10, 26, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.nav-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-head,
.nav-mobile-cta {
  display: none;
}

/* ==========================================================================
   Hero (Home)
   ========================================================================== */

.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  display: flex;
  align-items: center;
  isolation: isolate;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(28, 10, 44, 0.88) 0%, rgba(28, 10, 44, 0.72) 42%, rgba(28, 10, 44, 0.35) 100%),
    linear-gradient(to top, rgba(17, 8, 26, 0.55), rgba(17, 8, 26, 0.05));
}

.hero-content {
  max-width: 720px;
  padding: 5.5rem 0;
}

.hero-content .eyebrow {
  color: var(--gold);
}

.hero-content .eyebrow::before {
  background: linear-gradient(90deg, var(--gold), #F0D878);
}

.hero-title {
  color: #fff;
  font-size: clamp(2.15rem, 5.2vw, 3.6rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
}

.hero-title span {
  color: var(--gold);
}

.hero-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  max-width: 620px;
  margin-bottom: 1.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F3E9C8;
  margin-bottom: 1.3rem;
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   Stats band
   ========================================================================== */

.stats-band {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}

.stat {
  text-align: center;
  padding: 1rem 0.5rem;
}

.stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--purple-soft);
  color: var(--purple);
}

.stat-icon svg {
  width: 26px;
  height: 26px;
}

.stat-value {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--purple);
  line-height: 1.1;
}

.stat-value em {
  font-style: normal;
  color: var(--gold-dark);
}

.stat-label {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

/* ==========================================================================
   Service cards
   ========================================================================== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.9rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  overflow: hidden;
  text-decoration: none;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #E0D3F2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover h3 {
  color: var(--purple);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--purple-soft);
  color: var(--purple);
  margin-bottom: 1.15rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.service-card:hover .service-icon {
  background: var(--purple);
  color: #fff;
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  transition: color 0.3s var(--ease);
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}

.service-card .card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--purple);
}

.service-card .card-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s var(--ease);
}

.service-card:hover .card-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Why choose grid
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.why-item {
  display: flex;
  gap: 0.95rem;
  padding: 1.35rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-check {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--gold-soft);
  color: var(--gold-dark);
}

.why-check svg {
  width: 22px;
  height: 22px;
}

.why-item h4 {
  margin-bottom: 0.2rem;
}

.why-item p {
  font-size: 0.88rem;
}

/* ==========================================================================
   Gallery (featured preview + page grid)
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--purple-soft);
  box-shadow: var(--shadow-sm);
}

.gallery-item.featured {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 17, 112, 0.72), rgba(74, 17, 112, 0.05) 60%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  color: #fff;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
}

.gallery-caption svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex: none;
}

/* Filter bar */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.filter-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 8px 18px rgba(106, 27, 154, 0.25);
}

/* Masonry layout */

.masonry {
  columns: 3;
  column-gap: 1.25rem;
}

.masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
}

.masonry .gallery-item img {
  height: auto;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 6, 20, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  width: min(92vw, 1000px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-figure {
  width: 100%;
  max-height: 78vh;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #1a1122;
}

.lightbox-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 78vh;
}

.lightbox-caption {
  margin-top: 0.9rem;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 500;
  text-align: center;
}

.lightbox-btn {
  position: absolute;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.lightbox-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
}

.lightbox-btn svg {
  width: 22px;
  height: 22px;
}

.lightbox-close {
  top: -58px;
  right: 0;
}

.lightbox-prev {
  left: -72px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: -72px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1120px) {
  .lightbox-prev { left: -16px; }
  .lightbox-next { right: -16px; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.9rem 1.7rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 0.7rem;
  right: 1.4rem;
  font-family: var(--font-head);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--purple-soft);
  font-weight: 700;
}

.testi-stars {
  display: flex;
  gap: 0.18rem;
  color: var(--gold);
}

.testi-stars svg {
  width: 18px;
  height: 18px;
}

.testi-text {
  font-size: 0.96rem;
  color: var(--ink);
  flex: 1;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple);
  font-family: var(--font-head);
  font-weight: 600;
}

.testi-person strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--ink);
}

.testi-person small {
  color: var(--muted);
  font-size: 0.83rem;
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 85% 10%, rgba(212, 175, 55, 0.18), transparent 70%),
    linear-gradient(120deg, var(--purple-dark), var(--purple) 55%, #7B27B0);
  color: #fff;
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
}

.cta-inner {
  position: relative;
  padding: 4.5rem 0;
  max-width: 720px;
  margin-inline: auto;
}

.cta-inner h2 {
  color: #fff;
  margin-bottom: 0.9rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.8rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* ==========================================================================
   Page banner (inner pages)
   ========================================================================== */

.page-banner {
  position: relative;
  padding: 4.6rem 0 4.2rem;
  color: #fff;
  background-color: var(--purple);
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 6, 18, 0.28), rgba(10, 6, 18, 0.45));
}

.page-banner h1,
.page-banner .page-intro,
.page-banner .breadcrumb {
  text-shadow: 0 1px 14px rgba(15, 6, 26, 0.65);
}

.page-banner-about { background-image: url("https://images.unsplash.com/photo-1465495976277-4387d4b0b4c6?auto=format&fit=crop&w=1600&q=70"); }
.page-banner-services { background-image: url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1600&q=70"); }
.page-banner-gallery { background-image: url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1600&q=70"); }
.page-banner-contact { background-image: url("https://images.unsplash.com/photo-1515187029135-18ee286d815b?auto=format&fit=crop&w=1600&q=70"); }
.page-banner-privacy { background-image: url("https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=1600&q=70"); }
.page-banner-terms { background-image: url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1600&q=70"); }

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-banner .page-intro {
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin-inline: auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .sep {
  color: var(--gold);
}

.breadcrumb [aria-current="page"] {
  color: var(--gold);
}

/* ==========================================================================
   About page
   ========================================================================== */

.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.about-media .about-badge {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about-badge .stat-value {
  font-size: 1.5rem;
}

.about-badge .stat-label {
  font-size: 0.78rem;
}

.about-content .lead {
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.about-content p {
  margin-bottom: 0.9rem;
}

.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.4rem 0;
  color: var(--ink);
  font-size: 0.95rem;
}

.check-list svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--gold-dark);
  margin-top: 0.15rem;
}

/* Mission / Vision / Values */

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mvv-card {
  padding: 2rem 1.7rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.mvv-card .service-icon {
  background: var(--gold-soft);
  color: var(--gold-dark);
}

.mvv-card h3 {
  margin-bottom: 0.6rem;
}

.mvv-card p {
  font-size: 0.94rem;
}

/* Values list */

.values-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.value-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  padding: 1.6rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.value-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-chip svg {
  width: 34px;
  height: 34px;
  color: var(--purple);
}

.value-chip h4 {
  font-size: 1rem;
}

.value-chip p {
  font-size: 0.85rem;
}

/* Process steps */

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 1.8rem 1.3rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #2B2305;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(212, 175, 55, 0.35);
}

.process-step .service-icon {
  margin-inline: auto;
  background: var(--purple-soft);
  color: var(--purple);
  margin-top: 0.6rem;
}

.process-step h4 {
  margin: 0.5rem 0 0.4rem;
}

.process-step p {
  font-size: 0.84rem;
}

/* ==========================================================================
   Services page
   ========================================================================== */

.category-block {
  margin-bottom: 1.5rem;
}

.category-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.category-head .service-icon {
  margin-bottom: 0;
  background: var(--purple);
  color: #fff;
}

.category-head h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.subservice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.subservice-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.subservice-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #E0D3F2;
}

.subservice-icon {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--purple-soft);
  color: var(--purple);
}

.subservice-icon svg {
  width: 24px;
  height: 24px;
}

.subservice-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
}

.subservice-card p {
  font-size: 0.88rem;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
}

.form-group label span {
  color: var(--danger);
}

.form-control {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(106, 27, 154, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.7rem;
}

.form-success {
  display: none;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: #EAF9F0;
  border: 1px solid #BFEBD1;
  color: #166B3B;
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: #1DAE54;
}

/* Contact info cards */

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.35rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--purple-soft);
  color: var(--purple);
}

.info-icon svg {
  width: 23px;
  height: 23px;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.info-card p,
.info-card a {
  font-size: 0.92rem;
  color: var(--muted);
}

.info-card a:hover {
  color: var(--purple);
}

.map-placeholder {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 210px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(244, 236, 250, 0.9), rgba(251, 245, 227, 0.9)),
    repeating-linear-gradient(0deg, rgba(106, 27, 154, 0.05) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(106, 27, 154, 0.05) 0 1px, transparent 1px 34px);
}

.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  padding: 1rem;
}

.map-pin svg {
  width: 44px;
  height: 44px;
  color: var(--purple);
  filter: drop-shadow(0 6px 10px rgba(106, 27, 154, 0.35));
}

.map-pin strong {
  font-family: var(--font-head);
  color: var(--ink);
}

.map-pin a {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #17101F;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}

.footer-brand .brand-text {
  color: #fff;
}

.footer-brand .brand-text strong {
  color: var(--gold);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  margin: 1.1rem 0 1.3rem;
  max-width: 320px;
}

.socials {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--gold);
  color: #17101F;
  transform: translateY(-3px);
}

.footer-col h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

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

.footer-col a svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
  flex: none;
}

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact li svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--gold);
  margin-top: 0.2rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ==========================================================================
   Floating actions & back to top
   ========================================================================== */

.float-actions {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.float-btn {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 26px rgba(34, 34, 34, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: floatPulse 2.6s ease-in-out infinite;
}

.float-btn svg {
  width: 26px;
  height: 26px;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  color: #fff;
}

.float-wa {
  background: var(--wa);
}

.float-call {
  background: var(--purple);
  animation-delay: 1.3s;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(34, 34, 34, 0.24); }
  50% { box-shadow: 0 8px 24px rgba(34, 34, 34, 0.36); }
}

.back-to-top {
  position: fixed;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 800;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: #2B2305;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #E0BE48;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal-content {
  max-width: 800px;
  margin-inline: auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.2rem 0 0.8rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.6rem 0 0.6rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 0.8rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .service-grid,
  .why-grid,
  .values-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.2rem;
  }

  .masonry {
    columns: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid,
  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  :root {
    --header-h: 66px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    width: min(86vw, 360px);
    background: var(--white);
    box-shadow: -12px 0 40px rgba(17, 10, 26, 0.18);
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.5rem;
    transform: translateX(105%);
    transition: transform 0.4s var(--ease), visibility 0.4s var(--ease);
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
  }

  .site-nav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.2rem;
  }

  .nav-close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
  }

  .nav-close svg {
    width: 20px;
    height: 20px;
  }

  .site-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-link {
    padding: 0.8rem 0.9rem;
    font-size: 1.02rem;
    border-radius: 12px;
  }

  .nav-link::after {
    left: 0.9rem;
    bottom: 0.5rem;
    right: 55%;
  }

  .nav-link.active {
    background: var(--purple-soft);
  }

  .nav-mobile-cta {
    display: block;
    margin-top: auto;
    padding-top: 1.4rem;
  }

  .nav-mobile-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.7rem;
  }

  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 4.5rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subservice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 3.5rem 0;
  }

  .service-grid,
  .why-grid,
  .values-list {
    grid-template-columns: 1fr;
  }

  .subservice-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .masonry {
    columns: 1;
  }

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

  .gallery-grid .gallery-item.featured {
    grid-row: auto;
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 1.6rem 1.3rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .float-actions {
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .back-to-top {
    left: 0.9rem;
    bottom: 0.9rem;
  }

  .lightbox-prev { left: 0; top: auto; bottom: -58px; transform: none; }
  .lightbox-next { right: 0; top: auto; bottom: -58px; transform: none; }
  .lightbox-close { top: -54px; }
}

/* ==========================================================================
   Watermark background
   ========================================================================== */

:root {
  --watermark: url("../img/watermark.svg");
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--watermark);
  background-repeat: repeat;
  background-size: 520px 520px;
  opacity: 0.55;
  pointer-events: none;
}

.section > * {
  position: relative;
  z-index: 1;
}
