/* Import Garamond-style web font */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&display=swap');

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.brand-logo {
  width: 80px;
  height: auto;
  aspect-ratio: 895/540;
  object-fit: contain;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #1a1a1a;
  cursor: pointer;
}

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

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
}

.nav-links a:hover {
  color: #C58E4D;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

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

.hero-text {
  position: absolute;
  right: 80px;
  bottom: 10%;
  z-index: 10;
  text-align: right;
  color: white;
  max-width: 400px;
}

.hero-text h1 {
  font-family: 'Cormorant Garamond', 'Garamond Premier Pro', 'Adobe Garamond Pro', Garamond, 'Times New Roman', serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-text p {
  font-size: 1.5rem;
  font-weight: 400;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Sections */
.section {
  padding: 80px 0;
  background: white;
  border-top: 1px solid #e2e8f0;
}

.section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.section p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Focus Grid - Fixed Layout */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.focus-item {
  background: white;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: left;
}

.focus-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.focus-item p {
  font-size: 1rem;
  color: #64748b;
  text-align: left;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  background: #f8fafc;
}

.faq-container {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #C58E4D;
}

.faq-icon {
  font-size: 1.5rem;
  color: #C58E4D;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  border-top-color: #e2e8f0;
}

.faq-answer p {
  padding: 0 1.5rem;
  margin: 1.5rem 0;
  font-size: 1rem;
  text-align: left;
}

.privacy-note {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #64748b;
}

/* Footer */
.footer {
  background: white;
  border-top: 1px solid #e2e8f0;
  padding: 3rem 0;
  text-align: center;
}

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

.footer-text {
  font-size: 0.875rem;
  color: #64748b;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.5rem;
  }
  
  .brand-logo {
    width: 64px;
  }
  
  /* Hero text stays right-aligned on mobile */
  .hero-text {
    right: 24px;
    max-width: 300px;
    text-align: right;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    font-size: 1.25rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  /* Focus grid becomes single column on mobile */
  .focus-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    justify-content: center;
    text-align: center;
  }
}

/* Tablet and medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}