* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #F8F9FA;
  --bg-secondary: #FFFFFF;
  --border: #E2E8F0;
  --text: #1A2332;
  --text-muted: #5A6A7E;
  --accent: #0D9488;
  --accent-hover: #0F766E;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Nav */
nav {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.05em;
  position: absolute;
  left: 2rem;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

/* Main content */
main {
  flex: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: var(--accent);
  color: #ffffff;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Page header */
.page-header {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* About sections */
.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.about-section p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.about-section a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.about-section a:hover {
  text-decoration: underline;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.team-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.team-card .avatar {
  width: 60px;
  height: 60px;
  background: var(--border);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-muted);
}

.team-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-detail a {
  color: var(--accent);
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  display: block;
}

form input,
form textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

form textarea {
  resize: vertical;
  min-height: 130px;
}

form button {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

form button:hover {
  background: var(--accent-hover);
}

/* Footer */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.5rem 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Section layout */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4rem 0;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pillar-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 1.75rem;
}

.pillar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Brand teaser grid */
.brand-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.brand-teaser-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.brand-teaser-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  width: fit-content;
}

.brand-teaser-card h3 {
  font-size: 1rem;
  font-weight: 700;
}

.brand-teaser-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.brands-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.brands-link:hover {
  text-decoration: underline;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.stat-item {
  background: var(--bg-secondary);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CTA strip */
.cta-strip {
  background: var(--text);
  border-radius: 10px;
  padding: 3rem 2.5rem;
  text-align: center;
}

.cta-strip h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.cta-strip p {
  color: #94A3B8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-strip .btn {
  background: var(--accent);
  color: #ffffff;
}

.cta-strip .btn:hover {
  background: var(--accent-hover);
}

.cta-strip .btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
  margin-left: 1rem;
}

.cta-strip .btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Brand blocks */
.brand-block {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  border-left: 4px solid var(--brand-accent, var(--accent));
}


.brand-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-image {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.10));
}

.brand-image--large {
  max-height: 360px;
}

.brand-image-wrap--placeholder {
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: 12px;
  min-height: 220px;
}

.brand-image-placeholder {
  font-size: 3rem;
  color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 220px;
}

.brand-logo {
  max-height: 52px;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  display: block;
}

.brand-logo-pair {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.brand-logo--pair {
  max-height: 40px;
  max-width: 130px;
  margin-bottom: 0;
}

.brand-logo--pablo {
  max-height: 56px;
  max-width: 160px;
}

.brand-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-accent, var(--accent));
  background: var(--brand-accent-light, #CCFBF1);
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.brand-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.brand-headline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.brand-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.brand-points li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
}

.brand-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-accent, var(--accent));
}

.brand-cta-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.brand-cta-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.brand-cta-text a:hover {
  text-decoration: underline;
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.float {
  animation: float 4s ease-in-out infinite;
}

.float--delay {
  animation-delay: 1s;
}

.float--delay-2 {
  animation-delay: 2s;
}

@media (max-width: 720px) {
  .brand-block {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .brand-block--reverse {
    direction: ltr;
  }
}

/* Burger button — hidden on desktop */
.nav-burger {
  display: none;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.burger-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-open span:nth-child(2) { opacity: 0; }
.burger-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  nav {
    justify-content: space-between;
    padding: 0 1.25rem;
    height: auto;
    min-height: 60px;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-logo {
    position: static;
    padding: 1rem 0;
    flex: 1;
  }

  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-bottom: 0.75rem;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }
}
