:root {
  --bg: #0b1220;
  --bg-soft: #101a2b;
  --surface: rgba(255, 255, 255, 0.08);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --accent: #d4af7f;
  --line: rgba(255, 255, 255, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #08101d 0%, #0b1220 60%, #121d31 100%);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.section {
  padding: 4.5rem 0;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.6rem;
}

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af7f, #c49c65);
  color: #111827;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 175, 127, 0.24);
  filter: brightness(1.05);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 16, 29, 0.72);
  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 {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-logo {
  color: var(--accent);
}

.site-nav {
  position: fixed;
  inset: 78px 0 auto 0;
  background: rgba(8, 16, 29, 0.96);
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.site-nav .btn {
  background: linear-gradient(135deg, #d4af7f, #c49c65);
  color: #111827;
  border-color: transparent;
}

.site-nav .btn:hover {
  color: #111827;
}

.site-nav.is-open {
  display: flex;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      90deg,
      rgba(8, 16, 29, 0.8),
      rgba(8, 16, 29, 0.34)
    ),
    url("https://images.pexels.com/photos/2102587/pexels-photo-2102587.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-content {
  position: relative;
  max-width: 720px;
  padding: 5rem 0;
}

.hero h1 {
  font-size: clamp(2rem, 7vw, 3.8rem);
}

.lead {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 127, 0.55);
}

.icon {
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.4rem;
  color: var(--accent);
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section-dark {
  background: rgba(6, 12, 22, 0.5);
  border-block: 1px solid var(--line);
}

.about-grid {
  display: grid;
  gap: 1.2rem;
}

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

.stat {
  border: 1px solid var(--line);
  border-radius: 1rem;
  text-align: center;
  padding: 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.02);
}

.stat strong {
  display: block;
  color: var(--accent);
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

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

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c1525;
  position: relative;
}

.gallery-item img {
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item figcaption {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.55rem 0.8rem;
  border-radius: 0.65rem;
  color: #f8fafc;
  background: rgba(8, 16, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.gallery-list {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

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

.process-step {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
}

.process-step span {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.client-name {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 127, 0.45);
  background: rgba(212, 175, 127, 0.1);
  color: #f8fafc;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
}

.price-card ul {
  margin: 0;
  padding-left: 1rem;
}

.price-card li {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.price-note {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.02);
}

.price-intro {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.02);
}

.offer-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  border: 1px solid rgba(212, 175, 127, 0.45);
  border-radius: 1.2rem;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(212, 175, 127, 0.08), rgba(255, 255, 255, 0.02));
}

.offer-copy {
  display: grid;
  align-content: center;
  gap: 0.2rem;
}

.offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.3rem 0 1rem;
}

.offer-points span {
  display: inline-block;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
}

.offer-image {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
}

.offer-image img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.cta-box {
  border: 1px solid rgba(212, 175, 127, 0.4);
  border-radius: 1.2rem;
  padding: 2rem 1.2rem;
  text-align: center;
  background: linear-gradient(
    150deg,
    rgba(212, 175, 127, 0.1),
    rgba(255, 255, 255, 0.03)
  );
}

.cta-premium {
  border: 1px solid rgba(212, 175, 127, 0.4);
  border-radius: 1.2rem;
  padding: 1.4rem;
  background: linear-gradient(145deg, rgba(212, 175, 127, 0.11), rgba(255, 255, 255, 0.03));
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.cta-premium h2 {
  margin-bottom: 0.6rem;
}

.cta-premium-actions {
  display: flex;
  justify-content: flex-start;
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
}

.contact-copy ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.contact-copy li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.contact-copy li a {
  color: #e2e8f0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(212, 175, 127, 0.06));
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.35);
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 0.75rem;
  margin-bottom: 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(212, 175, 127, 0.8);
  box-shadow: 0 0 0 3px rgba(212, 175, 127, 0.18);
}

.form-message {
  min-height: 1.25rem;
  margin-top: 0.7rem;
  font-size: 0.95rem;
}

.form-message.error {
  color: #fecaca;
}

.form-message.success {
  color: #86efac;
}

.site-footer {
  padding-top: 2.4rem;
  border-top: 1px solid var(--line);
  background: rgba(4, 10, 18, 0.82);
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.brand-footer {
  margin-bottom: 0.6rem;
}

.footer-grid h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.footer-bottom {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.5rem;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

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

  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

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

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

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

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

  .offer-wrap {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
    padding: 1.2rem;
  }

  .cta-premium {
    grid-template-columns: 1.3fr auto;
    padding: 1.5rem;
  }

  .cta-premium-actions {
    justify-content: flex-end;
  }
}

@media (min-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
