/* ========== ROOT & GLOBAL ========== */
:root {
  --bg-page: #f9fafb;
  --bg-card: #ffffff;
  --bg-soft: #fff1f2;
  --accent: #f97373;
  --accent-strong: #e11d48;
  --accent-soft: rgba(248, 113, 113, 0.12);
  --accent-chip: #fecaca;
  --text-main: #111827;
  --text-soft: #6b7280;
  --border-soft: #e5e7eb;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 20px 55px rgba(15, 23, 42, 0.08);
  --shadow-layered: 0 24px 60px rgba(248, 113, 113, 0.18);
  --nav-height: 74px;
  --transition-fast: 140ms ease-out;
  --transition-med: 220ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #fef2f2 0, #f9fafb 45%, #f3f4f6 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #fee2e2;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #fb7185, #e11d48);
  border-radius: 999px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  padding: 2.8rem 0 3.6rem;
}

.section {
  padding: 3rem 0;
}

/* ========== HEADER / NAVBAR ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(248, 113, 113, 0.12);
  box-shadow: 0 14px 40px rgba(248, 113, 113, 0.14);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: conic-gradient(
    from 180deg,
    #fecaca,
    #fb7185,
    #e11d48,
    #fb7185,
    #fecaca
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7f1d1d;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 14px 30px rgba(248, 113, 113, 0.5);
}

.brand-text-main {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text-sub {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding: 0.15rem 0;
  color: var(--text-soft);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fb7185, #e11d48);
  transition: width var(--transition-med);
}

.nav-links a:hover {
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent-strong);
}
.nav-links a.active::after {
  width: 100%;
}

/* Nav CTA & mobile */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.badge-pill {
  font-size: 0.7rem;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: #fff1f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.btn-main {
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #fb7185, #e11d48);
  color: #fef2f2;
  box-shadow: var(--shadow-layered);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast);
}

.btn-main span.arrow {
  transform: translateX(0);
  transition: transform var(--transition-fast);
}

.btn-main:hover span.arrow {
  transform: translateX(2px);
}

.btn-main:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 26px 60px rgba(248, 113, 113, 0.35);
}

.btn-main:active {
  transform: translateY(0);
  box-shadow: 0 10px 26px rgba(248, 113, 113, 0.28);
}

.nav-toggle {
  display: none;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  cursor: pointer;
}

/* Mobile nav menu */
.mobile-nav {
  display: none;
  border-bottom: 1px solid var(--border-soft);
  background: #ffffff;
}
.mobile-nav-inner {
  padding: 0.6rem 1.5rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

/* ========== SECTION HEADER ========== */
.section-header {
  margin-bottom: 2.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #b91c1c;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.65rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 0.92rem;
  color: var(--text-soft);
  max-width: 430px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== CARD BASE ========== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(249, 250, 251, 0.8);
  box-shadow: var(--shadow-soft);
}

/* Layered card styling */
.card-layered {
  position: relative;
}
.card-layered::before {
  content: "";
  position: absolute;
  inset: 10px -10px -14px 10px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.18), transparent);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition-med), transform var(--transition-med);
  z-index: -1;
}
.card-layered:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* ========== HERO (HOME) ========== */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #b91c1c;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.1rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.hero-highlight {
  color: var(--accent-strong);
}

.hero-subtitle {
  font-size: 0.96rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

/* Multilingual banner */
.hero-multilang {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid #fee2e2;
  box-shadow: 0 14px 34px rgba(248, 113, 113, 0.12);
  font-size: 0.83rem;
  display: grid;
  gap: 0.35rem;
}

.hero-multilang-row span.lang-tag {
  font-weight: 600;
  margin-right: 0.3rem;
  color: #b91c1c;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.3rem;
  font-size: 0.8rem;
}

.meta-pill {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #7f1d1d;
}

/* Founder card */
.hero-card {
  padding: 1.6rem 1.5rem 1.7rem;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid #fee2e2;
  box-shadow: var(--shadow-layered);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #fecaca, transparent 70%);
  opacity: 0.7;
}

.hero-card-tag {
  font-size: 0.74rem;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: #fef2f2;
  color: #b91c1c;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-card-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 1.3rem;
  align-items: center;
}

.founder-photo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  padding: 4px;
  background: conic-gradient(
    from 60deg,
    #fecaca,
    #fb7185,
    #f97316,
    #fecaca
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  background: #fee2e2;
}

.hero-card-title {
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.hero-card-role {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 0.6rem;
}

.hero-card-text {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Chicks gallery */
.chicks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.chick-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(254, 226, 226, 0.9);
  box-shadow: 0 18px 40px rgba(248, 113, 113, 0.18);
  font-size: 0.86rem;
  position: relative;
  transform: translateY(0);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}
.chick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(248, 113, 113, 0.26);
}

.chick-img {
  border-radius: 16px;
  margin-bottom: 0.7rem;
  height: 160px;
  object-fit: cover;
  background: #fee2e2;
}

.chick-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.chick-text {
  color: var(--text-soft);
}

/* ========== PRODUCTS ========== */
.products-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2rem;
}

