/* ============================================================
   GNS Home Care & Cleaning Services
   Tokens
   ============================================================ */
:root {
  --green-deep:   #0B3B2E;
  --green-mid:    #145C43;
  --green-soft:   #1E6B4E;
  --gold:         #C9A227;
  --gold-light:   #E8C468;
  --cream:        #F6F1E4;
  --ivory:        #FFFFFF;
  --ink:          #172420;
  --ink-soft:     #4A554E;
  --whatsapp:     #25D366;
  --whatsapp-dark:#1DA851;

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 28px;

  --shadow-card: 0 10px 30px -12px rgba(11, 59, 46, 0.18);
  --shadow-btn:  0 6px 16px -6px rgba(11, 59, 46, 0.35);
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
svg { width: 1em; height: 1em; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-deep);
  margin: 0 0 0.4em;
  line-height: 1.12;
  font-weight: 600;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: var(--shadow-btn);
}
.btn--whatsapp:hover { background: var(--whatsapp-dark); }

.btn--outline {
  border-color: var(--green-deep);
  color: var(--green-deep);
  background: transparent;
}
.btn--outline:hover { background: var(--green-deep); color: var(--cream); }

.btn--outline-light {
  border-color: rgba(255,255,255,0.55);
  color: var(--cream);
  background: transparent;
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--cream); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 16px;
}
.btn--ghost:hover { color: var(--green-mid); transform: none; }

.btn--lg { padding: 15px 28px; font-size: 1rem; }

/* ============================================================
   Top utility bar
   ============================================================ */
.topbar {
  background: var(--green-deep);
  color: rgba(246, 241, 228, 0.82);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 28px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a:hover { color: var(--gold-light); }
.topbar .dot { margin: 0 8px; color: var(--gold); }
.topbar__contact { display: flex; align-items: center; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(11, 59, 46, 0.1);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  gap: 24px;
}

.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wordmark__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}
.wordmark__tag {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 3px;
}
.wordmark--light .wordmark__mark { color: var(--cream); }

.nav {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 0.94rem;
}
.nav a { position: relative; padding: 4px 0; color: var(--ink); }
.nav a:hover { color: var(--green-mid); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--green-deep); border-radius: 2px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 76px 0 88px; overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 14px;
}
.eyebrow--center { text-align: center; }
.eyebrow--light { color: var(--gold-light); }

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--green-mid);
}

.hero__lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 30px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.hero__points {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-deep);
}
.hero__points li { display: flex; align-items: center; gap: 8px; }
.hero__points svg { width: 18px; height: 18px; color: var(--gold); }

/* Signature seal */
.hero__seal-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.seal {
  width: min(100%, 340px);
  color: var(--green-deep);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.seal__ring-outer { fill: none; stroke: var(--gold); stroke-width: 1.4; }
.seal__ring-inner { fill: none; stroke: var(--green-deep); stroke-width: 1; opacity: 0.35; }
.seal__text {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  fill: var(--gold);
}
.seal__center { animation: counter-spin 40s linear infinite; transform-origin: 130px 130px; }
@keyframes counter-spin { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

/* ============================================================
   Services
   ============================================================ */
.services { padding: 90px 0; }
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 auto 52px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--ivory);
  border-radius: var(--radius-m);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(11,59,46,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgba(11, 59, 46, 0.28);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-deep), var(--green-mid));
  color: var(--gold-light);
  margin-bottom: 18px;
}
.service-card__icon svg { width: 24px; height: 24px; }

.service-card h3 { font-size: 1.24rem; margin-bottom: 4px; }
.service-card__tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.service-card__desc { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* ============================================================
   Why GNS
   ============================================================ */
.why {
  background: var(--green-deep);
  padding: 64px 0;
  color: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  font-size: 0.88rem;
  font-weight: 600;
}
.why-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.4px solid var(--gold);
  color: var(--gold-light);
}
.why-item__icon svg { width: 24px; height: 24px; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { padding: 90px 0; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  position: relative;
  background: var(--ivory);
  border-radius: var(--radius-m);
  padding: 34px 28px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(11,59,46,0.06);
}

.review-card__quote-mark {
  position: absolute;
  top: -18px;
  left: 26px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 8px 18px -6px rgba(201, 162, 39, 0.55);
}
.review-card__quote-mark svg { width: 18px; height: 18px; }

.review-card__stars {
  display: flex;
  gap: 3px;
  margin: 8px 0 16px;
  color: rgba(11, 59, 46, 0.2);
}
.review-card__stars svg { width: 16px; height: 16px; }
.review-card__stars .star--filled { color: var(--gold); }
.review-card__stars .star--filled svg { fill: var(--gold); }

.review-card__quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.5;
}

.review-card__author {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-deep);
  margin: 0;
}
.review-card__author span {
  font-weight: 500;
  color: var(--ink-soft);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: linear-gradient(160deg, var(--green-mid), var(--green-deep));
  padding: 84px 0;
  text-align: center;
  color: var(--cream);
}
.cta h2 { color: var(--cream); font-size: clamp(1.8rem, 3vw, 2.3rem); }
.cta p { color: rgba(246,241,228,0.82); max-width: 46ch; margin: 0 auto 30px; }
.cta__actions { justify-content: center; margin-bottom: 0; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #08281f; color: rgba(246,241,228,0.82); padding: 64px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(246,241,228,0.12);
}
.footer__brand p { margin-top: 14px; max-width: 32ch; font-size: 0.92rem; }
.footer__col h4 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer__contact-list li + li { margin-top: 12px; }
.footer__contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 600;
}
.footer__contact-list svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }
.footer__contact-list a:hover { color: var(--gold-light); }
.footer__address { font-size: 0.92rem; margin: 0; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 28px;
  font-size: 0.8rem;
  color: rgba(246,241,228,0.55);
}
.footer__legal-links a:hover { color: var(--gold-light); }
.footer__legal-links .dot { margin: 0 8px; color: var(--gold); }

/* ============================================================
   Floating WhatsApp button
   ============================================================ */
.fab-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(0,0,0,0.35);
  z-index: 60;
  transition: transform 0.2s ease;
}
.fab-whatsapp svg { width: 28px; height: 28px; }
.fab-whatsapp:hover { transform: scale(1.08); }

/* ============================================================
   Legal pages (Privacy Policy / Terms)
   ============================================================ */
.legal-hero {
  padding: 56px 0 32px;
  border-bottom: 1px solid rgba(11,59,46,0.1);
}
.legal-hero h1 { font-size: clamp(2rem, 3.4vw, 2.6rem); margin-bottom: 6px; }
.legal-hero__updated { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

.legal-page { padding: 56px 0 96px; }
.legal-page__inner { max-width: 74ch; margin: 0 auto; }

.legal-page__notice {
  background: var(--ivory);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-s);
  padding: 16px 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 44px;
}
.legal-page__notice strong { color: var(--green-deep); }

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-page p { color: var(--ink-soft); margin: 0 0 16px; }
.legal-page ul { margin: 0 0 16px; padding-left: 22px; color: var(--ink-soft); }
.legal-page li { margin-bottom: 8px; list-style: disc; }
.legal-page a { color: var(--green-mid); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(20,92,67,0.35); }
.legal-page a:hover { color: var(--gold); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__seal-wrap { order: -1; }
  .seal { width: 220px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .topbar__inner { justify-content: center; text-align: center; }
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 20px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(11,59,46,0.1);
  }
  .hero { padding: 48px 0 64px; }
  .hero__points { flex-direction: column; gap: 12px; }
  .service-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
}
