:root {
  --bg: #0c0c0d;
  --bg-soft: #171719;
  --card: #1f1f22;
  --text: #f3f3f4;
  --muted: #b4b4b8;
  --brand: #e5b76b;
  --brand-strong: #c89749;
  --line: #2b2b31;
  --ok: #52d38a;
  --radius: 16px;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  --section-space: 4.4rem;
  --section-space-mobile: 3.2rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-dark {
  background: linear-gradient(180deg, #131315 0%, #0d0d0f 100%);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  z-index: 1000;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 62px;
  height: auto;
  border-radius: 999px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #f0f0f0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-small {
  font-size: 0.92rem;
  padding: 0.55rem 0.9rem;
}

.btn-primary {
  color: #1a1a1a;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(229, 183, 107, 0.25);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: #424248;
}

.btn-ghost:hover,
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-outline {
  color: #f0f0f0;
  border-color: #4a4a50;
  background: transparent;
}

.hero {
  padding-top: 3.4rem;
  padding-bottom: 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  letter-spacing: 2px;
  font-size: 0.83rem;
  color: var(--brand);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  max-width: 14ch;
}

.lead {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1.1rem;
}

.badges {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.badges li {
  border: 1px solid #3a3a41;
  border-radius: 999px;
  color: #d3d3d6;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
}

.hero-strip {
  margin-top: 1.05rem;
}

.badges-bar {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.badges-bar li {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 54px;
  border: 1px solid #313139;
  border-radius: 14px;
  background: linear-gradient(180deg, #151519 0%, #101013 100%);
  font-weight: 600;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  animation: tile-rise 0.45s ease both;
}

.badges-bar li:nth-child(2) {
  animation-delay: 0.08s;
}

.badges-bar li:nth-child(3) {
  animation-delay: 0.16s;
}

.badges-bar li::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -130%;
  width: 65%;
  height: 150%;
  background: linear-gradient(
    90deg,
    rgba(229, 183, 107, 0) 0%,
    rgba(229, 183, 107, 0.22) 55%,
    rgba(229, 183, 107, 0) 100%
  );
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.badges-bar li:hover {
  transform: translateY(-3px);
  border-color: #4a4a54;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.badges-bar li:hover::before {
  left: 150%;
}

@keyframes tile-rise {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: 24px;
  min-height: 440px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(6, 6, 7, 0.82);
  border: 1px solid #36363d;
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  color: #ececee;
  font-weight: 500;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
}

.cards-3 {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  padding: 1.2rem;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.gallery-section {
  background: linear-gradient(180deg, #121215 0%, #0f1013 100%);
}

.gallery-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  border: 1px solid #32323a;
  background: #17171b;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  max-height: 290px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: #5a5a62;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 1000;
  padding: 4vh 4vw;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-content {
  margin: 0;
  max-width: min(920px, 86vw);
}

.lightbox-content img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid #3a3a42;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
}

.lightbox-content figcaption {
  margin-top: 0.8rem;
  text-align: center;
  color: #d6d6dc;
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid #4b4b54;
  background: rgba(15, 15, 18, 0.9);
  color: #f0f0f4;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #4b4b54;
  background: rgba(15, 15, 18, 0.85);
  color: #f0f0f4;
  font-size: 1.3rem;
  cursor: pointer;
}

.lightbox-arrow:hover,
.lightbox-close:hover {
  border-color: var(--brand);
  color: var(--brand);
}

body.lightbox-open {
  overflow: hidden;
}

.services-layout {
  margin-top: 1.7rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.4fr 0.8fr;
  align-items: start;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  border: 1px solid #36363d;
  border-radius: var(--radius);
  background: #1a1a1d;
  padding: 1rem;
}

.service-meta {
  color: #c4c4c8;
  margin: 0.3rem 0;
}

.service-price {
  color: var(--brand);
  font-weight: 700;
  margin: 0 0 1rem;
}

.plan-box {
  border: 1px solid #393940;
  border-radius: var(--radius);
  background: #18181b;
  padding: 1.2rem;
  position: sticky;
  top: 95px;
}

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

.plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px dashed #3d3d44;
  border-radius: 12px;
  min-height: 132px;
}

.plan-list li {
  border-bottom: 1px solid #34343a;
  padding: 0.75rem 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.plan-list li:last-child {
  border-bottom: 0;
}

.plan-item-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
}

.plan-item-name {
  font-weight: 600;
  color: #f0f0f3;
  overflow-wrap: anywhere;
}

.plan-item-meta {
  color: #c6c6cc;
  font-size: 0.94rem;
}

.remove-item {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #4f4f57;
  background: transparent;
  color: #dbdbdf;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.remove-item:hover {
  border-color: #ce6363;
  color: #ff8f8f;
}

.empty-state {
  color: #94949a;
}

.plan-summary {
  border-top: 1px solid #313137;
  margin-top: 1rem;
  padding-top: 0.9rem;
}

.plan-summary p {
  margin: 0.35rem 0;
  color: #dadadc;
}

.plan-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.review-slider {
  margin-top: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

.review-nav {
  border: 1px solid #404047;
  color: #ececee;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
}

.review-track {
  min-height: 130px;
  display: grid;
}

.review-item {
  display: none;
}

.review-item.is-active {
  display: block;
}

.review-text {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.review-author {
  margin: 0;
  color: #c2c2c8;
}

.source-note {
  color: #a9a9af;
  margin-top: 0.85rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card {
  border: 1px solid #35353b;
  border-radius: var(--radius);
  background: #171719;
  padding: 1.25rem;
}

.contact-card h3 {
  margin-top: 1.2rem;
}

.contact-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #d3d3d8;
}

.contact-list li {
  margin-bottom: 0.55rem;
}

.contact-list a {
  color: #ffe9c1;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem 1rem;
  border: 1px dashed #3f3f45;
  border-radius: 12px;
  padding: 0.8rem;
  margin-top: 0.7rem;
}

.cta-stack {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

form {
  display: grid;
  gap: 0.55rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
textarea {
  border: 1px solid #3d3d45;
  background: #111114;
  color: #f3f3f4;
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(229, 183, 107, 0.35);
  border-color: #c89749;
}

.form-feedback {
  min-height: 1.3rem;
  margin: 0.15rem 0 0;
  font-weight: 600;
}

.form-feedback.ok {
  color: var(--ok);
}

.form-feedback.error {
  color: #ff8686;
}

.form-note {
  margin-top: 0.7rem;
  color: #adadb2;
  font-size: 0.9rem;
}

.map-wrap {
  margin-top: 1rem;
}

.map-wrap iframe {
  width: 100%;
  min-height: 300px;
  border: 1px solid #36363d;
  border-radius: var(--radius);
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid #35353b;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  background: #161619;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin: 0.6rem 0 0;
  color: #c6c6cc;
}

.site-footer {
  border-top: 1px solid #26262a;
  background: #09090a;
  padding: 2rem 0 5.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 1.1rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand img {
  width: 78px;
  border-radius: 999px;
}

.footer-title {
  margin: 0;
  font-weight: 700;
}

.footer-subtitle {
  margin: 0.25rem 0 0;
  color: #aaaab1;
}

.footer-col h3 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
}

.footer-col p {
  margin: 0 0 0.45rem;
  color: #a7a7ad;
}

.footer-col a {
  display: block;
  text-decoration: none;
  margin-bottom: 0.45rem;
  color: #d8d8dd;
}

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

.footer-bottom {
  border-top: 1px solid #25252a;
  margin-top: 1.2rem;
  padding-top: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: #a7a7ad;
  font-size: 0.92rem;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  gap: 0.7rem;
  padding: 0.8rem;
  border-top: 1px solid #36363c;
  background: rgba(10, 10, 12, 0.96);
}

.mobile-cta .btn {
  flex: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pulse-target {
  animation: pulse-border 1s ease;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 183, 107, 0.4);
  }
  100% {
    box-shadow: 0 0 0 18px rgba(229, 183, 107, 0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .services-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

  .plan-box {
    position: static;
  }

  .badges-bar {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #101013;
    border-bottom: 1px solid #2e2e33;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 4vw 1rem;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .cards-3,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 320px;
  }

  .hero-text {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: var(--section-space-mobile) 0;
  }

  .badges li {
    width: 100%;
    border-radius: 12px;
  }

  .review-slider {
    grid-template-columns: 1fr;
    justify-items: stretch;
    position: relative;
    padding: 1rem 3.25rem;
  }

  .review-track {
    min-height: 150px;
  }

  .review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  #prev-review {
    left: 0.75rem;
  }

  #next-review {
    right: 0.75rem;
  }

  .lightbox {
    padding: 3vh 3vw;
  }

  .lightbox-content {
    max-width: 100%;
  }

  .lightbox-arrow {
    position: absolute;
    bottom: 1rem;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

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

  .footer-brand {
    align-items: flex-start;
  }

  .mobile-cta {
    display: flex;
  }
}
