/* ===== GP Beauty Heal — clean, trustworthy theme ===== */
:root {
  --green-900: #12432a;
  --green-800: #1c5a38;
  --green-700: #22713f;
  --green-600: #2e8b4f;
  --green-500: #46a35f;
  --green-100: #e7f3ea;
  --green-50:  #f2f9f4;
  --ink:       #1f2a24;
  --muted:     #5f6d64;
  --line:      #e4ebe6;
  --bg:        #ffffff;
  --shadow:    0 10px 30px rgba(18, 67, 42, .08);
  --shadow-sm: 0 4px 14px rgba(18, 67, 42, .07);
  --radius:    16px;
  --maxw:      1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Prompt', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  border: 2px solid transparent; transition: .2s ease; white-space: nowrap;
}
.btn--primary { background: var(--green-600); color: #fff; }
.btn--primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--green-700); border-color: var(--green-500); }
.btn--ghost:hover { background: var(--green-50); }
.btn--white { background: #fff; color: var(--green-700); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.15); }
.btn--block { width: 100%; }

/* ---- Top bar ---- */
.topbar { background: var(--green-900); color: #d7ecdc; font-size: .86rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 8px 22px; flex-wrap: wrap; }
.topbar__contact { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar__contact a:hover { color: #fff; }

/* ---- Header ---- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; }
.brand__img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { font-size: .96rem; font-weight: 500; color: var(--ink); }
.nav a:hover { color: var(--green-600); }
.nav__cta { background: var(--green-600); color: #fff !important; padding: 9px 20px; border-radius: 999px; }
.nav__cta:hover { background: var(--green-700); }
.header__right { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--green-800); cursor: pointer; }

/* Language toggle */
.lang { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff; }
.lang button { border: 0; background: transparent; padding: 7px 14px; font-family: inherit; font-size: .85rem; font-weight: 600; color: var(--muted); cursor: pointer; transition: .2s; }
.lang button:hover { color: var(--green-700); }
.lang button.active { background: var(--green-600); color: #fff; }

/* English uses Poppins for latin, Prompt fallback */
.lang-en { font-family: 'Poppins', 'Prompt', system-ui, sans-serif; }
.lang-en .brand__text small { letter-spacing: .6px; }

/* ---- Hero ---- */
.hero { background: linear-gradient(180deg, var(--green-50), #fff); padding: 60px 0 70px; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.badge { display: inline-block; background: var(--green-100); color: var(--green-800); font-weight: 600; font-size: .85rem; padding: 6px 16px; border-radius: 999px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 700; line-height: 1.2; color: var(--green-900); letter-spacing: -.5px; }
.hero .hl { color: var(--green-600); }
.hero__lead { color: var(--muted); font-size: 1.08rem; margin: 20px 0 22px; max-width: 540px; }
.hero__points { list-style: none; margin-bottom: 28px; display: grid; gap: 8px; }
.hero__points li { color: var(--ink); font-size: 1rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__media img { border-radius: 24px; box-shadow: var(--shadow); }

/* ---- Stats ---- */
.stats { margin-top: -34px; position: relative; z-index: 2; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.9rem; color: var(--green-600); font-weight: 700; }
.stat span { color: var(--muted); font-size: .92rem; }

/* ---- Sections ---- */
.section { padding: 72px 0; }
.section--tint { background: var(--green-50); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.eyebrow { display: inline-block; color: var(--green-600); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: .8rem; margin-bottom: 10px; }
.section__head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--green-900); font-weight: 700; line-height: 1.3; }
.section__head p { color: var(--muted); margin-top: 12px; }

/* ---- Service cards ---- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--green-50); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 20px; }
.card__body h3 { color: var(--green-800); font-size: 1.15rem; margin-bottom: 8px; }
.card__body p { color: var(--muted); font-size: .94rem; }
.card__link { display: inline-block; margin-top: 12px; color: var(--green-600); font-weight: 600; font-size: .9rem; }
a.card:hover .card__link { color: var(--green-700); }

/* ---- Why ---- */
.why__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.why__media img { border-radius: 20px; box-shadow: var(--shadow); }
.why__content h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--green-900); line-height: 1.3; margin-bottom: 24px; }
.features { list-style: none; display: grid; gap: 20px; }
.features li { display: flex; gap: 16px; align-items: flex-start; }
.features__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--green-100); display: grid; place-items: center; font-size: 1.3rem; }
.features strong { color: var(--green-800); display: block; }
.features p { color: var(--muted); font-size: .94rem; }

/* ---- Gallery ---- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery__item { position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__item--wide { grid-column: span 2; grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; color: #fff; font-weight: 600; font-size: .92rem; background: linear-gradient(transparent, rgba(18,67,42,.85)); }

/* ---- Factory product rows (alternating) ---- */
.prodrow { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px; box-shadow: var(--shadow-sm); margin-bottom: 24px; transition: .25s ease; }
.prodrow:hover { box-shadow: var(--shadow); }
.prodrow--rev .prodrow__media { order: 2; }
.prodrow__media { border-radius: 16px; overflow: hidden; background: #f4eef3; }
.prodrow__media img { width: 100%; display: block; transition: .4s ease; }
.prodrow:hover .prodrow__media img { transform: scale(1.03); }
.prodrow__brand { display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; color: var(--muted); background: var(--green-50); border: 1px solid var(--line); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.prodrow__name { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--green-900); font-weight: 700; line-height: 1.1; }
.prodrow__name span { color: var(--green-600); }
.prodrow__tag { color: var(--green-700); font-weight: 600; margin: 6px 0 12px; }
.prodrow__desc { color: var(--muted); font-size: .96rem; margin-bottom: 16px; }
.prodrow__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.prodrow__chips span { background: var(--green-50); border: 1px solid var(--line); color: var(--ink); font-size: .86rem; font-weight: 500; padding: 7px 14px; border-radius: 999px; }
.prodrow__spec { list-style: none; margin-bottom: 20px; border-top: 1px dashed var(--line); }
.prodrow__spec li { display: flex; gap: 14px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.prodrow__spec li span { flex: none; width: 96px; color: var(--muted); }
.prodrow__spec li strong { color: var(--ink); font-weight: 600; }
.prodrow__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.fprod__more { text-align: center; color: var(--muted); font-size: .96rem; margin: 30px 0 18px; }

/* ---- Portfolio ---- */
.portfolio { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.portfolio__item { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.portfolio__item img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: .4s ease; }
.portfolio__item:hover img { transform: scale(1.05); }

/* ---- Steps ---- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; text-align: center; position: relative; }
.step__no { width: 46px; height: 46px; border-radius: 50%; background: var(--green-600); color: #fff; font-weight: 700; font-size: 1.2rem; display: grid; place-items: center; margin: 0 auto 14px; }
.step h3 { color: var(--green-800); font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .88rem; }

/* ---- CTA ---- */
.cta { background: linear-gradient(135deg, var(--green-700), var(--green-900)); color: #fff; padding: 64px 0; text-align: center; }
.cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
.cta p { color: #d7ecdc; margin: 14px 0 26px; }

/* ---- Contact ---- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.contact__info h2 { color: var(--green-900); font-size: 1.8rem; margin-bottom: 8px; }
.contact__desc { color: var(--muted); margin-bottom: 22px; }
.contact__list { list-style: none; display: grid; gap: 14px; }
.contact__list li { display: flex; flex-direction: column; padding: 14px 18px; background: var(--green-50); border-radius: 12px; }
.contact__list span { font-size: .82rem; color: var(--muted); }
.contact__list a { font-weight: 600; color: var(--green-800); }
.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.contact__form h3 { color: var(--green-800); margin-bottom: 18px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .9rem; font-weight: 500; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: .96rem; background: #fbfdfb; transition: .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px var(--green-100); }
.contact__note { text-align: center; color: var(--green-700); font-weight: 600; margin-top: 14px; }
.contact__err { text-align: center; color: #c0392b; font-weight: 600; margin-top: 14px; }

/* QR / LINE block */
.qr { display: flex; align-items: center; gap: 18px; margin-top: 22px; padding: 16px; background: var(--green-50); border: 1px solid var(--line); border-radius: var(--radius); }
.qr img { width: 116px; height: 116px; border-radius: 10px; background: #fff; padding: 6px; box-shadow: var(--shadow-sm); }
.qr__text { display: flex; flex-direction: column; gap: 4px; }
.qr__text strong { color: var(--green-800); font-size: 1.02rem; }
.qr__text span { color: var(--muted); font-size: .9rem; }
.qr__btn { align-self: flex-start; margin-top: 6px; background: #06c755; color: #fff !important; font-weight: 600; font-size: .88rem; padding: 8px 16px; border-radius: 999px; transition: .2s; }
.qr__btn:hover { background: #05a648; }

/* Floating action buttons */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 60; display: flex; flex-direction: column; gap: 12px; }
.fab__btn { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1.3rem; box-shadow: var(--shadow); transition: transform .2s; }
.fab__btn:hover { transform: scale(1.08); }
.fab__btn--line { background: #06c755; font-size: .82rem; letter-spacing: .3px; }
.fab__btn--wa { background: #25d366; font-size: 1.6rem; }
.fab__btn--call { background: var(--green-600); animation: pulse 2s infinite; }

/* ---- Footer ---- */
.footer { background: var(--green-900); color: #cfe6d6; padding: 34px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer__logo { height: 46px; width: auto; background: #fff; padding: 6px 10px; border-radius: 10px; }
.footer__copy { font-size: .88rem; }

/* ---- Floating buttons pulse ---- */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(46,139,79,.5); } 70% { box-shadow: 0 0 0 16px rgba(46,139,79,0); } 100% { box-shadow: 0 0 0 0 rgba(46,139,79,0); } }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav { position: fixed; inset: 72px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 22px 20px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-140%); transition: .3s ease; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__cta { text-align: center; margin-top: 10px; }
  .nav__toggle { display: block; }
  .brand__img { height: 44px; }
  .hero__inner, .why__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; grid-row: auto; }
  .portfolio { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .prodrow { grid-template-columns: 1fr; gap: 22px; }
  .prodrow--rev .prodrow__media { order: -1; }
}
@media (max-width: 520px) {
  .topbar__inner { justify-content: center; text-align: center; }
  .cards, .stats__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
}

/* ---- SEO content band ---- */
.seo-band { background: var(--green-50); border-top: 1px solid var(--line); padding: 40px 0; }
.seo-band__h { font-size: 1.15rem; color: var(--green-800); margin-bottom: 12px; }
.seo-band__p { color: var(--muted); font-size: .92rem; max-width: 900px; line-height: 1.8; }
.seo-band__tags { color: var(--green-700); font-size: .82rem; margin-top: 14px; opacity: .9; }

/* ---- Map / Location ---- */
.map { max-width: 900px; margin: 0 auto; }
.map__frame { width: 100%; height: 420px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); background: #eef4ef; }
.map__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
@media (max-width: 520px) { .map__frame { height: 320px; } }
