* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Instrument Sans", sans-serif;
  background-color: #ffffff;
  color: #111;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 16px 24px;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo h1 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0;
}

.nav-logo span {
  color: #e10600;
}

.nav-logo small {
  display: block;
  font-size: 10px;
  color: #666;
  margin-top: 2px;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: #111;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Hide links on mobile for now */
  }
}


/* HERO SECTION */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px;
  text-align: center;
}

/* TEXT */
.hero-content {
  max-width: 700px;
  margin: 0 auto 80px;
}

.hero h1 {
  font-family: "Instrument Serif", serif;
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.hero p strong {
  font-weight: 600;
}

/* IMAGES */
.hero-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  background: #f4f4f4;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 64px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-content {
    margin-bottom: 48px;
  }

  .hero-images {
    grid-template-columns: 1fr;
  }
}

/* ABOUT SECTION */
.about {
  padding: 0px 24px;
  background-color: #ffffff;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Badge */
.about-badge {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  background-color: #f2f2f2;
  color: #111;
}

/* Text */
.about-text {
  font-family: "Instrument Serif", serif;
  font-size: 48px;
  line-height: 1.35;
  font-weight: 400;
  color: #111;
}

.about-text strong {
  color: #000;
  font-weight: 400;
}

/* Muted part */
.about-text span {
  color: #8a8a8a;
}

/* Responsive */
@media (max-width: 768px) {
  .about {
    padding: 80px 20px;
  }

  .about-text {
    font-size: 32px;
  }
}

/* SERVICES SECTION */
.services {
  padding: 120px 24px;
  background: #ffffff;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-badge {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  background: #f2f2f2;
  border-radius: 999px;
  margin-bottom: 24px;
}

.services-header h2 {
  font-family: "Instrument Serif", serif;
  font-size: 48px;
  font-weight: 400;
}

/* SERVICE ITEMS */
.services-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-content ul {
  list-style: disc;
  padding-left: 20px;
  line-height: 1.8;
  color: #444;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-item,
  .service-item.reverse {
    flex-direction: column;
  }

  .services-header h2 {
    font-size: 36px;
  }

  .services-list {
    gap: 60px;
  }
}

/* WHY SECTION */
.why {
  padding: 0px 24px;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #fbf6f4;
  border-radius: 48px;
  padding: 50px 90px 50px 90px;
  display: flex;
  align-items: center;
  gap: 120px;
}

/* LEFT */
.why-content {
  flex: 1;
  
}

.why-content h2 {
  font-family: "Instrument Serif", serif;
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 24px;
}

.why-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  max-width: 400px;
}

/* RIGHT – VENN STYLE */
.why-diagram {
  flex: 1;
  position: relative;
  width: 420px;
  height: 420px;
}

.circle {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(200, 120, 120, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
}

.circle span {
  line-height: 1.4;
}

/* Circle Positions */
.c1 {
  top: 20px;
  left: 40px;
}

.c2 {
  top: 20px;
  right: 40px;
}

.c3 {
  bottom: 20px;
  left: 40px;
}

.c4 {
  bottom: 20px;
  right: 40px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .why-inner {
    flex-direction: column;
    padding: 60px 40px;
  }

  .why-content h2 {
    font-size: 40px;
  }

  .why-diagram {
    transform: scale(0.9);
  }
}

@media (max-width: 600px) {
  .why-inner {
    padding: 48px 24px;
  }

  .why-diagram {
    width: 320px;
    height: 320px;
    transform: scale(0.85);
  }

  .circle {
    width: 180px;
    height: 180px;
    font-size: 13px;
  }
}

/* PEOPLE SECTION */
.people {
  padding: 120px 24px;
  background: #ffffff;
}

.people-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.people-badge {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  background: #f2f2f2;
  border-radius: 999px;
  margin-bottom: 64px;
}

/* GRID */
.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 120px;
  row-gap: 80px;
}

/* ITEM */
.people-item {
  display: flex;
  align-items: center;
  gap: 32px;
}

.people-image {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

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

.people-item h3 {
  font-family: "Instrument Serif", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .people-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .people-item h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .people-item {
    gap: 20px;
  }

  .people-image {
    width: 72px;
    height: 72px;
  }

  .people-item h3 {
    font-size: 22px;
  }
}

/* FOOTER */
.footer {
  padding: 120px 24px;
  background: #f6f2f0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Logo */
.footer-logo h2 {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-logo span {
  color: #e10600;
}

.footer-logo small {
  font-size: 12px;
  color: #666;
}

/* Text */
.footer-text {
  margin: 40px 0 40px;
  font-size: 18px;
  color: #222;
  max-width: 600px;
}

/* Contact Pills */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-pill {
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
