/* ========================================
   GUGUBRAND - Website Styles
   Brand Colors:
   - Green: #2B6650
   - Gold: #DAB437
   - Cream: #FAEDCD
   - Black: #000000
   - Gray: #D3D2D2
   ======================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #2B6650;
  --green-dark: #1e4d3b;
  --gold: #DAB437;
  --gold-light: #e8c95a;
  --cream: #FAEDCD;
  --black: #1a1a1a;
  --gray: #D3D2D2;
  --gray-light: #F5F4F2;
  --white: #ffffff;
  --font-primary: 'Playfair Display', Georgia, serif;
  --font-secondary: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-secondary);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- UTILITIES --- */
.text-green { color: var(--green); }
.text-gold { color: var(--gold); }

.section-tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-tag--center { text-align: center; }

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title--center { text-align: center; }
.section-title--white { color: var(--white); }

.section-desc {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  color: #555;
  font-size: 1.05rem;
}
.section-desc--white { color: rgba(255,255,255,0.85); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.btn--sm { padding: 10px 24px; font-size: 0.85rem; }
.btn--full { width: 100%; }
.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(43,102,80,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(218,180,55,0.3);
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo-img { height: 40px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
}
.nav__links a:hover { color: var(--green); }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 6px 0;
  transition: all 0.3s;
}

/* --- HERO --- */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--gray-light) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.hero__tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--black);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__symbol {
  width: 320px;
  height: 320px;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* --- PAIN POINTS --- */
.pain {
  padding: 100px 0;
  background: var(--green);
  color: var(--white);
}
.pain__header { text-align: center; margin-bottom: 56px; }
.pain__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pain__card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}
.pain__card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.14);
}
.pain__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(218,180,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}
.pain__card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
.pain__cta {
  text-align: center;
  font-size: 1.15rem;
  color: var(--cream);
}

/* --- ABOUT --- */
.about { padding: 100px 0; background: var(--gray-light); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about__image img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about__role {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 20px;
}
.about__content p { margin-bottom: 16px; color: #444; }
.about__highlights {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__highlights li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: #444;
}
.about__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

/* --- PILLARS --- */
.pillars { padding: 100px 0; background: var(--white); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.pillar-card {
  background: var(--gray-light);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.pillar-card__number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  -webkit-text-stroke: 1px var(--green);
}
.pillar-card__title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}
.pillar-card__desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}
.pillar-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pillar-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: #444;
}
.pillar-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* --- SERVICES --- */
.services { padding: 100px 0; background: var(--green); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); }
.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}
.service-card p { font-size: 0.9rem; color: #555; line-height: 1.6; }

/* --- PROCESS --- */
.process { padding: 100px 0; background: var(--gray-light); }
.process__timeline {
  display: flex;
  gap: 20px;
  position: relative;
}
.process__timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 3px;
  background: var(--cream);
  z-index: 0;
}
.process__step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(43,102,80,0.3);
}
.process__step h3 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.process__step p { font-size: 0.85rem; color: #666; }

/* --- CONTACT --- */
.contact { padding: 100px 0; background: var(--green); color: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.contact__info { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact__person {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact__person svg { flex-shrink: 0; color: var(--gold); }
.contact__person strong { display: block; font-size: 1rem; }
.contact__person a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.contact__person a:hover { color: var(--gold); }
.contact__social { display: flex; gap: 24px; }
.contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.contact__social-link:hover { color: var(--gold); }

.contact__form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  color: var(--black);
}
.contact__form h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray);
  border-radius: 12px;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  margin-bottom: 14px;
  transition: border-color 0.3s;
  background: var(--gray-light);
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--green);
}
.contact__form textarea { resize: vertical; }

/* --- FOOTER --- */
.footer {
  padding: 48px 0;
  background: var(--black);
  color: rgba(255,255,255,0.6);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer__logo { height: 36px; filter: brightness(0) invert(1); }
.footer__brand { text-align: center; }
.footer__brand p { font-size: 0.85rem; margin-top: 8px; }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: 0.85rem; }
.footer__links a:hover { color: var(--gold); }
.footer__copy p { font-size: 0.8rem; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }
  .nav__links.active { right: 0; }
  .nav__toggle { display: block; z-index: 1001; }
  .nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { max-width: 100%; }
  .hero__cta { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__symbol { width: 200px; height: 200px; }

  .pain__grid { grid-template-columns: 1fr 1fr; }

  .about__inner { grid-template-columns: 1fr; text-align: center; }
  .about__image img { max-width: 400px; margin: 0 auto; }
  .about__highlights { align-items: center; }
  .about__highlights li { text-align: left; }

  .pillars__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }

  .process__timeline {
    flex-direction: column;
    gap: 32px;
  }
  .process__timeline::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 3px;
    height: auto;
  }
  .process__step {
    text-align: left;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
  }
  .process__number { margin: 0; }
  .process__step h3, .process__step p { grid-column: 2; }

  .contact__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .pain__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}
