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

:root {
  --ink: #162B22;
  --ink-light: #1E3D2F;
  --ink-muted: #2C5240;
  --brass: #B69A5E;
  --brass-light: #CEBA82;
  --cream: #F6F3EE;
  --cream-dark: #EDE8E0;
  --stone: #A69E93;
  --text: #3A3530;
  --text-light: #6B635A;
  --white: #FDFCFA;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
  --content-wide: 1200px;
  --content-narrow: 720px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.8;
  background: var(--cream);
  overflow-x: hidden;
}

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

.container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink);
  line-height: 1.2;
}

h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
header.scrolled {
  background: rgba(253, 252, 250, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: var(--content-wide);
  margin: 0 auto;
}

.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
header:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
header:not(.scrolled) .nav-logo img { filter: brightness(0) invert(1); }

.nav-links a:hover { color: var(--brass); }
header:not(.scrolled) .nav-links a:hover { color: var(--brass-light); }

.nav-links .btn-nav {
  color: var(--brass);
  border-bottom: 1px solid var(--brass);
  padding: 0 0 2px;
  font-weight: 500;
}
header:not(.scrolled) .nav-links .btn-nav {
  color: var(--brass-light);
  border-bottom-color: var(--brass-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.3s;
}
header:not(.scrolled) .hamburger span { background: var(--white); }

/* ===== CTA LINKS ===== */
.cta-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
  transition: gap 0.3s, color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-link:hover { gap: 12px; color: var(--ink-muted); }
.cta-link--light { color: var(--cream); border-bottom-color: var(--brass); }
.cta-link--light:hover { color: var(--brass-light); }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 55% 1fr;
  background: var(--ink);
  position: relative;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(to left, var(--ink) 0%, transparent 100%);
  pointer-events: none;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px 48px;
}
.hero-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
}
.hero p {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.8;
  max-width: 48ch;
  margin-bottom: 32px;
}
.hero .hero-cta-line {
  margin-bottom: 20px;
}
.hero .hero-free {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(166,158,147,0.7);
}

/* ===== APPROACH ===== */
.approach {
  padding: 140px 0;
}
.approach .container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.approach-image {
  position: relative;
}
.approach-image img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.approach-image::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  right: -12px; bottom: -12px;
  border: 1px solid var(--brass);
  z-index: 0;
}
.approach-content { max-width: 640px; }
.approach .label { margin-bottom: 16px; display: block; }
.approach-content h2 {
  margin-bottom: 32px;
}
.approach-content blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--ink-muted);
  line-height: 1.5;
  margin: 40px 0;
  padding-left: 24px;
  border-left: 2px solid var(--brass);
}
.approach-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 55ch;
  margin-bottom: 16px;
}

/* ===== IMAGE BREAK ===== */
.image-break {
  padding: 0;
}
.image-break-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.image-break-item {
  overflow: hidden;
  height: 360px;
}
.image-break-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.image-break-item:hover img {
  transform: scale(1.03);
}

/* ===== VALUES (dark band) ===== */
.values {
  padding: 96px 0;
  background: var(--ink);
  color: var(--cream);
}
.values .label { color: var(--brass); margin-bottom: 16px; display: block; }
.values h2 {
  color: var(--cream);
  margin-bottom: 64px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.value-card {
  text-align: left;
}
.value-card::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--brass);
  margin-bottom: 24px;
}
.value-card h3 {
  color: var(--cream);
  margin-bottom: 16px;
  font-size: 1rem;
}
.value-card p {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== ISSUES ===== */
.issues {
  padding: 96px 0;
}
.issues .label { display: block; margin-bottom: 16px; }
.issues h2 { margin-bottom: 48px; }
.issues-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.issues-flow {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-light);
}
.issues-flow strong {
  color: var(--ink);
  font-weight: 600;
}
.issues-flow .brass-dash {
  color: var(--brass);
  margin: 0 6px;
}
.issues-image {
  position: relative;
}
.issues-image img {
  width: 100%;
  object-fit: cover;
}
.issues-image::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  right: -12px; bottom: -12px;
  border: 1px solid var(--brass);
  z-index: -1;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 96px 0;
  background: var(--ink);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials .label { display: block; margin-bottom: 16px; color: var(--brass); }
.testimonials h2 { color: var(--cream); margin-bottom: 12px; }
.testimonials-source {
  font-size: 0.85rem;
  color: var(--stone);
}
.testimonials-source a { color: var(--brass); text-decoration: underline; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--ink-light);
  padding: 40px 32px 32px;
  position: relative;
  border-top: 2px solid var(--brass);
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--brass);
  opacity: 0.4;
  margin-bottom: -8px;
}
.testimonial-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(246,243,238,0.85);
  margin-bottom: 24px;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-card .author {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
}
.testimonial-card .stars {
  height: 16px;
  width: auto;
  opacity: 0.8;
}
.testimonials-more {
  text-align: center;
  margin-top: 48px;
}
.testimonials-more .cta-link {
  color: var(--cream);
  border-bottom-color: var(--brass);
}
.testimonials-more .cta-link:hover { color: var(--brass-light); }

