/* ==========================================================================
   Pescador L.L.C F.Z — General Trading
   Stylesheet — Apple.com-inspired: monochrome, generous whitespace,
   large bold type, pill buttons, translucent sticky nav.
   ========================================================================== */

:root {
  --black: #1d1d1f;
  --gray-1: #424245;
  --gray-2: #6e6e73;
  --gray-3: #86868b;
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --bg-dark: #000000;
  --border: #d2d2d7;
  --accent: #0071e3;
  --accent-dark: #0058ab;
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--bg);
  line-height: 1.47059;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.07143;
  letter-spacing: -0.005em;
}

h1 { font-size: 3.5rem; font-weight: 700; letter-spacing: -0.015em; }
h2 { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.4rem; font-weight: 600; }

p { color: var(--gray-2); font-size: 1.0625rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--accent);
  margin-bottom: 10px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.2rem;
  color: var(--gray-2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 980px;
  font-weight: 400;
  font-size: 0.98rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

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

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

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

.btn-dark {
  background: var(--black);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

.btn-link {
  color: var(--accent);
  font-size: 1.05rem;
  padding: 0;
  border-radius: 0;
}

.btn-link::after {
  content: "\2303";
  display: inline-block;
  transform: rotate(90deg);
  margin-left: 2px;
  font-size: 0.8em;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo .logo-main {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--black);
}

.logo .logo-rule {
  display: inline-block;
  width: 26px;
  height: 3px;
  background: var(--black);
  margin: 4px 0 3px;
}

.logo .logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gray-2);
  text-transform: uppercase;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.footer-logo .logo-img {
  height: 44px;
  margin-bottom: 4px;
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--gray-1);
  position: relative;
  padding: 4px 0;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta .btn {
  padding: 8px 18px;
  font-size: 0.85rem;
  background: var(--black);
  color: #fff;
}

.nav-cta .btn:hover {
  background: #000;
  opacity: 0.85;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--black);
  display: block;
}

/* Hero */
.hero {
  background: var(--bg);
  color: var(--black);
  padding: 100px 0 90px;
  text-align: center;
}

.hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

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

.hero h1 {
  color: var(--black);
  margin-bottom: 20px;
}

.hero p.lead {
  color: var(--gray-2);
  font-size: 1.3rem;
  margin: 0 auto 36px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-media {
  margin-top: 64px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  font-size: 0.95rem;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 72px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-size: 2.2rem;
  color: var(--black);
  font-weight: 700;
}

.hero-stats div span {
  font-size: 0.9rem;
  color: var(--gray-3);
}

/* Page header (inner pages) */
.page-header {
  background: var(--bg);
  color: var(--black);
  padding: 84px 0 60px;
  text-align: center;
}

.page-header .eyebrow {
  color: var(--accent);
}

.page-header h1 {
  color: var(--black);
}

.page-header p {
  color: var(--gray-2);
  max-width: 620px;
  margin: 14px auto 0;
  font-size: 1.2rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--gray-3);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--gray-2);
}

/* Grid / cards */
.grid {
  display: grid;
  gap: 22px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-alt);
  border: none;
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fff;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--black);
}

.card p {
  font-size: 0.98rem;
}

/* Two-column feature */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-media {
  background: var(--bg-alt);
  border: none;
  border-radius: var(--radius);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  font-size: 0.9rem;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-media.has-img {
  padding: 0;
}

.split ul.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.02rem;
  color: var(--gray-1);
}

.split ul.checklist li::before {
  content: "\2713";
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
}

/* Values */
.value-item {
  border-left: 2px solid var(--black);
  padding-left: 22px;
}

.value-item h3 {
  color: var(--black);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.98rem;
}

/* Stats band */
.stats-band {
  background: var(--black);
  color: #fff;
  padding: 64px 0;
}

.stats-band .grid-4 {
  text-align: center;
}

.stats-band strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

.stats-band span {
  font-size: 0.88rem;
  color: var(--gray-3);
}

/* Timeline (About) */
.timeline {
  border-left: 1px solid var(--border);
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--border);
}

.timeline-item .year {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

/* CTA band */
.cta-band {
  background: var(--black);
  color: #fff;
  padding: 84px 0;
  text-align: center;
  border-radius: var(--radius);
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--gray-3);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
}

.cta-band .btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-info-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.contact-info-item h3 {
  font-size: 1.02rem;
  color: var(--black);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.95rem;
  margin: 0;
}

.form-card {
  background: var(--bg-alt);
  border: none;
  border-radius: var(--radius);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  background: #fff;
  color: var(--black);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.map-placeholder {
  margin-top: 40px;
  height: 280px;
  border-radius: var(--radius);
  border: none;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  font-size: 0.9rem;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--bg-alt);
  color: var(--gray-2);
  padding: 56px 0 24px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid .logo-main,
.footer-grid .logo-sub,
.footer-grid .logo-rule {
  color: var(--black);
  background: var(--black);
}

.footer-grid p {
  color: var(--gray-2);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--black);
  font-size: 0.85rem;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.86rem;
  color: var(--gray-2);
}

.footer-col ul li a:hover {
  color: var(--black);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray-3);
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }

  .grid-3, .grid-4, .grid-2 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 22px;
    border-bottom: 1px solid var(--border);
    display: none;
    gap: 18px;
  }

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

  .menu-toggle {
    display: flex;
  }

  .nav-cta .btn span {
    display: none;
  }

  .hero {
    padding: 72px 0 56px;
  }

  .hero-stats {
    gap: 32px;
  }
}

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

  .section {
    padding: 64px 0;
  }

  h1 { font-size: 2rem; }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@media (max-width: 560px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }
}