/* Tabs */
.tabs {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid #fee2e2;
  box-shadow: var(--shadow-layered);
  overflow: hidden;
}

.tab-list {
  display: flex;
  gap: 0.6rem;
  padding: 0.75rem 0.8rem;
  background: #fff1f2;
  border-bottom: 1px solid #fee2e2;
}

.tab-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    background var(--transition-med),
    border-color var(--transition-med),
    color var(--transition-med),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.tab-btn span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(248, 113, 113, 0.5);
}

.tab-btn.active {
  background: #ffffff;
  border-color: #fb7185;
  color: #b91c1c;
  box-shadow: 0 12px 32px rgba(248, 113, 113, 0.28);
  transform: translateY(-2px);
}
.tab-btn.active span.dot {
  background: #b91c1c;
}

.tab-panels {
  padding: 1.5rem 1.6rem 1.7rem;
}

.tab-panel {
  display: none;
  animation: fade-tab 260ms ease-out;
}

.tab-panel.active {
  display: block;
}

@keyframes fade-tab {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-title-main {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-line {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #b91c1c;
  margin-bottom: 0.3rem;
}

.product-body {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.product-meta-list {
  font-size: 0.82rem;
  color: var(--text-soft);
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.product-meta-list li::before {
  content: "•";
  color: #fb7185;
  margin-right: 0.35rem;
}

/* Product side card */
.product-side-card {
  padding: 1.4rem 1.4rem 1.6rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid #fee2e2;
  box-shadow: 0 18px 40px rgba(248, 113, 113, 0.18);
  font-size: 0.84rem;
  color: var(--text-soft);
}

.product-side-tag {
  font-size: 0.76rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #7f1d1d;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.product-image-placeholder {
  border-radius: 16px;
  background: #fff1f2;
  border: 1px dashed #fb7185;
  padding: 0.8rem;
  text-align: center;
  margin-top: 0.7rem;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card {
  padding: 1.35rem 1.3rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #fee2e2;
  box-shadow: 0 18px 40px rgba(248, 113, 113, 0.16);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(248, 113, 113, 0.28);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #fecaca, transparent 70%);
  opacity: 0.7;
}

.service-kicker {
  font-size: 0.75rem;
  color: #b91c1c;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
}

.service-title {
  font-size: 1.04rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.service-text {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ========== ABOUT ========== */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2rem;
}

.about-block {
  padding: 1.6rem 1.6rem 1.7rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid #fee2e2;
  box-shadow: var(--shadow-soft);
}

.about-heading {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-text {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.timeline {
  margin-top: 0.9rem;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.timeline-item {
  padding-left: 1rem;
  border-left: 2px solid #fecaca;
  margin-bottom: 0.7rem;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
}

.contact-card {
  padding: 1.6rem 1.6rem 1.8rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid #fee2e2;
  box-shadow: var(--shadow-soft);
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b91c1c;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.contact-note {
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* ========== FOOTER ========== */
.site-footer {
  border-top: 1px solid #fee2e2;
  background: #ffffff;
  padding: 1.2rem 0 1.4rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-chip {
  padding: 0.33rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #fee2e2;
  background: #fff1f2;
  color: #991b1b;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .hero-grid,
  .about-layout,
  .contact-grid,
  .products-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chicks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 600px) {
  main {
    padding-top: 2.2rem;
  }
  .chicks-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* Founder image square only on home */
.founder-photo-wrap-square {
  width: 120px;
  height: 120px;
  border-radius: 16px;         /* square with soft corners */
  padding: 0;                  /* remove round padding ring */
  background: #fee2e2;         /* light red background behind image */
}

.founder-photo-square {
  border-radius: 16px;         /* square image */
}
.badge-pill {
  font-size: 0.95rem !important;
  padding: 0.48rem 1.1rem !important;
  font-weight: 600;
}
.hero-side-image {
  margin: 1rem 0;
  width: 260px;            /* adjust if needed */
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(248, 113, 113, 0.18);
}

.hero-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}/* Image beside heading in hero section */
.hero-right-image {
  position: absolute;
  right: -80px;
  top: 40px;
  width: 260px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(248, 113, 113, 0.25);
}

.hero-right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