.testimonials-extra {
  display: none;
  margin-top: 32px;
}
.testimonials-extra.visible {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 96px 0;
}
.pricing .label { display: block; margin-bottom: 16px; }
.pricing h2 { margin-bottom: 0; }
.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}
.pricing-header-image {
  flex-shrink: 0;
  width: 180px;
  overflow: hidden;
}
.pricing-header-image img {
  width: 100%;
  object-fit: cover;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.pricing-card {
  padding: 32px 28px;
  border-top: 2px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  transition: background 0.3s, border-color 0.3s;
}
.pricing-card:hover {
  background: var(--white);
  border-top-color: var(--brass);
}
.pricing-card h3 {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}
.pricing-card .duration {
  font-size: 0.8rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.pricing-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.pricing-card .price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
}
.pricing-card .cta-link { font-size: 0.85rem; }

.pricing-image {
  margin-top: 56px;
  text-align: center;
}
.pricing-image img {
  display: inline-block;
  max-width: 560px;
  height: auto;
}

.pricing-cta {
  text-align: center;
  margin-top: 24px;
}
.pricing-cta p {
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ===== FAQ ===== */
.faq {
  padding: 96px 0;
  background: var(--cream-dark);
}
.faq .label { display: block; margin-bottom: 16px; text-align: center; }
.faq h2 { margin-bottom: 48px; text-align: center; }
.faq-list {
  max-width: var(--content-narrow);
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  line-height: 1.5;
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--brass);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 24px;
  font-weight: 300;
}
.faq-item.active .faq-question::after {
  content: '\2212';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}
.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 55ch;
}
.faq-answer a { color: var(--brass); text-decoration: underline; }

/* ===== CONTACT ===== */
.contact {
  padding: 96px 0;
}
.contact .container {
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 60px;
  align-items: start;
}
.contact .label { display: block; margin-bottom: 16px; }
.contact-content h2 {
  margin-bottom: 24px;
}
.contact-content > p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 55ch;
}
.contact-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 40px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
  transition: color 0.2s;
}
.contact-method:hover { color: var(--brass); }
.contact-method-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--ink);
}
.contact-method:hover .contact-method-icon svg { fill: var(--brass); }
.contact-method-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-bottom: 2px;
}
.contact-method-value {
  font-size: 1rem;
  font-weight: 500;
}
.contact-image {
  position: relative;
  overflow: hidden;
  min-height: 680px;
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  padding: 24px 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p {
  font-size: 0.8rem;
  color: var(--stone);
}
footer a {
  color: var(--brass);
  font-size: 0.8rem;
  transition: color 0.2s;
}
footer a:hover { color: var(--brass-light); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: var(--white);
  z-index: 101;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 48px 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mobile-menu a:hover { color: var(--brass); }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 300;
}
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.2);
  z-index: 100;
}
.mobile-overlay.open {
  display: block;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 50;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover { background: var(--ink-light); }
.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-extra.visible { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image {
    height: 60vh;
  }
  .hero-image-overlay {
    width: 100%;
    top: auto;
    left: 0;
    bottom: 0;
    height: 40%;
    background: linear-gradient(to top, var(--ink) 0%, transparent 100%);
  }
  .hero-content {
    padding: 40px 24px 80px;
  }

  .approach .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .approach-image { max-width: 320px; }

  .image-break-item { height: 260px; }

  .values-grid { grid-template-columns: 1fr; max-width: 500px; }

  .issues-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .issues-image { max-width: 360px; }

  .testimonial-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .testimonials-extra.visible { grid-template-columns: 1fr; max-width: 600px; margin: 32px auto 0; }

  .pricing-header-image { display: none; }

  .contact .container {
    grid-template-columns: 1fr;
  }
  .contact-image {
    order: -1;
    min-height: 300px;
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-image { height: 50vh; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }

  .approach .container { gap: 32px; }
  .approach-content blockquote { font-size: 1.2rem; }

  .image-break-grid { grid-template-columns: 1fr; }
  .image-break-item { height: 240px; }

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

  h2 { font-size: clamp(1.5rem, 4vw, 1.8rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 32px 16px 60px; }
  .hero-label { font-size: 0.65rem; }

  .approach { padding: 80px 0; }
  .values { padding: 64px 0; }
  .issues { padding: 64px 0; }
  .testimonials { padding: 64px 0; }
  .pricing { padding: 64px 0; }
  .faq { padding: 64px 0; }
  .contact { padding: 64px 0; }

  .image-break-item { height: 200px; }

  .testimonial-card { padding: 32px 24px 24px; }

  .pricing-card { padding: 24px 16px; }

  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
  .whatsapp-float { bottom: 20px; left: 20px; width: 46px; height: 46px; }

  footer .container { flex-direction: column; gap: 8px; text-align: center; }
}
