/* Palette: Charcoal Teal (Luxury Dark Preset Variant) */
@property --bar {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}
.bg-gray-100,
.bg-white,
.bg-yellow-100,
.bg-blue-100,
.bg-red-100,
.bg-green-100,
.bg-gray-100 p,
.bg-white p,
.bg-yellow-100 p,
.bg-blue-100 p,
.bg-red-100 p,
.bg-green-100 p {
  color: #111A13;
}
:root {
  --primary-color: #1C2A35;
  --secondary-color: #37474F;
  --accent-color: #00695C;
  --background-color: #F5F8F8;
  --dark-color: #111111;
  --text-color: #333333;
  --border-color: rgba(201, 162, 39, 0.25);
  
  --main-font: 'Work Sans', sans-serif;
  --alt-font: 'Inter', sans-serif;
}

/* Base LUXURY-DARK rules */
html, body {
  background: #0C0C0E;
  color: #E8E0D0;
  font-family: var(--alt-font);
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: clamp(14px, 1.6vw, 17px);
  overflow-x: hidden;
}

section {
  background: #0C0C0E;
  padding: 48px 16px;
  margin: 0;
}

@media (min-width: 1024px) {
  section {
    padding: 88px 24px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--main-font);
  color: #E8E0D0;
  letter-spacing: 0.02em;
  margin: 0 0 16px 0;
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
}

h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
}

h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent-color);
  margin: 12px 0 0;
}

h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
}

p, .subtitle {
  color: rgba(232, 224, 208, 0.72);
  margin-bottom: 16px;
}

.card {
  background: #161618;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 2px;
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 105, 92, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-color);
  color: #0C0C0E;
  border-radius: 0;
}

.btn-primary:hover {
  background: #00897B;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 105, 92, 0.4);
}

.btn-outline {
  background: transparent;
  color: #E8E0D0;
  border: 1px solid rgba(201, 162, 39, 0.4);
}

.btn-outline:hover {
  border-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Header & Mobile Nav (CSS-Only Burger) */
.site-header {
  background: #111113;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding: 16px 24px;
  position: relative;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 40px;
  width: auto;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

.burger-btn .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #E8E0D0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #161618;
  border-bottom: 1px solid var(--border-color);
  padding: 24px;
  z-index: 999;
}

#menu-toggle:checked ~ .site-nav {
  display: block;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-nav a {
  color: #E8E0D0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent-color);
}

@media (min-width: 768px) {
  .burger-btn {
    display: none;
  }
  
  .site-nav {
    display: flex !important;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 32px;
  }
}

/* HERO: Bento Grid */
.hero-bento {
  padding-top: 40px;
  padding-bottom: 60px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bento-card {
  background: #161618;
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  border-radius: 2px;
}

.main-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.image-card {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 14, 0.9), transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.img-caption {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E8E0D0;
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.bento-num {
  font-family: var(--main-font);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #E8E0D0;
  line-height: 1;
  margin-bottom: 12px;
}

.bento-label {
  font-size: 0.9rem;
  margin: 0;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-card {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .main-card {
    grid-column: span 2;
  }

  .image-card {
    grid-column: span 1;
    min-height: 100%;
  }

  .stat-card-1, .stat-card-2, .stat-card-3 {
    grid-column: span 1;
  }
}

/* SECTION HEADERS */
.section-header {
  margin-bottom: 48px;
  max-width: 720px;
}

/* SECTION: How It Works */
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.step-num {
  font-family: var(--main-font);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  margin-bottom: 8px;
}

.how-media-block {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background: #161618;
  border: 1px solid var(--border-color);
  padding: 24px;
}

.how-media-block img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-media-block {
    grid-template-columns: 1fr 1fr;
    padding: 40px;
  }
}

@media (min-width: 1024px) {
  .how-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* SECTION: Timeline */
.timeline-wrapper {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--accent-color);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-item {
  position: relative;
}

.timeline-marker {
  position: absolute;
  left: -33px;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 3px solid #0C0C0E;
}

.timeline-phase {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .timeline-wrapper {
    padding-left: 32px;
  }
}

/* SECTION: Progress Bars */
.progress-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.progress-value {
  color: var(--accent-color);
  font-weight: 700;
}

.bar-track {
  background: #222226;
  border-radius: 999px;
  overflow: hidden;
  height: 10px;
  width: 100%;
}

.bar-fill {
  --pct: 75;
  width: calc(var(--bar) * 1%);
  height: 100%;
  background: var(--accent-color);
  border-radius: 999px;
  animation: fill-bar 1.8s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 40%;
}

@keyframes fill-bar {
  from { --bar: 0; }
  to { --bar: var(--pct); }
}

@media (min-width: 768px) {
  .progress-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SECTION: Dense Icon Grid */
.icon-dense-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.icon-dense-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
}

.icon-dense-item i {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.icon-dense-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #E8E0D0;
}

@media (min-width: 768px) {
  .icon-dense-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* SECTION: CTA Banner */
.section-cta-banner {
  background: linear-gradient(135deg, #1C2A35 0%, #0C0C0E 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  padding: 64px 24px;
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner-content h2::after {
  margin: 16px auto 0;
}

/* SECTION: Contact + FAQ */
.contact-faq-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact-block, .faq-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-list i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 4px;
}

.contact-form {
  background: #161618;
  border: 1px solid var(--border-color);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #E8E0D0;
}

.form-group input,
.form-group textarea {
  background: #0C0C0E;
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: #E8E0D0;
  padding: 12px 16px;
  font-family: var(--alt-font);
  font-size: 0.95rem;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
}

.form-checkbox label {
  font-size: 0.8rem;
  color: rgba(232, 224, 208, 0.65);
}

.w-full {
  width: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 24px;
}

.faq-question {
  font-size: 1.05rem;
  color: #E8E0D0;
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 0.9rem;
  margin: 0;
}

@media (min-width: 1024px) {
  .contact-faq-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

/* Scroll Reveal */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 25%;
}

/* FOOTER */
.site-footer {
  background: #08080A;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  padding: 48px 24px;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo img {
  max-height: 36px;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-nav a {
  color: rgba(232, 224, 208, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(232, 224, 208, 0.45);
  margin: 0;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}