:root {
  --bg: #07080c;
  --bg-2: #0d1017;
  --panel: rgba(14, 18, 28, 0.78);
  --panel-strong: rgba(18, 23, 35, 0.96);
  --text: #f3efe6;
  --muted: #a6adbb;
  --line: rgba(255,255,255,0.08);
  --accent: #c7a56b;
  --accent-soft: rgba(199,165,107,0.12);
  --shadow: 0 24px 70px rgba(0,0,0,.45);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.site-body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199,165,107,0.18), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(116,120,255,0.10), transparent 34%),
    linear-gradient(180deg, #08090d 0%, #0b0e15 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 60; backdrop-filter: blur(22px);
  background: rgba(7, 8, 12, .72); border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark, .admin-brand .brand-mark {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(199,165,107,0.95), rgba(255,239,190,0.72));
  color: #171717; font-weight: 800; letter-spacing: .08em; box-shadow: var(--shadow);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { letter-spacing: .02em; }
.brand-text small, .eyebrow, .muted { color: var(--muted); }
.site-nav { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.nav-link {
  padding: 11px 14px; border-radius: 999px; color: var(--muted); border: 1px solid transparent;
}
.nav-link:hover, .nav-link.active { color: var(--text); border-color: var(--line); background: rgba(255,255,255,0.03); }
.nav-cta { background: linear-gradient(145deg, rgba(199,165,107,0.16), rgba(199,165,107,0.06)); color: var(--text); }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--line); color: var(--text); border-radius: 14px; width: 44px; height: 44px; }
.flash-stack { padding-top: 18px; }
.flash { padding: 14px 16px; border-radius: 16px; border: 1px solid var(--line); margin-bottom: 10px; background: rgba(255,255,255,0.04); }
.flash.success { border-color: rgba(99, 193, 123, .35); }
.flash.error { border-color: rgba(220, 96, 96, .35); }
.hero-shell { padding: 24px 0 18px; }
.hero-carousel { position: relative; min-height: 78vh; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.02); transition: opacity .8s ease, transform .9s ease; }
.hero-slide.active { opacity: 1; transform: scale(1); z-index: 2; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,4,7,.88) 0%, rgba(3,4,7,.56) 42%, rgba(3,4,7,.76) 100%), linear-gradient(180deg, transparent 0%, rgba(3,4,7,.45) 100%); }
.hero-content { position: absolute; inset: 0; display: grid; align-content: center; gap: 18px; padding-top: 84px; max-width: 760px; }
.eyebrow { text-transform: uppercase; letter-spacing: .24em; font-size: .74rem; }
h1, h2, h3, h4 { margin: 0; line-height: 1.04; }
.hero-content h1 { font-size: clamp(3rem, 7vw, 6.2rem); max-width: 10ch; }
.hero-content p { max-width: 58ch; font-size: 1.06rem; color: rgba(243,239,230,.82); }
.lede { font-size: 1.08rem; color: rgba(243,239,230,.76); max-width: 70ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px;
  padding: 13px 18px; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(145deg, rgba(199,165,107,1), rgba(216,188,136,1)); color: #161616; font-weight: 700; }
.btn-secondary { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--line); }
.text-link { color: #e7d6ad; }
.section-block, .page-hero, .panel { margin-top: 28px; }
.section-block { padding: 22px 0; }
.page-hero { padding: 56px 0 12px; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 4.2rem); max-width: 12ch; }
.panel, .card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); backdrop-filter: blur(18px);
}
.panel { padding: 26px; }
.card { padding: 22px; }
.card-grid { display: grid; gap: 18px; }
.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.package-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.preview-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.icon-chip {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 16px;
  background: var(--accent-soft); border: 1px solid rgba(199,165,107,0.26); color: #ebd9b1; margin-bottom: 16px;
}
.stats-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; padding: 6px 0 10px; }
.stat-box, .stat-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 22px; padding: 20px;
}
.stat-box strong, .stat-card strong { display: block; font-size: 1.6rem; margin-bottom: 4px; }
.split-grid, .two-col, .contact-grid { display: grid; gap: 18px; }
.split-grid { grid-template-columns: 1.2fr .8fr; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.portrait-panel { text-align: left; }
.portrait-art { height: 260px; border-radius: 20px; background:
    radial-gradient(circle at 30% 20%, rgba(199,165,107,.6), transparent 28%),
    radial-gradient(circle at 70% 60%, rgba(114,129,255,.26), transparent 28%),
    linear-gradient(145deg, #1a1f2b, #090b10); border: 1px solid var(--line); margin-bottom: 18px; }
.timeline { display: grid; gap: 14px; }
.timeline-item { display: grid; grid-template-columns: 14px 1fr; gap: 14px; align-items: start; }
.timeline-item span { width: 10px; height: 10px; border-radius: 999px; margin-top: 7px; background: var(--accent); box-shadow: 0 0 0 6px rgba(199,165,107,0.12); }
.section-heading { display: flex; justify-content: space-between; gap: 16px; align-items: end; margin-bottom: 18px; }
.section-heading h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
.price { font-size: 1.9rem; font-weight: 800; color: #fff0cc; margin: 10px 0 12px; }
.badge { display: inline-flex; align-items: center; padding: 7px 10px; border-radius: 999px; background: var(--accent-soft); border: 1px solid rgba(199,165,107,0.22); color: #ead9b2; font-size: .84rem; margin-bottom: 10px; }
.list-block { margin-top: 14px; }
.list-block h4 { margin-bottom: 8px; color: #ead9b2; }
.list-block ul { margin: 0; padding-left: 18px; color: var(--muted); }
.process-grid { display: grid; gap: 18px; }
.compact-process { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-step { min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; }
.step-index { font-size: 2rem; color: #ead9b2; font-weight: 800; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 4px 16px; }
.faq-item summary { cursor: pointer; padding: 16px 0; font-weight: 600; }
.faq-item div { padding: 0 0 16px; color: var(--muted); }
.masonry-grid {
  columns: 3 280px; column-gap: 18px;
}
.masonry-grid.compact-grid { columns: 4 220px; }
.gallery-card { break-inside: avoid; margin-bottom: 18px; cursor: zoom-in; position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); background: #111; }
.gallery-card img { width: 100%; height: auto; transition: transform .4s ease; }
.gallery-card:hover img { transform: scale(1.03); }
.gallery-meta { position: absolute; inset: auto 0 0 0; padding: 18px; background: linear-gradient(180deg, transparent, rgba(4,5,8,.92)); }
.gallery-meta span { color: rgba(255,255,255,.72); font-size: .9rem; }
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.chip { border: 1px solid var(--line); background: rgba(255,255,255,0.03); color: var(--text); padding: 10px 14px; border-radius: 999px; cursor: pointer; }
.chip.active { background: rgba(199,165,107,0.16); border-color: rgba(199,165,107,0.24); }
.lightbox { position: fixed; inset: 0; background: rgba(2,2,4,0.92); display: grid; place-items: center; padding: 24px; z-index: 100; }
.lightbox img { max-height: 70vh; max-width: min(1000px, 96vw); border-radius: 18px; border: 1px solid var(--line); }
.lightbox-copy { max-width: min(1000px, 96vw); width: 100%; margin-top: 14px; }
.lightbox-close { position: absolute; top: 24px; right: 24px; width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,0.03); color: var(--text); font-size: 1.7rem; }
.featured-post { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: center; }
.featured-post img, .article-hero { width: 100%; border-radius: 20px; border: 1px solid var(--line); }
.article-shell { padding-bottom: 24px; }
.article-content p { color: rgba(243,239,230,.86); line-height: 1.75; }
.contact-grid { grid-template-columns: .9fr 1.1fr; }
.contact-info p { color: var(--muted); }
.form-shell label, .form-panel label, .admin-form-grid label { display: grid; gap: 8px; margin-bottom: 14px; color: #e5e7eb; }
input, textarea, select {
  width: 100%; padding: 13px 14px; border-radius: 16px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.04); color: var(--text); outline: none;
}
input:focus, textarea:focus, select:focus { border-color: rgba(199,165,107,0.56); box-shadow: 0 0 0 4px rgba(199,165,107,0.12); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.centered-panel { text-align: center; }
.contact-strip { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.site-footer { margin-top: 38px; border-top: 1px solid var(--line); background: rgba(6,7,10,0.82); }
.footer-grid { padding: 34px 0; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 18px; }
.footer-brand { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: var(--muted); }
.footer-bottom { padding: 0 0 26px; color: var(--muted); }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 52px; height: 52px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.06); backdrop-filter: blur(12px); font-size: 1.8rem;
}
.carousel-btn.prev { left: 18px; }
.carousel-btn.next { right: 18px; }
.carousel-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.carousel-dots button { width: 10px; height: 10px; border: 0; border-radius: 999px; background: rgba(255,255,255,.35); }
.carousel-dots button.active { background: var(--accent); }
.admin-shell { display: grid; grid-template-columns: 280px 1fr; min-height: calc(100vh - 78px); }
.admin-sidebar { border-right: 1px solid var(--line); padding: 22px; background: rgba(8,9,14,0.88); }
.admin-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; }
.admin-brand small { color: var(--muted); display: block; }
.admin-nav { display: grid; gap: 8px; }
.admin-nav a {
  padding: 12px 14px; border-radius: 16px; color: var(--muted); border: 1px solid transparent;
}
.admin-nav a.active, .admin-nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); border-color: var(--line); }
.admin-main { padding: 24px; }
.admin-topbar { display: flex; justify-content: space-between; gap: 16px; align-items: end; margin-bottom: 18px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 18px; }
.stat-card { padding: 18px; }
.admin-panel, .form-panel { margin-top: 0; }
.admin-login-wrap { min-height: calc(100vh - 140px); display: grid; place-items: center; padding: 28px 0; }
.admin-login-card { width: min(460px, 100%); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 14px 10px; border-bottom: 1px solid var(--line); color: var(--muted); vertical-align: top; }
th { color: var(--text); }
.actions-cell { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.inline-form { display: flex; gap: 10px; align-items: center; }
.search-row { display: flex; gap: 10px; margin-bottom: 16px; }
.admin-form-grid { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 16px; }
.mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 14px; }
.mini-card { padding: 16px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,0.03); }
.mini-card span { color: var(--muted); display: block; margin-bottom: 6px; }
.mini-card strong { display: block; margin-bottom: 4px; }
.related-posts { padding-bottom: 22px; }
.muted { color: var(--muted); }
.danger { color: #ff9a9a; }
@media (max-width: 1040px) {
  .service-grid, .package-grid, .testimonial-grid, .blog-grid, .preview-grid, .stats-strip, .compact-process, .admin-stats, .footer-grid, .featured-post, .contact-grid, .split-grid, .two-col { grid-template-columns: 1fr 1fr; }
  .service-grid, .package-grid, .testimonial-grid, .blog-grid, .preview-grid, .stats-strip, .compact-process, .admin-stats, .footer-grid, .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .site-nav { display: none; width: 100%; padding: 12px 0 18px; }
  .site-nav.open { display: flex; }
  .nav-wrap { flex-wrap: wrap; }
  .hero-carousel { min-height: 86vh; }
  .hero-content { padding-top: 110px; }
  .hero-content h1, .page-hero h1 { max-width: 100%; }
  .stats-strip, .service-grid, .package-grid, .testimonial-grid, .blog-grid, .preview-grid, .compact-process, .footer-grid, .contact-grid, .split-grid, .two-col, .form-row, .form-grid, .mini-grid { grid-template-columns: 1fr; }
  .section-heading, .contact-strip, .admin-topbar { flex-direction: column; align-items: start; }
  .featured-post { grid-template-columns: 1fr; }
  .admin-main { padding: 16px; }
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }
}


/* --- Premium layout overrides --- */
:root {
  --container: 1280px;
}

body.site-body {
  overflow-x: clip;
}

.site-header {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
  padding-block: 12px;
  align-items: center;
}

.brand {
  min-width: 0;
  flex: 0 1 auto;
}

.brand-image {
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 14px;
  box-shadow: var(--shadow);
  object-fit: cover;
  background: rgba(255,255,255,0.04);
}

.site-nav {
  margin-left: auto;
  justify-content: flex-end;
  align-items: center;
}

.nav-link {
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
  white-space: nowrap;
}

.nav-link:focus-visible,
.nav-link:hover,
.nav-link.active {
  color: var(--text);
  border-color: rgba(199,165,107,0.24);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

.menu-toggle:focus-visible,
.btn:focus-visible,
.chip:focus-visible,
.lightbox-close:focus-visible {
  outline: 2px solid rgba(199,165,107,0.6);
  outline-offset: 3px;
}

.hero-shell {
  padding: 0;
}

.hero-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(680px, 88vh, 1080px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-slide img {
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,4,7,.92) 0%, rgba(3,4,7,.58) 42%, rgba(3,4,7,.68) 100%),
    linear-gradient(180deg, rgba(3,4,7,.18) 0%, rgba(3,4,7,.5) 100%);
}

.hero-content {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 64px);
  max-width: none;
  align-content: center;
  gap: 20px;
}

.hero-content h1 {
  font-size: clamp(3.4rem, 5.8vw, 7.5rem);
  line-height: .92;
  letter-spacing: -.05em;
  max-width: 9ch;
  text-wrap: balance;
}

.hero-content p {
  max-width: 54ch;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions .btn {
  min-height: 48px;
}

.hero-actions .btn-primary {
  box-shadow: 0 18px 45px rgba(199,165,107,0.16);
}

.page-hero h1 {
  text-wrap: balance;
}

.section-heading h2 {
  text-wrap: balance;
}

.masonry-grid {
  columns: 3 300px;
}

.masonry-grid.compact-grid {
  columns: 4 240px;
}

.gallery-card {
  margin-bottom: 18px;
  border-radius: 24px;
}

.gallery-card img {
  width: 100%;
  height: auto;
}

.filter-row {
  margin-top: 14px;
}

.chip {
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}

.chip:hover,
.chip.active {
  transform: translateY(-1px);
  background: rgba(199,165,107,0.16);
  border-color: rgba(199,165,107,0.28);
}

.lightbox {
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: min(1100px, 96vw);
  max-height: 72vh;
  object-fit: contain;
}

.lightbox-copy {
  width: min(1100px, 96vw);
}

.lightbox-close {
  line-height: 1;
}

.article-content p {
  margin-top: 0;
}

.article-content p + p {
  margin-top: 1rem;
}

.faq-item summary::marker {
  color: var(--accent);
}

.footer-grid a:hover,
.text-link:hover {
  color: #fff2d2;
}

@media (max-width: 1120px) {
  .service-grid,
  .package-grid,
  .testimonial-grid,
  .blog-grid,
  .preview-grid,
  .stats-strip,
  .compact-process,
  .admin-stats,
  .footer-grid,
  .contact-grid,
  .split-grid,
  .two-col,
  .featured-post {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-post {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding: 12px 0 18px;
    margin-left: 0;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav.open {
    display: flex;
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    text-align: left;
  }

  .nav-wrap {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-carousel {
    min-height: 84vh;
  }

  .hero-content {
    width: min(var(--container), calc(100% - 28px));
    padding: 0 0 0;
  }

  .hero-content h1 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
    max-width: 100%;
  }

  .hero-content p,
  .page-hero .lede {
    font-size: 1rem;
  }

  .stats-strip,
  .service-grid,
  .package-grid,
  .testimonial-grid,
  .blog-grid,
  .preview-grid,
  .compact-process,
  .footer-grid,
  .contact-grid,
  .split-grid,
  .two-col,
  .form-row,
  .form-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .contact-strip,
  .admin-topbar {
    flex-direction: column;
    align-items: start;
  }

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

  .admin-main {
    padding: 16px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }
}


/* --- Refined premium overrides --- */
body.site-body {
  overflow-x: clip;
}

.home-page .site-header {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: blur(0);
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-header {
  background: rgba(7, 8, 12, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
  backdrop-filter: blur(18px);
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 12, 0.94);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 14px 32px rgba(0,0,0,.24);
  backdrop-filter: blur(22px);
}

.nav-wrap {
  padding-block: 14px;
  min-height: 84px;
}

.site-nav {
  gap: 8px;
}

.nav-link {
  padding: 11px 15px;
  border-radius: 999px;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--text);
  border-color: rgba(199,165,107,0.28);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

.nav-link.nav-cta {
  padding-inline: 18px;
  background: linear-gradient(145deg, #d9ba7e, #c7a56b);
  color: #151515;
  border-color: rgba(255,255,255,0.08);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(199,165,107,0.22);
}

.nav-link.nav-cta:hover,
.nav-link.nav-cta:focus-visible,
.nav-link.nav-cta.active {
  background: linear-gradient(145deg, #e7cb91, #d8b46f);
  color: #111;
  box-shadow: 0 18px 36px rgba(199,165,107,0.26);
}

.hero-shell {
  padding: 0;
}

.hero-carousel {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  min-height: clamp(760px, 100svh, 1120px);
  border-bottom: 1px solid var(--line);
}

.hero-slide img {
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,4,7,.90) 0%, rgba(3,4,7,.60) 42%, rgba(3,4,7,.70) 100%),
    linear-gradient(180deg, rgba(3,4,7,.18) 0%, rgba(3,4,7,.46) 100%);
}

.hero-content {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding-inline: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: clamp(112px, 14vh, 168px) clamp(88px, 10vh, 132px);
  max-width: none;
}

.hero-copy {
  width: min(100%, 680px);
  display: grid;
  gap: 18px;
}

.hero-content .eyebrow {
  color: rgba(255,255,255,.78);
}

.hero-content h1 {
  font-size: clamp(2.9rem, 4.8vw, 6.1rem);
  line-height: .93;
  letter-spacing: -.05em;
  max-width: 10ch;
  text-wrap: balance;
}

.hero-content p {
  max-width: 58ch;
  font-size: clamp(1rem, 1.08vw, 1.15rem);
  line-height: 1.62;
  color: rgba(243,239,230,.82);
}

.hero-actions {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn {
  min-height: 52px;
  padding-inline: 20px;
}

.btn-primary {
  box-shadow: 0 18px 44px rgba(199,165,107,0.18);
}

.btn-primary:hover {
  box-shadow: 0 22px 50px rgba(199,165,107,0.24);
}

.stats-strip {
  gap: 14px;
  padding: 10px 0 14px;
}

.stat-box {
  position: relative;
  overflow: hidden;
}

.stat-box strong {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-box span {
  color: var(--muted);
  line-height: 1.55;
  display: block;
}

.section-block, .page-hero, .panel {
  margin-top: 24px;
}

.section-block {
  padding: 18px 0;
}

.page-hero {
  padding: 72px 0 16px;
}

.page-hero h1 {
  max-width: 14ch;
  text-wrap: balance;
}

.lede {
  line-height: 1.72;
  max-width: 66ch;
}

.section-heading h2,
.page-hero h1,
.featured-post h2,
.cta-banner h2 {
  text-wrap: balance;
}

.card,
.panel {
  backdrop-filter: blur(20px);
}

.card:hover,
.panel:hover {
  border-color: rgba(199,165,107,0.16);
}

.gallery-card {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.gallery-card:hover {
  transform: translateY(-2px);
  border-color: rgba(199,165,107,0.22);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.gallery-card img {
  width: 100%;
  height: auto;
}

.chip {
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.chip:hover,
.chip.active {
  transform: translateY(-1px);
  background: rgba(199,165,107,0.16);
  border-color: rgba(199,165,107,0.3);
}

.faq-item summary {
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  color: var(--accent);
}

.text-link:hover {
  color: #fff2d2;
}

.carousel-btn {
  width: 54px;
  height: 54px;
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.07);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  transform: translateY(-50%) scale(1.04);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}

.carousel-dots {
  bottom: 28px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
}

.lightbox-close,
.menu-toggle,
.btn,
.chip {
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
}

@media (max-width: 1120px) {
  .hero-content {
    width: min(var(--container), calc(100% - 40px));
    padding-block: clamp(108px, 12vh, 150px) clamp(82px, 8vh, 110px);
  }

  .hero-content h1 {
    font-size: clamp(2.7rem, 6vw, 5rem);
    max-width: 10.5ch;
  }
}

@media (max-width: 760px) {
  .home-page .site-header,
  .site-header.is-scrolled {
    background: rgba(7, 8, 12, 0.92);
    border-bottom-color: rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
  }

  .site-nav {
    gap: 8px;
  }

  .nav-link.nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero-carousel {
    min-height: 86svh;
  }

  .hero-content {
    width: min(var(--container), calc(100% - 28px));
    padding-block: 118px 92px;
  }

  .hero-copy {
    width: 100%;
    gap: 16px;
  }

  .hero-content h1 {
    font-size: clamp(2.55rem, 11vw, 4.2rem);
    max-width: 100%;
  }

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

  .stats-strip,
  .service-grid,
  .package-grid,
  .testimonial-grid,
  .blog-grid,
  .preview-grid,
  .compact-process,
  .footer-grid,
  .contact-grid,
  .split-grid,
  .two-col,
  .form-row,
  .form-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .carousel-btn.prev { left: 12px; }
  .carousel-btn.next { right: 12px; }
  .carousel-dots { bottom: 18px; }
}

/* 
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

@media (max-width: 760px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
} */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.footer-quick-column h4 {
  margin-bottom: 14px;
}

.footer-quick-column ul {
  display: grid;
  gap: 10px;
}

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

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}