:root {
  --bg: #0a0d12;
  --bg-soft: #111821;
  --panel: #141d29;
  --card: #f4f3ef;
  --card-strong: #ece7df;
  --text: #f5f7fb;
  --muted: #b7c0cd;
  --gold: #d4a64a;
  --gold-soft: #f0c86d;
  --silver: #c0c0c0;
  --silver-soft: #e8e8e8;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(2, 5, 10, 0.35);
  --radius: 22px;
}

/*
  STYLE GUIDE / HOW TO EDIT (for beginners)
  -----------------------------------------
  - Theme colors: change the variables inside :root (e.g. --bg, --text, --gold).
    Editing these will update colors site-wide without touching component rules.
  - Spacing and layout: .container width and .section padding control overall layout.
  - Components: look for classes like .hero, .service-card, .price-card to change
    sizing, spacing, or visual styles for those blocks.
  - Placeholders and images: .placeholder-box and .placeholder-image are temporary
    visuals. Replace with an <img> tag and remove placeholder classes when adding real images.
  - Typography: H1/H2 sizes are set near the top. Change font-family in body to use a different font.
  - Page-load animation: the `main` fade/translate rules are near the bottom. Tweak duration there.

  Tip: prefer changing variables at the top rather than editing many selectors.
*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #0a0d12 0%, #0b1016 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: rgba(17, 24, 33, 0.9);
}

.section-accent {
  background: linear-gradient(180deg, rgba(212, 166, 74, 0.06), rgba(212, 166, 74, 0.12));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.lead,
.process-copy p,
.service-card p,
.step-item p,
.testimonial-grid blockquote,
.price-card li,
.contact-form input::placeholder {
  color: var(--muted);
}

.placeholder-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(212, 166, 74, 0.6);
  border-radius: 20px;
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

.placeholder-image {
  min-height: 260px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 13, 18, 0.8);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand img {
  height: 64px;
  width: auto;
  display: block;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #0e1318;
  font-size: 1.15rem;
}

.brand-text {
  font-size: 1rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 99px;
}

.hero {
  padding: 80px 0 65px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 3rem;
}

.hero-copy {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111821;
  box-shadow: 0 16px 28px rgba(212, 166, 74, 0.25);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 110px;
}

.hero-stats strong {
  font-size: 1.5rem;
  color: var(--text);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.image-card {
  position: relative;
  width: min(560px, 100%);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.image-card img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(10, 13, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-weight: 600;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.badge-top {
  top: 30px;
  right: -12px;
}

.badge-bottom {
  left: -12px;
  bottom: 30px;
}

.brands {
  padding: 16px 0 0;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem 1.5rem;
}

.brand-strip span {
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading.centered {
  text-align: center;
}

.page-hero {
  padding: 90px 0 40px;
  text-align: center;
}

.narrow {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  background: rgba(212, 166, 74, 0.12);
  color: var(--gold-soft);
  font-size: 1.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-soft);
  font-weight: 800;
}

.steps {
  display: grid;
  gap: 1.2rem;
}

.step-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
}

.step-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(212, 166, 74, 0.15);
  color: var(--gold-soft);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #10151d;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-content h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.pricing-section-heading {
  margin-top: 3rem;
}

.why-choose {
  margin-top: 3rem;
  text-align: center;
}

.check-list-centered {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.price-card {
  padding: 2rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(13, 17, 23, 0.92);
  border: 1px solid var(--line);
  text-align: center;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(212, 166, 74, 0.14), rgba(13, 17, 23, 0.96));
  border-color: rgba(212, 166, 74, 0.6);
  transform: translateY(-8px);
}

.package {
  color: var(--gold-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.best-for {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.price-card h3 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -0.06em;
  margin-bottom: 1.3rem;
}

.price-card ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  font-size: 1.05rem;
  line-height: 1.7;
}

.testimonial-grid footer {
  margin-top: 1rem;
  color: var(--text);
  font-weight: 700;
}

.cta-section {
  padding-top: 28px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(212, 166, 74, 0.12), rgba(20, 29, 41, 0.9));
  border: 1px solid rgba(212, 166, 74, 0.35);
}

.cta-copy {
  flex: 1;
}

.cta-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  width: min(540px, 100%);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  flex: 1 1 180px;
  min-height: 54px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(4, 8, 12, 0.5);
  color: var(--text);
}

.contact-form textarea {
  min-height: 120px;
  width: 100%;
}

.contact-preference {
  width: 100%;
  margin: 0;
  padding: 0.75rem 0.25rem 0;
  border: 0;
}

.contact-preference legend {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.contact-preference label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-preference input[type="radio"],
.contact-preference input[type="checkbox"] {
  flex: none;
  width: 1rem;
  height: 1rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--gold-soft);
}

.contact-form-full {
  width: 100%;
}

.form-status {
  width: 100%;
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.form-status-success {
  color: var(--gold-soft);
}

.form-status-error {
  color: #e88a8a;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.contact-card,
.info-box {
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
}

.contact-info {
  width: 100%;
}

.info-box {
  min-height: 220px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-image {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--line);
}

.about-copy {
  font-size: 1.08rem;
  color: var(--muted);
}

.compact-list {
  margin-top: 1rem;
}

.check-list.compact-list li {
  white-space: nowrap;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: #0a0d12;
}

/* Page-load animation: simple fade + lift for main content */
main {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms cubic-bezier(.2,.9,.2,1), transform 600ms cubic-bezier(.2,.9,.2,1);
}

body.page-loaded main {
  opacity: 1;
  transform: none;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

@media (max-width: 980px) {
  .check-list.compact-list li {
    white-space: normal;
  }

  .hero-grid,
  .process-grid,
  .cta-box,
  .pricing-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .process-grid,
  .cta-box {
    display: grid;
  }

  .service-grid,
  .pricing-grid,
  .testimonial-grid {
    display: grid;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-box {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(10, 13, 18, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(22px);
    transition: opacity 220ms ease, transform 260ms ease, visibility 220ms ease;
    box-shadow: 0 18px 38px rgba(2, 5, 10, 0.28);
  }

  .site-nav a {
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 220ms ease, transform 260ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav.is-open a {
    opacity: 1;
    transform: translateX(0);
  }

  .site-nav.is-open a:nth-child(1) { transition-delay: 60ms; }
  .site-nav.is-open a:nth-child(2) { transition-delay: 100ms; }
  .site-nav.is-open a:nth-child(3) { transition-delay: 140ms; }
  .site-nav.is-open a:nth-child(4) { transition-delay: 180ms; }
  .site-nav.is-open a:nth-child(5) { transition-delay: 220ms; }
  .site-nav.is-open a:nth-child(6) { transition-delay: 260ms; }

  .hero,
  .section {
    padding: 80px 0;
  }

  .hero-grid,
  .process-grid,
  .service-grid,
  .pricing-grid,
  .testimonial-grid,
  .brand-strip,
  .gallery-grid,
  .contact-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-wrap,
  .contact-form,
  .cta-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-item.wide {
    grid-column: auto;
  }

  .image-card.img,
  .placeholder-box {
    min-height: 420px;
  }

  .badge-top {
    right: 18px;
  }

  .badge-bottom {
    left: 18px;
  }

  .cta-box {
    padding: 1.4rem;
  }

  .nav-wrap {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0.8rem 0;
  }
}
