/* palette: navy-gold */
:root {
  --primary-color: #0A2342;
  --secondary-color: #1B3A6B;
  --accent-color: #C9A227;
  --background-color: #F4F8FF;
  --dark-color: #111111;
  --text-color: #333333;
  --border-color: rgba(0,0,0,0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
  --radius-sm: 0px; 
  --radius-md: 0px; 
  --radius-lg: 0px; 
  --radius-xl: 0px;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'DM Sans', sans-serif;
}

/* BRUTALIST-MONO PRESET RULES (COPIED LITERALLY) */
section{padding:48px 16px;margin:0;border-bottom:3px solid #000} 
@media(min-width:1024px){section{padding:56px 24px}} 
body{background:#fff;color:#000;font-family:var(--alt-font);margin:0;padding:0;line-height:1.6} 
.card{border:2px solid #000;border-radius:0;background:#fff;box-shadow:none;padding:24px} 
h1,h2{text-transform:uppercase;letter-spacing:-0.02em;font-size:clamp(2rem,6vw,4rem);font-family:var(--main-font);font-weight:900;margin-top:0} 
.btn{background:#000;color:#fff;border-radius:0;border:2px solid #000;font-weight:700;text-transform:uppercase;letter-spacing:0.1em;display:inline-flex;align-items:center;justify-content:center;padding:12px 24px;min-height:44px;text-decoration:none;transition:transform .15s, box-shadow .15s;cursor:pointer} 
.btn:hover{transform:translate(-2px, -2px);box-shadow:4px 4px 0 #000}
.section-num,.step-num{font-size:5rem;font-weight:900;color:#F0F0F0;line-height:1;display:block;font-family:var(--main-font)}

/* GENERAL LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

h3 {
  font-family: var(--main-font);
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
}

p {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
  margin-bottom: 16px;
}

.section-intro {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 32px;
  max-width: 800px;
}

/* HEADER & CSS BURGER */
header {
  background: var(--primary-color);
  color: #fff;
  padding: 16px 24px;
  border-bottom: 3px solid #000;
  position: relative;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 40px;
  width: auto;
  display: block;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
}

.burger-btn .bar {
  height: 3px;
  width: 100%;
  background-color: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

#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: var(--secondary-color);
  z-index: 999;
  border-bottom: 3px solid #000;
}

#menu-toggle:checked ~ .site-nav {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media(min-width: 768px) {
  .burger-btn {
    display: none;
  }
  .site-nav {
    display: flex !important;
    position: static;
    background: transparent;
    border-bottom: none;
  }
  .site-nav ul {
    flex-direction: row;
    padding: 0;
    gap: 24px;
  }
}

/* HERO VARIANT: noise-mesh */
.hero-section {
  min-height: 81vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--background-color);
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.35) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(27, 58, 107, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(10, 35, 66, 0.3) 0%, transparent 60%);
  padding: 64px 24px;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-section h1 {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.hero-subtitle {
  max-width: 600px;
  margin: 0 auto 32px auto;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--dark-color);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

/* TIMELINE SECTION */
.timeline-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .timeline-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.timeline-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.timeline-item .step-num {
  color: var(--accent-color);
  opacity: 0.4;
  margin-bottom: 12px;
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.about-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border: 3px solid #000;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}

.about-checklist li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  font-weight: 700;
}

.about-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 900;
  font-size: 1.2rem;
}

/* LIFESTYLE CARDS (Uses bg.jpg) */
.lifestyle-section {
  background-image: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.cards-grid .card ul {
  padding-left: 20px;
  margin-top: 16px;
  font-size: 0.9rem;
}

/* TESTIMONIAL WALL */
.testimonial-wall {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonial-wall {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonial-wall {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stars {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.quote {
  font-style: italic;
  margin-bottom: 16px;
}

.author {
  font-weight: 700;
  margin-bottom: 0;
}

.location {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
}

/* GRADIENT STATS STRIP */
.stats-strip-section {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: #fff;
  padding: 48px 24px;
}

.stats-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-number {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  font-family: var(--main-font);
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* CONTACT & OPEN FAQ */
.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .contact-faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-details p {
  margin-bottom: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #000;
  border-radius: 0;
  font-family: var(--alt-font);
  font-size: 1rem;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
}

/* FAQ OPEN LIST */
.faq-container {
  margin-top: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.faq-item h4 {
  font-family: var(--main-font);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.faq-item p {
  margin-bottom: 0;
}

/* REVEAL ANIMATIONS */
@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 30%;
}

.card:nth-child(1){animation-delay:0s} 
.card:nth-child(2){animation-delay:.12s}
.card:nth-child(3){animation-delay:.24s} 
.card:nth-child(4){animation-delay:.36s}

/* FOOTER */
footer {
  background: var(--dark-color);
  color: #fff;
  padding: 48px 24px;
  border-top: 3px solid #000;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

footer img[alt="logo"] { 
  filter: brightness(0) invert(1); 
  max-height: 36px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: #888;
}