:root {
  --clr-bg: #0A0008;
  --clr-surface: #130010;
  --clr-primary: #6B0F3A;
  --clr-accent: #C0134E;
  --clr-highlight: #FF2D6B;
  --clr-text: #F5F0F4;
  --clr-muted: #A08898;
  --clr-border: rgba(192, 19, 78, 0.18);
  --clr-card: rgba(19, 0, 16, 0.85);
  --clr-white: #ffffff;
  --clr-success: #35d07f;
  --clr-warning: #ffbf4d;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-soft: 0 18px 52px rgba(0, 0, 0, 0.28);
  --shadow-glow: 0 20px 80px rgba(255, 45, 107, 0.18);
  --space-section: clamp(70px, 9vw, 118px);
  --header-height: 82px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 45, 107, 0.15), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(192, 19, 78, 0.18), transparent 26%),
    linear-gradient(180deg, var(--clr-bg), #160011 52%, var(--clr-bg));
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; color: var(--clr-muted); }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--clr-text);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(36px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
strong { color: var(--clr-text); }
.container { width: min(100% - 40px, var(--max-width)); margin: 0 auto; }
.section { padding: var(--space-section) 0; position: relative; }
.section.compact { padding: 54px 0; }
.eyebrow, label, .caption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-highlight);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--clr-highlight);
  border-radius: 999px;
}
.section-head { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.section-head p { font-size: 18px; margin: 0 auto; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--clr-border);
  font-weight: 800;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); outline: none; }
