:root {
  --bg: #070707;
  --bg-soft: #101010;
  --card: #121212;
  --text: #f2f2f2;
  --muted: #b7b7b7;
  --gold: #d8ad52;
  --gold-strong: #f2cc72;
  --line: rgba(216, 173, 82, 0.28);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(216, 173, 82, 0.12), transparent 34%),
    radial-gradient(circle at 85% 100%, rgba(216, 173, 82, 0.09), transparent 38%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(7, 7, 7, 0.78);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  text-decoration: none;
  color: var(--gold-strong);
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand > span {
  line-height: 1;
}

.brand > span > span {
  color: #fff1cc;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(216, 173, 82, 0.24);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(216, 173, 82, 0.1) inset;
}

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

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
}

.main-nav a:hover {
  color: var(--gold-strong);
  background: rgba(216, 173, 82, 0.08);
}

.main-nav .nav-cta {
  min-height: 38px;
  padding: 0.5rem 0.82rem;
  font-size: 0.84rem;
}

.lang-toggle {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  position: relative;
  overflow: hidden;
}

.lang-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-strong), #c29139);
  box-shadow: 0 4px 14px rgba(216, 173, 82, 0.28);
  transform: translateX(0);
  transition: transform 0.22s ease;
  z-index: 0;
}

.lang-toggle[data-active="en"]::before {
  transform: translateX(calc(100% + 2px));
}

.lang-seg {
  border: 0;
  background: transparent;
  color: #c9b27f;
  min-height: 30px;
  min-width: 42px;
  padding: 0.3rem 0.56rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease;
}

.lang-seg:hover {
  color: #f3d79f;
}

.lang-seg.is-active {
  color: #1f1403;
  background: transparent;
  box-shadow: none;
  animation: langPop 0.18s ease;
}

@keyframes langPop {
  0% {
    transform: scale(0.96);
  }
  60% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lang-toggle::before,
  .lang-seg {
    transition: none;
  }

  .lang-seg.is-active {
    animation: none;
  }
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--gold-strong);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
}

.hero {
  padding: clamp(2.5rem, 5vw, 4.8rem) 0 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 0.8rem;
}

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

h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  margin-bottom: 0.8rem;
}

h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #ffe5ac;
  margin-bottom: 0.9rem;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.text-link {
  color: var(--gold-strong);
  text-decoration: none;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

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

.hero-badges li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  font-size: 0.86rem;
  color: #ecd39a;
  background: rgba(255, 255, 255, 0.02);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.05rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-gold {
  color: #1f1403;
  background: linear-gradient(135deg, var(--gold-strong), #c29139);
  box-shadow: 0 8px 24px rgba(216, 173, 82, 0.3);
}

.btn-ghost {
  color: #f8e3b0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.section {
  padding: 2.8rem 0;
}

.section-dark {
  background: var(--bg-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cards,
.feature-grid,
.contact-grid,
.steps,
.testimonials {
  display: grid;
  gap: 1rem;
}

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

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

.portfolio-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(216, 173, 82, 0.03));
}

.portfolio-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.portfolio-item h3 {
  margin: 0.7rem 0 0.2rem;
  color: #f6ddb0;
  font-size: 1rem;
}

.card,
.feature,
.contact-card,
.service-box,
.step,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(216, 173, 82, 0.035));
}

.card-featured {
  border-color: rgba(242, 204, 114, 0.52);
  box-shadow: 0 0 0 1px rgba(216, 173, 82, 0.22), 0 10px 26px rgba(0, 0, 0, 0.34);
}

.card,
.feature,
.contact-card,
.service-box,
.step {
  padding: 1rem;
}

.card-tag {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1f1403;
  background: linear-gradient(135deg, var(--gold-strong), #c29139);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
}

.card-sub {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
}

.card ul {
  margin: 0.75rem 0;
  padding-left: 1.1rem;
  color: #ddd;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.feature p,
.contact-card p,
.service-box p {
  color: var(--muted);
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.trust-inline span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.86rem;
  color: #ecd39a;
  background: rgba(255, 255, 255, 0.02);
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 0.4rem;
}

.service-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  color: #ebd59f;
  font-size: 0.86rem;
}

.service-price {
  color: #f4d38b;
  margin-bottom: 0;
}

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

.step {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f1403;
  background: linear-gradient(135deg, var(--gold-strong), #c29139);
  font-weight: 700;
  flex: 0 0 auto;
}

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

.faq-list details {
  padding: 0.85rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #f5ddb0;
}

.faq-list p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.contact-card {
  display: block;
  text-decoration: none;
  color: var(--text);
}

.contact-card:hover {
  border-color: rgba(242, 204, 114, 0.68);
}

.site-footer {
  padding: 1.2rem 0 2rem;
  color: #9f9f9f;
  font-size: 0.93rem;
}

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

.footer-wrap a {
  color: #dcbc72;
  text-decoration: none;
}

.footer-links {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .cards,
  .feature-grid,
  .contact-grid,
  .portfolio-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

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

  .main-nav {
    position: absolute;
    top: 74px;
    left: 4%;
    right: 4%;
    background: rgba(12, 12, 12, 0.96);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.6rem;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
  }

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

  .main-nav .nav-cta {
    width: 100%;
    margin-top: 0.35rem;
  }

  .lang-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .lang-seg {
    flex: 1;
  }
}
