:root {
  color-scheme: dark;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #f8f8f2;
  background: #050505;
  --surface: rgba(18, 18, 18, 0.88);
  --surface-soft: rgba(32, 32, 32, 0.9);
  --primary: #d4af37;
  --primary-soft: rgba(212, 175, 55, 0.16);
  --accent: #e6c36d;
  --text-muted: #b8b8b0;
  --border: rgba(212, 175, 55, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 30% 5%, rgba(255, 235, 176, 0.08), transparent 25%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
  color: #f8f8f2;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  color: #c5bbab;
  font-size: 0.95rem;
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.topbar-actions a {
  color: #f8f8f2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.topbar-actions a:hover {
  color: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-logo {
  width: 3.6rem;
  min-height: 3.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: radial-gradient(circle at top, rgba(255,255,255,0.16), rgba(212, 175, 55, 0.12));
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
}

.brand-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.brand-text {
  display: inline-block;
  font-size: 1rem;
}

.main-nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.main-nav a,
.dropdown-toggle {
  color: #e5e5e0;
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.dropdown-toggle:hover {
  color: var(--primary);
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-toggle::after {
  content: '▾';
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 14rem;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 0.75rem 0;
  display: none;
  z-index: 30;
}

.nav-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.85rem 1.2rem;
  color: #e5e5e0;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--primary);
}

.main-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  gap: 0.45rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 1.4rem;
  height: 0.14rem;
  background: #f8f8f2;
  border-radius: 999px;
}

.hero-section {
  padding: 6rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-full .hero-grid {
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-copy h1,
.section-header h2 {
  margin: 1.1rem 0 1rem;
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero-copy p,
.section-header p,
.about-section p,
.contact-section p,
.testimonial-card p {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  color: var(--text-muted);
}

.hero-tagline {
  margin-top: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.25rem 0 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #f6df8d);
  color: #111;
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #f8f8f2;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-highlights span,
.hero-highlight-link {
  display: inline-flex;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #e5e5e0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.96rem;
}

.hero-highlight-link {
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-highlight-link:hover {
  color: var(--primary);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-1px);
}

.hero-media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: 2.5rem;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.18));
  overflow: hidden;
  box-shadow: 0 70px 140px rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.hero-banner-copy {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 1.75rem;
  max-width: 26rem;
}

.hero-banner-copy span {
  display: inline-block;
  color: var(--primary);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hero-banner-copy p {
  margin: 0;
  color: #f0ead6;
  line-height: 1.9;
}

.section {
  padding: 4rem 0;
}

.trust-section {
  padding: 1.5rem 0 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1.25rem;
  text-align: center;
}

.trust-card strong {
  display: block;
  color: var(--primary);
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-card span {
  color: #d8d2c6;
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
}

.pricing-section .section-header .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.pricing-section .section-header h2,
.pricing-section .section-header p {
  display: inline-block;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .pricing-section .section-header h2,
  .pricing-section .section-header p {
    display: block;
    white-space: normal;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header p {
    max-width: 100%;
  }
}

.service-card {
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 1.5rem;
  padding: 2.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
  border-color: rgba(212, 175, 55, 0.35);
}

.service-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.3rem;
  color: #f8f8f2;
}

.service-card p {
  color: #b8b8b0;
}

.service-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.pricing-section {
  padding-top: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.8rem;
  padding: 2rem;
  min-height: 100%;
}

.pricing-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #f8f8f2;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.pricing-card li {
  color: #d3c9b4;
  line-height: 1.7;
}

.pricing-card p {
  color: #b8b8b0;
}

.pricing-note {
  margin-top: 1rem;
  color: #e0d7b6;
  font-size: 0.95rem;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.about-list li {
  padding-left: 1.2rem;
  position: relative;
  color: #dcd8d0;
}

.about-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.about-quote {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1.75rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-quote blockquote {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.75;
  color: #f8f8f2;
}

.quote-author {
  display: block;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-weight: 600;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.showcase-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.75rem;
  overflow: hidden;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.showcase-content {
  padding: 1.5rem;
}

.showcase-content h3 {
  margin: 0 0 0.65rem;
  color: #f8f8f2;
}

.showcase-content p {
  margin: 0;
  color: #b8b8b0;
  line-height: 1.75;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  border-radius: 1.5rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.testimonial-section {
  padding: 4rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 2.5rem;
}

.testimonial-card h2 {
  margin-bottom: 1rem;
  color: #f8f8f2;
}

.testimonial-card p {
  color: #d3c9b4;
  line-height: 1.9;
}

.testimonial-author {
  display: block;
  margin-top: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list li {
  color: #d3c9b4;
}

.contact-list a {
  color: var(--primary);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
}

.contact-form label {
  font-weight: 600;
  color: #f8f8f2;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  color: #f8f8f2;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a9488;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

.site-footer {
  background: #070707;
  color: #e5e2d9;
  padding: 2.25rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: #9a9488;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .showcase-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .gallery-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    display: none;
    margin-top: 1rem;
  }

  .main-nav.open {
    display: flex;
  }

  .hero-section {
    padding-top: 2.5rem;
  }

  .section-header h2,
  .hero-copy h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .services-grid,
  .gallery-grid,
  .trust-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
  }
}