.btn-primary { background: var(--clr-accent); color: var(--clr-white); border-color: var(--clr-accent); box-shadow: var(--shadow-glow); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--clr-highlight); border-color: var(--clr-highlight); }
.btn-secondary { background: rgba(255,255,255,0.06); color: var(--clr-text); border-color: rgba(255,255,255,0.16); }
.btn-secondary:hover, .btn-secondary:focus-visible { border-color: var(--clr-highlight); color: var(--clr-white); }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.scrolled { background: rgba(10,0,8,0.96); backdrop-filter: blur(12px); box-shadow: 0 12px 35px rgba(0,0,0,0.28); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 12px; height: 44px; flex-shrink: 0; }
.logo img { width: 44px; height: 44px; object-fit: contain; border-radius: 10px; }
.logo-mark { width: 44px; height: 44px; border-radius: 14px; background: linear-gradient(135deg, var(--clr-highlight), var(--clr-primary)); color: var(--clr-white); display: grid; place-items: center; font-family: var(--font-heading); font-weight: 800; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { font-family: var(--font-heading); font-size: 18px; letter-spacing: -0.02em; }
.logo-text span { color: var(--clr-muted); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { position: relative; color: var(--clr-text); font-size: 15px; font-weight: 700; padding: 10px 0; }
.nav-links a:not(.nav-pill)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px; border-radius: 99px; background: var(--clr-highlight); transition: right 0.25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links .nav-pill { background: var(--clr-accent); color: var(--clr-white); border-radius: 999px; padding: 11px 18px; box-shadow: 0 10px 30px rgba(192, 19, 78, 0.28); }
.nav-links .nav-pill:hover { background: var(--clr-highlight); }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 14px; border: 1px solid var(--clr-border); background: var(--clr-card); color: var(--clr-text); cursor: pointer; }
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 5px auto; background: currentColor; border-radius: 99px; transition: 0.2s ease; }
.hero { min-height: 100vh; display: grid; align-items: center; position: relative; isolation: isolate; padding: 142px 0 78px; overflow: hidden; }
.page-hero { min-height: 440px; padding: 148px 0 70px; }
.page-hero.compact-hero { min-height: 320px; max-height: 320px; padding: 128px 0 48px; }
.hero::before, .page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,0,8,0.88) 0%, rgba(10,0,8,0.72) 42%, rgba(10,0,8,0.24) 100%), linear-gradient(0deg, var(--clr-bg) 0%, rgba(10,0,8,0.24) 45%, rgba(10,0,8,0.08) 100%); z-index: -1; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: saturate(1.06) contrast(1.04); }
.hero-content { max-width: 850px; }
.hero-content h1 span { color: var(--clr-highlight); }
.hero-content p { font-size: clamp(18px, 2vw, 22px); color: rgba(245,240,244,0.86); max-width: 780px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; background: rgba(255,255,255,0.06); color: rgba(245,240,244,0.82); font-size: 13px; font-weight: 700; }
.stats { background: linear-gradient(135deg, var(--clr-primary), var(--clr-surface)); border-top: 1px solid var(--clr-border); border-bottom: 1px solid var(--clr-border); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { padding: 22px 18px; border-radius: var(--radius-md); background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.12); text-align: center; }
.stat strong { display: block; font-family: var(--font-heading); font-size: clamp(30px, 4vw, 48px); line-height: 1; }
.stat span { color: var(--clr-muted); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 800; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-soft); transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease; }
.card:hover { transform: translateY(-6px); border-color: rgba(255,45,107,0.42); background: rgba(32, 0, 25, 0.92); }
.icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, var(--clr-accent), var(--clr-primary)); color: var(--clr-white); font-size: 24px; margin-bottom: 20px; }
.card h3 { margin-bottom: 12px; }
.card p { margin-bottom: 0; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 72px); align-items: center; }
.split.reverse .image-panel { order: 2; }
.image-panel { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 390px; box-shadow: var(--shadow-soft); border: 1px solid var(--clr-border); background: var(--clr-surface); }
.image-panel img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.image-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,0,8,0.45), transparent 65%); pointer-events: none; }
.copy-block .lead { color: rgba(245,240,244,0.86); font-size: 18px; }
.list-clean { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.list-clean li { display: flex; gap: 10px; color: var(--clr-muted); }
.list-clean li::before { content: '✓'; color: var(--clr-highlight); font-weight: 800; }
.pricing-card { position: relative; display: flex; flex-direction: column; min-height: 100%; }
.pricing-card.featured { border-color: rgba(255,45,107,0.58); box-shadow: var(--shadow-glow); }
.ribbon { position: absolute; top: 18px; right: 18px; border-radius: 999px; padding: 6px 11px; background: var(--clr-highlight); color: var(--clr-white); font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.price { font-family: var(--font-heading); font-size: 34px; color: var(--clr-text); font-weight: 800; margin: 8px 0 18px; }
.price small { font-size: 14px; color: var(--clr-muted); font-family: var(--font-body); }
.pricing-card .btn { margin-top: auto; width: 100%; }
.quote { position: relative; }
.quote::before { content: '“'; position: absolute; top: 12px; right: 22px; color: rgba(255,45,107,0.22); font-family: var(--font-heading); font-size: 88px; line-height: 1; }
.stars { color: var(--clr-warning); letter-spacing: 2px; margin: 14px 0; }
.partner-wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.partner { padding: 12px 16px; border-radius: 999px; background: var(--clr-card); border: 1px solid var(--clr-border); color: var(--clr-text); font-weight: 800; box-shadow: var(--shadow-soft); }
.form-card { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field.full { grid-column: 1 / -1; }
label { margin-bottom: 8px; color: var(--clr-text); display: block; }
input, select, textarea { width: 100%; min-height: 52px; border-radius: 14px; border: 1px solid var(--clr-border); background: rgba(255,255,255,0.055); color: var(--clr-text); padding: 0 15px; font-family: var(--font-body); font-size: 16px; outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
textarea { min-height: 140px; padding: 14px 15px; resize: vertical; }
select option { color: #160011; }
input:focus, select:focus, textarea:focus { border-color: var(--clr-highlight); box-shadow: 0 0 0 4px rgba(255,45,107,0.16); background: rgba(255,255,255,0.08); }
.service-section { border-top: 1px solid var(--clr-border); }
.feature-image { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--clr-border); box-shadow: var(--shadow-soft); }
.feature-image img { width: 100%; height: 420px; object-fit: cover; }
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 0 0 34px; }
.filter-btn { border: 1px solid var(--clr-border); background: var(--clr-card); color: var(--clr-text); border-radius: 999px; padding: 11px 18px; cursor: pointer; font-weight: 800; }
.filter-btn.active, .filter-btn:hover, .filter-btn:focus-visible { background: var(--clr-accent); border-color: var(--clr-accent); color: var(--clr-white); outline: none; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item { position: relative; min-height: 280px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--clr-border); box-shadow: var(--shadow-soft); background: var(--clr-surface); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption { position: absolute; inset: auto 0 0 0; padding: 28px 20px 20px; background: linear-gradient(0deg, rgba(10,0,8,0.9), transparent); transform: translateY(12px); opacity: 0; transition: opacity 0.25s ease, transform 0.25s ease; }
.gallery-item:hover .gallery-caption, .gallery-item:focus-within .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-caption h3 { font-size: 20px; margin-bottom: 5px; }
.gallery-caption p { margin: 0; font-size: 14px; }
.map-box { min-height: 390px; border-radius: var(--radius-lg); border: 1px solid var(--clr-border); background: linear-gradient(135deg, rgba(192,19,78,0.16), rgba(19,0,16,0.92)); box-shadow: var(--shadow-soft); display: grid; place-items: center; padding: 28px; text-align: center; }
.map-box strong { font-family: var(--font-heading); font-size: 28px; display: block; margin-bottom: 10px; }
.cta-band { background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent)); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 56px); display: flex; justify-content: space-between; align-items: center; gap: 24px; box-shadow: var(--shadow-glow); }
.site-footer { padding: 70px 0 28px; border-top: 1px solid var(--clr-border); background: var(--clr-surface); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 34px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: var(--clr-muted); }
.footer-links a:hover { color: var(--clr-highlight); }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--clr-border); color: var(--clr-muted); font-size: 14px; text-align: center; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.scroll-top { position: fixed; right: 18px; bottom: 18px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--clr-border); background: var(--clr-accent); color: var(--clr-white); display: grid; place-items: center; z-index: 900; opacity: 0; pointer-events: none; transition: 0.25s ease; }
.scroll-top.active { opacity: 1; pointer-events: auto; }
@media (max-width: 1024px) {
  .nav-links { position: fixed; inset: 0; z-index: 999; background: rgba(10,0,8,0.98); backdrop-filter: blur(14px); flex-direction: column; justify-content: center; gap: 20px; transform: translateX(100%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 24px; }
  .nav-links .nav-pill { font-size: 18px; }
  .menu-toggle { display: inline-block; position: relative; z-index: 1001; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .image-panel { order: 0; }
  .hero::before, .page-hero::before { background: linear-gradient(0deg, rgba(10,0,8,0.94), rgba(10,0,8,0.46)); }
}
@media (max-width: 720px) {
  :root { --header-height: 74px; }
  .container { width: min(100% - 28px, var(--max-width)); }
  .logo-text strong { font-size: 16px; }
  .logo-text span { font-size: 10px; }
  .logo img, .logo-mark { width: 40px; height: 40px; }
  .hero { min-height: 92vh; padding-top: 118px; }
  .hero-actions, .cta-band { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .stats-grid, .grid-2, .grid-3, .grid-4, .footer-grid, .form-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { min-height: 240px; }
  .page-hero.compact-hero { min-height: 290px; max-height: none; }
  .image-panel, .image-panel img { min-height: 280px; }
  .feature-image img { height: 280px; }
  .section-head { margin-bottom: 34px; }
}

/* UI refinements from live preview */
.brand-y {
  color: var(--clr-highlight);
  font-size: 1.22em;
  line-height: 0.85;
  display: inline-block;
  margin-right: 1px;
  transform: translateY(1px);
}
.card-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.card-title .icon,
.card > .icon {
  flex: 0 0 54px;
  margin-bottom: 0;
}
.card-title h3 {
  margin: 0;
}
.logo-text strong {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.site-header {
  background: rgba(10,0,8,0.92);
  backdrop-filter: blur(10px);
}
.page-hero + .section {
  padding-top: clamp(56px, 7vw, 92px);
}
.card {
  min-height: 100%;
}
.nav-links .nav-pill {
  white-space: nowrap;
}
@media (max-width: 720px) {
  .card-title { gap: 13px; align-items: center; }
  .card-title .icon, .card > .icon { width: 48px; height: 48px; flex-basis: 48px; border-radius: 16px; font-size: 21px; }
  .card-title h3 { font-size: 22px; }
}

/* =========================================================
   FINAL MOBILE SIDEBAR OPTIMISATION
   Paste replacement file generated for YITTA site.
   This section overrides the older mobile menu rules above.
   ========================================================= */
@media (max-width: 1024px) {
  body.no-scroll {
    overflow: hidden;
  }

  .site-header {
    height: 74px;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: fixed !important;
    top: 18px;
    right: 18px;
    z-index: 10001;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 45, 107, 0.35);
    background: rgba(19, 0, 16, 0.9);
    color: #ffffff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    background: currentColor;
    border-radius: 99px;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .nav-links {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 96px 20px 30px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    background: rgba(10, 0, 8, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links::before {
    content: "Menu";
    display: block;
    width: min(100%, 420px);
    margin: 0 auto 18px;
    padding-bottom: 18px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-links a,
  .nav-links a:focus {
    width: min(100%, 420px);
    min-height: 52px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    padding: 13px 18px !important;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
  }

  .nav-links a::after {
    display: none !important;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.active {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: #ffffff !important;
    outline: none;
  }

  .nav-links .nav-pill {
    width: min(100%, 420px);
    min-height: 54px;
    margin-top: 10px;
    padding: 14px 20px !important;
    border-radius: 18px;
    background: var(--clr-accent) !important;
    color: #ffffff !important;
    border-color: var(--clr-accent) !important;
    box-shadow: 0 16px 40px rgba(192, 19, 78, 0.35);
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .nav-links {
    padding: 88px 16px 24px;
  }

  .nav-links::before {
    font-size: 25px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .nav-links a,
  .nav-links a:focus {
    min-height: 50px;
    font-size: 16px !important;
    border-radius: 14px;
  }

  .nav-links .nav-pill {
    min-height: 52px;
    border-radius: 16px;
  }

  .menu-toggle {
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
  }
}
