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

.section {
  padding: 64px 0;
}
.section--alt {
  background: var(--offwhite);
}

/* ── Header / Nav ── */
.jom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.jom-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.jom-nav a {
  font-weight: 500;
  font-size: 0.95rem;
}
.jom-nav a:hover {
  color: var(--secondary);
}

.jom-header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ── Hero ── */
.jom-hero {
  background: var(--text);
  color: var(--white);
  padding: 68px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.jom-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--primary);
}
.jom-hero--imagen {
  background-size: cover;
  background-position: center;
}
.jom-hero--imagen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239,105,113,0.75), rgba(230,201,81,0.55));
}
.jom-hero--gradient {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}
.jom-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.jom-hero-inner h1,
.jom-hero-inner p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.22);
}

/* ── Footer-CTA ── */
.jom-footer-cta {
  background: var(--text);
  color: var(--white);
  text-align: center;
  padding: 56px 24px;
}
.jom-footer-cta + .jom-footer-cta {
  background: var(--secondary);
}

.jom-footer {
  background: #111;
  color: var(--white);
  padding: 48px 24px 24px;
}
.jom-footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.jom-footer-cols h4 {
  margin-bottom: 14px;
  font-size: 1rem;
}
.jom-footer-cols a {
  display: block;
  opacity: 0.8;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.jom-footer-cols a:hover { opacity: 1; }

.jom-copyright {
  text-align: center;
  opacity: 0.6;
  font-size: 0.8rem;
  margin-top: 32px;
}
