/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.btn-primary:hover {
  background: #333;
  border-color: #333;
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: #1a1a1a;
  border-color: #d0d0d0;
}

.btn-outline:hover {
  border-color: #1a1a1a;
  opacity: 1;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1a1a1a;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
}

.nav-links a:hover {
  color: #1a1a1a;
  opacity: 1;
}

.nav-cta {
  background: #1a1a1a !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
}

.nav-cta:hover {
  background: #333 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: #fff;
}

.hero-content {
  max-width: 720px;
}

.hero-brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ===== Social Proof Stats Bar ===== */
.stats-bar {
  padding: 60px 0;
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== Testimonial Stars ===== */
.testimonial-stars {
  font-size: 1.1rem;
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* ===== Scroll Animations ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Sticky Mobile CTA ===== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.06);
  gap: 10px;
  justify-content: center;
}

.sticky-cta-btn {
  flex: 1;
  padding: 12px 16px !important;
  font-size: 0.85rem !important;
  max-width: 200px;
}

/* ===== Feature Sections ===== */
.feature-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  margin: 8px 8px;
  border-radius: 12px;
  overflow: hidden;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
}

.feature-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.feature-text {
  max-width: 500px;
}

.feature-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.feature-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.feature-action .btn-primary {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(4px);
}

.feature-action .btn-primary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 100px 0;
  background: #fff;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.testimonial-card {
  padding: 0;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #888;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 80px 0 100px;
  background: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 30px;
}

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

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  text-transform: capitalize;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #fff;
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
  color: #fff;
  opacity: 1;
}

/* ===== About Page ===== */
.about-hero {
  padding: 160px 0 80px;
  background: #fff;
}

.about-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  color: #1a1a1a;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-hero-grid p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: #e8ecef;
}

.values-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.values-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.values-intro p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.value-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* About Image Section */
.about-image-section {
  padding: 0 8px;
}

.about-image-section img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background: #1a1a1a;
  color: #fff;
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.team-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  display: block;
}

.team-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.team-intro p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.team-intro .btn-primary {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

.team-intro .btn-primary:hover {
  background: #eee;
  border-color: #eee;
}

.team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.team-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  opacity: 1;
}

.team-card-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-card-info {
  padding: 16px 0;
}

.team-card-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.team-card-info span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* About CTA */
.about-cta {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
}

.about-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.about-cta .container {
  position: relative;
  z-index: 2;
}

.about-cta-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  max-width: 900px;
  margin: 0 auto;
}

.about-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta-content {
  padding: 48px;
}

.about-cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: #1a1a1a;
}

.about-cta-list {
  margin-bottom: 32px;
}

.about-cta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: #444;
}

.about-cta-item:last-child {
  border-bottom: none;
}

.about-cta-item svg {
  flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 80vh;
    padding: 120px 24px 60px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .feature-section {
    min-height: 450px;
    margin: 4px;
  }

  .feature-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-image img {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .sticky-mobile-cta {
    display: flex;
  }

  .footer {
    padding-bottom: 80px;
  }

  .about-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .values-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-cta-card {
    grid-template-columns: 1fr;
  }

  .about-cta-image {
    height: 250px;
  }

  .about-cta-content {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .hero-brand {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .feature-section {
    min-height: 350px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .team-cards {
    grid-template-columns: 1fr;
  }

  .about-image-section img {
    height: 300px;
  }
}
