:root {
  --bg: #0d1711;
  --bg-soft: #101d15;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.10);
  --text: #f5f7f2;
  --muted: #d0d7ce;
  --dark-text: #152018;
  --gold: #c9a35f;
  --gold-strong: #e1bb76;
  --green: #173523;
  --green-soft: #203f2c;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f7f4ee;
  color: var(--dark-text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(rgba(7, 18, 12, 0.72), rgba(7, 18, 12, 0.82)),
    url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat;
  color: var(--text);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(201, 163, 95, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 25%);
  z-index: 0;
}

.navbar {
  width: min(92%, var(--container));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #8a6a34);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
}

.logo-text h2 {
  font-size: 1.05rem;
  line-height: 1;
}

.logo-text p {
  font-size: 0.85rem;
  color: #d8e0d6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0 70px;
}

.hero-badge,
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f8ebd4;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 900px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 1.02;
  margin-bottom: 22px;
  font-weight: 800;
}

.hero h1 span {
  color: var(--gold-strong);
}

.hero p {
  max-width: 760px;
  font-size: 1.1rem;
  color: #dfe6dd;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-strong), #9c7341);
  color: #fff;
  box-shadow: 0 14px 30px rgba(201, 163, 95, 0.22);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.stat-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.stat-card p {
  margin: 0;
  font-size: 0.96rem;
  color: #dde4db;
}

.trust-bar {
  background: linear-gradient(90deg, #0e1b13, #163120);
  color: #f1f5ef;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 18px 0;
  text-align: center;
  font-weight: 600;
}

.section {
  padding: 100px 0;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 46px;
}

.section-heading h2,
.highlight-left h2,
.contact-info h2,
.cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.12;
  margin-bottom: 18px;
  color: #162119;
}

.section-heading p,
.section-text p,
.highlight-left p,
.contact-info p,
.cta-box p {
  color: #48564b;
  font-size: 1.04rem;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: start;
}

.services {
  background: linear-gradient(180deg, #f8f5ef 0%, #f2ece2 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 32, 24, 0.08);
  border-radius: 22px;
  padding: 30px 24px;
  box-shadow: 0 18px 40px rgba(18, 24, 19, 0.08);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(18, 24, 19, 0.14);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #17241a;
}

.service-card p {
  color: #556257;
}

.highlight {
  background:
    linear-gradient(rgba(12, 24, 17, 0.92), rgba(12, 24, 17, 0.94)),
    url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat;
  color: var(--text);
}

.highlight .section-tag,
.highlight h2,
.highlight p {
  color: var(--text);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #fff;
}

.feature-card p {
  color: #dce4da;
}

.cta-box {
  background: linear-gradient(135deg, #132117, #27412e);
  color: #fff;
  border-radius: 28px;
  padding: 60px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-box h2,
.cta-box p {
  color: #fff;
}

.cta-box .btn {
  margin-top: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.contact-point {
  background: #fff;
  border: 1px solid rgba(21, 32, 24, 0.08);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 14px 30px rgba(18, 24, 19, 0.05);
}

.contact-point strong {
  display: block;
  margin-bottom: 6px;
  color: #152018;
}

.contact-point span {
  color: #5c695f;
}

.contact-form,
.login-form {
  background: #fff;
  border: 1px solid rgba(21, 32, 24, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(18, 24, 19, 0.08);
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #d8ddd7;
  background: #fbfbf9;
  border-radius: 14px;
  padding: 15px 16px;
  color: #162119;
  outline: none;
  transition: 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 163, 95, 0.12);
}

.footer {
  background: #0e1a12;
  color: #dbe3da;
  padding: 28px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 11, 8, 0.68);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.modal.active {
  display: flex;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 24px;
  padding: 34px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: modalUp 0.25s ease;
}

.modal-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #18251b;
}

.modal-box p {
  color: #5d6a60;
  margin-bottom: 20px;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.8rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #47554a;
}

@keyframes modalUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-stats,
  .service-grid,
  .trust-grid,
  .section-grid,
  .highlight-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats .stat-card:last-child,
  .trust-grid div:last-child,
  .service-grid .service-card:last-child {
    grid-column: span 2;
  }

  .nav-links {
    gap: 18px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    right: 0;
    width: 260px;
    background: rgba(9, 18, 12, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .hero-stats,
  .service-grid,
  .trust-grid,
  .section-grid,
  .highlight-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats .stat-card:last-child,
  .trust-grid div:last-child,
  .service-grid .service-card:last-child {
    grid-column: span 1;
  }

  .hero-content {
    padding-top: 70px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .navbar {
    padding: 18px 0;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .service-card,
  .contact-form,
  .login-form,
  .modal-box {
    padding: 22px;
  }
}