/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --navy:   #0B1D3A;
  --navy-m: #132d54;
  --mint:   #34D4B8;
  --mint-d: #2BB59E;
  --cream:  #F5F0EB;
  --warm:   #EDE6DD;
  --white:  #FFFFFF;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(11,29,58,0.08);
  --shadow-lg: 0 12px 48px rgba(11,29,58,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.35rem; }
p  { color: #3a3a52; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-d);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; max-width: 520px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--accent {
  background: var(--mint);
  color: var(--navy);
  border-color: var(--mint);
}
.btn--accent:hover {
  background: var(--mint-d);
  border-color: var(--mint-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52,212,184,0.35);
}
.btn--light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 22px; font-size: 0.88rem; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11,29,58,0.06);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 400;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-m);
  transition: color var(--transition);
  position: relative;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav__menu a:hover { color: var(--navy); }
.nav__menu a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-m) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  flex: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52,212,184,0.12);
  border: 1px solid rgba(52,212,184,0.25);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mint);
  margin-bottom: 28px;
  width: fit-content;
}
.hero__headline {
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__body {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero__image-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  animation: float 4s ease-in-out infinite;
}
.hero__image-float--1 {
  bottom: 40px;
  left: -24px;
  animation-delay: 0s;
}
.hero__image-float--2 {
  top: 40px;
  right: -24px;
  animation-delay: 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  grid-column: 1 / -1;
}
.about__img-side {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__stat {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--mint);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about__stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1;
}
.about__stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-m);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.about__content { max-width: 480px; }
.about__content p { margin-bottom: 16px; }
.about__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: #3a3a52;
}
.about__list svg { flex-shrink: 0; margin-top: 2px; }

/* ===== PRODUCTS ===== */
.products { background: var(--white); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: block;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card__img img { transform: scale(1.08); }
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,29,58,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card__body {
  padding: 22px 20px;
}
.product-card__body h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.product-card__body p {
  font-size: 0.88rem;
  color: #5a5a72;
  line-height: 1.6;
}

/* ===== COMMUNITY ===== */
.community { background: var(--cream); }
.community__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.community__content p { margin-bottom: 16px; }
.community__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex: 1;
  min-width: 200px;
  box-shadow: var(--shadow);
}
.badge span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}
.community__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.community__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== VISIT ===== */
.visit { background: var(--white); }
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.visit__lead {
  font-size: 1.1rem;
  color: #3a3a52;
  margin-bottom: 32px;
}
.visit__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.visit__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit__detail dt {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(52,212,184,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit__detail dd {
  font-size: 0.95rem;
  color: #3a3a52;
  line-height: 1.7;
}
.visit__detail a {
  color: var(--navy);
  font-weight: 600;
  transition: color var(--transition);
}
.visit__detail a:hover { color: var(--mint-d); }
.visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.visit__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--white); }
.footer__col address { font-size: 0.9rem; line-height: 1.8; }
.footer__col a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--mint); }
.footer__col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer__legal {
  margin-top: 16px;
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.35) !important;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner { gap: 40px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__toggle { display: flex; }
  .nav__menu .btn--sm { display: none; }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 60px 24px 100px;
    text-align: center;
  }
  .hero__badge { margin: 0 auto 20px; }
  .hero__body { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__image-wrap { max-width: 480px; margin: 0 auto; }
  .hero__image-float--1 { left: 0; }
  .hero__image-float--2 { right: 0; }

  .about__grid,
  .community__inner,
  .visit__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__content { max-width: 100%; }
  .products__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero__inner { padding: 48px 20px 80px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .visit__actions { flex-direction: column; }
  .visit__actions .btn { width: 100%; justify-content: center; }
  .badge { min-width: 100%; }
}
