/* Root settings and reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1B2E2C;
  --primary-light: #2D4C48;
  --accent: #D4AF37;
  --accent-light: #F3E5AB;
  --bg-sand: #F7F5F0;
  --bg-light: #FCFBFA;
  --text-dark: #1F1F1F;
  --text-muted: #5C5C5C;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-serif: 'Cinzel', georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .logo {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.03em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-center: center;
  text-align: center;
}

.max-w-xl {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

/* Premium Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 11px;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary);
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Header and Navigation */
.header {
  position: sticky;
  top: 0;
  background-color: rgba(27, 46, 44, 0.96);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--white);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  color: var(--accent);
}

.logo svg {
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
  opacity: 1;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.burger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

/* Hero Sections */
.hero {
  position: relative;
  height: 90vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.hero-sub {
  height: 45vh;
  min-height: 300px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 46, 44, 0.95) 0%, rgba(10, 18, 17, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
}

.hero-tagline {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-title-sub {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 17px;
  font-weight: 300;
  opacity: 0.9;
  max-width: 680px;
  margin: 0 auto 32px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Structure & Grids */
.section {
  padding: 90px 0;
}

.bg-sand {
  background-color: var(--bg-sand);
}

.bg-dark {
  background-color: var(--primary);
  color: var(--white);
}

.section-title {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 40px;
}

.text-light {
  color: var(--white) !important;
}

.text-muted {
  color: var(--text-muted);
}

.lead-text {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-muted);
}

.text-block {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.grid {
  display: grid;
  gap: 40px;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.align-center {
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rounded {
  border-radius: 8px;
}

.shadow-lg {
  box-shadow: var(--shadow);
}

.w-full {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Feature Elements */
.feature-icon-box {
  margin-top: 24px;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

.feature-icon-box h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--primary);
}

.bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.bullet-item {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
}

.bullet-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
}

/* Premium Cards */
.card {
  background-color: var(--white);
  padding: 40px 32px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 46, 44, 0.05);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.card-num {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.card-title {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  margin: 0 auto 16px;
  display: block;
}

.text-accent {
  color: var(--accent);
  font-weight: 600;
}

.text-sm {
  font-size: 12px;
}

/* Lead Form Block */
.lead-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(27, 46, 44, 0.2);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
  font-size: 13px;
}

.form-checkbox input {
  margin-top: 3px;
}

/* FAQ Accordions */
.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.accordion-item {
  border: 1px solid rgba(27, 46, 44, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  background-color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::after {
  content: "+";
  font-size: 18px;
  color: var(--accent);
}

.accordion-item.active .accordion-header::after {
  content: "-";
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--bg-sand);
}

.accordion-body p {
  padding: 18px 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.accordion-item.active .accordion-body {
  max-height: 250px;
}

/* Footer */
.footer {
  background-color: #0E1817;
  color: var(--white);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.logo-light {
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 250px;
}

.footer-title {
  font-size: 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-contact {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.8;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

/* Legal formatting & Tables */
.legal-page h1 {
  margin-bottom: 16px;
}

.legal-page h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 22px;
  color: var(--primary);
}

.legal-page p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  border: 1px solid rgba(27, 46, 44, 0.1);
  padding: 12px 16px;
  text-align: left;
}

.legal-table th {
  background-color: var(--primary);
  color: var(--white);
}

.quote {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--primary);
  margin: 32px 0;
}

/* Interactive Maps */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* Cookie consent box */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left:0;
  width:100%;
  background-color: var(--primary);
  color: var(--white);
  border-top: 2px solid var(--accent);
  padding: 24px 0;
  z-index: 2000;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cookie-content h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
}

.cookie-content p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 16px;
  line-height: 1.6;
}

.cookie-options {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.cookie-options label {
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

/* Media queries */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--primary);
    padding: 30px 24px;
    border-bottom: 1.5px solid var(--accent);
    gap: 24px;
  }
  .nav.open {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .grid-2, .grid-3, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .section {
    padding: 60px 0;
  }
}